diff --git a/Makefile b/Makefile index e54935a..2886e5a 100644 --- a/Makefile +++ b/Makefile @@ -27,11 +27,15 @@ credo: ## run credo .PHONY: dialyzer dialyzer: ## run dialyzer - @mix dialyzer --no-check --quiet --ignore-exit-status --format short + @mix dialyzer --format short .PHONY: static_code_analysis static_code_analysis: check_format check_compile credo dialyzer ## run static code analysis +.PHONY: docs +docs: ## create documentation files + @mix docs + .PHONY: test test: ## run tests @mix test --cover --trace --slowest 10 diff --git a/config/test.exs b/config/test.exs index 4b124fa..e838b98 100644 --- a/config/test.exs +++ b/config/test.exs @@ -1,5 +1,8 @@ import Config +config :wabanex, Growth.Indicators.Download, + who_req_options: [plug: {Req.Test, Growth.Indicators.Download.WHO}] + config :wabanex, Wabanex.Repo, database: "wabanex_test#{System.get_env("MIX_TEST_PARTITION")}", pool: Ecto.Adapters.SQL.Sandbox diff --git a/lib/growth/calc/age.ex b/lib/growth/calc/age.ex new file mode 100644 index 0000000..a057dac --- /dev/null +++ b/lib/growth/calc/age.ex @@ -0,0 +1,48 @@ +defmodule Growth.Calc.Age do + @moduledoc """ + Calculate the age in months. + """ + + @type precision :: :day | :week | :month | :year + + # NOTE: (jpd): based on [WHO instructions][0] + # [0]: https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/instructions-en.pdf + @day_in_month 30.4375 + + @day_in_week 7.0 + + @doc """ + Calculate the age with the precision of `:day`, or `:week`, or `:month`, considering the measurement date as today. + + For age in weeks or months, considers completed ones, removing decimal value. + """ + @spec calculate(precision(), Date.t(), Date.t()) :: pos_integer() + + def calculate(precision, date_of_birth) do + calculate(precision, date_of_birth, Date.utc_today()) + end + + @doc """ + Calculate the age with the precision of `:day`, or `:week`, or `:month`. + + For age in weeks or months, considers completed ones, removing decimal value. + """ + + def calculate(:month, date_of_birth, date_of_measurement) do + :day + |> calculate(date_of_birth, date_of_measurement) + |> Kernel./(@day_in_month) + |> floor() + end + + def calculate(:week, date_of_birth, date_of_measurement) do + :day + |> calculate(date_of_birth, date_of_measurement) + |> Kernel./(@day_in_week) + |> floor() + end + + def calculate(:day, date_of_birth, date_of_measurement) do + Date.diff(date_of_measurement, date_of_birth) + end +end diff --git a/lib/growth/calc/bmi.ex b/lib/growth/calc/bmi.ex new file mode 100644 index 0000000..d6d3081 --- /dev/null +++ b/lib/growth/calc/bmi.ex @@ -0,0 +1,29 @@ +defmodule Growth.Calc.BMI do + @moduledoc """ + Calculate body mass index + """ + + @inch_to_centimeter 2.54 + @pound_to_kilogram 0.453592 + + @doc """ + Calculate the body mass index for a given weight and height. + + Measurements taken in english unit (pounds and inches) are converted to their metric equivalents (kilograms and centimeters). + """ + @spec calculate(:english | :metric, number, number) :: number + + def calculate(:english, weight, height) do + metric_weight = pound_to_kilogram(weight) + metric_height = inches_to_centimeters(height) + calculate(:metric, metric_weight, metric_height) + end + + def calculate(:metric, weight, height) do + weight / :math.pow(height / 100.0, 2) + end + + defp inches_to_centimeters(height), do: height * @inch_to_centimeter + + defp pound_to_kilogram(weight), do: weight * @pound_to_kilogram +end diff --git a/lib/growth/calc/centile.ex b/lib/growth/calc/centile.ex new file mode 100644 index 0000000..71a4d05 --- /dev/null +++ b/lib/growth/calc/centile.ex @@ -0,0 +1,45 @@ +defmodule Growth.Calc.Centile do + @moduledoc """ + Calculate the value of measurement at a given z-score and fitted values of Box-Cox by age/height: + + * **power** `t:Growth.Calc.ZScore.l/0` + * **median** `t:Growth.Calc.ZScore.m/0` + * **coefficientof variation** `t:Growth.Calc.ZScore.s/0` + + This calculation is described in the [instructions provided by the World Health Organization](https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/computation.pdf). + + ## Examples: + + iex> measures = + ...> [ + ...> [-3.0, -1.7862, 16.9392, 0.1107], + ...> [2, -1.3592, 20.4951, 0.12579], + ...> [-1.2, -1.6318, 16.049, 0.10038] + ...> ] + iex> Enum.map(measures, &apply(Growth.Calc.Centile, :compute, &1)) + [13.05127032828574, 27.884359024082663, 14.37765739914362] + + """ + + alias Growth.Calc.ZScore + + @spec compute(number(), ZScore.l(), ZScore.m(), ZScore.s()) :: number() | :na + @doc """ + Compute the measurement value for a given z-score and the Box-Cox values: power (`l`), median (`m`), and coefficient of variation (`s`). + + Returns the measurement based on the z-score when -3 <= z-score <= 3; otherwise, `:na.` + + ## Examples: + + iex> Growth.Calc.Centile.compute(0.0, -1.6318, 16.049, 0.10038) + 16.049 + + """ + def compute(z_score, l, m, s) when -3 <= z_score and z_score <= 3 do + m * :math.pow(1 + l * s * z_score, 1 / l) + end + + def compute(_z_score, _l, _m, _s) do + :na + end +end diff --git a/lib/growth/calc/percentile.ex b/lib/growth/calc/percentile.ex new file mode 100644 index 0000000..95718b5 --- /dev/null +++ b/lib/growth/calc/percentile.ex @@ -0,0 +1,30 @@ +defmodule Growth.Calc.Percentile do + @moduledoc """ + Convert the z-score of a given measurement into a cumulative percentile. + + This calculation is described in the [cumulative distribution function][https://en.wikipedia.org/wiki/Error_function#Cumulative_distribution_function]. + + ## Examples + + iex> z_scores = [-1.0, 0.0, 1.0] + iex> Enum.map(z_scores, &apply(Growth.Calc.Percentile, :compute, [&1])) + [0.15865525393145707, 0.5, 0.8413447460685429] + + """ + + @doc """ + Convert the z-score of a given measurement into a percentile representation, ranging from 0 to 1. + + ## Examples + + iex> Growth.Calc.Percentile.compute(2.0) + 0.9772498680518208 + iex> Growth.Calc.Percentile.compute(-2.0) + 0.02275013194817921 + + """ + @spec compute(number()) :: number() + def compute(z_score) do + 0.5 * (:math.erf(z_score / :math.sqrt(2)) + 1) + end +end diff --git a/lib/growth/calc/z_score.ex b/lib/growth/calc/z_score.ex new file mode 100644 index 0000000..fc87cb5 --- /dev/null +++ b/lib/growth/calc/z_score.ex @@ -0,0 +1,116 @@ +defmodule Growth.Calc.ZScore do + @moduledoc """ + Calculate z-score for a given measurement and the fitted values of Box-Cox by age/height: + + * **power** `t:l/0` + * **median** `t:m/0` + * **coefficientof variation** `t:s/0` + + This calculation is described in the [instructions provided by the World Health Organization](https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/computation.pdf). + + ## Examples: + + iex> measures = + ...> [ + ...> [30, -1.7862, 16.9392, 0.1107], + ...> [14, -1.3592, 20.4951, 0.12579], + ...> [19, -1.6318, 16.049, 0.10038] + ...> ] + iex> Enum.map(measures, &apply(Growth.Calc.ZScore, :compute, &1)) + [3.35390255606726, -3.7985108865993493, 1.4698319520484722] + + """ + + @typedoc """ + The **power** value in Box-Cox transformation. + """ + @type l :: number() + @typedoc """ + The **median** value in Box-Cox transformation. + """ + @type m :: number() + @typedoc """ + The **coefficient of variation** in Box-Cox transformation. + """ + @type s :: number() + + @spec compute(number(), l(), m(), s()) :: number() + @doc """ + Compute the adjusted z-score for a given measurement (`y`) and the Box-Cox values: power (`l`), median (`m`), and + coefficient of variation (`s`). + + ## Examples: + + iex> Growth.Calc.ZScore.compute(30, -1.7862, 16.9392, 0.1107) + 3.35390255606726 + iex> Growth.Calc.ZScore.compute(14, -1.3592, 20.4951, 0.12579) + -3.7985108865993493 + iex> Growth.Calc.ZScore.compute(19, -1.6318, 16.049, 0.10038) + 1.4698319520484722 + + """ + def compute(y, l, m, s) do + y + |> raw(l, m, s) + |> adjust(y, l, m, s) + end + + @spec raw(number(), l(), m(), s()) :: number() + @doc """ + Compute the raw z-score for a given measurement (`y`) and the Box-Cox values, power (`l`), median (`m`), and + coefficient of variation (`s`). + + ## Examples + + iex> Growth.Calc.ZScore.raw(30, -1.7862, 16.9392, 0.1107) + 3.2353902101095855 + iex> Growth.Calc.ZScore.raw(14, -1.3592, 20.4951, 0.12579) + -3.969714730727475 + iex> Growth.Calc.ZScore.compute(19, -1.6318, 16.049, 0.10038) + 1.4698319520484722 + + """ + def raw(y, l, m, s) do + (:math.pow(y / m, l) - 1) / (s * l) + end + + @spec adjust(number(), number(), l(), m(), s()) :: number() + @doc """ + Adjust the raw z-score considering that extreme values, beyond -3 and 3 standard deviation, must be handled differently. + """ + def adjust(zscore, y, l, m, s) when zscore > 3 do + [sd2, sd3, _, _] = cutoffs(l, m, s) + sd_delta = sd3 - sd2 + 3 + (y - sd3) / sd_delta + end + + def adjust(zscore, y, l, m, s) when zscore < -3 do + [_, _, sd2, sd3] = cutoffs(l, m, s) + sd_delta = sd2 - sd3 + -3 + (y - sd3) / sd_delta + end + + def adjust(zscore, _, _, _, _) do + zscore + end + + @spec cutoffs(number(), number(), number()) :: [number()] + @doc """ + Calculate the standard deviations cutoffs (2, 3, -2, and -3) for a given set of fitted Box-Cox values: power (`l`), + median (`m`), and coefficient of variation (`s`). + + These cutoffs are used to calculate the adjusted z-score. + """ + def cutoffs(l, m, s) do + Enum.map([2, 3, -2, -3], &measure_at_standard_deviation(&1, l, m, s)) + end + + @spec measure_at_standard_deviation(integer(), number(), number(), number()) :: number() + @doc """ + Calculate the measure value at a given standard deviation (`sd`), considering the fitted Box-Cox values: power (`l`), + median (`m`), and coefficient of variation (`s`). + """ + def measure_at_standard_deviation(sd, l, m, s) do + m * :math.pow(1 + l * s * sd, 1 / l) + end +end diff --git a/lib/growth/growth.ex b/lib/growth/growth.ex new file mode 100644 index 0000000..9fd7f9b --- /dev/null +++ b/lib/growth/growth.ex @@ -0,0 +1,225 @@ +defmodule Growth do + @moduledoc """ + Follow up child growth from 0 to 19 years, calculating z-scores for the following measurements: + + * weight between ages 0 and 10 years + * height between ages 0 and 19 years + * body mass index (bmi) between ages 0 and 19 years + * head circumference between ages 0 and 5 years + * arm circumference between ages 3 months and 5 years + * subscapular skinfold between ages 3 months and 5 years + * triceps skinfold between ages 3 months and 5 years + """ + + alias __MODULE__.Calc.Age + alias __MODULE__.Calc.BMI + alias __MODULE__.Score + + @type gender :: :male | :female + + @type measure :: number() | nil + + @type opts :: [ + date_of_measurement: Date.t(), + weight: measure(), + height: measure(), + arm_circumference: measure(), + head_circumference: measure(), + subscapular_skinfold: measure(), + triceps_skinfold: measure() + ] + + @type t :: %__MODULE__{ + name: String.t(), + gender: gender(), + date_of_birth: Date.t(), + date_of_measurement: Date.t(), + age_in_days: pos_integer(), + age_in_weeks: pos_integer(), + age_in_months: pos_integer(), + weight: measure(), + height: measure(), + arm_circumference: measure(), + head_circumference: measure(), + subscapular_skinfold: measure(), + triceps_skinfold: measure(), + bmi: measure(), + results: list() + } + + @enforce_keys [:name, :gender, :date_of_birth] + defstruct [ + :name, + :gender, + :date_of_birth, + :date_of_measurement, + :age_in_days, + :age_in_weeks, + :age_in_months, + :weight, + :height, + :arm_circumference, + :head_circumference, + :subscapular_skinfold, + :triceps_skinfold, + :bmi, + :results + ] + + @valid_measures [ + :date_of_measurement, + :weight, + :height, + :arm_circumference, + :head_circumference, + :subscapular_skinfold, + :triceps_skinfold + ] + + @doc """ + Create a new growth measurement for a children with name, gender, date of birth, and the following optional arguments: + + * `:date_of_measurement`: date when the measures were collected, defaults to today. + * `:weight`: weight in kilograms, defaults to `nil`. + * `:height`: height in centimeters, defaults to `nil`. + * `:arm_circumference`: arm circumference in centimeters, defaults to `nil`. + * `:head_circumference`: head circumference in centimeters, defaults to `nil`. + * `:subscapular_skinfold`: subscapular skinfold in milimeters, defaults to `nil`. + * `:triceps_skinfold`: triceps skinfold in milimeters, defaults to `nil`. + + ## Examples + + iex> Growth.new( + ...> "child a", + ...> :male, + ...> ~D[2024-01-01], + ...> date_of_measurement: ~D[2024-04-01], + ...> weight: 8, + ...> height: 65.4, + ...> arm_circumference: 15.5, + ...> head_circumference: 42.8, + ...> subscapular_skinfold: 10.9, + ...> triceps_skinfold: 13.5 + ...> ) + %Growth{ + name: "child a", + gender: :male, + date_of_birth: ~D[2024-01-01], + date_of_measurement: ~D[2024-04-01], + age_in_days: 91, + age_in_weeks: 13, + age_in_months: 2, + weight: 8, + height: 65.4, + arm_circumference: 15.5, + head_circumference: 42.8, + subscapular_skinfold: 10.9, + triceps_skinfold: 13.5, + bmi: 18.703999850368, + results: [ + head_circumference: [ + day: {1.945484886994137, 0.9741416765426315}, + week: {1.945484886994137, 0.9741416765426315}, + month: {3.130859582465616, 0.9991285226182205} + ], + arm_circumference: [day: {1.9227031505630465, 0.9727413295221268}], + subscapular_skinfold: [day: {1.9437372448689536, 0.9740364275897885}], + triceps_skinfold: [day: {1.950277062993091, 0.974428447506235}], + weight: [ + day: {1.982458622036091, 0.9762860329545557}, + week: {1.982458622036091, 0.9762860329545557}, + month: {3.0355951313091745, 0.9987996926038037} + ], + height: [ + day: {1.956263992749136, 0.9747829682259178}, + week: {1.956263992749136, 0.9747829682259178}, + month: {3.4867331002754054, 0.9997555204670452} + ], + bmi: [ + day: {1.1977344927294398, 0.8844898016950435}, + week: {1.1977344927294398, 0.8844898016950435}, + month: {1.5837461190318038, 0.9433742474306444} + ] + ] + } + + """ + @spec new(String.t(), gender(), Date.t(), opts()) :: t() + def new(name, gender, date_of_birth, opts \\ []) do + default_opts() + |> Enum.reduce( + %__MODULE__{ + name: name, + gender: gender, + date_of_birth: date_of_birth, + results: [] + }, + fn {key, default_value}, measurement -> + opts + |> Keyword.get(key, default_value) + |> then(&Map.put(measurement, key, &1)) + end + ) + |> with_age_in_days() + |> with_age_in_weeks() + |> with_age_in_months() + |> with_bmi() + |> with_results() + end + + for precision <- [:day, :week, :month] do + @doc """ + Add age with given precision in growth measurement. + """ + @spec unquote(:"with_age_in_#{precision}s")(t()) :: t() + + def unquote(:"with_age_in_#{precision}s")( + %__MODULE__{date_of_birth: date_of_birth, date_of_measurement: date_of_measurement} = + growth + ) + when not is_nil(date_of_birth) and not is_nil(date_of_measurement) do + age = Age.calculate(unquote(precision), date_of_birth, date_of_measurement) + Map.put(growth, unquote(:"age_in_#{precision}s"), age) + end + + def unquote(:"with_age_in_#{precision}s")(%__MODULE__{date_of_birth: date_of_birth} = growth) + when not is_nil(date_of_birth) do + unquote(:"with_age_in_#{precision}s")(%{growth | date_of_measurement: Date.utc_today()}) + end + + def unquote(:"with_age_in_#{precision}s")(growth) do + growth + end + end + + def with_bmi(%__MODULE__{weight: weight, height: height} = growth) + when is_number(weight) and is_number(height) do + %{growth | bmi: BMI.calculate(:metric, weight, height)} + end + + def with_bmi(growth) do + growth + end + + def with_results(growth) do + Score.Scorer.results(growth, [ + Score.BMI, + Score.Height, + Score.Weight, + Score.TricepsSkinfold, + Score.SubscapularSkinfold, + Score.ArmCircumference, + Score.HeadCircumference + ]) + end + + defp default_opts do + Enum.map(@valid_measures, fn + :date_of_measurement = key -> + {key, Date.utc_today()} + + key -> + {key, nil} + end) + end +end diff --git a/lib/growth/indicators/download.ex b/lib/growth/indicators/download.ex new file mode 100644 index 0000000..c2307d9 --- /dev/null +++ b/lib/growth/indicators/download.ex @@ -0,0 +1,328 @@ +defmodule Growth.Indicators.Download do + @moduledoc """ + To calculate z-scores for the different growth measurements, the system must: + + 1. Fetch indicators from World Health Organization + 2. Extract data from excel sheets + 3. Convert the data into proper format, specially, handle with decimal values + 3. Add metadata to make search for the parameters possible + + The following indicators to construct z-scores are fetched: + + * [height for age 0 to 5 years](https://www.who.int/tools/child-growth-standards/standards/length-height-for-age) + * [height for age 5 to 19 years](https://www.who.int/tools/growth-reference-data-for-5to19-years/indicators/height-for-age) + * [weight for age 0 to 5 years](https://www.who.int/tools/child-growth-standards/standards/weight-for-age) + * [weight for age 5 to 10 years](https://www.who.int/tools/growth-reference-data-for-5to19-years/indicators/weight-for-age-5to10-years) + * [weight for height](https://www.who.int/tools/child-growth-standards/standards/weight-for-length-height) + * [body mass index (bmi) for age 0 to 5 years](https://www.who.int/toolkits/child-growth-standards/standards/body-mass-index-for-age-bmi-for-age) + * [body mass index (bmi) for age 5 to 19 years](https://www.who.int/tools/growth-reference-data-for-5to19-years/indicators/bmi-for-age) + * [head circumference for age 0 to 5 years](https://www.who.int/tools/child-growth-standards/standards/head-circumference-for-age) + * [arm circumference for age 3 months to 5 years](https://www.who.int/tools/child-growth-standards/standards/arm-circumference-for-age) + * [subscapular skinfold for age 3 months to 5 years](https://www.who.int/tools/child-growth-standards/standards/subscapular-skinfold-for-age) + * [triceps skinfold for age 3 months to 5 years](https://www.who.int/tools/child-growth-standards/standards/triceps-skinfold-for-age) + """ + + NimbleCSV.define(IndicatorParser, separator: ",", escape: "\"") + + @urls %{ + height_for_age: %{ + female: %{ + age_tables: ~w[ + 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 + 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 + 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 + https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx + ], + expanded_tables: ~w[ + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx + https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx + ] + }, + male: %{ + age_tables: ~w[ + 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 + 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 + 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 + https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx + ], + expanded_tables: ~w[ + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx + https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-boys-z-who-2007-exp.xlsx + ] + } + }, + weight_for_age: %{ + female: %{ + age_tables: ~w[ + 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 + 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 + 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 + ], + expanded_tables: ~w[ + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx + 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 + ] + }, + male: %{ + age_tables: ~w[ + 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 + 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 + 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 + ], + expanded_tables: ~w[ + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx + 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 + ] + } + }, + weight_for_height: %{ + female: %{ + age_tables: ~w( + 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 + 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 + ), + expanded_tables: ~w( + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx + ) + }, + male: %{ + age_tables: ~w( + 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 + 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 + ), + expanded_tables: ~w( + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx + ) + } + }, + bmi_for_age: %{ + female: %{ + age_tables: ~w[ + 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 + 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 + 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 + https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx + ], + expanded_tables: ~w[ + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx + https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx + ] + }, + male: %{ + age_tables: ~w[ + 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 + 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 + 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 + https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx + ], + expanded_tables: ~w[ + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx + https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx + ] + } + }, + head_circumference_for_age: %{ + female: %{ + age_tables: ~w( + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-13-zscores.xlsx + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/hcfa-girls-0-5-zscores.xlsx + ), + expanded_tables: ~w( + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx + ) + }, + male: %{ + age_tables: ~w( + 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 + ), + expanded_tables: ~w( + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx + ) + } + }, + arm_circumference_for_age: %{ + female: %{ + age_tables: ~w( + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx + ), + expanded_tables: ~w( + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx + ) + }, + male: %{ + age_tables: ~w( + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx + ), + expanded_tables: ~w( + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx + ) + } + }, + subscapular_skinfold_for_age: %{ + female: %{ + age_tables: ~w( + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx + ), + expanded_tables: ~w( + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx + ) + }, + male: %{ + age_tables: ~w( + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx + ), + expanded_tables: ~w( + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx + ) + } + }, + triceps_skinfold_for_age: %{ + female: %{ + age_tables: ~w( + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx + ), + expanded_tables: ~w( + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx + ) + }, + male: %{ + age_tables: ~w( + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx + ), + expanded_tables: ~w( + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx + ) + } + } + } + + def process_all do + @urls + |> Enum.map(&Task.async(__MODULE__, :process_measure, [&1])) + |> Task.await_many() + end + + def process_measure({measure, urls}) do + urls + |> process_genders() + |> as_csv() + |> save(measure) + end + + def process_genders(%{ + female: %{age_tables: female_urls, expanded_tables: e_female_urls}, + male: %{age_tables: male_urls, expanded_tables: e_male_urls} + }) do + [ + {:female, :age, female_urls}, + {:male, :age, male_urls}, + {:female, :expanded, e_female_urls}, + {:male, :expanded, e_male_urls} + ] + |> Enum.map(&Task.async(__MODULE__, :process_gender, [&1])) + |> Task.await_many() + |> merge() + end + + def process_gender({gender, category, urls}) do + urls + |> Enum.map(&Task.async(__MODULE__, :process, [gender, category, &1])) + |> Task.await_many() + |> merge() + end + + def process(gender, category, url) do + url + |> fetch!() + |> extract!(url) + |> convert(gender, category, url) + end + + def fetch!(url) do + req = + [url: url] + |> Keyword.merge( + :wabanex + |> Application.get_env(__MODULE__, []) + |> Keyword.get(:who_req_options, []) + ) + |> Req.new() + + case Req.get(req) do + {:ok, %{status: 200, body: body}} -> + body + + _ -> + raise("fetch failed for url #{url}") + end + end + + def extract!(content, url) do + with {:ok, package} <- XlsxReader.open(content, source: :binary), + [sheet_name | _] <- XlsxReader.sheet_names(package), + {:ok, data} <- XlsxReader.sheet(package, sheet_name) do + data + else + _ -> raise("failed to extract excel for #{url}") + end + end + + @common_header ~w(source category gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3) + + # FIX: (jpd) weight for lenght/height does not have an age in the header row + def convert([header | rows], gender, category, url) do + age_unit = header |> hd() |> String.downcase() + + fixed_header = header |> tl() |> Enum.map(&String.downcase/1) |> Enum.map(&String.trim/1) + + parsed_header = ["source" | ["category" | ["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 = + rows + |> Stream.map(fn row -> Enum.map(row, &Decimal.new/1) end) + |> Stream.map(&[url | [category | [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) + + [@common_header | parsed_rows] + end + + def merge(datum) do + datum + |> Stream.with_index() + |> Stream.map(fn + {data, 0} -> + data + + {[_ | data], _} -> + data + end) + |> Enum.reduce([], fn data, accum -> + Enum.concat(accum, data) + end) + end + + def as_csv(data) do + IndicatorParser.dump_to_iodata(data) + end + + def save(data, measurement) do + :wabanex + |> Application.app_dir(["priv", "growth", "indicators", "#{measurement}.csv"]) + |> File.write(data) + end +end diff --git a/lib/growth/indicators/load.ex b/lib/growth/indicators/load.ex new file mode 100644 index 0000000..68a9894 --- /dev/null +++ b/lib/growth/indicators/load.ex @@ -0,0 +1,190 @@ +defmodule Growth.Indicators.Load do + @moduledoc """ + Load local indicators csv files into ets. + + For each measurement an ets table is created, so the system has the following tables: + + * `Growth.Score.ArmCircumference` + * `Growth.Score.BMI` + * `Growth.Score.HeadCircumference` + * `Growth.Score.Height` + * `Growth.Score.SubscapularSkinfold` + * `Growth.Score.TricepsSkinfold` + * `Growth.Score.Weight` + * `Growth.Score.WeightForHeight` + + The rows in the csv files are converted to two tuple, representing the a key and value, with the following format: + + * **key**: `{gender, unit, t-value}` + * **value**: map with the keys: + * l + * m + * s + * sd3neg + * sd2neg + * sd1neg + * sd0 + * sd1 + * sd2 + * sd3 + * source + * category + + """ + + use Task + + require Logger + + alias Growth.Score + + @measure_to_score [ + arm_circumference_for_age: Score.ArmCircumference, + bmi_for_age: Score.BMI, + head_circumference_for_age: Score.HeadCircumference, + height_for_age: Score.Height, + subscapular_skinfold_for_age: Score.SubscapularSkinfold, + triceps_skinfold_for_age: Score.TricepsSkinfold, + weight_for_age: Score.Weight, + weight_for_height: Score.WeightForHeight + ] + + @doc false + def start_link(_) do + _ = + Enum.map(@measure_to_score, fn {_, measure} -> + create_ets(measure) + end) + + Task.start_link(__MODULE__, :all, []) + end + + @spec all :: [[boolean()]] + @doc """ + Load indicators csv files into their own ets tables. + """ + def all do + Logger.debug("load growth indicators") + + :wabanex + |> Application.app_dir(["priv", "growth", "indicators", "*.csv"]) + |> Path.wildcard() + |> Enum.map(&create_ets_from_filename/1) + |> Enum.map(&Task.async(__MODULE__, :load_measure, [&1])) + |> Task.await_many() + end + + @spec create_ets(module()) :: module() + @doc """ + Create a public ets table for the growth module, using it as the table name. + + Returns the given module. + """ + def create_ets(measure) do + try do + :ets.new(measure, [:set, :public, :named_table]) + rescue + _ -> + nil + end + + measure + end + + @spec create_ets_from_filename(String.t()) :: {atom(), String.t()} + @doc """ + Create ets table based on filename and return a tuple with the ets table name and filename. + """ + def create_ets_from_filename(filename) do + measure = + filename + |> Path.basename() + |> Path.rootname() + |> String.to_atom() + |> then(&Keyword.get(@measure_to_score, &1, &1)) + |> create_ets() + + {measure, filename} + end + + @spec load_measure({atom(), String.t()}) :: [boolean()] + @doc """ + Read, convert, and load a measure/filename into the proper ets table. + """ + def load_measure({measure, filename}) do + Logger.debug("load data from #{filename} into #{measure}") + + filename + |> read() + |> convert() + |> load(measure) + end + + @spec read(String.t()) :: Enumerable.t() + @doc false + def read(filename) do + filename + |> File.stream!() + |> IndicatorParser.parse_stream() + end + + @spec convert(Enumerable.t()) :: Enumerable.t() + @doc false + def convert(data) do + Stream.map(data, fn [ + source, + category, + gender, + unit, + t, + l, + m, + s, + sd3neg, + sd2neg, + sd1neg, + sd0, + sd1, + sd2, + sd3 + ] -> + converted_t = + if unit in ~w(day week month) do + as_integer(t) + else + as_float(t) + end + + key = {String.to_atom(gender), String.to_atom(unit), converted_t} + + value = %{ + l: as_float(l), + m: as_float(m), + s: as_float(s), + sd3neg: as_float(sd3neg), + sd2neg: as_float(sd2neg), + sd1neg: as_float(sd1neg), + sd0: as_float(sd0), + sd1: as_float(sd1), + sd2: as_float(sd2), + sd3: as_float(sd3), + source: source, + category: category + } + + {key, value} + end) + end + + @spec load(Enumerable.t(), atom()) :: [boolean()] + @doc false + def load(data, ets_table) do + Enum.map(data, fn {key, value} -> + :ets.insert_new(ets_table, {key, value}) + end) + end + + defp as_integer(value), do: value |> Integer.parse() |> elem(0) + + defp as_float(value), do: value |> Float.parse() |> elem(0) +end diff --git a/lib/growth/score/arm_circumference.ex b/lib/growth/score/arm_circumference.ex new file mode 100644 index 0000000..72a396a --- /dev/null +++ b/lib/growth/score/arm_circumference.ex @@ -0,0 +1,18 @@ +defmodule Growth.Score.ArmCircumference do + @moduledoc """ + Calculate z-score for arm circumference for age. + """ + + @behaviour Growth.Score.Scorer + + alias Growth.Score.Scorer + + @impl Scorer + @spec measure_name() :: atom() + @doc """ + Name of the measurement used in arm circumference indicator. + """ + def measure_name do + :arm_circumference + end +end diff --git a/lib/growth/score/bmi.ex b/lib/growth/score/bmi.ex new file mode 100644 index 0000000..9921971 --- /dev/null +++ b/lib/growth/score/bmi.ex @@ -0,0 +1,18 @@ +defmodule Growth.Score.BMI do + @moduledoc """ + Calculate z-score for body mass index for age. + """ + + @behaviour Growth.Score.Scorer + + alias Growth.Score.Scorer + + @impl Scorer + @spec measure_name() :: atom() + @doc """ + Name of the measurement used in BMI indicator. + """ + def measure_name do + :bmi + end +end diff --git a/lib/growth/score/head_circumference.ex b/lib/growth/score/head_circumference.ex new file mode 100644 index 0000000..3062a8f --- /dev/null +++ b/lib/growth/score/head_circumference.ex @@ -0,0 +1,18 @@ +defmodule Growth.Score.HeadCircumference do + @moduledoc """ + Calculate z-score for head circumference for age. + """ + + @behaviour Growth.Score.Scorer + + alias Growth.Score.Scorer + + @impl Scorer + @spec measure_name() :: atom() + @doc """ + Name of the measurement used in head circumference indicator. + """ + def measure_name do + :head_circumference + end +end diff --git a/lib/growth/score/height.ex b/lib/growth/score/height.ex new file mode 100644 index 0000000..4604c7d --- /dev/null +++ b/lib/growth/score/height.ex @@ -0,0 +1,18 @@ +defmodule Growth.Score.Height do + @moduledoc """ + Calculate z-score for height for age. + """ + + @behaviour Growth.Score.Scorer + + alias Growth.Score.Scorer + + @impl Scorer + @spec measure_name() :: atom() + @doc """ + Name of the measurement used in height indicator. + """ + def measure_name do + :height + end +end diff --git a/lib/growth/score/scorer.ex b/lib/growth/score/scorer.ex new file mode 100644 index 0000000..9bf6c37 --- /dev/null +++ b/lib/growth/score/scorer.ex @@ -0,0 +1,96 @@ +defmodule Growth.Score.Scorer do + @moduledoc """ + Behaviour defining common interface to calculate z-score and percentile for a given measurement. + """ + + alias Growth.Calc.Percentile + alias Growth.Calc.ZScore + + @callback measure_name() :: atom() + + @spec results(Growth.t(), [module()]) :: Growth.t() + @doc """ + Add z-score and centile values in growth measurements `results` for each indicator. + """ + def results(growth, indicators) do + Enum.reduce(indicators, growth, &result/2) + end + + @spec result(module(), Growth.t()) :: Growth.t() + @doc """ + Calculate z-score and percentile values for the given indicator and add them to the growth measurement `results`. + """ + def result(indicator, growth) do + result = + growth + |> lms(indicator) + |> Enum.map(fn {precision, {l, m, s}} -> + {precision, scores(indicator, growth, l, m, s)} + end) + + %{growth | results: Keyword.put(growth.results, indicator.measure_name(), result)} + end + + @spec lms(Growth.t(), module()) :: [{String.t(), {number(), number(), number()}}] + @doc """ + Get the indicaator fitted values of Box-Cox transformation: + + * power (`l`) + * median (`m`) + * coefficient of variation (`s`) + + """ + def lms(growth, indicator) do + [ + {growth.gender, :day, growth.age_in_days}, + {growth.gender, :week, growth.age_in_weeks}, + {growth.gender, :month, growth.age_in_months} + ] + |> Enum.map(fn {_, precision, _} = key -> + case :ets.lookup(indicator, key) do + [{^key, %{l: l, m: m, s: s}} | _] -> + {precision, {l, m, s}} + + _ -> + nil + end + end) + |> Enum.reject(&is_nil/1) + end + + @doc """ + Calculate the z-score and percentile of an indicator measurement. + """ + @spec scores(module(), Growth.t(), ZScore.l(), ZScore.m(), ZScore.s()) :: + {Growth.measure(), Growth.measure()} + def scores(indicator, growth, l, m, s) do + growth + |> Map.get(indicator.measure_name()) + |> z_score(l, m, s) + |> then(fn score -> {score, percentile(score)} end) + end + + @doc """ + Check `Growth.Calc.ZScore.compute/4`. + """ + @spec z_score(Growth.measure(), ZScore.l(), ZScore.m(), ZScore.s()) :: Growth.measure() + def z_score(nil, _, _, _) do + nil + end + + def z_score(value, l, m, s) do + ZScore.compute(value, l, m, s) + end + + @doc """ + Check `Growth.Calc.Percentile.compute/1`. + """ + @spec percentile(Growth.measure()) :: Growth.measure() + def percentile(nil) do + nil + end + + def percentile(score) do + Percentile.compute(score) + end +end diff --git a/lib/growth/score/subscapular_skinfold.ex b/lib/growth/score/subscapular_skinfold.ex new file mode 100644 index 0000000..3bb41dc --- /dev/null +++ b/lib/growth/score/subscapular_skinfold.ex @@ -0,0 +1,18 @@ +defmodule Growth.Score.SubscapularSkinfold do + @moduledoc """ + Calculate z-score for subscapular skinfold for age. + """ + + @behaviour Growth.Score.Scorer + + alias Growth.Score.Scorer + + @impl Scorer + @spec measure_name() :: atom() + @doc """ + Name of the measurement used in subscapular skinfold indicator. + """ + def measure_name do + :subscapular_skinfold + end +end diff --git a/lib/growth/score/triceps_skinfold.ex b/lib/growth/score/triceps_skinfold.ex new file mode 100644 index 0000000..0e2dda9 --- /dev/null +++ b/lib/growth/score/triceps_skinfold.ex @@ -0,0 +1,18 @@ +defmodule Growth.Score.TricepsSkinfold do + @moduledoc """ + Calculate z-score for triceps skinfold for age. + """ + + @behaviour Growth.Score.Scorer + + alias Growth.Score.Scorer + + @impl Scorer + @spec measure_name() :: atom() + @doc """ + Name of the measurement used in triceps skinfold indicator. + """ + def measure_name do + :triceps_skinfold + end +end diff --git a/lib/growth/score/weight.ex b/lib/growth/score/weight.ex new file mode 100644 index 0000000..38a00dc --- /dev/null +++ b/lib/growth/score/weight.ex @@ -0,0 +1,18 @@ +defmodule Growth.Score.Weight do + @moduledoc """ + Calculate z-score for weight for age. + """ + + @behaviour Growth.Score.Scorer + + alias Growth.Score.Scorer + + @impl Scorer + @spec measure_name() :: atom() + @doc """ + Name of the measurement used in weight indicator. + """ + def measure_name do + :weight + end +end diff --git a/lib/growth/score/weight_for_height.ex b/lib/growth/score/weight_for_height.ex new file mode 100644 index 0000000..27d7afb --- /dev/null +++ b/lib/growth/score/weight_for_height.ex @@ -0,0 +1,5 @@ +defmodule Growth.Score.WeightForHeight do + @moduledoc """ + Calculate z-score for weight for height. + """ +end diff --git a/lib/wabanex/application.ex b/lib/wabanex/application.ex index 346d587..35029d7 100644 --- a/lib/wabanex/application.ex +++ b/lib/wabanex/application.ex @@ -9,6 +9,7 @@ defmodule Wabanex.Application do Wabanex.Repo, WabanexWeb.Telemetry, {Phoenix.PubSub, name: Wabanex.PubSub}, + {Growth.Indicators.Load, []}, {DNSCluster, query: Application.get_env(:wabanex, :dns_cluster_query) || :ignore, log: :info, diff --git a/mix.exs b/mix.exs index b6128c8..9d205f6 100644 --- a/mix.exs +++ b/mix.exs @@ -35,25 +35,31 @@ defmodule Wabanex.MixProject do ref: "5de21da279938d1a10642f94d5e9c9fbdc846149"}, {:credo, "~> 1.7.0", only: [:dev, :test], runtime: false}, {:crudry, "~> 2.4.0"}, + {:decimal, "~> 2.3.0"}, {:dialyxir, "~> 1.4.0", only: [:dev, :test], runtime: false}, {:dns_cluster, "~> 0.2.0"}, {:ecto_sql, "~> 3.12.0"}, + {:elixlsx, "~> 0.6.0", only: :test}, + {:ex_doc, "~> 0.37.0", only: :dev, runtime: false}, {:gettext, "~> 0.26.0"}, {:jason, "~> 1.4.0"}, {:junit_formatter, "~> 3.4.0", only: [:test]}, {:lcov_ex, "~> 0.3.0", only: [:dev, :test], runtime: false}, {:mix_audit, "~> 2.1.0", only: [:dev, :test], runtime: false}, + {:nimble_csv, "~> 1.2.0"}, {:pg_ranges, "~> 1.1.0"}, {:phoenix, "~> 1.7.0"}, {:phoenix_ecto, "~> 4.6.0"}, - {:phoenix_view, "~> 2.0.0"}, {:phoenix_live_dashboard, "~> 0.8.0"}, + {:phoenix_view, "~> 2.0.0"}, {:plug_cowboy, "~> 2.7.0"}, {:postgrex, "~> 0.20.0"}, {:prom_ex, "~> 1.11.0"}, + {:req, "~> 0.5.0"}, {:sobelow, "~> 0.13", only: [:dev, :test], runtime: false}, {:telemetry_metrics, "~> 1.1.0"}, - {:telemetry_poller, "~> 1.1.0"} + {:telemetry_poller, "~> 1.1.0"}, + {:xlsx_reader, "~> 0.8.0"} ] end diff --git a/mix.lock b/mix.lock index 099d3c5..d9ba816 100644 --- a/mix.lock +++ b/mix.lock @@ -12,9 +12,12 @@ "decimal": {:hex, :decimal, "2.3.0", "3ad6255aa77b4a3c4f818171b12d237500e63525c2fd056699967a3e7ea20f62", [:mix], [], "hexpm", "a4d66355cb29cb47c3cf30e71329e58361cfcb37c34235ef3bf1d7bf3773aeac"}, "dialyxir": {:hex, :dialyxir, "1.4.5", "ca1571ac18e0f88d4ab245f0b60fa31ff1b12cbae2b11bd25d207f865e8ae78a", [:mix], [{:erlex, ">= 0.2.7", [hex: :erlex, repo: "hexpm", optional: false]}], "hexpm", "b0fb08bb8107c750db5c0b324fa2df5ceaa0f9307690ee3c1f6ba5b9eb5d35c3"}, "dns_cluster": {:hex, :dns_cluster, "0.2.0", "aa8eb46e3bd0326bd67b84790c561733b25c5ba2fe3c7e36f28e88f384ebcb33", [:mix], [], "hexpm", "ba6f1893411c69c01b9e8e8f772062535a4cf70f3f35bcc964a324078d8c8240"}, + "earmark_parser": {:hex, :earmark_parser, "1.4.44", "f20830dd6b5c77afe2b063777ddbbff09f9759396500cdbe7523efd58d7a339c", [:mix], [], "hexpm", "4778ac752b4701a5599215f7030989c989ffdc4f6df457c5f36938cc2d2a2750"}, "ecto": {:hex, :ecto, "3.12.5", "4a312960ce612e17337e7cefcf9be45b95a3be6b36b6f94dfb3d8c361d631866", [:mix], [{:decimal, "~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "6eb18e80bef8bb57e17f5a7f068a1719fbda384d40fc37acb8eb8aeca493b6ea"}, "ecto_sql": {:hex, :ecto_sql, "3.12.1", "c0d0d60e85d9ff4631f12bafa454bc392ce8b9ec83531a412c12a0d415a3a4d0", [:mix], [{:db_connection, "~> 2.4.1 or ~> 2.5", [hex: :db_connection, repo: "hexpm", optional: false]}, {:ecto, "~> 3.12", [hex: :ecto, repo: "hexpm", optional: false]}, {:myxql, "~> 0.7", [hex: :myxql, repo: "hexpm", optional: true]}, {:postgrex, "~> 0.19 or ~> 1.0", [hex: :postgrex, repo: "hexpm", optional: true]}, {:tds, "~> 2.1.1 or ~> 2.2", [hex: :tds, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4.0 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "aff5b958a899762c5f09028c847569f7dfb9cc9d63bdb8133bff8a5546de6bf5"}, + "elixlsx": {:hex, :elixlsx, "0.6.0", "858c2c821ab52f4ca0988adce188d19f3b239a4fff8b36b26cd81ec8af9b2ab3", [:mix], [], "hexpm", "c4766f47afea075a85950a5c6fe981e98b8b8a30cc076382aaacf2bb8dbcd25d"}, "erlex": {:hex, :erlex, "0.2.7", "810e8725f96ab74d17aac676e748627a07bc87eb950d2b83acd29dc047a30595", [:mix], [], "hexpm", "3ed95f79d1a844c3f6bf0cea61e0d5612a42ce56da9c03f01df538685365efb0"}, + "ex_doc": {:hex, :ex_doc, "0.37.3", "f7816881a443cd77872b7d6118e8a55f547f49903aef8747dbcb345a75b462f9", [:mix], [{:earmark_parser, "~> 1.4.42", [hex: :earmark_parser, repo: "hexpm", optional: false]}, {:makeup_c, ">= 0.1.0", [hex: :makeup_c, repo: "hexpm", optional: true]}, {:makeup_elixir, "~> 0.14 or ~> 1.0", [hex: :makeup_elixir, repo: "hexpm", optional: false]}, {:makeup_erlang, "~> 0.1 or ~> 1.0", [hex: :makeup_erlang, repo: "hexpm", optional: false]}, {:makeup_html, ">= 0.1.0", [hex: :makeup_html, repo: "hexpm", optional: true]}], "hexpm", "e6aebca7156e7c29b5da4daa17f6361205b2ae5f26e5c7d8ca0d3f7e18972233"}, "expo": {:hex, :expo, "1.1.0", "f7b9ed7fb5745ebe1eeedf3d6f29226c5dd52897ac67c0f8af62a07e661e5c75", [:mix], [], "hexpm", "fbadf93f4700fb44c331362177bdca9eeb8097e8b0ef525c9cc501cb9917c960"}, "file_system": {:hex, :file_system, "1.1.0", "08d232062284546c6c34426997dd7ef6ec9f8bbd090eb91780283c9016840e8f", [:mix], [], "hexpm", "bfcf81244f416871f2a2e15c1b515287faa5db9c6bcf290222206d120b3d43f6"}, "finch": {:hex, :finch, "0.19.0", "c644641491ea854fc5c1bbaef36bfc764e3f08e7185e1f084e35e0672241b76d", [:mix], [{:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:mint, "~> 1.6.2 or ~> 1.7", [hex: :mint, repo: "hexpm", optional: false]}, {:nimble_options, "~> 0.4 or ~> 1.0", [hex: :nimble_options, repo: "hexpm", optional: false]}, {:nimble_pool, "~> 1.1", [hex: :nimble_pool, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "fc5324ce209125d1e2fa0fcd2634601c52a787aff1cd33ee833664a5af4ea2b6"}, @@ -23,9 +26,13 @@ "jason": {:hex, :jason, "1.4.4", "b9226785a9aa77b6857ca22832cffa5d5011a667207eb2a0ad56adb5db443b8a", [:mix], [{:decimal, "~> 1.0 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: true]}], "hexpm", "c5eb0cab91f094599f94d55bc63409236a8ec69a21a67814529e8d5f6cc90b3b"}, "junit_formatter": {:hex, :junit_formatter, "3.4.0", "d0e8db6c34dab6d3c4154c3b46b21540db1109ae709d6cf99ba7e7a2ce4b1ac2", [:mix], [], "hexpm", "bb36e2ae83f1ced6ab931c4ce51dd3dbef1ef61bb4932412e173b0cfa259dacd"}, "lcov_ex": {:hex, :lcov_ex, "0.3.4", "f48aed787db0d1cff1409db391f442cdbc0af0f860dbc326430030027e6ded36", [:mix], [], "hexpm", "c3987b6aeadd78d4b7933fa9cc4de3bd69d34f0fae39bad908f79a7ceea957e5"}, + "makeup": {:hex, :makeup, "1.2.1", "e90ac1c65589ef354378def3ba19d401e739ee7ee06fb47f94c687016e3713d1", [:mix], [{:nimble_parsec, "~> 1.4", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm", "d36484867b0bae0fea568d10131197a4c2e47056a6fbe84922bf6ba71c8d17ce"}, + "makeup_elixir": {:hex, :makeup_elixir, "1.0.1", "e928a4f984e795e41e3abd27bfc09f51db16ab8ba1aebdba2b3a575437efafc2", [:mix], [{:makeup, "~> 1.0", [hex: :makeup, repo: "hexpm", optional: false]}, {:nimble_parsec, "~> 1.2.3 or ~> 1.3", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm", "7284900d412a3e5cfd97fdaed4f5ed389b8f2b4cb49efc0eb3bd10e2febf9507"}, + "makeup_erlang": {:hex, :makeup_erlang, "1.0.2", "03e1804074b3aa64d5fad7aa64601ed0fb395337b982d9bcf04029d68d51b6a7", [:mix], [{:makeup, "~> 1.0", [hex: :makeup, repo: "hexpm", optional: false]}], "hexpm", "af33ff7ef368d5893e4a267933e7744e46ce3cf1f61e2dccf53a111ed3aa3727"}, "mime": {:hex, :mime, "2.0.6", "8f18486773d9b15f95f4f4f1e39b710045fa1de891fada4516559967276e4dc2", [:mix], [], "hexpm", "c9945363a6b26d747389aac3643f8e0e09d30499a138ad64fe8fd1d13d9b153e"}, "mint": {:hex, :mint, "1.7.1", "113fdb2b2f3b59e47c7955971854641c61f378549d73e829e1768de90fc1abf1", [:mix], [{:castore, "~> 0.1.0 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: true]}, {:hpax, "~> 0.1.1 or ~> 0.2.0 or ~> 1.0", [hex: :hpax, repo: "hexpm", optional: false]}], "hexpm", "fceba0a4d0f24301ddee3024ae116df1c3f4bb7a563a731f45fdfeb9d39a231b"}, "mix_audit": {:hex, :mix_audit, "2.1.4", "0a23d5b07350cdd69001c13882a4f5fb9f90fbd4cbf2ebc190a2ee0d187ea3e9", [:make, :mix], [{:jason, "~> 1.4", [hex: :jason, repo: "hexpm", optional: false]}, {:yaml_elixir, "~> 2.11", [hex: :yaml_elixir, repo: "hexpm", optional: false]}], "hexpm", "fd807653cc8c1cada2911129c7eb9e985e3cc76ebf26f4dd628bb25bbcaa7099"}, + "nimble_csv": {:hex, :nimble_csv, "1.2.0", "4e26385d260c61eba9d4412c71cea34421f296d5353f914afe3f2e71cce97722", [:mix], [], "hexpm", "d0628117fcc2148178b034044c55359b26966c6eaa8e2ce15777be3bbc91b12a"}, "nimble_options": {:hex, :nimble_options, "1.1.1", "e3a492d54d85fc3fd7c5baf411d9d2852922f66e69476317787a7b2bb000a61b", [:mix], [], "hexpm", "821b2470ca9442c4b6984882fe9bb0389371b8ddec4d45a9504f00a66f650b44"}, "nimble_parsec": {:hex, :nimble_parsec, "1.4.2", "8efba0122db06df95bfaa78f791344a89352ba04baedd3849593bfce4d0dc1c6", [:mix], [], "hexpm", "4b21398942dda052b403bbe1da991ccd03a053668d147d53fb8c4e0efe09c973"}, "nimble_pool": {:hex, :nimble_pool, "1.1.0", "bf9c29fbdcba3564a8b800d1eeb5a3c58f36e1e11d7b7fb2e084a643f645f06b", [:mix], [], "hexpm", "af2e4e6b34197db81f7aad230c1118eac993acc0dae6bc83bac0126d4ae0813a"}, @@ -40,12 +47,14 @@ "phoenix_pubsub": {:hex, :phoenix_pubsub, "2.1.3", "3168d78ba41835aecad272d5e8cd51aa87a7ac9eb836eabc42f6e57538e3731d", [:mix], [], "hexpm", "bba06bc1dcfd8cb086759f0edc94a8ba2bc8896d5331a1e2c2902bf8e36ee502"}, "phoenix_template": {:hex, :phoenix_template, "1.0.4", "e2092c132f3b5e5b2d49c96695342eb36d0ed514c5b252a77048d5969330d639", [:mix], [{:phoenix_html, "~> 2.14.2 or ~> 3.0 or ~> 4.0", [hex: :phoenix_html, repo: "hexpm", optional: true]}], "hexpm", "2c0c81f0e5c6753faf5cca2f229c9709919aba34fab866d3bc05060c9c444206"}, "phoenix_view": {:hex, :phoenix_view, "2.0.4", "b45c9d9cf15b3a1af5fb555c674b525391b6a1fe975f040fb4d913397b31abf4", [:mix], [{:phoenix_html, "~> 2.14.2 or ~> 3.0 or ~> 4.0", [hex: :phoenix_html, repo: "hexpm", optional: true]}, {:phoenix_template, "~> 1.0", [hex: :phoenix_template, repo: "hexpm", optional: false]}], "hexpm", "4e992022ce14f31fe57335db27a28154afcc94e9983266835bb3040243eb620b"}, - "plug": {:hex, :plug, "1.16.1", "40c74619c12f82736d2214557dedec2e9762029b2438d6d175c5074c933edc9d", [:mix], [{:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:plug_crypto, "~> 1.1.1 or ~> 1.2 or ~> 2.0", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4.3 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "a13ff6b9006b03d7e33874945b2755253841b238c34071ed85b0e86057f8cddc"}, + "plug": {:hex, :plug, "1.17.0", "a0832e7af4ae0f4819e0c08dd2e7482364937aea6a8a997a679f2cbb7e026b2e", [:mix], [{:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:plug_crypto, "~> 1.1.1 or ~> 1.2 or ~> 2.0", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4.3 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "f6692046652a69a00a5a21d0b7e11fcf401064839d59d6b8787f23af55b1e6bc"}, "plug_cowboy": {:hex, :plug_cowboy, "2.7.3", "1304d36752e8bdde213cea59ef424ca932910a91a07ef9f3874be709c4ddb94b", [:mix], [{:cowboy, "~> 2.7", [hex: :cowboy, repo: "hexpm", optional: false]}, {:cowboy_telemetry, "~> 0.3", [hex: :cowboy_telemetry, repo: "hexpm", optional: false]}, {:plug, "~> 1.14", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "77c95524b2aa5364b247fa17089029e73b951ebc1adeef429361eab0bb55819d"}, "plug_crypto": {:hex, :plug_crypto, "2.1.0", "f44309c2b06d249c27c8d3f65cfe08158ade08418cf540fd4f72d4d6863abb7b", [:mix], [], "hexpm", "131216a4b030b8f8ce0f26038bc4421ae60e4bb95c5cf5395e1421437824c4fa"}, "postgrex": {:hex, :postgrex, "0.20.0", "363ed03ab4757f6bc47942eff7720640795eb557e1935951c1626f0d303a3aed", [:mix], [{:db_connection, "~> 2.1", [hex: :db_connection, repo: "hexpm", optional: false]}, {:decimal, "~> 1.5 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:table, "~> 0.1.0", [hex: :table, repo: "hexpm", optional: true]}], "hexpm", "d36ef8b36f323d29505314f704e21a1a038e2dc387c6409ee0cd24144e187c0f"}, "prom_ex": {:hex, :prom_ex, "1.11.0", "1f6d67f2dead92224cb4f59beb3e4d319257c5728d9638b4a5e8ceb51a4f9c7e", [:mix], [{:absinthe, ">= 1.7.0", [hex: :absinthe, repo: "hexpm", optional: true]}, {:broadway, ">= 1.1.0", [hex: :broadway, repo: "hexpm", optional: true]}, {:ecto, ">= 3.11.0", [hex: :ecto, repo: "hexpm", optional: true]}, {:finch, "~> 0.18", [hex: :finch, repo: "hexpm", optional: false]}, {:jason, "~> 1.4", [hex: :jason, repo: "hexpm", optional: false]}, {:oban, ">= 2.10.0", [hex: :oban, repo: "hexpm", optional: true]}, {:octo_fetch, "~> 0.4", [hex: :octo_fetch, repo: "hexpm", optional: false]}, {:peep, "~> 3.0", [hex: :peep, repo: "hexpm", optional: false]}, {:phoenix, ">= 1.7.0", [hex: :phoenix, repo: "hexpm", optional: true]}, {:phoenix_live_view, ">= 0.20.0", [hex: :phoenix_live_view, repo: "hexpm", optional: true]}, {:plug, ">= 1.16.0", [hex: :plug, repo: "hexpm", optional: true]}, {:plug_cowboy, ">= 2.6.0", [hex: :plug_cowboy, repo: "hexpm", optional: true]}, {:telemetry, ">= 1.0.0", [hex: :telemetry, repo: "hexpm", optional: false]}, {:telemetry_metrics, "~> 1.0", [hex: :telemetry_metrics, repo: "hexpm", optional: false]}, {:telemetry_metrics_prometheus_core, "~> 1.2", [hex: :telemetry_metrics_prometheus_core, repo: "hexpm", optional: false]}, {:telemetry_poller, "~> 1.1", [hex: :telemetry_poller, repo: "hexpm", optional: false]}], "hexpm", "76b074bc3730f0802978a7eb5c7091a65473eaaf07e99ec9e933138dcc327805"}, "ranch": {:hex, :ranch, "2.2.0", "25528f82bc8d7c6152c57666ca99ec716510fe0925cb188172f41ce93117b1b0", [:make, :rebar3], [], "hexpm", "fa0b99a1780c80218a4197a59ea8d3bdae32fbff7e88527d7d8a4787eff4f8e7"}, + "req": {:hex, :req, "0.5.8", "50d8d65279d6e343a5e46980ac2a70e97136182950833a1968b371e753f6a662", [:mix], [{:brotli, "~> 0.3.1", [hex: :brotli, repo: "hexpm", optional: true]}, {:ezstd, "~> 1.0", [hex: :ezstd, repo: "hexpm", optional: true]}, {:finch, "~> 0.17", [hex: :finch, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}, {:mime, "~> 2.0.6 or ~> 2.1", [hex: :mime, repo: "hexpm", optional: false]}, {:nimble_csv, "~> 1.0", [hex: :nimble_csv, repo: "hexpm", optional: true]}, {:plug, "~> 1.0", [hex: :plug, repo: "hexpm", optional: true]}], "hexpm", "d7fc5898a566477e174f26887821a3c5082b243885520ee4b45555f5d53f40ef"}, + "saxy": {:hex, :saxy, "1.6.0", "02cb4e9bd045f25ac0c70fae8164754878327ee393c338a090288210b02317ee", [:mix], [], "hexpm", "ef42eb4ac983ca77d650fbdb68368b26570f6cc5895f0faa04d34a6f384abad3"}, "sobelow": {:hex, :sobelow, "0.13.0", "218afe9075904793f5c64b8837cc356e493d88fddde126a463839351870b8d1e", [:mix], [{:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "cd6e9026b85fc35d7529da14f95e85a078d9dd1907a9097b3ba6ac7ebbe34a0d"}, "ssl_verify_fun": {:hex, :ssl_verify_fun, "1.1.7", "354c321cf377240c7b8716899e182ce4890c5938111a1296add3ec74cf1715df", [:make, :mix, :rebar3], [], "hexpm", "fe4c190e8f37401d30167c8c405eda19469f34577987c76dde613e838bbc67f8"}, "telemetry": {:hex, :telemetry, "1.3.0", "fedebbae410d715cf8e7062c96a1ef32ec22e764197f70cda73d82778d61e7a2", [:rebar3], [], "hexpm", "7015fc8919dbe63764f4b4b87a95b7c0996bd539e0d499be6ec9d7f3875b79e6"}, @@ -54,6 +63,7 @@ "telemetry_poller": {:hex, :telemetry_poller, "1.1.0", "58fa7c216257291caaf8d05678c8d01bd45f4bdbc1286838a28c4bb62ef32999", [:rebar3], [{:telemetry, "~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "9eb9d9cbfd81cbd7cdd24682f8711b6e2b691289a0de6826e58452f28c103c8f"}, "websock": {:hex, :websock, "0.5.3", "2f69a6ebe810328555b6fe5c831a851f485e303a7c8ce6c5f675abeb20ebdadc", [:mix], [], "hexpm", "6105453d7fac22c712ad66fab1d45abdf049868f253cf719b625151460b8b453"}, "websock_adapter": {:hex, :websock_adapter, "0.5.8", "3b97dc94e407e2d1fc666b2fb9acf6be81a1798a2602294aac000260a7c4a47d", [:mix], [{:bandit, ">= 0.6.0", [hex: :bandit, repo: "hexpm", optional: true]}, {:plug, "~> 1.14", [hex: :plug, repo: "hexpm", optional: false]}, {:plug_cowboy, "~> 2.6", [hex: :plug_cowboy, repo: "hexpm", optional: true]}, {:websock, "~> 0.5", [hex: :websock, repo: "hexpm", optional: false]}], "hexpm", "315b9a1865552212b5f35140ad194e67ce31af45bcee443d4ecb96b5fd3f3782"}, + "xlsx_reader": {:hex, :xlsx_reader, "0.8.8", "fbb29049548ff687f03a2873f2eb0d9057e47eb69cafb07f44988f030fb620b7", [:mix], [{:decimal, "~> 1.0 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: true]}, {:saxy, "~> 1.5", [hex: :saxy, repo: "hexpm", optional: false]}], "hexpm", "642d979a3a156b150bb76a89998a130483e1c399fa32e8d3a66abc1d9799dbd7"}, "yamerl": {:hex, :yamerl, "0.10.0", "4ff81fee2f1f6a46f1700c0d880b24d193ddb74bd14ef42cb0bcf46e81ef2f8e", [:rebar3], [], "hexpm", "346adb2963f1051dc837a2364e4acf6eb7d80097c0f53cbdc3046ec8ec4b4e6e"}, "yaml_elixir": {:hex, :yaml_elixir, "2.11.0", "9e9ccd134e861c66b84825a3542a1c22ba33f338d82c07282f4f1f52d847bd50", [:mix], [{:yamerl, "~> 0.10", [hex: :yamerl, repo: "hexpm", optional: false]}], "hexpm", "53cc28357ee7eb952344995787f4bb8cc3cecbf189652236e9b163e8ce1bc242"}, } diff --git a/priv/growth/indicators/arm_circumference_for_age.csv b/priv/growth/indicators/arm_circumference_for_age.csv new file mode 100644 index 0000000..1dda5ec --- /dev/null +++ b/priv/growth/indicators/arm_circumference_for_age.csv @@ -0,0 +1,3649 @@ +source,category,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-girls-3-5-zscores.xlsx,age,female,month,3,-0.17330000000000001,13.0284,0.082629999999999995,10.199999999999999,11.1,12,13,14.2,15.4,16.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,4,-0.17330000000000001,13.3649,0.082979999999999998,10.5,11.3,12.3,13.4,14.5,15.8,17.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,5,-0.17330000000000001,13.6061,0.083250000000000005,10.7,11.5,12.5,13.6,14.8,16.100000000000001,17.600000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,6,-0.17330000000000001,13.777100000000001,0.083430000000000004,10.8,11.7,12.7,13.8,15,16.3,17.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,7,-0.17330000000000001,13.9018,0.083519999999999997,10.9,11.8,12.8,13.9,15.1,16.5,18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,8,-0.17330000000000001,13.995200000000001,0.083510000000000001,11,11.9,12.9,14,15.2,16.600000000000001,18.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,9,-0.17330000000000001,14.0665,0.083419999999999994,11,11.9,12.9,14.1,15.3,16.7,18.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,10,-0.17330000000000001,14.121700000000001,0.083260000000000001,11.1,12,13,14.1,15.4,16.7,18.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,11,-0.17330000000000001,14.166700000000001,0.083049999999999999,11.1,12,13,14.2,15.4,16.8,18.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,age,female,month,12,-0.17330000000000001,14.2065,0.082799999999999999,11.1,12.1,13.1,14.2,15.4,16.8,18.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,age,female,month,13,-0.17330000000000001,14.2455,0.082540000000000002,11.2,12.1,13.1,14.2,15.5,16.8,18.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,age,female,month,14,-0.17330000000000001,14.2859,0.082269999999999996,11.2,12.1,13.2,14.3,15.5,16.899999999999999,18.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,15,-0.17330000000000001,14.328900000000001,0.082019999999999996,11.3,12.2,13.2,14.3,15.6,16.899999999999999,18.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,16,-0.17330000000000001,14.3752,0.081790000000000002,11.3,12.2,13.3,14.4,15.6,17,18.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,17,-0.17330000000000001,14.4254,0.081600000000000006,11.4,12.3,13.3,14.4,15.7,17,18.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,18,-0.17330000000000001,14.4795,0.081430000000000002,11.4,12.3,13.4,14.5,15.7,17.100000000000001,18.600000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,19,-0.17330000000000001,14.5372,0.081309999999999993,11.4,12.4,13.4,14.5,15.8,17.100000000000001,18.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,20,-0.17330000000000001,14.598699999999999,0.081229999999999997,11.5,12.4,13.5,14.6,15.8,17.2,18.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,21,-0.17330000000000001,14.6639,0.081180000000000002,11.6,12.5,13.5,14.7,15.9,17.3,18.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,22,-0.17330000000000001,14.732799999999999,0.081180000000000002,11.6,12.6,13.6,14.7,16,17.399999999999999,18.899999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,23,-0.17330000000000001,14.8049,0.081210000000000004,11.7,12.6,13.7,14.8,16.100000000000001,17.5,19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,24,-0.17330000000000001,14.8795,0.081269999999999995,11.7,12.7,13.7,14.9,16.100000000000001,17.5,19.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,25,-0.17330000000000001,14.9559,0.081360000000000002,11.8,12.7,13.8,15,16.2,17.600000000000001,19.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,26,-0.17330000000000001,15.0327,0.081470000000000001,11.8,12.8,13.9,15,16.3,17.7,19.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,age,female,month,27,-0.17330000000000001,15.108499999999999,0.081610000000000002,11.9,12.9,13.9,15.1,16.399999999999999,17.8,19.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,28,-0.17330000000000001,15.181699999999999,0.081780000000000005,11.9,12.9,14,15.2,16.5,17.899999999999999,19.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,29,-0.17330000000000001,15.2514,0.081960000000000005,12,13,14.1,15.3,16.600000000000001,18,19.600000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,30,-0.17330000000000001,15.316800000000001,0.082170000000000007,12,13,14.1,15.3,16.600000000000001,18.100000000000001,19.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,31,-0.17330000000000001,15.3779,0.082400000000000001,12.1,13.1,14.2,15.4,16.7,18.2,19.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,32,-0.17330000000000001,15.4351,0.082650000000000001,12.1,13.1,14.2,15.4,16.8,18.3,19.899999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,33,-0.17330000000000001,15.4895,0.082919999999999994,12.1,13.2,14.3,15.5,16.8,18.3,20 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,34,-0.17330000000000001,15.542299999999999,0.083199999999999996,12.2,13.2,14.3,15.5,16.899999999999999,18.399999999999999,20.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,35,-0.17330000000000001,15.594099999999999,0.083510000000000001,12.2,13.2,14.4,15.6,17,18.5,20.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,36,-0.17330000000000001,15.6456,0.083830000000000002,12.2,13.3,14.4,15.6,17,18.5,20.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,37,-0.17330000000000001,15.696899999999999,0.084159999999999999,12.3,13.3,14.4,15.7,17.100000000000001,18.600000000000001,20.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,age,female,month,38,-0.17330000000000001,15.7483,0.084510000000000002,12.3,13.3,14.5,15.7,17.100000000000001,18.7,20.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,39,-0.17330000000000001,15.7997,0.084870000000000001,12.3,13.4,14.5,15.8,17.2,18.8,20.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,40,-0.17330000000000001,15.850899999999999,0.085250000000000006,12.3,13.4,14.6,15.9,17.3,18.8,20.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,41,-0.17330000000000001,15.9016,0.085629999999999998,12.4,13.4,14.6,15.9,17.3,18.899999999999999,20.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,42,-0.17330000000000001,15.9518,0.086019999999999999,12.4,13.5,14.6,16,17.399999999999999,19,20.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,43,-0.17330000000000001,16.0016,0.086419999999999997,12.4,13.5,14.7,16,17.5,19.100000000000001,20.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,44,-0.17330000000000001,16.050899999999999,0.086830000000000004,12.4,13.5,14.7,16.100000000000001,17.5,19.100000000000001,21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,45,-0.17330000000000001,16.100100000000001,0.087230000000000002,12.5,13.6,14.8,16.100000000000001,17.600000000000001,19.2,21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,46,-0.17330000000000001,16.149100000000001,0.087650000000000006,12.5,13.6,14.8,16.100000000000001,17.600000000000001,19.3,21.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,47,-0.17330000000000001,16.1983,0.088059999999999999,12.5,13.6,14.8,16.2,17.7,19.399999999999999,21.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,48,-0.17330000000000001,16.247699999999998,0.088480000000000003,12.5,13.6,14.9,16.2,17.8,19.399999999999999,21.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,age,female,month,49,-0.17330000000000001,16.2974,0.088900000000000007,12.6,13.7,14.9,16.3,17.8,19.5,21.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,age,female,month,50,-0.17330000000000001,16.3475,0.089319999999999997,12.6,13.7,15,16.3,17.899999999999999,19.600000000000001,21.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,51,-0.17330000000000001,16.398099999999999,0.08974,12.6,13.7,15,16.399999999999999,18,19.7,21.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,52,-0.17330000000000001,16.449000000000002,0.090160000000000004,12.6,13.8,15,16.399999999999999,18,19.8,21.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,53,-0.17330000000000001,16.5001,0.090569999999999998,12.7,13.8,15.1,16.5,18.100000000000001,19.8,21.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,54,-0.17330000000000001,16.551400000000001,0.090990000000000001,12.7,13.8,15.1,16.600000000000001,18.100000000000001,19.899999999999999,21.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,55,-0.17330000000000001,16.602599999999999,0.091399999999999995,12.7,13.9,15.2,16.600000000000001,18.2,20,22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,56,-0.17330000000000001,16.653400000000001,0.091810000000000003,12.7,13.9,15.2,16.7,18.3,20.100000000000001,22.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,female,month,57,-0.17330000000000001,16.703900000000001,0.09221,12.7,13.9,15.2,16.7,18.3,20.100000000000001,22.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-girls-3-5-zscores.xlsx,age,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,age,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,age,female,month,60,-0.17330000000000001,16.852599999999999,0.093410000000000007,12.8,14,15.4,16.899999999999999,18.5,20.399999999999999,22.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,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,age,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,age,male,month,5,0.30919999999999997,14.0585,0.075660000000000005,11.1,12,13,14.1,15.2,16.3,17.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,6,0.27550000000000002,14.238899999999999,0.076009999999999994,11.3,12.2,13.2,14.2,15.4,16.5,17.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,7,0.24529999999999999,14.367800000000001,0.076289999999999997,11.4,12.3,13.3,14.4,15.5,16.7,18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,8,0.21790000000000001,14.459099999999999,0.076499999999999999,11.4,12.4,13.4,14.5,15.6,16.8,18.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,9,0.1925,14.5245,0.076649999999999996,11.5,12.4,13.4,14.5,15.7,16.899999999999999,18.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,age,male,month,10,0.16900000000000001,14.5733,0.076759999999999995,11.5,12.5,13.5,14.6,15.7,17,18.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,11,0.1469,14.6119,0.076829999999999996,11.6,12.5,13.5,14.6,15.8,17,18.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,12,0.12609999999999999,14.6449,0.07689,11.6,12.5,13.6,14.6,15.8,17.100000000000001,18.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,13,0.10639999999999999,14.675800000000001,0.076939999999999995,11.6,12.6,13.6,14.7,15.8,17.100000000000001,18.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,14,0.087599999999999997,14.706300000000001,0.076990000000000003,11.6,12.6,13.6,14.7,15.9,17.100000000000001,18.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,15,0.069699999999999998,14.738,0.077030000000000001,11.7,12.6,13.6,14.7,15.9,17.2,18.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,16,0.052600000000000001,14.7723,0.07707,11.7,12.7,13.7,14.8,16,17.2,18.600000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,17,0.036200000000000003,14.8095,0.077100000000000002,11.7,12.7,13.7,14.8,16,17.3,18.600000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,18,0.020400000000000001,14.849600000000001,0.077130000000000004,11.8,12.7,13.7,14.8,16,17.3,18.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,age,male,month,19,0.0051000000000000004,14.8926,0.077170000000000002,11.8,12.8,13.8,14.9,16.100000000000001,17.399999999999999,18.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,20,-0.0097000000000000003,14.938800000000001,0.077210000000000001,11.9,12.8,13.8,14.9,16.100000000000001,17.399999999999999,18.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,21,-0.023900000000000001,14.988300000000001,0.077249999999999999,11.9,12.8,13.9,15,16.2,17.5,18.899999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,22,-0.0378,15.041,0.077310000000000004,11.9,12.9,13.9,15,16.3,17.600000000000001,19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,23,-0.051200000000000002,15.096399999999999,0.077380000000000004,12,12.9,14,15.1,16.3,17.600000000000001,19.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,24,-0.064299999999999996,15.153600000000001,0.077460000000000001,12,13,14,15.2,16.399999999999999,17.7,19.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,age,male,month,25,-0.076999999999999999,15.211499999999999,0.077549999999999994,12.1,13,14.1,15.2,16.399999999999999,17.8,19.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,age,male,month,26,-0.089399999999999993,15.269299999999999,0.077670000000000003,12.1,13.1,14.1,15.3,16.5,17.899999999999999,19.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,27,-0.1014,15.325900000000001,0.077799999999999994,12.2,13.1,14.2,15.3,16.600000000000001,17.899999999999999,19.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,28,-0.1132,15.380800000000001,0.077939999999999995,12.2,13.2,14.2,15.4,16.600000000000001,18,19.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,29,-0.12479999999999999,15.4336,0.078100000000000003,12.3,13.2,14.3,15.4,16.7,18.100000000000001,19.600000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,30,-0.13600000000000001,15.4839,0.078270000000000006,12.3,13.3,14.3,15.5,16.8,18.100000000000001,19.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,age,male,month,31,-0.14699999999999999,15.531700000000001,0.078460000000000002,12.3,13.3,14.4,15.5,16.8,18.2,19.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,age,male,month,32,-0.1578,15.5771,0.078659999999999994,12.4,13.3,14.4,15.6,16.899999999999999,18.3,19.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,33,-0.16839999999999999,15.620100000000001,0.078869999999999996,12.4,13.4,14.4,15.6,16.899999999999999,18.3,19.899999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,34,-0.17879999999999999,15.661099999999999,0.079089999999999994,12.4,13.4,14.5,15.7,17,18.399999999999999,20 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,35,-0.189,15.7003,0.079329999999999998,12.4,13.4,14.5,15.7,17,18.399999999999999,20 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,36,-0.19889999999999999,15.738,0.079560000000000006,12.5,13.5,14.5,15.7,17.100000000000001,18.5,20.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,37,-0.2087,15.7745,0.079810000000000006,12.5,13.5,14.6,15.8,17.100000000000001,18.600000000000001,20.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,age,male,month,38,-0.21840000000000001,15.8101,0.080060000000000006,12.5,13.5,14.6,15.8,17.100000000000001,18.600000000000001,20.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,age,male,month,39,-0.2278,15.845000000000001,0.080320000000000003,12.5,13.5,14.6,15.8,17.2,18.7,20.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,40,-0.23719999999999999,15.879300000000001,0.080579999999999999,12.6,13.6,14.7,15.9,17.2,18.7,20.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,41,-0.24629999999999999,15.9132,0.080850000000000005,12.6,13.6,14.7,15.9,17.3,18.8,20.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,42,-0.25530000000000003,15.9467,0.081119999999999998,12.6,13.6,14.7,15.9,17.3,18.8,20.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,43,-0.26419999999999999,15.979699999999999,0.081390000000000004,12.6,13.6,14.7,16,17.399999999999999,18.899999999999999,20.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,44,-0.27300000000000002,16.0124,0.081659999999999996,12.6,13.6,14.8,16,17.399999999999999,18.899999999999999,20.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,45,-0.28160000000000002,16.044699999999999,0.081939999999999999,12.7,13.7,14.8,16,17.399999999999999,19,20.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,age,male,month,46,-0.29010000000000002,16.076699999999999,0.082220000000000001,12.7,13.7,14.8,16.100000000000001,17.5,19,20.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,47,-0.29849999999999999,16.108499999999999,0.082500000000000004,12.7,13.7,14.8,16.100000000000001,17.5,19.100000000000001,20.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,48,-0.30669999999999997,16.14,0.082780000000000006,12.7,13.7,14.9,16.100000000000001,17.600000000000001,19.100000000000001,20.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,49,-0.31490000000000001,16.171399999999998,0.083070000000000005,12.7,13.8,14.9,16.2,17.600000000000001,19.2,21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,50,-0.32290000000000002,16.2027,0.083349999999999994,12.7,13.8,14.9,16.2,17.600000000000001,19.2,21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,51,-0.33090000000000003,16.234000000000002,0.083640000000000006,12.8,13.8,14.9,16.2,17.7,19.3,21.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,52,-0.3387,16.2654,0.083919999999999995,12.8,13.8,15,16.3,17.7,19.3,21.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,age,male,month,53,-0.34639999999999999,16.296800000000001,0.084209999999999993,12.8,13.8,15,16.3,17.8,19.399999999999999,21.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,age,male,month,54,-0.35410000000000003,16.328299999999999,0.084500000000000006,12.8,13.9,15,16.3,17.8,19.399999999999999,21.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,55,-0.36159999999999998,16.3599,0.084790000000000004,12.8,13.9,15,16.399999999999999,17.8,19.5,21.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,56,-0.36909999999999998,16.3916,0.085080000000000003,12.8,13.9,15.1,16.399999999999999,17.899999999999999,19.5,21.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,57,-0.3765,16.423300000000001,0.085370000000000001,12.9,13.9,15.1,16.399999999999999,17.899999999999999,19.600000000000001,21.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,58,-0.38379999999999997,16.455100000000002,0.08566,12.9,13.9,15.1,16.5,18,19.600000000000001,21.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,59,-0.39100000000000001,16.487100000000002,0.085949999999999999,12.9,14,15.2,16.5,18,19.7,21.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/acfa-boys-3-5-zscores.xlsx,age,male,month,60,-0.39810000000000001,16.519100000000002,0.086239999999999997,12.9,14,15.2,16.5,18,19.8,21.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,91,-0.17330000000000001,13.0245,0.082619999999999999,10.218,11.066000000000001,11.999000000000001,13.023999999999999,14.154999999999999,15.401999999999999,16.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,92,-0.17330000000000001,13.037100000000001,0.082640000000000005,10.227,11.077,12.01,13.037000000000001,14.169,15.417,16.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,93,-0.17330000000000001,13.0496,0.082650000000000001,10.237,11.087,12.021000000000001,13.05,14.182,15.432,16.814 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,94,-0.17330000000000001,13.061999999999999,0.082659999999999997,10.246,11.097,12.032999999999999,13.061999999999999,14.196,15.446999999999999,16.829999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,95,-0.17330000000000001,13.074400000000001,0.082669999999999993,10.256,11.108000000000001,12.044,13.074,14.21,15.462,16.847000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,96,-0.17330000000000001,13.086600000000001,0.08269,10.265000000000001,11.118,12.055,13.087,14.223000000000001,15.477,16.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,97,-0.17330000000000001,13.098699999999999,0.082699999999999996,10.273999999999999,11.128,12.066000000000001,13.099,14.237,15.492000000000001,16.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,98,-0.17330000000000001,13.1107,0.082710000000000006,10.282999999999999,11.138,12.077,13.111000000000001,14.25,15.507,16.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,99,-0.17330000000000001,13.1226,0.082729999999999998,10.292,11.147,12.087999999999999,13.122999999999999,14.263,15.521000000000001,16.911999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,100,-0.17330000000000001,13.134499999999999,0.082739999999999994,10.301,11.157,12.099,13.134,14.276,15.536,16.928000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,101,-0.17330000000000001,13.1462,0.082750000000000004,10.31,11.167,12.109,13.146000000000001,14.289,15.55,16.943000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,102,-0.17330000000000001,13.1578,0.08276,10.318,11.177,12.12,13.157999999999999,14.302,15.564,16.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,103,-0.17330000000000001,13.1693,0.082769999999999996,10.327,11.186,12.13,13.169,14.314,15.577999999999999,16.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,104,-0.17330000000000001,13.1806,0.082790000000000002,10.335000000000001,11.195,12.14,13.180999999999999,14.327,15.592000000000001,16.989999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,105,-0.17330000000000001,13.1919,0.082799999999999999,10.343999999999999,11.205,12.151,13.192,14.339,15.606,17.004999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,106,-0.17330000000000001,13.203099999999999,0.082809999999999995,10.352,11.214,12.161,13.202999999999999,14.352,15.619,17.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,107,-0.17330000000000001,13.2142,0.082820000000000005,10.361000000000001,11.223000000000001,12.170999999999999,13.214,14.364000000000001,15.632999999999999,17.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,108,-0.17330000000000001,13.225099999999999,0.082830000000000001,10.369,11.231999999999999,12.180999999999999,13.225,14.375999999999999,15.646000000000001,17.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,109,-0.17330000000000001,13.236000000000001,0.082839999999999997,10.377000000000001,11.241,12.191000000000001,13.236000000000001,14.388,15.659000000000001,17.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,110,-0.17330000000000001,13.246700000000001,0.082860000000000003,10.385,11.25,12.201000000000001,13.247,14.4,15.672000000000001,17.079000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,111,-0.17330000000000001,13.257400000000001,0.082869999999999999,10.393000000000001,11.259,12.21,13.257,14.412000000000001,15.685,17.093 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,112,-0.17330000000000001,13.267899999999999,0.082879999999999995,10.401,11.268000000000001,12.22,13.268000000000001,14.423,15.698,17.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,113,-0.17330000000000001,13.2783,0.082890000000000005,10.409000000000001,11.276,12.228999999999999,13.278,14.435,15.711,17.120999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,114,-0.17330000000000001,13.288600000000001,0.082900000000000001,10.417,11.285,12.239000000000001,13.289,14.446,15.723000000000001,17.135000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,115,-0.17330000000000001,13.2988,0.082909999999999998,10.423999999999999,11.292999999999999,12.247999999999999,13.298999999999999,14.457000000000001,15.736000000000001,17.149000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,116,-0.17330000000000001,13.3089,0.082919999999999994,10.432,11.301,12.257,13.308999999999999,14.468,15.747999999999999,17.161999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,117,-0.17330000000000001,13.318899999999999,0.082930000000000004,10.44,11.31,12.266,13.319000000000001,14.478999999999999,15.76,17.175999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,118,-0.17330000000000001,13.328799999999999,0.08294,10.446999999999999,11.318,12.275,13.329000000000001,14.49,15.772,17.189 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,119,-0.17330000000000001,13.3386,0.082960000000000006,10.454000000000001,11.326000000000001,12.284000000000001,13.339,14.500999999999999,15.784000000000001,17.202999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,120,-0.17330000000000001,13.3482,0.082970000000000002,10.461,11.334,12.292999999999999,13.348000000000001,14.512,15.795999999999999,17.216000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,121,-0.17330000000000001,13.357799999999999,0.082979999999999998,10.468999999999999,11.342000000000001,12.301,13.358000000000001,14.522,15.808,17.228999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,122,-0.17330000000000001,13.3672,0.082989999999999994,10.476000000000001,11.349,12.31,13.367000000000001,14.532999999999999,15.819000000000001,17.241 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,123,-0.17330000000000001,13.3766,0.083000000000000004,10.483000000000001,11.356999999999999,12.318,13.377000000000001,14.542999999999999,15.831,17.254000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,124,-0.17330000000000001,13.3858,0.08301,10.49,11.365,12.327,13.385999999999999,14.553000000000001,15.842000000000001,17.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,125,-0.17330000000000001,13.3949,0.083019999999999997,10.496,11.372,12.335000000000001,13.395,14.563000000000001,15.853,17.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,126,-0.17330000000000001,13.4039,0.083030000000000007,10.503,11.38,12.343,13.404,14.573,15.864000000000001,17.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,127,-0.17330000000000001,13.4129,0.083040000000000003,10.51,11.387,12.351000000000001,13.413,14.583,15.875,17.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,128,-0.17330000000000001,13.4217,0.083049999999999999,10.516999999999999,11.394,12.359,13.422000000000001,14.593,15.885999999999999,17.315000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,129,-0.17330000000000001,13.430400000000001,0.083059999999999995,10.523,11.401999999999999,12.367000000000001,13.43,14.602,15.896000000000001,17.327000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,130,-0.17330000000000001,13.439,0.083070000000000005,10.53,11.409000000000001,12.375,13.439,14.612,15.907,17.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,131,-0.17330000000000001,13.4475,0.083080000000000001,10.536,11.416,12.382999999999999,13.448,14.621,15.917,17.350000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,132,-0.17330000000000001,13.4559,0.083080000000000001,10.542,11.423,12.391,13.456,14.63,15.927,17.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,133,-0.17330000000000001,13.4642,0.083089999999999997,10.548999999999999,11.43,12.398,13.464,14.64,15.936999999999999,17.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,134,-0.17330000000000001,13.4724,0.083099999999999993,10.555,11.436,12.404999999999999,13.472,14.648999999999999,15.946999999999999,17.382999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,135,-0.17330000000000001,13.480499999999999,0.083110000000000003,10.561,11.443,12.413,13.48,14.657999999999999,15.957000000000001,17.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,136,-0.17330000000000001,13.4886,0.083119999999999999,10.567,11.45,12.42,13.489000000000001,14.667,15.967000000000001,17.405000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,137,-0.17330000000000001,13.496499999999999,0.083129999999999996,10.573,11.456,12.427,13.496,14.675000000000001,15.977,17.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,138,-0.17330000000000001,13.504300000000001,0.083140000000000006,10.579000000000001,11.462,12.433999999999999,13.504,14.683999999999999,15.986000000000001,17.425999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,139,-0.17330000000000001,13.5121,0.083150000000000002,10.584,11.468999999999999,12.441000000000001,13.512,14.693,15.996,17.437000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,140,-0.17330000000000001,13.5197,0.083159999999999998,10.59,11.475,12.448,13.52,14.701000000000001,16.004999999999999,17.446999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,141,-0.17330000000000001,13.5273,0.083159999999999998,10.596,11.481999999999999,12.455,13.526999999999999,14.709,16.013999999999999,17.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,142,-0.17330000000000001,13.534800000000001,0.083169999999999994,10.602,11.488,12.462,13.535,14.718,16.023,17.466999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,143,-0.17330000000000001,13.542199999999999,0.083180000000000004,10.606999999999999,11.494,12.468999999999999,13.542,14.726000000000001,16.032,17.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,144,-0.17330000000000001,13.5495,0.08319,10.612,11.5,12.475,13.55,14.734,16.041,17.486999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,145,-0.17330000000000001,13.556699999999999,0.083199999999999996,10.618,11.506,12.481999999999999,13.557,14.742000000000001,16.05,17.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,146,-0.17330000000000001,13.563800000000001,0.083210000000000006,10.622999999999999,11.510999999999999,12.488,13.564,14.75,16.059000000000001,17.507000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,147,-0.17330000000000001,13.5709,0.083210000000000006,10.629,11.516999999999999,12.494999999999999,13.571,14.757,16.067,17.515999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,148,-0.17330000000000001,13.5778,0.083220000000000002,10.634,11.523,12.500999999999999,13.577999999999999,14.765000000000001,16.076000000000001,17.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,149,-0.17330000000000001,13.5847,0.083229999999999998,10.638999999999999,11.529,12.507,13.585000000000001,14.773,16.084,17.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,150,-0.17330000000000001,13.5915,0.083239999999999995,10.644,11.534000000000001,12.513,13.592000000000001,14.78,16.093,17.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,151,-0.17330000000000001,13.5983,0.083239999999999995,10.648999999999999,11.54,12.52,13.598000000000001,14.788,16.100999999999999,17.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,152,-0.17330000000000001,13.604900000000001,0.083250000000000005,10.654,11.545,12.526,13.605,14.795,16.109000000000002,17.562000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,153,-0.17330000000000001,13.611499999999999,0.083260000000000001,10.659000000000001,11.551,12.532,13.612,14.802,16.117000000000001,17.571000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,154,-0.17330000000000001,13.618,0.083269999999999997,10.664,11.555999999999999,12.537000000000001,13.618,14.81,16.125,17.579999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,155,-0.17330000000000001,13.6244,0.083269999999999997,10.669,11.561,12.542999999999999,13.624000000000001,14.816000000000001,16.132999999999999,17.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,156,-0.17330000000000001,13.630800000000001,0.083280000000000007,10.673,11.567,12.548999999999999,13.631,14.824,16.140999999999998,17.597000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,157,-0.17330000000000001,13.6371,0.083290000000000003,10.678000000000001,11.571999999999999,12.555,13.637,14.831,16.148,17.606000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,158,-0.17330000000000001,13.6433,0.083290000000000003,10.683,11.577,12.56,13.643000000000001,14.837,16.155999999999999,17.614000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,159,-0.17330000000000001,13.6494,0.083299999999999999,10.686999999999999,11.582000000000001,12.566000000000001,13.648999999999999,14.843999999999999,16.163,17.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,160,-0.17330000000000001,13.6555,0.083309999999999995,10.692,11.587,12.571,13.656000000000001,14.851000000000001,16.170999999999999,17.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,161,-0.17330000000000001,13.6616,0.083309999999999995,10.696999999999999,11.592000000000001,12.577,13.662000000000001,14.858000000000001,16.178000000000001,17.638999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,162,-0.17330000000000001,13.6675,0.083320000000000005,10.701000000000001,11.597,12.582000000000001,13.667999999999999,14.864000000000001,16.184999999999999,17.646999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,163,-0.17330000000000001,13.673400000000001,0.083330000000000001,10.705,11.602,12.587999999999999,13.673,14.871,16.193000000000001,17.655000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,164,-0.17330000000000001,13.6792,0.083330000000000001,10.71,11.606999999999999,12.593,13.679,14.877000000000001,16.2,17.661999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,165,-0.17330000000000001,13.685,0.083339999999999997,10.714,11.611000000000001,12.598000000000001,13.685,14.882999999999999,16.207000000000001,17.670999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,166,-0.17330000000000001,13.6907,0.083349999999999994,10.718,11.616,12.603,13.691000000000001,14.89,16.213999999999999,17.678000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,167,-0.17330000000000001,13.696300000000001,0.083349999999999994,10.722,11.621,12.609,13.696,14.896000000000001,16.221,17.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,168,-0.17330000000000001,13.7019,0.083360000000000004,10.727,11.625,12.614000000000001,13.702,14.901999999999999,16.228000000000002,17.693000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,169,-0.17330000000000001,13.7074,0.083360000000000004,10.731,11.63,12.619,13.707000000000001,14.907999999999999,16.234000000000002,17.701000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,170,-0.17330000000000001,13.712899999999999,0.08337,10.734999999999999,11.634,12.624000000000001,13.712999999999999,14.914,16.241,17.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,171,-0.17330000000000001,13.718299999999999,0.08337,10.739000000000001,11.638999999999999,12.629,13.718,14.92,16.247,17.715 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,172,-0.17330000000000001,13.723699999999999,0.083379999999999996,10.743,11.643000000000001,12.632999999999999,13.724,14.926,16.254000000000001,17.722999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,173,-0.17330000000000001,13.728899999999999,0.083390000000000006,10.747,11.647,12.638,13.728999999999999,14.932,16.260999999999999,17.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,174,-0.17330000000000001,13.7342,0.083390000000000006,10.750999999999999,11.651999999999999,12.643000000000001,13.734,14.938000000000001,16.266999999999999,17.736999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,175,-0.17330000000000001,13.7394,0.083400000000000002,10.755000000000001,11.656000000000001,12.648,13.739000000000001,14.943,16.273,17.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,176,-0.17330000000000001,13.7445,0.083400000000000002,10.759,11.66,12.651999999999999,13.744,14.949,16.279,17.751000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,177,-0.17330000000000001,13.749599999999999,0.083409999999999998,10.762,11.664999999999999,12.657,13.75,14.955,16.286000000000001,17.757999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,178,-0.17330000000000001,13.7546,0.083409999999999998,10.766,11.669,12.661,13.755000000000001,14.96,16.292000000000002,17.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,179,-0.17330000000000001,13.759499999999999,0.083419999999999994,10.77,11.673,12.666,13.76,14.965999999999999,16.297999999999998,17.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,180,-0.17330000000000001,13.7645,0.083419999999999994,10.773999999999999,11.677,12.67,13.763999999999999,14.971,16.303999999999998,17.777999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,181,-0.17330000000000001,13.769299999999999,0.083430000000000004,10.776999999999999,11.680999999999999,12.675000000000001,13.769,14.976000000000001,16.309999999999999,17.783999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,182,-0.17330000000000001,13.774100000000001,0.083430000000000004,10.781000000000001,11.685,12.679,13.773999999999999,14.981999999999999,16.315000000000001,17.791 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,183,-0.17330000000000001,13.7789,0.083430000000000004,10.785,11.689,12.683999999999999,13.779,14.987,16.321000000000002,17.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,184,-0.17330000000000001,13.7836,0.08344,10.788,11.693,12.688000000000001,13.784000000000001,14.992000000000001,16.327000000000002,17.803000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,185,-0.17330000000000001,13.7883,0.08344,10.792,11.696999999999999,12.692,13.788,14.997,16.332999999999998,17.809999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,186,-0.17330000000000001,13.792899999999999,0.083449999999999996,10.795,11.7,12.696,13.792999999999999,15.002000000000001,16.338000000000001,17.815999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,187,-0.17330000000000001,13.797499999999999,0.083449999999999996,10.798999999999999,11.704000000000001,12.7,13.798,15.007,16.344000000000001,17.821999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,188,-0.17330000000000001,13.802,0.083449999999999996,10.802,11.708,12.705,13.802,15.012,16.349,17.827999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,189,-0.17330000000000001,13.8065,0.083460000000000006,10.805,11.712,12.709,13.805999999999999,15.016999999999999,16.355,17.834 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,190,-0.17330000000000001,13.8109,0.083460000000000006,10.808999999999999,11.715,12.712999999999999,13.811,15.022,16.36,17.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,191,-0.17330000000000001,13.815300000000001,0.083470000000000003,10.811999999999999,11.718999999999999,12.717000000000001,13.815,15.026999999999999,16.366,17.846 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,192,-0.17330000000000001,13.819699999999999,0.083470000000000003,10.815,11.723000000000001,12.721,13.82,15.032,16.370999999999999,17.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,193,-0.17330000000000001,13.824,0.083470000000000003,10.819000000000001,11.726000000000001,12.725,13.824,15.037000000000001,16.376000000000001,17.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,194,-0.17330000000000001,13.828200000000001,0.083479999999999999,10.821999999999999,11.73,12.728,13.827999999999999,15.041,16.381,17.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,195,-0.17330000000000001,13.8324,0.083479999999999999,10.824999999999999,11.733000000000001,12.731999999999999,13.832000000000001,15.045999999999999,16.385999999999999,17.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,196,-0.17330000000000001,13.836600000000001,0.083479999999999999,10.827999999999999,11.737,12.736000000000001,13.837,15.05,16.390999999999998,17.873999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,197,-0.17330000000000001,13.8407,0.083479999999999999,10.831,11.74,12.74,13.840999999999999,15.055,16.396000000000001,17.879000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,198,-0.17330000000000001,13.844799999999999,0.083489999999999995,10.834,11.744,12.743,13.845000000000001,15.06,16.401,17.885000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,199,-0.17330000000000001,13.8489,0.083489999999999995,10.837999999999999,11.747,12.747,13.849,15.064,16.405999999999999,17.890999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,200,-0.17330000000000001,13.8529,0.083489999999999995,10.840999999999999,11.75,12.750999999999999,13.853,15.068,16.411000000000001,17.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,201,-0.17330000000000001,13.8569,0.083489999999999995,10.843999999999999,11.754,12.755000000000001,13.856999999999999,15.073,16.416,17.901 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,202,-0.17330000000000001,13.860799999999999,0.083500000000000005,10.847,11.757,12.757999999999999,13.861000000000001,15.077,16.420000000000002,17.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,203,-0.17330000000000001,13.864699999999999,0.083500000000000005,10.85,11.76,12.762,13.865,15.081,16.425000000000001,17.911999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,204,-0.17330000000000001,13.868499999999999,0.083500000000000005,10.853,11.763,12.765000000000001,13.868,15.085000000000001,16.43,17.916 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,205,-0.17330000000000001,13.872299999999999,0.083500000000000005,10.856,11.766999999999999,12.769,13.872,15.09,16.434000000000001,17.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,206,-0.17330000000000001,13.876099999999999,0.083510000000000001,10.858000000000001,11.77,12.772,13.875999999999999,15.093999999999999,16.439,17.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,207,-0.17330000000000001,13.879899999999999,0.083510000000000001,10.861000000000001,11.773,12.776,13.88,15.098000000000001,16.443000000000001,17.931999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,208,-0.17330000000000001,13.883599999999999,0.083510000000000001,10.864000000000001,11.776,12.779,13.884,15.102,16.448,17.937000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,209,-0.17330000000000001,13.8872,0.083510000000000001,10.867000000000001,11.779,12.782,13.887,15.106,16.452000000000002,17.940999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,210,-0.17330000000000001,13.8909,0.083510000000000001,10.87,11.782,12.786,13.891,15.11,16.456,17.946000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,211,-0.17330000000000001,13.894500000000001,0.083510000000000001,10.872999999999999,11.785,12.789,13.894,15.114000000000001,16.460999999999999,17.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,212,-0.17330000000000001,13.898,0.083519999999999997,10.875,11.788,12.792,13.898,15.118,16.465,17.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,213,-0.17330000000000001,13.9016,0.083519999999999997,10.878,11.791,12.795,13.901999999999999,15.122,16.469000000000001,17.96 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,214,-0.17330000000000001,13.905099999999999,0.083519999999999997,10.881,11.794,12.798999999999999,13.904999999999999,15.125999999999999,16.474,17.965 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,215,-0.17330000000000001,13.9085,0.083519999999999997,10.882999999999999,11.797000000000001,12.802,13.907999999999999,15.129,16.478000000000002,17.969000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,216,-0.17330000000000001,13.912000000000001,0.083519999999999997,10.885999999999999,11.8,12.805,13.912000000000001,15.132999999999999,16.481999999999999,17.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,217,-0.17330000000000001,13.9154,0.083519999999999997,10.888999999999999,11.803000000000001,12.808,13.914999999999999,15.137,16.486000000000001,17.978000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,218,-0.17330000000000001,13.918699999999999,0.083519999999999997,10.891,11.805,12.811,13.919,15.14,16.489999999999998,17.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,219,-0.17330000000000001,13.9221,0.083519999999999997,10.894,11.808,12.814,13.922000000000001,15.144,16.494,17.986999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,220,-0.17330000000000001,13.9254,0.083519999999999997,10.897,11.811,12.817,13.925000000000001,15.148,16.498000000000001,17.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,221,-0.17330000000000001,13.928699999999999,0.083519999999999997,10.898999999999999,11.814,12.82,13.929,15.151,16.501999999999999,17.995000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,222,-0.17330000000000001,13.931900000000001,0.083519999999999997,10.901999999999999,11.817,12.823,13.932,15.154999999999999,16.504999999999999,17.998999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,223,-0.17330000000000001,13.9351,0.083519999999999997,10.904,11.819000000000001,12.826000000000001,13.935,15.157999999999999,16.509,18.004000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,224,-0.17330000000000001,13.9383,0.083519999999999997,10.907,11.821999999999999,12.829000000000001,13.938000000000001,15.162000000000001,16.513000000000002,18.007999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,225,-0.17330000000000001,13.9415,0.083519999999999997,10.909000000000001,11.824999999999999,12.832000000000001,13.942,15.164999999999999,16.516999999999999,18.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,226,-0.17330000000000001,13.944599999999999,0.083519999999999997,10.912000000000001,11.827,12.835000000000001,13.945,15.169,16.52,18.015999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,227,-0.17330000000000001,13.947699999999999,0.083519999999999997,10.914,11.83,12.837999999999999,13.948,15.172000000000001,16.524000000000001,18.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,228,-0.17330000000000001,13.950799999999999,0.083519999999999997,10.916,11.833,12.840999999999999,13.951000000000001,15.175000000000001,16.527999999999999,18.024000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,229,-0.17330000000000001,13.953900000000001,0.083519999999999997,10.919,11.835000000000001,12.843,13.954000000000001,15.179,16.530999999999999,18.027999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,230,-0.17330000000000001,13.956899999999999,0.083519999999999997,10.920999999999999,11.837999999999999,12.846,13.957000000000001,15.182,16.535,18.032 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,231,-0.17330000000000001,13.959899999999999,0.083519999999999997,10.923,11.84,12.849,13.96,15.185,16.539000000000001,18.036000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,232,-0.17330000000000001,13.9628,0.083519999999999997,10.926,11.843,12.852,13.962999999999999,15.188000000000001,16.542000000000002,18.039000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,233,-0.17330000000000001,13.9658,0.083519999999999997,10.928000000000001,11.845000000000001,12.853999999999999,13.965999999999999,15.192,16.545999999999999,18.042999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,234,-0.17330000000000001,13.9687,0.083519999999999997,10.93,11.848000000000001,12.856999999999999,13.968999999999999,15.195,16.548999999999999,18.047000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,235,-0.17330000000000001,13.9716,0.083519999999999997,10.933,11.85,12.86,13.972,15.198,16.552,18.050999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,236,-0.17330000000000001,13.974399999999999,0.083519999999999997,10.935,11.853,12.862,13.974,15.201000000000001,16.556000000000001,18.053999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,237,-0.17330000000000001,13.9773,0.083519999999999997,10.936999999999999,11.855,12.865,13.977,15.204000000000001,16.559000000000001,18.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,238,-0.17330000000000001,13.9801,0.083519999999999997,10.939,11.858000000000001,12.868,13.98,15.207000000000001,16.562000000000001,18.062000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,239,-0.17330000000000001,13.982900000000001,0.083510000000000001,10.942,11.86,12.87,13.983000000000001,15.21,16.565000000000001,18.065000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,240,-0.17330000000000001,13.9857,0.083510000000000001,10.944000000000001,11.863,12.872999999999999,13.986000000000001,15.212999999999999,16.568999999999999,18.068000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,241,-0.17330000000000001,13.9884,0.083510000000000001,10.946,11.865,12.875,13.988,15.215999999999999,16.571999999999999,18.071999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,242,-0.17330000000000001,13.991099999999999,0.083510000000000001,10.948,11.867000000000001,12.878,13.991,15.218999999999999,16.574999999999999,18.074999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,243,-0.17330000000000001,13.9938,0.083510000000000001,10.95,11.869,12.88,13.994,15.222,16.577999999999999,18.079000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,244,-0.17330000000000001,13.996499999999999,0.083510000000000001,10.952,11.872,12.882999999999999,13.996,15.225,16.582000000000001,18.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,245,-0.17330000000000001,13.9991,0.083500000000000005,10.955,11.874000000000001,12.885,13.999000000000001,15.228,16.584,18.085000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,246,-0.17330000000000001,14.001799999999999,0.083500000000000005,10.957000000000001,11.875999999999999,12.888,14.002000000000001,15.23,16.588000000000001,18.088999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,247,-0.17330000000000001,14.0044,0.083500000000000005,10.959,11.879,12.89,14.004,15.233000000000001,16.591000000000001,18.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,248,-0.17330000000000001,14.007,0.083500000000000005,10.961,11.881,12.893000000000001,14.007,15.236000000000001,16.594000000000001,18.094999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,249,-0.17330000000000001,14.009499999999999,0.083500000000000005,10.962999999999999,11.882999999999999,12.895,14.01,15.239000000000001,16.597000000000001,18.099 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,250,-0.17330000000000001,14.012,0.083489999999999995,10.965,11.885,12.897,14.012,15.241,16.599,18.100999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,251,-0.17330000000000001,14.0146,0.083489999999999995,10.967000000000001,11.888,12.9,14.015000000000001,15.244,16.602,18.105 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,252,-0.17330000000000001,14.016999999999999,0.083489999999999995,10.968999999999999,11.89,12.901999999999999,14.016999999999999,15.247,16.605,18.108000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,253,-0.17330000000000001,14.019500000000001,0.083489999999999995,10.971,11.891999999999999,12.904,14.02,15.25,16.608000000000001,18.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,254,-0.17330000000000001,14.022,0.083479999999999999,10.973000000000001,11.894,12.907,14.022,15.252000000000001,16.611000000000001,18.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,255,-0.17330000000000001,14.0244,0.083479999999999999,10.975,11.896000000000001,12.909000000000001,14.023999999999999,15.255000000000001,16.614000000000001,18.117000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,256,-0.17330000000000001,14.0268,0.083479999999999999,10.977,11.898,12.911,14.026999999999999,15.257,16.616,18.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,257,-0.17330000000000001,14.029199999999999,0.083479999999999999,10.978999999999999,11.9,12.913,14.029,15.26,16.619,18.123000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,258,-0.17330000000000001,14.031499999999999,0.083470000000000003,10.981,11.901999999999999,12.916,14.032,15.262,16.622,18.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,259,-0.17330000000000001,14.033899999999999,0.083470000000000003,10.983000000000001,11.904,12.917999999999999,14.034000000000001,15.265000000000001,16.625,18.128 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,260,-0.17330000000000001,14.036199999999999,0.083470000000000003,10.984999999999999,11.906000000000001,12.92,14.036,15.266999999999999,16.626999999999999,18.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,261,-0.17330000000000001,14.038500000000001,0.083460000000000006,10.987,11.907999999999999,12.922000000000001,14.038,15.27,16.63,18.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,262,-0.17330000000000001,14.040800000000001,0.083460000000000006,10.989000000000001,11.91,12.923999999999999,14.041,15.272,16.632000000000001,18.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,263,-0.17330000000000001,14.042999999999999,0.083460000000000006,10.99,11.912000000000001,12.926,14.042999999999999,15.275,16.635000000000002,18.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,264,-0.17330000000000001,14.045299999999999,0.083449999999999996,10.993,11.914,12.929,14.045,15.276999999999999,16.637,18.141999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,265,-0.17330000000000001,14.047499999999999,0.083449999999999996,10.994,11.916,12.930999999999999,14.048,15.279,16.64,18.145 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,266,-0.17330000000000001,14.0497,0.083449999999999996,10.996,11.917999999999999,12.933,14.05,15.282,16.643000000000001,18.148 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,267,-0.17330000000000001,14.0519,0.08344,10.997999999999999,11.92,12.935,14.052,15.284000000000001,16.645,18.149999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,268,-0.17330000000000001,14.054,0.08344,11,11.922000000000001,12.936999999999999,14.054,15.286,16.646999999999998,18.152999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,269,-0.17330000000000001,14.0562,0.08344,11.000999999999999,11.923999999999999,12.939,14.055999999999999,15.289,16.649999999999999,18.155999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,270,-0.17330000000000001,14.058299999999999,0.083430000000000004,11.003,11.926,12.941000000000001,14.058,15.291,16.652000000000001,18.158000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,271,-0.17330000000000001,14.0604,0.083430000000000004,11.005000000000001,11.928000000000001,12.943,14.06,15.292999999999999,16.655000000000001,18.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,272,-0.17330000000000001,14.0625,0.083419999999999994,11.007,11.93,12.945,14.061999999999999,15.295,16.657,18.163 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,273,-0.17330000000000001,14.0646,0.083419999999999994,11.009,11.932,12.946999999999999,14.065,15.298,16.658999999999999,18.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,274,-0.17330000000000001,14.066599999999999,0.083419999999999994,11.01,11.933,12.949,14.067,15.3,16.661999999999999,18.167999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,275,-0.17330000000000001,14.0687,0.083409999999999998,11.012,11.935,12.951000000000001,14.069000000000001,15.302,16.664000000000001,18.170000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,276,-0.17330000000000001,14.0707,0.083409999999999998,11.013999999999999,11.936999999999999,12.952,14.071,15.304,16.666,18.172999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,277,-0.17330000000000001,14.072699999999999,0.083400000000000002,11.016,11.939,12.954000000000001,14.073,15.305999999999999,16.667999999999999,18.175000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,278,-0.17330000000000001,14.0747,0.083400000000000002,11.016999999999999,11.941000000000001,12.956,14.074999999999999,15.308,16.670000000000002,18.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,279,-0.17330000000000001,14.076599999999999,0.083390000000000006,11.019,11.942,12.958,14.077,15.31,16.672000000000001,18.178999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,280,-0.17330000000000001,14.0786,0.083390000000000006,11.02,11.944000000000001,12.96,14.079000000000001,15.311999999999999,16.675000000000001,18.181999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,281,-0.17330000000000001,14.080500000000001,0.083379999999999996,11.022,11.946,12.962,14.08,15.314,16.677,18.183 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,282,-0.17330000000000001,14.0824,0.083379999999999996,11.023999999999999,11.948,12.964,14.082000000000001,15.316000000000001,16.678999999999998,18.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,283,-0.17330000000000001,14.0844,0.08337,11.026,11.95,12.965999999999999,14.084,15.318,16.681000000000001,18.187999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,284,-0.17330000000000001,14.0862,0.08337,11.026999999999999,11.951000000000001,12.967000000000001,14.086,15.32,16.683,18.190000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,285,-0.17330000000000001,14.088100000000001,0.083360000000000004,11.029,11.952999999999999,12.968999999999999,14.087999999999999,15.321999999999999,16.684999999999999,18.192 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,286,-0.17330000000000001,14.09,0.083360000000000004,11.03,11.955,12.971,14.09,15.324,16.687000000000001,18.195 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,287,-0.17330000000000001,14.091799999999999,0.083349999999999994,11.032,11.956,12.973000000000001,14.092000000000001,15.326000000000001,16.689,18.196000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,288,-0.17330000000000001,14.0937,0.083349999999999994,11.034000000000001,11.958,12.974,14.093999999999999,15.327999999999999,16.690999999999999,18.199000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,289,-0.17330000000000001,14.095499999999999,0.083339999999999997,11.035,11.96,12.976000000000001,14.096,15.33,16.693000000000001,18.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,290,-0.17330000000000001,14.097300000000001,0.083339999999999997,11.037000000000001,11.961,12.978,14.097,15.332000000000001,16.695,18.202999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,291,-0.17330000000000001,14.0991,0.083330000000000001,11.038,11.962999999999999,12.98,14.099,15.334,16.696999999999999,18.204999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,292,-0.17330000000000001,14.1008,0.083330000000000001,11.04,11.964,12.981,14.101000000000001,15.335000000000001,16.699000000000002,18.207000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,293,-0.17330000000000001,14.102600000000001,0.083320000000000005,11.042,11.965999999999999,12.983000000000001,14.103,15.337,16.701000000000001,18.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,294,-0.17330000000000001,14.1043,0.083320000000000005,11.042999999999999,11.968,12.984,14.103999999999999,15.339,16.702999999999999,18.210999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,295,-0.17330000000000001,14.1061,0.083309999999999995,11.045,11.968999999999999,12.986000000000001,14.106,15.340999999999999,16.704999999999998,18.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,296,-0.17330000000000001,14.107799999999999,0.083309999999999995,11.045999999999999,11.971,12.988,14.108000000000001,15.343,16.707000000000001,18.215 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,297,-0.17330000000000001,14.109500000000001,0.083299999999999999,11.048,11.972,12.99,14.11,15.343999999999999,16.707999999999998,18.216000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,298,-0.17330000000000001,14.1112,0.083290000000000003,11.048999999999999,11.974,12.991,14.111000000000001,15.346,16.71,18.218 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,299,-0.17330000000000001,14.1129,0.083290000000000003,11.051,11.976000000000001,12.993,14.113,15.348000000000001,16.712,18.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,300,-0.17330000000000001,14.114599999999999,0.083280000000000007,11.052,11.977,12.994,14.115,15.35,16.713999999999999,18.222000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,301,-0.17330000000000001,14.116199999999999,0.083280000000000007,11.053000000000001,11.978999999999999,12.996,14.116,15.351000000000001,16.715,18.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,302,-0.17330000000000001,14.117900000000001,0.083269999999999997,11.055,11.98,12.997999999999999,14.118,15.353,16.716999999999999,18.225999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,303,-0.17330000000000001,14.1195,0.083260000000000001,11.057,11.981999999999999,12.999000000000001,14.12,15.355,16.719000000000001,18.227 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,304,-0.17330000000000001,14.1211,0.083260000000000001,11.058,11.983000000000001,13.000999999999999,14.121,15.356,16.721,18.228999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,305,-0.17330000000000001,14.1228,0.083250000000000005,11.06,11.984999999999999,13.002000000000001,14.122999999999999,15.358000000000001,16.722000000000001,18.231000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,306,-0.17330000000000001,14.1244,0.083250000000000005,11.061,11.986000000000001,13.004,14.124000000000001,15.36,16.724,18.233000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,307,-0.17330000000000001,14.125999999999999,0.083239999999999995,11.061999999999999,11.988,13.005000000000001,14.125999999999999,15.361000000000001,16.725999999999999,18.234000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,308,-0.17330000000000001,14.1275,0.083229999999999998,11.064,11.989000000000001,13.007,14.128,15.363,16.727,18.236000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,309,-0.17330000000000001,14.129099999999999,0.083229999999999998,11.065,11.991,13.007999999999999,14.129,15.365,16.728999999999999,18.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,310,-0.17330000000000001,14.130699999999999,0.083220000000000002,11.067,11.992000000000001,13.01,14.131,15.366,16.731000000000002,18.239000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,311,-0.17330000000000001,14.132199999999999,0.083210000000000006,11.068,11.994,13.012,14.132,15.368,16.731999999999999,18.241 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,312,-0.17330000000000001,14.133800000000001,0.083210000000000006,11.069000000000001,11.994999999999999,13.013,14.134,15.369,16.734000000000002,18.242999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,313,-0.17330000000000001,14.135300000000001,0.083199999999999996,11.071,11.997,13.015000000000001,14.135,15.371,16.734999999999999,18.244 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,314,-0.17330000000000001,14.136799999999999,0.08319,11.071999999999999,11.997999999999999,13.016,14.137,15.372,16.736999999999998,18.245000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,315,-0.17330000000000001,14.138299999999999,0.08319,11.074,11.999000000000001,13.016999999999999,14.138,15.374000000000001,16.739000000000001,18.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,316,-0.17330000000000001,14.139799999999999,0.083180000000000004,11.074999999999999,12.000999999999999,13.019,14.14,15.375999999999999,16.739999999999998,18.248999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,317,-0.17330000000000001,14.141299999999999,0.083169999999999994,11.077,12.002000000000001,13.02,14.141,15.377000000000001,16.741,18.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,318,-0.17330000000000001,14.142799999999999,0.083169999999999994,11.077999999999999,12.004,13.022,14.143000000000001,15.379,16.742999999999999,18.251999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,319,-0.17330000000000001,14.144299999999999,0.083159999999999998,11.079000000000001,12.005000000000001,13.023,14.144,15.38,16.745000000000001,18.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,320,-0.17330000000000001,14.145799999999999,0.083150000000000002,11.081,12.007,13.025,14.146000000000001,15.382,16.745999999999999,18.254999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,321,-0.17330000000000001,14.1472,0.083150000000000002,11.082000000000001,12.007999999999999,13.026,14.147,15.382999999999999,16.748000000000001,18.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,322,-0.17330000000000001,14.1487,0.083140000000000006,11.083,12.009,13.028,14.148999999999999,15.385,16.748999999999999,18.257999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,323,-0.17330000000000001,14.1501,0.083129999999999996,11.085000000000001,12.010999999999999,13.029,14.15,15.385999999999999,16.75,18.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,324,-0.17330000000000001,14.1516,0.083129999999999996,11.086,12.012,13.03,14.151999999999999,15.388,16.751999999999999,18.260999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,325,-0.17330000000000001,14.153,0.083119999999999999,11.087,12.013999999999999,13.032,14.153,15.388999999999999,16.754000000000001,18.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,326,-0.17330000000000001,14.154400000000001,0.083110000000000003,11.089,12.015000000000001,13.032999999999999,14.154,15.39,16.754999999999999,18.263000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,327,-0.17330000000000001,14.155799999999999,0.083099999999999993,11.09,12.016,13.035,14.156000000000001,15.391999999999999,16.756,18.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,328,-0.17330000000000001,14.1572,0.083099999999999993,11.090999999999999,12.018000000000001,13.036,14.157,15.393000000000001,16.757999999999999,18.266999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,329,-0.17330000000000001,14.1586,0.083089999999999997,11.093,12.019,13.037000000000001,14.159000000000001,15.395,16.759,18.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,330,-0.17330000000000001,14.16,0.083080000000000001,11.093999999999999,12.02,13.039,14.16,15.396000000000001,16.760000000000002,18.268999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,331,-0.17330000000000001,14.1614,0.083070000000000005,11.096,12.022,13.04,14.161,15.397,16.762,18.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,332,-0.17330000000000001,14.162800000000001,0.083070000000000005,11.097,12.023,13.042,14.163,15.398999999999999,16.763000000000002,18.271999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,333,-0.17330000000000001,14.164199999999999,0.083059999999999995,11.098000000000001,12.023999999999999,13.042999999999999,14.164,15.4,16.765000000000001,18.273 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,334,-0.17330000000000001,14.1656,0.083049999999999999,11.099,12.026,13.044,14.166,15.401999999999999,16.765999999999998,18.274000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,335,-0.17330000000000001,14.1669,0.083040000000000003,11.101000000000001,12.026999999999999,13.045999999999999,14.167,15.403,16.766999999999999,18.276 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,336,-0.17330000000000001,14.1683,0.083040000000000003,11.102,12.028,13.047000000000001,14.167999999999999,15.404,16.768999999999998,18.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,337,-0.17330000000000001,14.169600000000001,0.083030000000000007,11.103,12.03,13.048,14.17,15.406000000000001,16.77,18.277999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,338,-0.17330000000000001,14.170999999999999,0.083019999999999997,11.105,12.031000000000001,13.05,14.170999999999999,15.407,16.771000000000001,18.28 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,339,-0.17330000000000001,14.1723,0.08301,11.106,12.032999999999999,13.051,14.172000000000001,15.407999999999999,16.773,18.280999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,340,-0.17330000000000001,14.1737,0.08301,11.106999999999999,12.034000000000001,13.052,14.173999999999999,15.41,16.774000000000001,18.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,341,-0.17330000000000001,14.175000000000001,0.083000000000000004,11.108000000000001,12.035,13.054,14.175000000000001,15.411,16.774999999999999,18.283999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,342,-0.17330000000000001,14.176299999999999,0.082989999999999994,11.11,12.036,13.055,14.176,15.412000000000001,16.777000000000001,18.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,343,-0.17330000000000001,14.1777,0.082979999999999998,11.111000000000001,12.038,13.055999999999999,14.178000000000001,15.414,16.777999999999999,18.286000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,344,-0.17330000000000001,14.179,0.082970000000000002,11.113,12.039,13.058,14.179,15.414999999999999,16.779,18.286999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,345,-0.17330000000000001,14.180300000000001,0.082970000000000002,11.114000000000001,12.04,13.058999999999999,14.18,15.416,16.780999999999999,18.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,346,-0.17330000000000001,14.1816,0.082960000000000006,11.115,12.042,13.06,14.182,15.417999999999999,16.782,18.29 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,347,-0.17330000000000001,14.1829,0.082949999999999996,11.116,12.042999999999999,13.061999999999999,14.183,15.419,16.783000000000001,18.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,348,-0.17330000000000001,14.184200000000001,0.08294,11.118,12.044,13.063000000000001,14.183999999999999,15.42,16.783999999999999,18.292000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,349,-0.17330000000000001,14.185499999999999,0.082930000000000004,11.119,12.045999999999999,13.064,14.186,15.420999999999999,16.785,18.292999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,350,-0.17330000000000001,14.1869,0.082930000000000004,11.12,12.047000000000001,13.066000000000001,14.186999999999999,15.423,16.786999999999999,18.295000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,351,-0.17330000000000001,14.1882,0.082919999999999994,11.121,12.048,13.067,14.188000000000001,15.423999999999999,16.788,18.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,352,-0.17330000000000001,14.189399999999999,0.082909999999999998,11.122999999999999,12.048999999999999,13.068,14.189,15.425000000000001,16.789000000000001,18.297000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,353,-0.17330000000000001,14.1907,0.082900000000000001,11.124000000000001,12.051,13.069000000000001,14.191000000000001,15.427,16.791,18.297999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,354,-0.17330000000000001,14.192,0.082890000000000005,11.125,12.052,13.071,14.192,15.428000000000001,16.792000000000002,18.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,355,-0.17330000000000001,14.193300000000001,0.082890000000000005,11.125999999999999,12.053000000000001,13.071999999999999,14.193,15.429,16.792999999999999,18.300999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,356,-0.17330000000000001,14.194599999999999,0.082879999999999995,11.128,12.054,13.073,14.195,15.43,16.794,18.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,357,-0.17330000000000001,14.1959,0.082869999999999999,11.129,12.055999999999999,13.074999999999999,14.196,15.432,16.795999999999999,18.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,358,-0.17330000000000001,14.1972,0.082860000000000003,11.13,12.057,13.076000000000001,14.196999999999999,15.433,16.797000000000001,18.303999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,359,-0.17330000000000001,14.198499999999999,0.082849999999999993,11.132,12.058999999999999,13.077,14.198,15.433999999999999,16.797999999999998,18.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,360,-0.17330000000000001,14.1998,0.082839999999999997,11.132999999999999,12.06,13.079000000000001,14.2,15.435,16.798999999999999,18.306999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,361,-0.17330000000000001,14.201000000000001,0.082839999999999997,11.134,12.061,13.08,14.201000000000001,15.436999999999999,16.800999999999998,18.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,362,-0.17330000000000001,14.202299999999999,0.082830000000000001,11.135,12.061999999999999,13.081,14.202,15.438000000000001,16.802,18.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,363,-0.17330000000000001,14.2036,0.082820000000000005,11.137,12.064,13.082000000000001,14.204000000000001,15.439,16.803000000000001,18.309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,364,-0.17330000000000001,14.2049,0.082809999999999995,11.138,12.065,13.084,14.205,15.441000000000001,16.803999999999998,18.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,365,-0.17330000000000001,14.206200000000001,0.082799999999999999,11.138999999999999,12.066000000000001,13.085000000000001,14.206,15.442,16.805,18.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,366,-0.17330000000000001,14.2074,0.082790000000000002,11.141,12.067,13.086,14.207000000000001,15.443,16.806000000000001,18.312999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,367,-0.17330000000000001,14.2087,0.082790000000000002,11.141999999999999,12.069000000000001,13.087,14.209,15.444000000000001,16.808,18.315000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,368,-0.17330000000000001,14.21,0.082780000000000006,11.143000000000001,12.07,13.089,14.21,15.446,16.809000000000001,18.315999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,369,-0.17330000000000001,14.2113,0.082769999999999996,11.144,12.071,13.09,14.211,15.446999999999999,16.809999999999999,18.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,370,-0.17330000000000001,14.2126,0.08276,11.146000000000001,12.073,13.090999999999999,14.212999999999999,15.448,16.812000000000001,18.318000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,371,-0.17330000000000001,14.213800000000001,0.082750000000000004,11.147,12.074,13.093,14.214,15.449,16.812999999999999,18.318999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,372,-0.17330000000000001,14.2151,0.082739999999999994,11.148,12.074999999999999,13.093999999999999,14.215,15.451000000000001,16.814,18.321000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,373,-0.17330000000000001,14.2164,0.082739999999999994,11.148999999999999,12.076000000000001,13.095000000000001,14.215999999999999,15.452,16.815000000000001,18.321999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,374,-0.17330000000000001,14.217700000000001,0.082729999999999998,11.151,12.077999999999999,13.097,14.218,15.452999999999999,16.817,18.323 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,375,-0.17330000000000001,14.2189,0.082720000000000002,11.151999999999999,12.079000000000001,13.098000000000001,14.218999999999999,15.454000000000001,16.818000000000001,18.324000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,376,-0.17330000000000001,14.2202,0.082710000000000006,11.153,12.08,13.099,14.22,15.456,16.818999999999999,18.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,377,-0.17330000000000001,14.221500000000001,0.082699999999999996,11.154,12.082000000000001,13.1,14.222,15.457000000000001,16.82,18.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,378,-0.17330000000000001,14.222799999999999,0.08269,11.156000000000001,12.083,13.102,14.223000000000001,15.458,16.821000000000002,18.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,379,-0.17330000000000001,14.224,0.082680000000000003,11.157,12.084,13.103,14.224,15.459,16.821999999999999,18.329000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,380,-0.17330000000000001,14.225300000000001,0.082669999999999993,11.157999999999999,12.086,13.103999999999999,14.225,15.461,16.824000000000002,18.329999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,381,-0.17330000000000001,14.226599999999999,0.082669999999999993,11.159000000000001,12.087,13.105,14.227,15.462,16.824999999999999,18.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,382,-0.17330000000000001,14.2279,0.082659999999999997,11.161,12.087999999999999,13.106999999999999,14.228,15.462999999999999,16.826000000000001,18.332000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,383,-0.17330000000000001,14.229200000000001,0.082650000000000001,11.162000000000001,12.089,13.108000000000001,14.228999999999999,15.464,16.827000000000002,18.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,384,-0.17330000000000001,14.230399999999999,0.082640000000000005,11.163,12.090999999999999,13.109,14.23,15.465999999999999,16.827999999999999,18.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,385,-0.17330000000000001,14.2317,0.082629999999999995,11.164999999999999,12.092000000000001,13.111000000000001,14.231999999999999,15.467000000000001,16.829999999999998,18.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,386,-0.17330000000000001,14.233000000000001,0.082619999999999999,11.166,12.093,13.112,14.233000000000001,15.468,16.831,18.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,387,-0.17330000000000001,14.234299999999999,0.082610000000000003,11.167,12.095000000000001,13.113,14.234,15.468999999999999,16.832000000000001,18.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,388,-0.17330000000000001,14.2356,0.082610000000000003,11.167999999999999,12.096,13.115,14.236000000000001,15.471,16.834,18.338999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,389,-0.17330000000000001,14.2369,0.082600000000000007,11.17,12.097,13.116,14.237,15.472,16.835000000000001,18.341000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,390,-0.17330000000000001,14.238099999999999,0.082589999999999997,11.170999999999999,12.098000000000001,13.117000000000001,14.238,15.473000000000001,16.835999999999999,18.341999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,391,-0.17330000000000001,14.2394,0.082580000000000001,11.172000000000001,12.1,13.118,14.239000000000001,15.474,16.837,18.343 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,392,-0.17330000000000001,14.2407,0.082570000000000005,11.173999999999999,12.101000000000001,13.12,14.241,15.476000000000001,16.838000000000001,18.344000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,393,-0.17330000000000001,14.242000000000001,0.082559999999999995,11.175000000000001,12.102,13.121,14.242000000000001,15.477,16.838999999999999,18.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,394,-0.17330000000000001,14.2433,0.082549999999999998,11.176,12.103999999999999,13.122,14.243,15.478,16.841000000000001,18.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,395,-0.17330000000000001,14.2446,0.082540000000000002,11.178000000000001,12.105,13.124000000000001,14.244999999999999,15.478999999999999,16.841999999999999,18.347000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,396,-0.17330000000000001,14.245900000000001,0.082540000000000002,11.179,12.106,13.125,14.246,15.481,16.843,18.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,397,-0.17330000000000001,14.247199999999999,0.082530000000000006,11.18,12.106999999999999,13.125999999999999,14.247,15.481999999999999,16.844999999999999,18.350000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,398,-0.17330000000000001,14.2485,0.082519999999999996,11.180999999999999,12.109,13.128,14.247999999999999,15.483000000000001,16.846,18.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,399,-0.17330000000000001,14.2498,0.08251,11.183,12.11,13.129,14.25,15.484999999999999,16.847000000000001,18.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,400,-0.17330000000000001,14.251099999999999,0.082500000000000004,11.183999999999999,12.111000000000001,13.13,14.250999999999999,15.486000000000001,16.847999999999999,18.353000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,401,-0.17330000000000001,14.2524,0.082489999999999994,11.185,12.113,13.132,14.252000000000001,15.487,16.849,18.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,402,-0.17330000000000001,14.2537,0.082479999999999998,11.186999999999999,12.114000000000001,13.132999999999999,14.254,15.488,16.850999999999999,18.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,403,-0.17330000000000001,14.255000000000001,0.082470000000000002,11.188000000000001,12.115,13.134,14.255000000000001,15.49,16.852,18.356000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,404,-0.17330000000000001,14.2563,0.082470000000000002,11.189,12.117000000000001,13.135,14.256,15.491,16.853000000000002,18.358000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,405,-0.17330000000000001,14.2576,0.082460000000000006,11.191000000000001,12.118,13.137,14.257999999999999,15.492000000000001,16.853999999999999,18.359000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,406,-0.17330000000000001,14.258900000000001,0.082449999999999996,11.192,12.119,13.138,14.259,15.494,16.856000000000002,18.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,407,-0.17330000000000001,14.260199999999999,0.082439999999999999,11.193,12.121,13.138999999999999,14.26,15.494999999999999,16.856999999999999,18.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,408,-0.17330000000000001,14.2615,0.082430000000000003,11.195,12.122,13.141,14.262,15.496,16.858000000000001,18.361999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,409,-0.17330000000000001,14.2629,0.082419999999999993,11.196,12.122999999999999,13.141999999999999,14.263,15.497,16.859000000000002,18.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,410,-0.17330000000000001,14.264200000000001,0.082409999999999997,11.196999999999999,12.125,13.143000000000001,14.263999999999999,15.499000000000001,16.86,18.364999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,411,-0.17330000000000001,14.265499999999999,0.082400000000000001,11.199,12.125999999999999,13.145,14.266,15.5,16.861999999999998,18.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,412,-0.17330000000000001,14.2668,0.082400000000000001,11.2,12.127000000000001,13.146000000000001,14.266999999999999,15.500999999999999,16.863,18.367999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,413,-0.17330000000000001,14.2682,0.082390000000000005,11.201000000000001,12.129,13.147,14.268000000000001,15.503,16.864999999999998,18.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,414,-0.17330000000000001,14.269500000000001,0.082379999999999995,11.202,12.13,13.148999999999999,14.27,15.504,16.866,18.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,415,-0.17330000000000001,14.270799999999999,0.082369999999999999,11.204000000000001,12.131,13.15,14.271000000000001,15.505000000000001,16.867000000000001,18.370999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,416,-0.17330000000000001,14.2722,0.082360000000000003,11.205,12.132999999999999,13.151,14.272,15.507,16.867999999999999,18.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,417,-0.17330000000000001,14.2735,0.082350000000000007,11.207000000000001,12.134,13.153,14.273999999999999,15.507999999999999,16.869,18.373000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,418,-0.17330000000000001,14.274900000000001,0.082339999999999997,11.208,12.135,13.154,14.275,15.509,16.870999999999999,18.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,419,-0.17330000000000001,14.276199999999999,0.08233,11.209,12.137,13.156000000000001,14.276,15.51,16.872,18.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,420,-0.17330000000000001,14.2775,0.08233,11.21,12.138,13.157,14.278,15.512,16.873000000000001,18.376999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,421,-0.17330000000000001,14.2789,0.082320000000000004,11.212,12.138999999999999,13.157999999999999,14.279,15.513,16.875,18.379000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,422,-0.17330000000000001,14.2803,0.082309999999999994,11.212999999999999,12.141,13.16,14.28,15.515000000000001,16.876000000000001,18.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,423,-0.17330000000000001,14.281599999999999,0.082299999999999998,11.215,12.141999999999999,13.161,14.282,15.516,16.876999999999999,18.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,424,-0.17330000000000001,14.282999999999999,0.082290000000000002,11.215999999999999,12.143000000000001,13.162000000000001,14.282999999999999,15.516999999999999,16.879000000000001,18.382000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,425,-0.17330000000000001,14.2843,0.082280000000000006,11.217000000000001,12.145,13.164,14.284000000000001,15.519,16.88,18.382999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,426,-0.17330000000000001,14.2857,0.082269999999999996,11.218999999999999,12.146000000000001,13.164999999999999,14.286,15.52,16.881,18.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,427,-0.17330000000000001,14.287100000000001,0.082269999999999996,11.22,12.147,13.166,14.287000000000001,15.521000000000001,16.882999999999999,18.385999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,428,-0.17330000000000001,14.288399999999999,0.08226,11.221,12.148999999999999,13.167999999999999,14.288,15.523,16.884,18.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,429,-0.17330000000000001,14.2898,0.082250000000000004,11.223000000000001,12.15,13.169,14.29,15.523999999999999,16.885000000000002,18.388999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,430,-0.17330000000000001,14.2912,0.082239999999999994,11.224,12.151999999999999,13.170999999999999,14.291,15.525,16.885999999999999,18.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,431,-0.17330000000000001,14.2926,0.082229999999999998,11.225,12.153,13.172000000000001,14.292999999999999,15.526999999999999,16.888000000000002,18.390999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,432,-0.17330000000000001,14.294,0.082220000000000001,11.227,12.154,13.173,14.294,15.528,16.888999999999999,18.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,433,-0.17330000000000001,14.295299999999999,0.082220000000000001,11.228,12.156000000000001,13.175000000000001,14.295,15.53,16.890999999999998,18.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,434,-0.17330000000000001,14.2967,0.082210000000000005,11.228999999999999,12.157,13.176,14.297000000000001,15.531000000000001,16.891999999999999,18.395 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,435,-0.17330000000000001,14.2981,0.082199999999999995,11.231,12.157999999999999,13.177,14.298,15.532,16.893000000000001,18.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,436,-0.17330000000000001,14.2995,0.082189999999999999,11.231999999999999,12.16,13.179,14.3,15.534000000000001,16.895,18.398 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,437,-0.17330000000000001,14.3009,0.082180000000000003,11.234,12.161,13.18,14.301,15.535,16.896000000000001,18.399000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,438,-0.17330000000000001,14.302300000000001,0.082170000000000007,11.234999999999999,12.163,13.182,14.302,15.536,16.896999999999998,18.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,439,-0.17330000000000001,14.303699999999999,0.082170000000000007,11.236000000000001,12.164,13.183,14.304,15.538,16.899000000000001,18.402000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,440,-0.17330000000000001,14.305099999999999,0.082159999999999997,11.237,12.164999999999999,13.183999999999999,14.305,15.539,16.899999999999999,18.402999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,441,-0.17330000000000001,14.3065,0.082150000000000001,11.239000000000001,12.167,13.186,14.305999999999999,15.541,16.901,18.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,442,-0.17330000000000001,14.308,0.082140000000000005,11.24,12.167999999999999,13.186999999999999,14.308,15.542,16.902999999999999,18.405999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,443,-0.17330000000000001,14.3094,0.082129999999999995,11.242000000000001,12.17,13.189,14.308999999999999,15.542999999999999,16.904,18.407 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,444,-0.17330000000000001,14.3108,0.082119999999999999,11.243,12.170999999999999,13.19,14.311,15.545,16.905000000000001,18.408000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,445,-0.17330000000000001,14.312200000000001,0.082119999999999999,11.244,12.172000000000001,13.191000000000001,14.311999999999999,15.545999999999999,16.907,18.41 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,446,-0.17330000000000001,14.313599999999999,0.082110000000000002,11.246,12.173999999999999,13.193,14.314,15.548,16.908000000000001,18.411000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,447,-0.17330000000000001,14.315099999999999,0.082100000000000006,11.247,12.175000000000001,13.194000000000001,14.315,15.548999999999999,16.91,18.411999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,448,-0.17330000000000001,14.3165,0.082089999999999996,11.249000000000001,12.177,13.196,14.316000000000001,15.55,16.911000000000001,18.414000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,449,-0.17330000000000001,14.3179,0.08208,11.25,12.178000000000001,13.196999999999999,14.318,15.552,16.911999999999999,18.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,450,-0.17330000000000001,14.3194,0.08208,11.250999999999999,12.179,13.199,14.319000000000001,15.553000000000001,16.914000000000001,18.417000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,451,-0.17330000000000001,14.3208,0.082070000000000004,11.253,12.180999999999999,13.2,14.321,15.555,16.916,18.417999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,452,-0.17330000000000001,14.3223,0.082059999999999994,11.254,12.182,13.202,14.321999999999999,15.555999999999999,16.917000000000002,18.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,453,-0.17330000000000001,14.323700000000001,0.082049999999999998,11.256,12.183999999999999,13.202999999999999,14.324,15.558,16.917999999999999,18.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,454,-0.17330000000000001,14.325200000000001,0.082040000000000002,11.257,12.185,13.205,14.324999999999999,15.558999999999999,16.920000000000002,18.422000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,455,-0.17330000000000001,14.326599999999999,0.082040000000000002,11.257999999999999,12.186,13.206,14.327,15.561,16.920999999999999,18.423999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,456,-0.17330000000000001,14.328099999999999,0.082030000000000006,11.26,12.188000000000001,13.207000000000001,14.327999999999999,15.561999999999999,16.922999999999998,18.425000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,457,-0.17330000000000001,14.329499999999999,0.082019999999999996,11.260999999999999,12.189,13.209,14.33,15.564,16.923999999999999,18.425999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,458,-0.17330000000000001,14.331,0.08201,11.263,12.191000000000001,13.21,14.331,15.565,16.925000000000001,18.428000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,459,-0.17330000000000001,14.3325,0.082000000000000003,11.263999999999999,12.192,13.212,14.332000000000001,15.566000000000001,16.927,18.428999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,460,-0.17330000000000001,14.3339,0.082000000000000003,11.265000000000001,12.194000000000001,13.212999999999999,14.334,15.568,16.928999999999998,18.431000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,461,-0.17330000000000001,14.3354,0.081989999999999993,11.266999999999999,12.195,13.215,14.335000000000001,15.569000000000001,16.93,18.431999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,462,-0.17330000000000001,14.3369,0.081979999999999997,11.268000000000001,12.196999999999999,13.215999999999999,14.337,15.571,16.931000000000001,18.434000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,463,-0.17330000000000001,14.3384,0.081970000000000001,11.27,12.198,13.218,14.337999999999999,15.571999999999999,16.933,18.434999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,464,-0.17330000000000001,14.3399,0.081960000000000005,11.271000000000001,12.2,13.218999999999999,14.34,15.574,16.934000000000001,18.436 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,465,-0.17330000000000001,14.3414,0.081960000000000005,11.272,12.201000000000001,13.22,14.340999999999999,15.574999999999999,16.936,18.437999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,466,-0.17330000000000001,14.3429,0.081949999999999995,11.273999999999999,12.202,13.222,14.343,15.577,16.937000000000001,18.440000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,467,-0.17330000000000001,14.3444,0.081939999999999999,11.275,12.204000000000001,13.224,14.343999999999999,15.577999999999999,16.939,18.440999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,468,-0.17330000000000001,14.3459,0.081930000000000003,11.276999999999999,12.206,13.225,14.346,15.58,16.940000000000001,18.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,469,-0.17330000000000001,14.3474,0.081930000000000003,11.278,12.207000000000001,13.226000000000001,14.347,15.582000000000001,16.942,18.443999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,470,-0.17330000000000001,14.3489,0.081920000000000007,11.28,12.208,13.228,14.349,15.583,16.943000000000001,18.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,471,-0.17330000000000001,14.3504,0.081909999999999997,11.281000000000001,12.21,13.228999999999999,14.35,15.584,16.945,18.446999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,472,-0.17330000000000001,14.351900000000001,0.081900000000000001,11.282999999999999,12.211,13.231,14.352,15.586,16.946000000000002,18.448 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,473,-0.17330000000000001,14.353400000000001,0.081900000000000001,11.284000000000001,12.212999999999999,13.231999999999999,14.353,15.587999999999999,16.948,18.45 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,474,-0.17330000000000001,14.355,0.081890000000000004,11.285,12.214,13.234,14.355,15.589,16.95,18.452000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,475,-0.17330000000000001,14.3565,0.081879999999999994,11.287000000000001,12.215999999999999,13.234999999999999,14.356,15.590999999999999,16.951000000000001,18.452999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,476,-0.17330000000000001,14.358000000000001,0.081869999999999998,11.288,12.217000000000001,13.237,14.358000000000001,15.592000000000001,16.952999999999999,18.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,477,-0.17330000000000001,14.3596,0.081869999999999998,11.29,12.218999999999999,13.238,14.36,15.593999999999999,16.954000000000001,18.456 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,478,-0.17330000000000001,14.3611,0.081860000000000002,11.291,12.22,13.24,14.361000000000001,15.595000000000001,16.956,18.457999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,479,-0.17330000000000001,14.3627,0.081850000000000006,11.292999999999999,12.222,13.242000000000001,14.363,15.597,16.957000000000001,18.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,480,-0.17330000000000001,14.3642,0.081839999999999996,11.294,12.223000000000001,13.243,14.364000000000001,15.598000000000001,16.959,18.460999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,481,-0.17330000000000001,14.3658,0.081839999999999996,11.295999999999999,12.225,13.244999999999999,14.366,15.6,16.960999999999999,18.463000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,482,-0.17330000000000001,14.3673,0.08183,11.297000000000001,12.226000000000001,13.246,14.367000000000001,15.602,16.962,18.463999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,483,-0.17330000000000001,14.3689,0.081820000000000004,11.298999999999999,12.228,13.247999999999999,14.369,15.603,16.963999999999999,18.465 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,484,-0.17330000000000001,14.3705,0.081820000000000004,11.3,12.228999999999999,13.249000000000001,14.37,15.605,16.966000000000001,18.466999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,485,-0.17330000000000001,14.372,0.081809999999999994,11.301,12.231,13.250999999999999,14.372,15.606,16.966999999999999,18.469000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,486,-0.17330000000000001,14.3736,0.081799999999999998,11.303000000000001,12.231999999999999,13.252000000000001,14.374000000000001,15.608000000000001,16.968,18.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,487,-0.17330000000000001,14.3752,0.081790000000000002,11.305,12.234,13.254,14.375,15.609,16.97,18.472000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,488,-0.17330000000000001,14.376799999999999,0.081790000000000002,11.305999999999999,12.234999999999999,13.255000000000001,14.377000000000001,15.611000000000001,16.972000000000001,18.474 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,489,-0.17330000000000001,14.378399999999999,0.081780000000000005,11.307,12.237,13.257,14.378,15.613,16.972999999999999,18.475000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,490,-0.17330000000000001,14.38,0.081769999999999995,11.308999999999999,12.238,13.259,14.38,15.614000000000001,16.975000000000001,18.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,491,-0.17330000000000001,14.381600000000001,0.081769999999999995,11.31,12.24,13.26,14.382,15.616,16.977,18.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,492,-0.17330000000000001,14.3832,0.081759999999999999,11.311999999999999,12.241,13.262,14.382999999999999,15.618,16.978000000000002,18.48 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,493,-0.17330000000000001,14.3848,0.081750000000000003,11.313000000000001,12.243,13.263,14.385,15.619,16.98,18.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,494,-0.17330000000000001,14.3864,0.081750000000000003,11.315,12.244,13.265000000000001,14.385999999999999,15.621,16.981999999999999,18.484000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,495,-0.17330000000000001,14.388,0.081739999999999993,11.316000000000001,12.246,13.266,14.388,15.622999999999999,16.983000000000001,18.484999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,496,-0.17330000000000001,14.3896,0.081729999999999997,11.318,12.247,13.268000000000001,14.39,15.624000000000001,16.984999999999999,18.486999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,497,-0.17330000000000001,14.391299999999999,0.081729999999999997,11.319000000000001,12.249000000000001,13.269,14.391,15.625999999999999,16.986999999999998,18.489000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,498,-0.17330000000000001,14.392899999999999,0.081720000000000001,11.321,12.250999999999999,13.271000000000001,14.393000000000001,15.628,16.988,18.489999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,499,-0.17330000000000001,14.394500000000001,0.081710000000000005,11.321999999999999,12.252000000000001,13.273,14.394,15.629,16.989999999999998,18.492000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,500,-0.17330000000000001,14.3962,0.081710000000000005,11.324,12.254,13.273999999999999,14.396000000000001,15.631,16.992000000000001,18.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,501,-0.17330000000000001,14.3978,0.081699999999999995,11.324999999999999,12.255000000000001,13.276,14.398,15.632999999999999,16.994,18.495999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,502,-0.17330000000000001,14.3995,0.081689999999999999,11.327,12.257,13.278,14.4,15.634,16.995000000000001,18.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,503,-0.17330000000000001,14.4011,0.081689999999999999,11.327999999999999,12.257999999999999,13.279,14.401,15.635999999999999,16.997,18.498999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,504,-0.17330000000000001,14.402799999999999,0.081680000000000003,11.33,12.26,13.281000000000001,14.403,15.638,16.998999999999999,18.501000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,505,-0.17330000000000001,14.404400000000001,0.081670000000000006,11.331,12.260999999999999,13.282,14.404,15.638999999999999,17,18.501999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,506,-0.17330000000000001,14.4061,0.081670000000000006,11.333,12.263,13.284000000000001,14.406000000000001,15.641,17.001999999999999,18.504999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,507,-0.17330000000000001,14.4078,0.081659999999999996,11.334,12.265000000000001,13.286,14.407999999999999,15.643000000000001,17.004000000000001,18.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,508,-0.17330000000000001,14.4094,0.08165,11.336,12.266,13.287000000000001,14.409000000000001,15.644,17.004999999999999,18.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,509,-0.17330000000000001,14.411099999999999,0.08165,11.337,12.268000000000001,13.289,14.411,15.646000000000001,17.007000000000001,18.510000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,510,-0.17330000000000001,14.412800000000001,0.081640000000000004,11.339,12.269,13.29,14.413,15.648,17.009,18.510999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,511,-0.17330000000000001,14.4145,0.081640000000000004,11.34,12.271000000000001,13.292,14.414,15.65,17.010999999999999,18.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,512,-0.17330000000000001,14.4162,0.081629999999999994,11.342000000000001,12.272,13.294,14.416,15.651,17.013000000000002,18.515000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,513,-0.17330000000000001,14.417899999999999,0.081619999999999998,11.343999999999999,12.273999999999999,13.295,14.417999999999999,15.653,17.013999999999999,18.516999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,514,-0.17330000000000001,14.419600000000001,0.081619999999999998,11.345000000000001,12.276,13.297000000000001,14.42,15.654999999999999,17.015999999999998,18.518999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,515,-0.17330000000000001,14.4213,0.081610000000000002,11.347,12.276999999999999,13.298999999999999,14.420999999999999,15.657,17.018000000000001,18.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,516,-0.17330000000000001,14.423,0.081610000000000002,11.348000000000001,12.279,13.3,14.423,15.659000000000001,17.02,18.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,517,-0.17330000000000001,14.4247,0.081600000000000006,11.35,12.28,13.302,14.425000000000001,15.66,17.021999999999998,18.524000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,518,-0.17330000000000001,14.426399999999999,0.081589999999999996,11.351000000000001,12.282,13.304,14.426,15.662000000000001,17.023,18.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,519,-0.17330000000000001,14.428100000000001,0.081589999999999996,11.353,12.284000000000001,13.305,14.428000000000001,15.664,17.024999999999999,18.527999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,520,-0.17330000000000001,14.4298,0.08158,11.353999999999999,12.285,13.307,14.43,15.664999999999999,17.027000000000001,18.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,521,-0.17330000000000001,14.4316,0.08158,11.356,12.287000000000001,13.308999999999999,14.432,15.667,17.029,18.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,522,-0.17330000000000001,14.433299999999999,0.081570000000000004,11.356999999999999,12.288,13.31,14.433,15.669,17.030999999999999,18.533999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,523,-0.17330000000000001,14.435,0.081559999999999994,11.359,12.29,13.311999999999999,14.435,15.670999999999999,17.033000000000001,18.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,524,-0.17330000000000001,14.4368,0.081559999999999994,11.361000000000001,12.292,13.314,14.436999999999999,15.673,17.035,18.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,525,-0.17330000000000001,14.438499999999999,0.081549999999999997,11.362,12.292999999999999,13.315,14.438000000000001,15.673999999999999,17.036000000000001,18.539000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,526,-0.17330000000000001,14.440300000000001,0.081549999999999997,11.364000000000001,12.295,13.317,14.44,15.676,17.038,18.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,527,-0.17330000000000001,14.442,0.081540000000000001,11.365,12.297000000000001,13.319000000000001,14.442,15.678000000000001,17.04,18.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,528,-0.17330000000000001,14.4438,0.081540000000000001,11.367000000000001,12.298,13.32,14.444000000000001,15.68,17.042000000000002,18.545000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,529,-0.17330000000000001,14.445499999999999,0.081530000000000005,11.368,12.3,13.321999999999999,14.446,15.682,17.044,18.547000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,530,-0.17330000000000001,14.4473,0.081530000000000005,11.37,12.301,13.324,14.446999999999999,15.683999999999999,17.045999999999999,18.548999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,531,-0.17330000000000001,14.4491,0.081519999999999995,11.372,12.303000000000001,13.326000000000001,14.449,15.685,17.047999999999998,18.550999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,532,-0.17330000000000001,14.450799999999999,0.081509999999999999,11.372999999999999,12.305,13.327,14.451000000000001,15.686999999999999,17.048999999999999,18.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,533,-0.17330000000000001,14.4526,0.081509999999999999,11.375,12.305999999999999,13.329000000000001,14.452999999999999,15.689,17.052,18.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,534,-0.17330000000000001,14.4544,0.081500000000000003,11.375999999999999,12.308,13.331,14.454000000000001,15.691000000000001,17.053000000000001,18.556999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,535,-0.17330000000000001,14.456200000000001,0.081500000000000003,11.378,12.31,13.332000000000001,14.456,15.693,17.055,18.559000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,536,-0.17330000000000001,14.458,0.081490000000000007,11.38,12.311,13.334,14.458,15.695,17.056999999999999,18.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,537,-0.17330000000000001,14.4597,0.081490000000000007,11.381,12.313000000000001,13.336,14.46,15.696,17.059000000000001,18.562999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,538,-0.17330000000000001,14.461499999999999,0.081479999999999997,11.382999999999999,12.315,13.337999999999999,14.462,15.698,17.061,18.565000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,539,-0.17330000000000001,14.4633,0.081479999999999997,11.384,12.316000000000001,13.339,14.462999999999999,15.7,17.062999999999999,18.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,540,-0.17330000000000001,14.4651,0.081470000000000001,11.385999999999999,12.318,13.340999999999999,14.465,15.702,17.065000000000001,18.568999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,541,-0.17330000000000001,14.466900000000001,0.081470000000000001,11.387,12.319000000000001,13.343,14.467000000000001,15.704000000000001,17.067,18.571000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,542,-0.17330000000000001,14.4688,0.081460000000000005,11.388999999999999,12.321,13.343999999999999,14.468999999999999,15.706,17.068999999999999,18.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,543,-0.17330000000000001,14.470599999999999,0.081460000000000005,11.39,12.323,13.346,14.471,15.708,17.071000000000002,18.574999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,544,-0.17330000000000001,14.4724,0.081449999999999995,11.391999999999999,12.324999999999999,13.348000000000001,14.472,15.71,17.073,18.577000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,545,-0.17330000000000001,14.4742,0.081449999999999995,11.394,12.326000000000001,13.35,14.474,15.712,17.074999999999999,18.579000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,546,-0.17330000000000001,14.476000000000001,0.081439999999999999,11.395,12.327999999999999,13.351000000000001,14.476000000000001,15.712999999999999,17.077000000000002,18.581 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,547,-0.17330000000000001,14.4779,0.081439999999999999,11.397,12.33,13.353,14.478,15.715,17.079000000000001,18.582999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,548,-0.17330000000000001,14.479699999999999,0.081430000000000002,11.398999999999999,12.331,13.355,14.48,15.717000000000001,17.081,18.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,549,-0.17330000000000001,14.4815,0.081430000000000002,11.4,12.333,13.356999999999999,14.481999999999999,15.718999999999999,17.082999999999998,18.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,550,-0.17330000000000001,14.4834,0.081420000000000006,11.401999999999999,12.335000000000001,13.358000000000001,14.483000000000001,15.721,17.085000000000001,18.588999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,551,-0.17330000000000001,14.485200000000001,0.081420000000000006,11.403,12.336,13.36,14.484999999999999,15.723000000000001,17.087,18.591999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,552,-0.17330000000000001,14.4871,0.081420000000000006,11.404999999999999,12.337999999999999,13.362,14.487,15.725,17.088999999999999,18.594000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,553,-0.17330000000000001,14.488899999999999,0.081409999999999996,11.406000000000001,12.34,13.364000000000001,14.489000000000001,15.727,17.091000000000001,18.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,554,-0.17330000000000001,14.4908,0.081409999999999996,11.407999999999999,12.340999999999999,13.365,14.491,15.728999999999999,17.093,18.597999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,555,-0.17330000000000001,14.492599999999999,0.0814,11.41,12.343,13.367000000000001,14.493,15.731,17.094999999999999,18.600000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,556,-0.17330000000000001,14.4945,0.0814,11.411,12.345000000000001,13.369,14.494,15.733000000000001,17.097000000000001,18.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,557,-0.17330000000000001,14.4964,0.081390000000000004,11.413,12.347,13.371,14.496,15.734999999999999,17.099,18.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,558,-0.17330000000000001,14.4983,0.081390000000000004,11.414999999999999,12.348000000000001,13.372999999999999,14.497999999999999,15.737,17.100999999999999,18.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,559,-0.17330000000000001,14.5001,0.081379999999999994,11.416,12.35,13.374000000000001,14.5,15.739000000000001,17.103000000000002,18.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,560,-0.17330000000000001,14.502000000000001,0.081379999999999994,11.417999999999999,12.352,13.375999999999999,14.502000000000001,15.741,17.105,18.611000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,561,-0.17330000000000001,14.5039,0.081379999999999994,11.419,12.353,13.378,14.504,15.743,17.108000000000001,18.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,562,-0.17330000000000001,14.505800000000001,0.081369999999999998,11.420999999999999,12.355,13.38,14.506,15.744999999999999,17.109000000000002,18.614999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,563,-0.17330000000000001,14.5077,0.081369999999999998,11.423,12.356999999999999,13.382,14.507999999999999,15.747,17.111999999999998,18.617999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,564,-0.17330000000000001,14.509600000000001,0.081360000000000002,11.423999999999999,12.358000000000001,13.382999999999999,14.51,15.749000000000001,17.114000000000001,18.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,565,-0.17330000000000001,14.5115,0.081360000000000002,11.426,12.36,13.385,14.512,15.750999999999999,17.116,18.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,566,-0.17330000000000001,14.513400000000001,0.081360000000000002,11.427,12.362,13.387,14.513,15.753,17.117999999999999,18.623999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,567,-0.17330000000000001,14.5153,0.081350000000000006,11.429,12.364000000000001,13.388999999999999,14.515000000000001,15.755000000000001,17.12,18.626000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,568,-0.17330000000000001,14.517200000000001,0.081350000000000006,11.430999999999999,12.365,13.391,14.516999999999999,15.757,17.122,18.629000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,569,-0.17330000000000001,14.5192,0.081339999999999996,11.433,12.367000000000001,13.393000000000001,14.519,15.759,17.123999999999999,18.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,570,-0.17330000000000001,14.521100000000001,0.081339999999999996,11.433999999999999,12.369,13.394,14.521000000000001,15.760999999999999,17.126000000000001,18.632999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,571,-0.17330000000000001,14.523,0.081339999999999996,11.436,12.37,13.396000000000001,14.523,15.763,17.129000000000001,18.635000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,572,-0.17330000000000001,14.524900000000001,0.08133,11.436999999999999,12.372,13.398,14.525,15.765000000000001,17.131,18.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,573,-0.17330000000000001,14.526899999999999,0.08133,11.439,12.374000000000001,13.4,14.526999999999999,15.766999999999999,17.132999999999999,18.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,574,-0.17330000000000001,14.5288,0.08133,11.441000000000001,12.375999999999999,13.401999999999999,14.529,15.769,17.135000000000002,18.641999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,575,-0.17330000000000001,14.530799999999999,0.081320000000000003,11.442,12.378,13.404,14.531000000000001,15.771000000000001,17.137,18.643999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,576,-0.17330000000000001,14.5327,0.081320000000000003,11.444000000000001,12.379,13.404999999999999,14.532999999999999,15.773,17.138999999999999,18.646999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,577,-0.17330000000000001,14.534700000000001,0.081320000000000003,11.445,12.381,13.407,14.535,15.775,17.141999999999999,18.649000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,578,-0.17330000000000001,14.5366,0.081309999999999993,11.446999999999999,12.382999999999999,13.409000000000001,14.537000000000001,15.776999999999999,17.143999999999998,18.651 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,579,-0.17330000000000001,14.538600000000001,0.081309999999999993,11.449,12.384,13.411,14.539,15.779,17.146000000000001,18.654 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,580,-0.17330000000000001,14.5406,0.081309999999999993,11.45,12.385999999999999,13.413,14.541,15.781000000000001,17.148,18.655999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,581,-0.17330000000000001,14.5425,0.081299999999999997,11.452,12.388,13.414999999999999,14.542,15.782999999999999,17.149999999999999,18.658000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,582,-0.17330000000000001,14.544499999999999,0.081299999999999997,11.454000000000001,12.39,13.416,14.544,15.785,17.152999999999999,18.661000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,583,-0.17330000000000001,14.5465,0.081299999999999997,11.455,12.391,13.417999999999999,14.545999999999999,15.788,17.155000000000001,18.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,584,-0.17330000000000001,14.548400000000001,0.081290000000000001,11.457000000000001,12.393000000000001,13.42,14.548,15.79,17.157,18.664999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,585,-0.17330000000000001,14.5504,0.081290000000000001,11.459,12.395,13.422000000000001,14.55,15.792,17.158999999999999,18.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,586,-0.17330000000000001,14.5524,0.081290000000000001,11.46,12.397,13.423999999999999,14.552,15.794,17.161999999999999,18.670000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,587,-0.17330000000000001,14.554399999999999,0.081280000000000005,11.462,12.398999999999999,13.426,14.554,15.795999999999999,17.164000000000001,18.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,588,-0.17330000000000001,14.5564,0.081280000000000005,11.464,12.4,13.428000000000001,14.555999999999999,15.798,17.166,18.675000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,589,-0.17330000000000001,14.558400000000001,0.081280000000000005,11.465,12.401999999999999,13.43,14.558,15.8,17.167999999999999,18.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,590,-0.17330000000000001,14.5604,0.081269999999999995,11.467000000000001,12.404,13.430999999999999,14.56,15.802,17.170000000000002,18.678999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,591,-0.17330000000000001,14.5624,0.081269999999999995,11.468999999999999,12.406000000000001,13.433,14.561999999999999,15.804,17.172999999999998,18.681999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,592,-0.17330000000000001,14.564399999999999,0.081269999999999995,11.471,12.407,13.435,14.564,15.807,17.175000000000001,18.684000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,593,-0.17330000000000001,14.5664,0.081269999999999995,11.472,12.409000000000001,13.436999999999999,14.566000000000001,15.808999999999999,17.177,18.687000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,594,-0.17330000000000001,14.5685,0.081259999999999999,11.474,12.411,13.439,14.568,15.811,17.178999999999998,18.689 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,595,-0.17330000000000001,14.570499999999999,0.081259999999999999,11.476000000000001,12.413,13.441000000000001,14.57,15.813000000000001,17.181999999999999,18.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,596,-0.17330000000000001,14.5725,0.081259999999999999,11.477,12.414,13.443,14.571999999999999,15.815,17.184000000000001,18.693999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,597,-0.17330000000000001,14.5745,0.081250000000000003,11.478999999999999,12.416,13.445,14.574,15.817,17.186,18.696000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,598,-0.17330000000000001,14.576599999999999,0.081250000000000003,11.481,12.417999999999999,13.446999999999999,14.577,15.82,17.189,18.699000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,599,-0.17330000000000001,14.5786,0.081250000000000003,11.481999999999999,12.42,13.449,14.579000000000001,15.821999999999999,17.190999999999999,18.701000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,600,-0.17330000000000001,14.5806,0.081250000000000003,11.484,12.422000000000001,13.45,14.581,15.824,17.193000000000001,18.704000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,601,-0.17330000000000001,14.582700000000001,0.081240000000000007,11.486000000000001,12.423999999999999,13.452,14.583,15.826000000000001,17.195,18.706 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,602,-0.17330000000000001,14.5847,0.081240000000000007,11.488,12.425000000000001,13.454000000000001,14.585000000000001,15.827999999999999,17.198,18.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,603,-0.17330000000000001,14.5868,0.081240000000000007,11.489000000000001,12.427,13.456,14.587,15.83,17.2,18.710999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,604,-0.17330000000000001,14.588900000000001,0.081240000000000007,11.491,12.429,13.458,14.589,15.833,17.202999999999999,18.713999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,605,-0.17330000000000001,14.5909,0.081240000000000007,11.492000000000001,12.430999999999999,13.46,14.590999999999999,15.835000000000001,17.204999999999998,18.716999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,606,-0.17330000000000001,14.593,0.081229999999999997,11.494,12.433,13.462,14.593,15.837,17.207000000000001,18.719000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,607,-0.17330000000000001,14.5951,0.081229999999999997,11.496,12.433999999999999,13.464,14.595000000000001,15.839,17.21,18.721 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,608,-0.17330000000000001,14.597099999999999,0.081229999999999997,11.497999999999999,12.436,13.465999999999999,14.597,15.840999999999999,17.212,18.724 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,609,-0.17330000000000001,14.5992,0.081229999999999997,11.499000000000001,12.438000000000001,13.468,14.599,15.843999999999999,17.215,18.727 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,610,-0.17330000000000001,14.6013,0.081220000000000001,11.500999999999999,12.44,13.47,14.601000000000001,15.846,17.216999999999999,18.728999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,611,-0.17330000000000001,14.603400000000001,0.081220000000000001,11.503,12.442,13.472,14.603,15.848000000000001,17.219000000000001,18.731999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,612,-0.17330000000000001,14.605499999999999,0.081220000000000001,11.505000000000001,12.444000000000001,13.474,14.606,15.85,17.222000000000001,18.734000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,613,-0.17330000000000001,14.6076,0.081220000000000001,11.506,12.445,13.476000000000001,14.608000000000001,15.853,17.224,18.736999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,614,-0.17330000000000001,14.6097,0.081220000000000001,11.507999999999999,12.446999999999999,13.478,14.61,15.855,17.227,18.739999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,615,-0.17330000000000001,14.611800000000001,0.081210000000000004,11.51,12.449,13.48,14.612,15.856999999999999,17.228999999999999,18.742000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,616,-0.17330000000000001,14.613899999999999,0.081210000000000004,11.510999999999999,12.451000000000001,13.481999999999999,14.614000000000001,15.859,17.231000000000002,18.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,617,-0.17330000000000001,14.616,0.081210000000000004,11.513,12.452999999999999,13.484,14.616,15.862,17.234000000000002,18.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,618,-0.17330000000000001,14.6181,0.081210000000000004,11.515000000000001,12.455,13.486000000000001,14.618,15.864000000000001,17.236000000000001,18.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,619,-0.17330000000000001,14.620200000000001,0.081210000000000004,11.516,12.456,13.487,14.62,15.866,17.239000000000001,18.751999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,620,-0.17330000000000001,14.622299999999999,0.081210000000000004,11.518000000000001,12.458,13.489000000000001,14.622,15.868,17.241,18.754999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,621,-0.17330000000000001,14.624499999999999,0.081199999999999994,11.52,12.46,13.492000000000001,14.624000000000001,15.871,17.242999999999999,18.757000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,622,-0.17330000000000001,14.6266,0.081199999999999994,11.522,12.462,13.493,14.627000000000001,15.872999999999999,17.245999999999999,18.760000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,623,-0.17330000000000001,14.6287,0.081199999999999994,11.523,12.464,13.494999999999999,14.629,15.875,17.248000000000001,18.763000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,624,-0.17330000000000001,14.6309,0.081199999999999994,11.525,12.465999999999999,13.497,14.631,15.878,17.251000000000001,18.765999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,625,-0.17330000000000001,14.632999999999999,0.081199999999999994,11.526999999999999,12.467000000000001,13.499000000000001,14.632999999999999,15.88,17.253,18.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,626,-0.17330000000000001,14.635199999999999,0.081199999999999994,11.529,12.468999999999999,13.500999999999999,14.635,15.882,17.256,18.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,627,-0.17330000000000001,14.6373,0.081199999999999994,11.53,12.471,13.503,14.637,15.885,17.257999999999999,18.774000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,628,-0.17330000000000001,14.6395,0.081189999999999998,11.532,12.473000000000001,13.506,14.64,15.887,17.260999999999999,18.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,629,-0.17330000000000001,14.6416,0.081189999999999998,11.534000000000001,12.475,13.507,14.641999999999999,15.888999999999999,17.263000000000002,18.779 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,630,-0.17330000000000001,14.643800000000001,0.081189999999999998,11.536,12.477,13.509,14.644,15.891,17.265999999999998,18.782 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,631,-0.17330000000000001,14.646000000000001,0.081189999999999998,11.537000000000001,12.478999999999999,13.512,14.646000000000001,15.894,17.268000000000001,18.783999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,632,-0.17330000000000001,14.648099999999999,0.081189999999999998,11.539,12.481,13.513,14.648,15.896000000000001,17.271000000000001,18.786999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,633,-0.17330000000000001,14.6503,0.081189999999999998,11.541,12.481999999999999,13.515000000000001,14.65,15.898999999999999,17.273,18.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,634,-0.17330000000000001,14.6525,0.081189999999999998,11.542999999999999,12.484,13.518000000000001,14.651999999999999,15.901,17.276,18.792999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,635,-0.17330000000000001,14.6547,0.081189999999999998,11.544,12.486000000000001,13.52,14.654999999999999,15.903,17.279,18.795999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,636,-0.17330000000000001,14.6569,0.081189999999999998,11.545999999999999,12.488,13.522,14.657,15.906000000000001,17.280999999999999,18.797999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,637,-0.17330000000000001,14.6591,0.081189999999999998,11.548,12.49,13.523999999999999,14.659000000000001,15.907999999999999,17.283999999999999,18.800999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,638,-0.17330000000000001,14.661300000000001,0.081180000000000002,11.55,12.492000000000001,13.526,14.661,15.91,17.286000000000001,18.803000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,639,-0.17330000000000001,14.663500000000001,0.081180000000000002,11.552,12.494,13.528,14.664,15.913,17.289000000000001,18.806000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,640,-0.17330000000000001,14.665699999999999,0.081180000000000002,11.553000000000001,12.496,13.53,14.666,15.914999999999999,17.291,18.809000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,641,-0.17330000000000001,14.667899999999999,0.081180000000000002,11.555,12.497999999999999,13.532,14.667999999999999,15.917,17.294,18.812000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,642,-0.17330000000000001,14.6701,0.081180000000000002,11.557,12.5,13.534000000000001,14.67,15.92,17.295999999999999,18.815000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,643,-0.17330000000000001,14.6723,0.081180000000000002,11.558,12.500999999999999,13.536,14.672000000000001,15.922000000000001,17.298999999999999,18.818000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,644,-0.17330000000000001,14.6746,0.081180000000000002,11.56,12.503,13.538,14.675000000000001,15.925000000000001,17.302,18.821000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,645,-0.17330000000000001,14.6768,0.081180000000000002,11.561999999999999,12.505000000000001,13.54,14.677,15.927,17.303999999999998,18.823 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,646,-0.17330000000000001,14.679,0.081180000000000002,11.564,12.507,13.542,14.679,15.93,17.306999999999999,18.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,647,-0.17330000000000001,14.6813,0.081180000000000002,11.566000000000001,12.509,13.544,14.680999999999999,15.932,17.309999999999999,18.829000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,648,-0.17330000000000001,14.6835,0.081180000000000002,11.567,12.510999999999999,13.545999999999999,14.683999999999999,15.933999999999999,17.312000000000001,18.832000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,649,-0.17330000000000001,14.685700000000001,0.081180000000000002,11.569000000000001,12.513,13.548,14.686,15.936999999999999,17.315000000000001,18.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,650,-0.17330000000000001,14.688000000000001,0.081180000000000002,11.571,12.515000000000001,13.55,14.688000000000001,15.939,17.318000000000001,18.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,651,-0.17330000000000001,14.690200000000001,0.081180000000000002,11.573,12.516999999999999,13.552,14.69,15.942,17.32,18.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,652,-0.17330000000000001,14.692500000000001,0.081180000000000002,11.574,12.519,13.555,14.692,15.944000000000001,17.323,18.843 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,653,-0.17330000000000001,14.694800000000001,0.081180000000000002,11.576000000000001,12.521000000000001,13.557,14.695,15.946999999999999,17.326000000000001,18.846 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,654,-0.17330000000000001,14.696999999999999,0.081180000000000002,11.577999999999999,12.522,13.558999999999999,14.696999999999999,15.949,17.327999999999999,18.849 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,655,-0.17330000000000001,14.699299999999999,0.081180000000000002,11.58,12.523999999999999,13.561,14.699,15.952,17.331,18.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,656,-0.17330000000000001,14.701599999999999,0.081180000000000002,11.582000000000001,12.526,13.563000000000001,14.702,15.954000000000001,17.334,18.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,657,-0.17330000000000001,14.703799999999999,0.081180000000000002,11.583,12.528,13.565,14.704000000000001,15.956,17.335999999999999,18.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,658,-0.17330000000000001,14.706099999999999,0.081180000000000002,11.585000000000001,12.53,13.567,14.706,15.959,17.338999999999999,18.861000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,659,-0.17330000000000001,14.708399999999999,0.081180000000000002,11.587,12.532,13.569000000000001,14.708,15.961,17.341999999999999,18.864000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,660,-0.17330000000000001,14.710699999999999,0.081180000000000002,11.589,12.534000000000001,13.571,14.711,15.964,17.344000000000001,18.867000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,661,-0.17330000000000001,14.712999999999999,0.081180000000000002,11.590999999999999,12.536,13.573,14.712999999999999,15.965999999999999,17.347000000000001,18.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,662,-0.17330000000000001,14.715199999999999,0.081180000000000002,11.592000000000001,12.538,13.576000000000001,14.715,15.968999999999999,17.350000000000001,18.873000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,663,-0.17330000000000001,14.717499999999999,0.081180000000000002,11.593999999999999,12.54,13.577999999999999,14.718,15.971,17.352,18.876000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,664,-0.17330000000000001,14.719799999999999,0.081180000000000002,11.596,12.542,13.58,14.72,15.974,17.355,18.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,665,-0.17330000000000001,14.722099999999999,0.081180000000000002,11.598000000000001,12.544,13.582000000000001,14.722,15.976000000000001,17.358000000000001,18.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,666,-0.17330000000000001,14.724500000000001,0.081180000000000002,11.6,12.545999999999999,13.584,14.724,15.978999999999999,17.361000000000001,18.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,667,-0.17330000000000001,14.726800000000001,0.081180000000000002,11.601000000000001,12.548,13.586,14.727,15.981,17.363,18.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,668,-0.17330000000000001,14.729100000000001,0.081180000000000002,11.603,12.55,13.587999999999999,14.728999999999999,15.984,17.366,18.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,669,-0.17330000000000001,14.731400000000001,0.081180000000000002,11.605,12.552,13.59,14.731,15.986000000000001,17.369,18.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,670,-0.17330000000000001,14.733700000000001,0.081180000000000002,11.606999999999999,12.554,13.593,14.734,15.989000000000001,17.370999999999999,18.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,671,-0.17330000000000001,14.736000000000001,0.081180000000000002,11.609,12.555999999999999,13.595000000000001,14.736000000000001,15.991,17.373999999999999,18.899000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,672,-0.17330000000000001,14.7384,0.081180000000000002,11.611000000000001,12.558,13.597,14.738,15.994,17.376999999999999,18.902000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,673,-0.17330000000000001,14.7407,0.081180000000000002,11.612,12.56,13.599,14.741,15.996,17.38,18.905000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,674,-0.17330000000000001,14.743,0.081180000000000002,11.614000000000001,12.561999999999999,13.601000000000001,14.743,15.999000000000001,17.382000000000001,18.908000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,675,-0.17330000000000001,14.7454,0.081180000000000002,11.616,12.564,13.603,14.744999999999999,16.001999999999999,17.385000000000002,18.911000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,676,-0.17330000000000001,14.7477,0.081180000000000002,11.618,12.566000000000001,13.605,14.747999999999999,16.004000000000001,17.388000000000002,18.914000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,677,-0.17330000000000001,14.7501,0.081180000000000002,11.62,12.568,13.608000000000001,14.75,16.007000000000001,17.390999999999998,18.917000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,678,-0.17330000000000001,14.7524,0.081180000000000002,11.622,12.57,13.61,14.752000000000001,16.009,17.393000000000001,18.920000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,679,-0.17330000000000001,14.754799999999999,0.081180000000000002,11.622999999999999,12.571999999999999,13.612,14.755000000000001,16.012,17.396000000000001,18.922999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,680,-0.17330000000000001,14.757099999999999,0.081180000000000002,11.625,12.574,13.614000000000001,14.757,16.013999999999999,17.399000000000001,18.925999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,681,-0.17330000000000001,14.759499999999999,0.081189999999999998,11.627000000000001,12.574999999999999,13.616,14.76,16.016999999999999,17.402000000000001,18.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,682,-0.17330000000000001,14.761799999999999,0.081189999999999998,11.629,12.577,13.618,14.762,16.02,17.405000000000001,18.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,683,-0.17330000000000001,14.764200000000001,0.081189999999999998,11.631,12.579000000000001,13.621,14.763999999999999,16.021999999999998,17.408000000000001,18.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,684,-0.17330000000000001,14.766500000000001,0.081189999999999998,11.632,12.581,13.622999999999999,14.766,16.024999999999999,17.41,18.939 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,685,-0.17330000000000001,14.7689,0.081189999999999998,11.634,12.583,13.625,14.769,16.027000000000001,17.413,18.942 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,686,-0.17330000000000001,14.7713,0.081189999999999998,11.635999999999999,12.586,13.627000000000001,14.771000000000001,16.03,17.416,18.945 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,687,-0.17330000000000001,14.7737,0.081189999999999998,11.638,12.587999999999999,13.629,14.773999999999999,16.032,17.419,18.948 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,688,-0.17330000000000001,14.776,0.081189999999999998,11.64,12.59,13.631,14.776,16.035,17.422000000000001,18.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,689,-0.17330000000000001,14.7784,0.081189999999999998,11.641999999999999,12.592000000000001,13.634,14.778,16.038,17.423999999999999,18.954000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,690,-0.17330000000000001,14.780799999999999,0.081189999999999998,11.644,12.593999999999999,13.635999999999999,14.781000000000001,16.04,17.427,18.957000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,691,-0.17330000000000001,14.783200000000001,0.081199999999999994,11.645,12.595000000000001,13.638,14.782999999999999,16.042999999999999,17.43,18.960999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,692,-0.17330000000000001,14.785600000000001,0.081199999999999994,11.647,12.597,13.64,14.786,16.045999999999999,17.433,18.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,693,-0.17330000000000001,14.788,0.081199999999999994,11.648999999999999,12.6,13.641999999999999,14.788,16.047999999999998,17.436,18.966999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,694,-0.17330000000000001,14.7904,0.081199999999999994,11.651,12.602,13.645,14.79,16.050999999999998,17.439,18.97 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,695,-0.17330000000000001,14.7928,0.081199999999999994,11.653,12.603999999999999,13.647,14.792999999999999,16.053000000000001,17.442,18.972999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,696,-0.17330000000000001,14.795199999999999,0.081199999999999994,11.654999999999999,12.606,13.648999999999999,14.795,16.056000000000001,17.445,18.975999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,697,-0.17330000000000001,14.797599999999999,0.081199999999999994,11.657,12.608000000000001,13.651,14.798,16.059000000000001,17.446999999999999,18.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,698,-0.17330000000000001,14.8,0.081199999999999994,11.657999999999999,12.61,13.653,14.8,16.061,17.45,18.983000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,699,-0.17330000000000001,14.8024,0.081210000000000004,11.66,12.612,13.656000000000001,14.802,16.064,17.452999999999999,18.986000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,700,-0.17330000000000001,14.8048,0.081210000000000004,11.662000000000001,12.614000000000001,13.657999999999999,14.805,16.067,17.456,18.989000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,701,-0.17330000000000001,14.8072,0.081210000000000004,11.664,12.616,13.66,14.807,16.068999999999999,17.459,18.992000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,702,-0.17330000000000001,14.8096,0.081210000000000004,11.666,12.618,13.662000000000001,14.81,16.071999999999999,17.462,18.995000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,703,-0.17330000000000001,14.811999999999999,0.081210000000000004,11.667999999999999,12.62,13.664,14.811999999999999,16.074000000000002,17.465,18.998999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,704,-0.17330000000000001,14.814500000000001,0.081210000000000004,11.67,12.622,13.667,14.814,16.077000000000002,17.468,19.001999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,705,-0.17330000000000001,14.8169,0.081220000000000001,11.670999999999999,12.624000000000001,13.669,14.817,16.079999999999998,17.471,19.004999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,706,-0.17330000000000001,14.8193,0.081220000000000001,11.673,12.625999999999999,13.670999999999999,14.819000000000001,16.082000000000001,17.474,19.007999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,707,-0.17330000000000001,14.8217,0.081220000000000001,11.675000000000001,12.628,13.673,14.821999999999999,16.085000000000001,17.477,19.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,708,-0.17330000000000001,14.824199999999999,0.081220000000000001,11.677,12.63,13.676,14.824,16.088000000000001,17.48,19.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,709,-0.17330000000000001,14.826599999999999,0.081220000000000001,11.679,12.632,13.678000000000001,14.827,16.09,17.481999999999999,19.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,710,-0.17330000000000001,14.829000000000001,0.081220000000000001,11.680999999999999,12.634,13.68,14.829000000000001,16.093,17.484999999999999,19.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,711,-0.17330000000000001,14.8315,0.081229999999999997,11.682,12.635999999999999,13.682,14.832000000000001,16.096,17.489000000000001,19.024999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,712,-0.17330000000000001,14.8339,0.081229999999999997,11.683999999999999,12.638,13.683999999999999,14.834,16.097999999999999,17.491,19.027999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,713,-0.17330000000000001,14.836399999999999,0.081229999999999997,11.686,12.64,13.686999999999999,14.836,16.100999999999999,17.494,19.030999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,714,-0.17330000000000001,14.838800000000001,0.081229999999999997,11.688000000000001,12.641999999999999,13.689,14.839,16.103999999999999,17.497,19.033999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,715,-0.17330000000000001,14.8413,0.081229999999999997,11.69,12.644,13.691000000000001,14.840999999999999,16.106000000000002,17.5,19.036999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,716,-0.17330000000000001,14.8437,0.081240000000000007,11.691000000000001,12.646000000000001,13.693,14.843999999999999,16.109000000000002,17.503,19.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,717,-0.17330000000000001,14.8462,0.081240000000000007,11.693,12.648,13.696,14.846,16.111999999999998,17.506,19.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,718,-0.17330000000000001,14.848599999999999,0.081240000000000007,11.695,12.65,13.698,14.849,16.114999999999998,17.509,19.047000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,719,-0.17330000000000001,14.851100000000001,0.081240000000000007,11.696999999999999,12.651999999999999,13.7,14.851000000000001,16.117000000000001,17.512,19.05 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,720,-0.17330000000000001,14.8535,0.081240000000000007,11.699,12.654,13.702,14.853999999999999,16.12,17.515000000000001,19.053999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,721,-0.17330000000000001,14.856,0.081250000000000003,11.701000000000001,12.656000000000001,13.704000000000001,14.856,16.123000000000001,17.518000000000001,19.056999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,722,-0.17330000000000001,14.858499999999999,0.081250000000000003,11.702999999999999,12.657999999999999,13.707000000000001,14.858000000000001,16.125,17.521000000000001,19.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,723,-0.17330000000000001,14.860900000000001,0.081250000000000003,11.705,12.66,13.709,14.861000000000001,16.128,17.524000000000001,19.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,724,-0.17330000000000001,14.8634,0.081250000000000003,11.707000000000001,12.663,13.711,14.863,16.131,17.527000000000001,19.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,725,-0.17330000000000001,14.8659,0.081259999999999999,11.708,12.664,13.712999999999999,14.866,16.134,17.53,19.071000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,726,-0.17330000000000001,14.8683,0.081259999999999999,11.71,12.666,13.715999999999999,14.868,16.135999999999999,17.533000000000001,19.074000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,727,-0.17330000000000001,14.870799999999999,0.081259999999999999,11.712,12.669,13.718,14.871,16.138999999999999,17.536000000000001,19.077000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,728,-0.17330000000000001,14.8733,0.081259999999999999,11.714,12.670999999999999,13.72,14.872999999999999,16.141999999999999,17.539000000000001,19.079999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,729,-0.17330000000000001,14.8758,0.081269999999999995,11.715999999999999,12.673,13.722,14.875999999999999,16.145,17.542000000000002,19.084 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,730,-0.17330000000000001,14.878299999999999,0.081269999999999995,11.718,12.675000000000001,13.725,14.878,16.146999999999998,17.545000000000002,19.087 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,731,-0.17330000000000001,14.880800000000001,0.081269999999999995,11.72,12.677,13.727,14.881,16.149999999999999,17.547999999999998,19.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,732,-0.17330000000000001,14.8832,0.081269999999999995,11.722,12.679,13.728999999999999,14.882999999999999,16.152999999999999,17.550999999999998,19.093 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,733,-0.17330000000000001,14.8857,0.081280000000000005,11.723000000000001,12.680999999999999,13.731,14.885999999999999,16.155000000000001,17.553999999999998,19.097000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,734,-0.17330000000000001,14.888199999999999,0.081280000000000005,11.725,12.683,13.734,14.888,16.158000000000001,17.556999999999999,19.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,735,-0.17330000000000001,14.890700000000001,0.081280000000000005,11.727,12.685,13.736000000000001,14.891,16.161000000000001,17.559999999999999,19.103999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,736,-0.17330000000000001,14.8932,0.081280000000000005,11.728999999999999,12.686999999999999,13.738,14.893000000000001,16.164000000000001,17.562999999999999,19.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,737,-0.17330000000000001,14.8957,0.081290000000000001,11.731,12.689,13.741,14.896000000000001,16.166,17.565999999999999,19.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,738,-0.17330000000000001,14.898199999999999,0.081290000000000001,11.733000000000001,12.691000000000001,13.743,14.898,16.169,17.568999999999999,19.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,739,-0.17330000000000001,14.900700000000001,0.081290000000000001,11.734999999999999,12.693,13.744999999999999,14.901,16.172000000000001,17.571999999999999,19.117000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,740,-0.17330000000000001,14.9032,0.081290000000000001,11.737,12.695,13.747,14.903,16.175000000000001,17.574999999999999,19.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,741,-0.17330000000000001,14.9057,0.081299999999999997,11.738,12.696999999999999,13.75,14.906000000000001,16.178000000000001,17.579000000000001,19.123999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,742,-0.17330000000000001,14.908200000000001,0.081299999999999997,11.74,12.699,13.752000000000001,14.907999999999999,16.18,17.581,19.126999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,743,-0.17330000000000001,14.9107,0.081299999999999997,11.742000000000001,12.702,13.754,14.911,16.183,17.584,19.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,744,-0.17330000000000001,14.9132,0.081309999999999993,11.744,12.702999999999999,13.756,14.913,16.186,17.588000000000001,19.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,745,-0.17330000000000001,14.915699999999999,0.081309999999999993,11.746,12.706,13.759,14.916,16.189,17.591000000000001,19.138000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,746,-0.17330000000000001,14.9183,0.081309999999999993,11.747999999999999,12.708,13.760999999999999,14.917999999999999,16.190999999999999,17.594000000000001,19.140999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,747,-0.17330000000000001,14.9208,0.081309999999999993,11.75,12.71,13.763,14.920999999999999,16.193999999999999,17.597000000000001,19.143999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,748,-0.17330000000000001,14.923299999999999,0.081320000000000003,11.750999999999999,12.712,13.766,14.923,16.196999999999999,17.600000000000001,19.148 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,749,-0.17330000000000001,14.925800000000001,0.081320000000000003,11.753,12.714,13.768000000000001,14.926,16.2,17.603000000000002,19.151 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,750,-0.17330000000000001,14.9283,0.081320000000000003,11.755000000000001,12.715999999999999,13.77,14.928000000000001,16.202000000000002,17.606000000000002,19.154 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,751,-0.17330000000000001,14.9308,0.08133,11.757,12.718,13.772,14.930999999999999,16.204999999999998,17.609000000000002,19.158000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,752,-0.17330000000000001,14.933299999999999,0.08133,11.759,12.72,13.775,14.933,16.207999999999998,17.611999999999998,19.161000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,753,-0.17330000000000001,14.9359,0.08133,11.760999999999999,12.722,13.776999999999999,14.936,16.210999999999999,17.614999999999998,19.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,754,-0.17330000000000001,14.9384,0.081339999999999996,11.763,12.724,13.779,14.938000000000001,16.213999999999999,17.619,19.167999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,755,-0.17330000000000001,14.940899999999999,0.081339999999999996,11.765000000000001,12.726000000000001,13.782,14.941000000000001,16.216000000000001,17.620999999999999,19.172000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,756,-0.17330000000000001,14.9434,0.081339999999999996,11.766999999999999,12.728,13.784000000000001,14.943,16.219000000000001,17.623999999999999,19.175000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,757,-0.17330000000000001,14.9459,0.081350000000000006,11.768000000000001,12.73,13.786,14.946,16.222000000000001,17.628,19.178999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,758,-0.17330000000000001,14.948499999999999,0.081350000000000006,11.77,12.733000000000001,13.788,14.948,16.225000000000001,17.631,19.181999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,759,-0.17330000000000001,14.951000000000001,0.081350000000000006,11.772,12.734999999999999,13.791,14.951000000000001,16.227,17.634,19.184999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,760,-0.17330000000000001,14.9535,0.081360000000000002,11.773999999999999,12.737,13.792999999999999,14.954000000000001,16.23,17.637,19.189 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,761,-0.17330000000000001,14.956,0.081360000000000002,11.776,12.739000000000001,13.795,14.956,16.233000000000001,17.64,19.192 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,762,-0.17330000000000001,14.958500000000001,0.081360000000000002,11.778,12.741,13.798,14.958,16.236000000000001,17.643000000000001,19.195 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,763,-0.17330000000000001,14.9611,0.081369999999999998,11.78,12.743,13.8,14.961,16.239000000000001,17.646000000000001,19.199000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,764,-0.17330000000000001,14.9636,0.081369999999999998,11.782,12.744999999999999,13.802,14.964,16.242000000000001,17.649000000000001,19.202999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,765,-0.17330000000000001,14.966100000000001,0.081369999999999998,11.782999999999999,12.747,13.804,14.965999999999999,16.244,17.652000000000001,19.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,766,-0.17330000000000001,14.9686,0.081379999999999994,11.785,12.749000000000001,13.807,14.968999999999999,16.247,17.655999999999999,19.21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,767,-0.17330000000000001,14.9712,0.081379999999999994,11.787000000000001,12.750999999999999,13.808999999999999,14.971,16.25,17.658999999999999,19.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,768,-0.17330000000000001,14.973699999999999,0.081379999999999994,11.789,12.753,13.811,14.974,16.253,17.661999999999999,19.216000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,769,-0.17330000000000001,14.9762,0.081390000000000004,11.791,12.755000000000001,13.813000000000001,14.976000000000001,16.256,17.664999999999999,19.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,770,-0.17330000000000001,14.9787,0.081390000000000004,11.792999999999999,12.757,13.816000000000001,14.978999999999999,16.257999999999999,17.667999999999999,19.222999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,771,-0.17330000000000001,14.981299999999999,0.081390000000000004,11.795,12.76,13.818,14.981,16.260999999999999,17.670999999999999,19.225999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,772,-0.17330000000000001,14.9838,0.0814,11.795999999999999,12.760999999999999,13.82,14.984,16.263999999999999,17.673999999999999,19.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,773,-0.17330000000000001,14.9863,0.0814,11.798,12.763999999999999,13.823,14.986000000000001,16.266999999999999,17.677,19.234000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,774,-0.17330000000000001,14.988899999999999,0.0814,11.8,12.766,13.824999999999999,14.989000000000001,16.268999999999998,17.68,19.236999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,775,-0.17330000000000001,14.991400000000001,0.081409999999999996,11.802,12.768000000000001,13.827,14.991,16.271999999999998,17.684000000000001,19.241 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,776,-0.17330000000000001,14.9939,0.081409999999999996,11.804,12.77,13.829000000000001,14.994,16.274999999999999,17.687000000000001,19.244 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,777,-0.17330000000000001,14.9964,0.081420000000000006,11.805999999999999,12.772,13.832000000000001,14.996,16.277999999999999,17.690000000000001,19.248000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,778,-0.17330000000000001,14.999000000000001,0.081420000000000006,11.808,12.773999999999999,13.834,14.999000000000001,16.280999999999999,17.693000000000001,19.251000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,779,-0.17330000000000001,15.0015,0.081420000000000006,11.81,12.776,13.836,15.002000000000001,16.283000000000001,17.696000000000002,19.254000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,780,-0.17330000000000001,15.004,0.081430000000000002,11.811,12.778,13.839,15.004,16.286000000000001,17.699000000000002,19.257999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,781,-0.17330000000000001,15.006500000000001,0.081430000000000002,11.813000000000001,12.78,13.840999999999999,15.006,16.289000000000001,17.702000000000002,19.260999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,782,-0.17330000000000001,15.0091,0.081439999999999999,11.815,12.782,13.843,15.009,16.292000000000002,17.706,19.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,783,-0.17330000000000001,15.0116,0.081439999999999999,11.817,12.784000000000001,13.845000000000001,15.012,16.295000000000002,17.709,19.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,784,-0.17330000000000001,15.014099999999999,0.081439999999999999,11.819000000000001,12.786,13.848000000000001,15.013999999999999,16.297000000000001,17.710999999999999,19.271999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,785,-0.17330000000000001,15.0166,0.081449999999999995,11.821,12.788,13.85,15.016999999999999,16.3,17.715,19.274999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,786,-0.17330000000000001,15.0192,0.081449999999999995,11.823,12.79,13.852,15.019,16.303000000000001,17.718,19.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,787,-0.17330000000000001,15.021699999999999,0.081460000000000005,11.824,12.792,13.853999999999999,15.022,16.306000000000001,17.721,19.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,788,-0.17330000000000001,15.0242,0.081460000000000005,11.826000000000001,12.794,13.856999999999999,15.023999999999999,16.309000000000001,17.724,19.286000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,789,-0.17330000000000001,15.0267,0.081460000000000005,11.827999999999999,12.795999999999999,13.859,15.026999999999999,16.311,17.727,19.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,790,-0.17330000000000001,15.029199999999999,0.081470000000000001,11.83,12.798,13.861000000000001,15.029,16.314,17.73,19.292999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,791,-0.17330000000000001,15.0318,0.081470000000000001,11.832000000000001,12.801,13.864000000000001,15.032,16.317,17.733000000000001,19.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,792,-0.17330000000000001,15.0343,0.081479999999999997,11.833,12.802,13.866,15.034000000000001,16.32,17.736999999999998,19.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,793,-0.17330000000000001,15.036799999999999,0.081479999999999997,11.835000000000001,12.805,13.868,15.037000000000001,16.323,17.739999999999998,19.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,794,-0.17330000000000001,15.039300000000001,0.081490000000000007,11.837,12.805999999999999,13.87,15.039,16.326000000000001,17.742999999999999,19.306999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,795,-0.17330000000000001,15.0418,0.081490000000000007,11.839,12.808999999999999,13.872999999999999,15.042,16.327999999999999,17.745999999999999,19.309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,796,-0.17330000000000001,15.0443,0.081490000000000007,11.840999999999999,12.811,13.875,15.044,16.331,17.748999999999999,19.312999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,797,-0.17330000000000001,15.046799999999999,0.081500000000000003,11.843,12.813000000000001,13.877000000000001,15.047000000000001,16.334,17.751999999999999,19.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,798,-0.17330000000000001,15.0494,0.081500000000000003,11.845000000000001,12.815,13.879,15.048999999999999,16.337,17.754999999999999,19.321000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,799,-0.17330000000000001,15.0519,0.081509999999999999,11.846,12.817,13.882,15.052,16.34,17.759,19.324000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,800,-0.17330000000000001,15.054399999999999,0.081509999999999999,11.848000000000001,12.819000000000001,13.884,15.054,16.341999999999999,17.762,19.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,801,-0.17330000000000001,15.056900000000001,0.081519999999999995,11.85,12.821,13.885999999999999,15.057,16.344999999999999,17.765000000000001,19.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,802,-0.17330000000000001,15.0594,0.081519999999999995,11.852,12.823,13.888,15.058999999999999,16.347999999999999,17.768000000000001,19.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,803,-0.17330000000000001,15.0619,0.081519999999999995,11.853999999999999,12.824999999999999,13.891,15.061999999999999,16.350999999999999,17.771000000000001,19.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,804,-0.17330000000000001,15.064399999999999,0.081530000000000005,11.855,12.827,13.893000000000001,15.064,16.353999999999999,17.774000000000001,19.341999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,805,-0.17330000000000001,15.0669,0.081530000000000005,11.856999999999999,12.829000000000001,13.895,15.067,16.356000000000002,17.777000000000001,19.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,806,-0.17330000000000001,15.0694,0.081540000000000001,11.859,12.831,13.897,15.069000000000001,16.359000000000002,17.78,19.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,807,-0.17330000000000001,15.071899999999999,0.081540000000000001,11.861000000000001,12.833,13.9,15.071999999999999,16.361999999999998,17.783000000000001,19.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,808,-0.17330000000000001,15.074299999999999,0.081549999999999997,11.863,12.835000000000001,13.901999999999999,15.074,16.364999999999998,17.786999999999999,19.356000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,809,-0.17330000000000001,15.0768,0.081549999999999997,11.865,12.837,13.904,15.077,16.367000000000001,17.789000000000001,19.359000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,810,-0.17330000000000001,15.0793,0.081559999999999994,11.866,12.839,13.906000000000001,15.079000000000001,16.37,17.792999999999999,19.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,811,-0.17330000000000001,15.081799999999999,0.081559999999999994,11.868,12.840999999999999,13.907999999999999,15.082000000000001,16.373000000000001,17.795999999999999,19.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,812,-0.17330000000000001,15.084300000000001,0.081570000000000004,11.87,12.843,13.911,15.084,16.376000000000001,17.798999999999999,19.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,813,-0.17330000000000001,15.0868,0.081570000000000004,11.872,12.845000000000001,13.913,15.087,16.379000000000001,17.802,19.373000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,814,-0.17330000000000001,15.0892,0.08158,11.872999999999999,12.847,13.914999999999999,15.089,16.381,17.805,19.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,815,-0.17330000000000001,15.091699999999999,0.08158,11.875,12.849,13.917,15.092000000000001,16.384,17.808,19.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,816,-0.17330000000000001,15.094200000000001,0.081589999999999996,11.877000000000001,12.851000000000001,13.92,15.093999999999999,16.387,17.811,19.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,817,-0.17330000000000001,15.0967,0.081589999999999996,11.879,12.853,13.922000000000001,15.097,16.39,17.814,19.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,818,-0.17330000000000001,15.0991,0.081600000000000006,11.88,12.855,13.923999999999999,15.099,16.391999999999999,17.818000000000001,19.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,819,-0.17330000000000001,15.101599999999999,0.081600000000000006,11.882,12.856999999999999,13.926,15.102,16.395,17.821000000000002,19.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,820,-0.17330000000000001,15.104100000000001,0.081610000000000002,11.884,12.859,13.928000000000001,15.103999999999999,16.398,17.824000000000002,19.396999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,821,-0.17330000000000001,15.1065,0.081610000000000002,11.885999999999999,12.861000000000001,13.930999999999999,15.106,16.401,17.827000000000002,19.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,822,-0.17330000000000001,15.109,0.081619999999999998,11.887,12.863,13.933,15.109,16.402999999999999,17.829999999999998,19.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,823,-0.17330000000000001,15.1114,0.081619999999999998,11.888999999999999,12.865,13.935,15.111000000000001,16.405999999999999,17.832999999999998,19.407 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,824,-0.17330000000000001,15.113899999999999,0.081629999999999994,11.891,12.866,13.936999999999999,15.114000000000001,16.408999999999999,17.835999999999999,19.411000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,825,-0.17330000000000001,15.116300000000001,0.081629999999999994,11.893000000000001,12.868,13.939,15.116,16.411999999999999,17.838999999999999,19.414000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,826,-0.17330000000000001,15.1188,0.081640000000000004,11.894,12.87,13.942,15.119,16.414000000000001,17.841999999999999,19.417999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,827,-0.17330000000000001,15.1212,0.081640000000000004,11.896000000000001,12.872,13.944000000000001,15.121,16.417000000000002,17.844999999999999,19.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,828,-0.17330000000000001,15.1236,0.08165,11.898,12.874000000000001,13.946,15.124000000000001,16.420000000000002,17.847999999999999,19.425000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,829,-0.17330000000000001,15.126099999999999,0.08165,11.9,12.875999999999999,13.948,15.125999999999999,16.422999999999998,17.850999999999999,19.428000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,830,-0.17330000000000001,15.128500000000001,0.081659999999999996,11.901,12.878,13.95,15.128,16.425000000000001,17.855,19.431999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,831,-0.17330000000000001,15.1309,0.081659999999999996,11.903,12.88,13.952,15.131,16.428000000000001,17.856999999999999,19.434999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,832,-0.17330000000000001,15.1334,0.081670000000000006,11.904999999999999,12.882,13.955,15.132999999999999,16.431000000000001,17.861000000000001,19.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,833,-0.17330000000000001,15.1358,0.081670000000000006,11.907,12.884,13.957000000000001,15.135999999999999,16.433,17.863,19.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,834,-0.17330000000000001,15.138199999999999,0.081680000000000003,11.907999999999999,12.885999999999999,13.959,15.138,16.436,17.867000000000001,19.446000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,835,-0.17330000000000001,15.140599999999999,0.081680000000000003,11.91,12.888,13.961,15.141,16.439,17.87,19.449000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,836,-0.17330000000000001,15.143000000000001,0.081689999999999999,11.912000000000001,12.89,13.962999999999999,15.143000000000001,16.442,17.873000000000001,19.452000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,837,-0.17330000000000001,15.1454,0.081689999999999999,11.914,12.891999999999999,13.965,15.145,16.443999999999999,17.876000000000001,19.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,838,-0.17330000000000001,15.1478,0.081699999999999995,11.914999999999999,12.894,13.967000000000001,15.148,16.446999999999999,17.879000000000001,19.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,839,-0.17330000000000001,15.1502,0.081699999999999995,11.917,12.896000000000001,13.97,15.15,16.45,17.882000000000001,19.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,840,-0.17330000000000001,15.1526,0.081710000000000005,11.919,12.897,13.972,15.153,16.452000000000002,17.885000000000002,19.466000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,841,-0.17330000000000001,15.154999999999999,0.081720000000000001,11.92,12.898999999999999,13.974,15.154999999999999,16.454999999999998,17.888000000000002,19.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,842,-0.17330000000000001,15.157400000000001,0.081720000000000001,11.922000000000001,12.901,13.976000000000001,15.157,16.457999999999998,17.890999999999998,19.472999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,843,-0.17330000000000001,15.159800000000001,0.081729999999999997,11.923999999999999,12.903,13.978,15.16,16.46,17.893999999999998,19.475999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,844,-0.17330000000000001,15.1622,0.081729999999999997,11.926,12.904999999999999,13.98,15.162000000000001,16.463000000000001,17.896999999999998,19.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,845,-0.17330000000000001,15.1646,0.081739999999999993,11.927,12.907,13.981999999999999,15.164999999999999,16.466000000000001,17.899999999999999,19.483000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,846,-0.17330000000000001,15.167,0.081739999999999993,11.929,12.909000000000001,13.984999999999999,15.167,16.468,17.902999999999999,19.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,847,-0.17330000000000001,15.1693,0.081750000000000003,11.93,12.911,13.987,15.169,16.471,17.905999999999999,19.489999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,848,-0.17330000000000001,15.1717,0.081750000000000003,11.932,12.913,13.989000000000001,15.172000000000001,16.474,17.908999999999999,19.492999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,849,-0.17330000000000001,15.174099999999999,0.081759999999999999,11.933999999999999,12.914,13.991,15.173999999999999,16.475999999999999,17.911999999999999,19.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,850,-0.17330000000000001,15.176399999999999,0.081769999999999995,11.935,12.916,13.993,15.176,16.478999999999999,17.914999999999999,19.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,851,-0.17330000000000001,15.178800000000001,0.081769999999999995,11.936999999999999,12.917999999999999,13.994999999999999,15.179,16.481999999999999,17.917999999999999,19.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,852,-0.17330000000000001,15.181100000000001,0.081780000000000005,11.939,12.92,13.997,15.180999999999999,16.484000000000002,17.920999999999999,19.507000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,853,-0.17330000000000001,15.1835,0.081780000000000005,11.941000000000001,12.922000000000001,13.999000000000001,15.183999999999999,16.486999999999998,17.923999999999999,19.510000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,854,-0.17330000000000001,15.1858,0.081790000000000002,11.942,12.923999999999999,14.000999999999999,15.186,16.489999999999998,17.927,19.513000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,855,-0.17330000000000001,15.1882,0.081790000000000002,11.944000000000001,12.926,14.003,15.188000000000001,16.492000000000001,17.93,19.515999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,856,-0.17330000000000001,15.1905,0.081799999999999998,11.945,12.927,14.005000000000001,15.19,16.495000000000001,17.933,19.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,857,-0.17330000000000001,15.1928,0.081809999999999994,11.946999999999999,12.929,14.007,15.193,16.498000000000001,17.936,19.524000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,858,-0.17330000000000001,15.1952,0.081809999999999994,11.949,12.930999999999999,14.01,15.195,16.5,17.939,19.527000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,859,-0.17330000000000001,15.1975,0.081820000000000004,11.95,12.933,14.012,15.198,16.503,17.942,19.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,860,-0.17330000000000001,15.1998,0.081820000000000004,11.952,12.935,14.013999999999999,15.2,16.504999999999999,17.945,19.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,861,-0.17330000000000001,15.2021,0.08183,11.952999999999999,12.936,14.016,15.202,16.507999999999999,17.948,19.536999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,862,-0.17330000000000001,15.204499999999999,0.081839999999999996,11.955,12.938000000000001,14.018000000000001,15.204000000000001,16.510999999999999,17.951000000000001,19.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,863,-0.17330000000000001,15.206799999999999,0.081839999999999996,11.957000000000001,12.94,14.02,15.207000000000001,16.513000000000002,17.954000000000001,19.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,864,-0.17330000000000001,15.209099999999999,0.081850000000000006,11.958,12.942,14.022,15.209,16.515999999999998,17.957000000000001,19.547000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,865,-0.17330000000000001,15.211399999999999,0.081850000000000006,11.96,12.944000000000001,14.023999999999999,15.211,16.518999999999998,17.959,19.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,866,-0.17330000000000001,15.213699999999999,0.081860000000000002,11.962,12.946,14.026,15.214,16.521000000000001,17.962,19.553999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,867,-0.17330000000000001,15.215999999999999,0.081869999999999998,11.962999999999999,12.946999999999999,14.028,15.215999999999999,16.524000000000001,17.966000000000001,19.556999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,868,-0.17330000000000001,15.218299999999999,0.081869999999999998,11.965,12.949,14.03,15.218,16.526,17.968,19.559999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,869,-0.17330000000000001,15.220499999999999,0.081879999999999994,11.965999999999999,12.951000000000001,14.032,15.22,16.529,17.971,19.562999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,870,-0.17330000000000001,15.222799999999999,0.081879999999999994,11.968,12.952999999999999,14.034000000000001,15.223000000000001,16.530999999999999,17.974,19.565999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,871,-0.17330000000000001,15.225099999999999,0.081890000000000004,11.968999999999999,12.955,14.036,15.225,16.533999999999999,17.977,19.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,872,-0.17330000000000001,15.227399999999999,0.081900000000000001,11.971,12.956,14.038,15.227,16.536999999999999,17.98,19.574000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,873,-0.17330000000000001,15.2296,0.081900000000000001,11.973000000000001,12.958,14.04,15.23,16.539000000000001,17.983000000000001,19.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,874,-0.17330000000000001,15.2319,0.081909999999999997,11.974,12.96,14.042,15.231999999999999,16.542000000000002,17.986000000000001,19.579999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,875,-0.17330000000000001,15.2342,0.081920000000000007,11.976000000000001,12.962,14.044,15.234,16.544,17.989000000000001,19.584 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,876,-0.17330000000000001,15.2364,0.081920000000000007,11.977,12.962999999999999,14.045999999999999,15.236000000000001,16.547000000000001,17.991,19.585999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,877,-0.17330000000000001,15.2387,0.081930000000000003,11.978999999999999,12.965,14.048,15.239000000000001,16.548999999999999,17.995000000000001,19.59 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,878,-0.17330000000000001,15.2409,0.081930000000000003,11.981,12.967000000000001,14.05,15.241,16.552,17.997,19.593 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,879,-0.17330000000000001,15.2432,0.081939999999999999,11.981999999999999,12.968999999999999,14.052,15.243,16.555,18,19.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,880,-0.17330000000000001,15.2454,0.081949999999999995,11.983000000000001,12.97,14.054,15.244999999999999,16.556999999999999,18.003,19.600000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,881,-0.17330000000000001,15.2476,0.081949999999999995,11.984999999999999,12.972,14.055999999999999,15.247999999999999,16.559000000000001,18.006,19.603000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,882,-0.17330000000000001,15.2499,0.081960000000000005,11.987,12.974,14.058,15.25,16.562000000000001,18.009,19.606000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,883,-0.17330000000000001,15.2521,0.081970000000000001,11.988,12.975,14.06,15.252000000000001,16.565000000000001,18.012,19.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,884,-0.17330000000000001,15.254300000000001,0.081970000000000001,11.99,12.977,14.061999999999999,15.254,16.567,18.013999999999999,19.611999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,885,-0.17330000000000001,15.256500000000001,0.081979999999999997,11.991,12.978999999999999,14.064,15.256,16.57,18.016999999999999,19.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,886,-0.17330000000000001,15.258699999999999,0.081989999999999993,11.992000000000001,12.981,14.066000000000001,15.259,16.571999999999999,18.02,19.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,887,-0.17330000000000001,15.260899999999999,0.081989999999999993,11.994,12.981999999999999,14.068,15.260999999999999,16.574999999999999,18.023,19.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,888,-0.17330000000000001,15.2631,0.082000000000000003,11.996,12.984,14.07,15.263,16.577000000000002,18.026,19.626000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,889,-0.17330000000000001,15.2653,0.08201,11.997,12.986000000000001,14.071,15.265000000000001,16.579999999999998,18.029,19.629000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,890,-0.17330000000000001,15.2675,0.08201,11.999000000000001,12.988,14.074,15.268000000000001,16.582000000000001,18.032,19.632000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,891,-0.17330000000000001,15.2697,0.082019999999999996,12,12.989000000000001,14.074999999999999,15.27,16.585000000000001,18.035,19.635000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,892,-0.17330000000000001,15.2719,0.082030000000000006,12.000999999999999,12.991,14.077,15.272,16.587,18.036999999999999,19.638999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,893,-0.17330000000000001,15.274100000000001,0.082030000000000006,12.003,12.993,14.079000000000001,15.273999999999999,16.59,18.04,19.641999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,894,-0.17330000000000001,15.276199999999999,0.082040000000000002,12.004,12.994,14.081,15.276,16.591999999999999,18.042999999999999,19.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,895,-0.17330000000000001,15.2784,0.082049999999999998,12.006,12.996,14.083,15.278,16.594999999999999,18.045999999999999,19.648 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,896,-0.17330000000000001,15.2806,0.082049999999999998,12.007999999999999,12.997999999999999,14.085000000000001,15.281000000000001,16.597000000000001,18.048999999999999,19.651 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,897,-0.17330000000000001,15.2827,0.082059999999999994,12.009,12.999000000000001,14.087,15.282999999999999,16.599,18.050999999999998,19.655000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,898,-0.17330000000000001,15.2849,0.082070000000000004,12.01,13.000999999999999,14.089,15.285,16.602,18.053999999999998,19.658000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,899,-0.17330000000000001,15.287000000000001,0.082070000000000004,12.012,13.003,14.090999999999999,15.287000000000001,16.603999999999999,18.056999999999999,19.661000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,900,-0.17330000000000001,15.289199999999999,0.08208,12.013,13.004,14.093,15.289,16.606999999999999,18.059999999999999,19.664000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,901,-0.17330000000000001,15.2913,0.082089999999999996,12.015000000000001,13.006,14.093999999999999,15.291,16.609000000000002,18.062999999999999,19.667000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,902,-0.17330000000000001,15.2934,0.082089999999999996,12.016,13.007999999999999,14.096,15.292999999999999,16.611999999999998,18.065000000000001,19.670000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,903,-0.17330000000000001,15.2956,0.082100000000000006,12.018000000000001,13.009,14.098000000000001,15.295999999999999,16.614000000000001,18.068000000000001,19.673999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,904,-0.17330000000000001,15.297700000000001,0.082110000000000002,12.019,13.010999999999999,14.1,15.298,16.617000000000001,18.071000000000002,19.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,905,-0.17330000000000001,15.299799999999999,0.082110000000000002,12.021000000000001,13.013,14.102,15.3,16.619,18.073,19.68 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,906,-0.17330000000000001,15.3019,0.082119999999999999,12.022,13.013999999999999,14.103999999999999,15.302,16.620999999999999,18.076000000000001,19.683 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,907,-0.17330000000000001,15.304,0.082129999999999995,12.023,13.016,14.105,15.304,16.623999999999999,18.079000000000001,19.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,908,-0.17330000000000001,15.306100000000001,0.082140000000000005,12.025,13.016999999999999,14.106999999999999,15.305999999999999,16.626000000000001,18.082000000000001,19.690000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,909,-0.17330000000000001,15.308199999999999,0.082140000000000005,12.026,13.019,14.109,15.308,16.629000000000001,18.084,19.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,910,-0.17330000000000001,15.3103,0.082150000000000001,12.026999999999999,13.02,14.111000000000001,15.31,16.631,18.087,19.696000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,911,-0.17330000000000001,15.3124,0.082159999999999997,12.029,13.022,14.113,15.311999999999999,16.632999999999999,18.09,19.699000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,912,-0.17330000000000001,15.314500000000001,0.082159999999999997,12.03,13.023999999999999,14.115,15.314,16.635999999999999,18.093,19.702000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,913,-0.17330000000000001,15.316599999999999,0.082170000000000007,12.032,13.025,14.117000000000001,15.317,16.638000000000002,18.094999999999999,19.704999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,914,-0.17330000000000001,15.3187,0.082180000000000003,12.032999999999999,13.026999999999999,14.118,15.319000000000001,16.640999999999998,18.097999999999999,19.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,915,-0.17330000000000001,15.3207,0.082189999999999999,12.034000000000001,13.028,14.12,15.321,16.643000000000001,18.100999999999999,19.710999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,916,-0.17330000000000001,15.322800000000001,0.082189999999999999,12.036,13.03,14.122,15.323,16.645,18.103999999999999,19.713999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,917,-0.17330000000000001,15.3248,0.082199999999999995,12.037000000000001,13.032,14.124000000000001,15.324999999999999,16.648,18.106000000000002,19.716999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,918,-0.17330000000000001,15.3269,0.082210000000000005,12.038,13.032999999999999,14.125,15.327,16.649999999999999,18.109000000000002,19.721 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,919,-0.17330000000000001,15.329000000000001,0.082210000000000005,12.04,13.035,14.127000000000001,15.329000000000001,16.652000000000001,18.111999999999998,19.722999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,920,-0.17330000000000001,15.331,0.082220000000000001,12.041,13.036,14.129,15.331,16.655000000000001,18.114000000000001,19.727 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,921,-0.17330000000000001,15.333,0.082229999999999998,12.042999999999999,13.038,14.131,15.333,16.657,18.117000000000001,19.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,922,-0.17330000000000001,15.335100000000001,0.082239999999999994,12.044,13.039,14.132999999999999,15.335000000000001,16.658999999999999,18.12,19.733000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,923,-0.17330000000000001,15.3371,0.082239999999999994,12.045,13.041,14.134,15.337,16.661999999999999,18.122,19.736000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,924,-0.17330000000000001,15.3391,0.082250000000000004,12.047000000000001,13.042,14.135999999999999,15.339,16.664000000000001,18.125,19.739000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,925,-0.17330000000000001,15.341200000000001,0.08226,12.048,13.044,14.138,15.340999999999999,16.666,18.128,19.742000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,926,-0.17330000000000001,15.3432,0.082269999999999996,12.048999999999999,13.045,14.14,15.343,16.669,18.131,19.745000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,927,-0.17330000000000001,15.3452,0.082269999999999996,12.051,13.047000000000001,14.141,15.345000000000001,16.670999999999999,18.132999999999999,19.748000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,928,-0.17330000000000001,15.347200000000001,0.082280000000000006,12.052,13.048999999999999,14.143000000000001,15.347,16.672999999999998,18.135999999999999,19.751000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,929,-0.17330000000000001,15.3492,0.082290000000000002,12.053000000000001,13.05,14.145,15.349,16.675999999999998,18.138000000000002,19.754000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,930,-0.17330000000000001,15.3512,0.082299999999999998,12.054,13.051,14.147,15.351000000000001,16.678000000000001,18.140999999999998,19.757000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,931,-0.17330000000000001,15.353199999999999,0.082299999999999998,12.055999999999999,13.053000000000001,14.148,15.353,16.68,18.143999999999998,19.760000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,932,-0.17330000000000001,15.3552,0.082309999999999994,12.057,13.055,14.15,15.355,16.681999999999999,18.146000000000001,19.763000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,933,-0.17330000000000001,15.357200000000001,0.082320000000000004,12.058,13.055999999999999,14.151999999999999,15.356999999999999,16.684999999999999,18.149000000000001,19.765999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,934,-0.17330000000000001,15.3591,0.08233,12.06,13.057,14.153,15.359,16.687000000000001,18.152000000000001,19.768999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,935,-0.17330000000000001,15.3611,0.08233,12.061,13.058999999999999,14.154999999999999,15.361000000000001,16.689,18.154,19.771999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,936,-0.17330000000000001,15.363099999999999,0.082339999999999997,12.061999999999999,13.061,14.157,15.363,16.692,18.157,19.774999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,937,-0.17330000000000001,15.3651,0.082350000000000007,12.064,13.061999999999999,14.159000000000001,15.365,16.693999999999999,18.16,19.777999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,938,-0.17330000000000001,15.367000000000001,0.082360000000000003,12.065,13.063000000000001,14.16,15.367000000000001,16.696000000000002,18.161999999999999,19.782 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,939,-0.17330000000000001,15.369,0.082369999999999999,12.066000000000001,13.065,14.162000000000001,15.369,16.698,18.164999999999999,19.785 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,940,-0.17330000000000001,15.370900000000001,0.082369999999999999,12.067,13.066000000000001,14.164,15.371,16.701000000000001,18.167000000000002,19.786999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,941,-0.17330000000000001,15.3729,0.082379999999999995,12.069000000000001,13.068,14.164999999999999,15.372999999999999,16.702999999999999,18.170000000000002,19.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,942,-0.17330000000000001,15.3748,0.082390000000000005,12.07,13.069000000000001,14.167,15.375,16.704999999999998,18.172000000000001,19.792999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,943,-0.17330000000000001,15.376799999999999,0.082400000000000001,12.071,13.071,14.169,15.377000000000001,16.707000000000001,18.175000000000001,19.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,944,-0.17330000000000001,15.3787,0.082400000000000001,12.073,13.071999999999999,14.170999999999999,15.379,16.71,18.177,19.798999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,945,-0.17330000000000001,15.380599999999999,0.082409999999999997,12.074,13.074,14.172000000000001,15.381,16.712,18.18,19.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,946,-0.17330000000000001,15.3826,0.082419999999999993,12.074999999999999,13.074999999999999,14.173999999999999,15.382999999999999,16.713999999999999,18.183,19.805 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,947,-0.17330000000000001,15.384499999999999,0.082430000000000003,12.076000000000001,13.076000000000001,14.175000000000001,15.384,16.716000000000001,18.184999999999999,19.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,948,-0.17330000000000001,15.3864,0.082439999999999999,12.077,13.077999999999999,14.177,15.385999999999999,16.719000000000001,18.187999999999999,19.811 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,949,-0.17330000000000001,15.388299999999999,0.082439999999999999,12.079000000000001,13.079000000000001,14.179,15.388,16.721,18.190000000000001,19.814 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,950,-0.17330000000000001,15.3902,0.082449999999999996,12.08,13.081,14.18,15.39,16.722999999999999,18.193000000000001,19.817 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,951,-0.17330000000000001,15.392200000000001,0.082460000000000006,12.081,13.082000000000001,14.182,15.391999999999999,16.725000000000001,18.196000000000002,19.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,952,-0.17330000000000001,15.3941,0.082470000000000002,12.082000000000001,13.084,14.183999999999999,15.394,16.727,18.198,19.823 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,953,-0.17330000000000001,15.396000000000001,0.082479999999999998,12.083,13.085000000000001,14.185,15.396000000000001,16.73,18.201000000000001,19.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,954,-0.17330000000000001,15.3979,0.082479999999999998,12.085000000000001,13.087,14.186999999999999,15.398,16.731999999999999,18.202999999999999,19.829000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,955,-0.17330000000000001,15.399699999999999,0.082489999999999994,12.086,13.087999999999999,14.189,15.4,16.734000000000002,18.206,19.832000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,956,-0.17330000000000001,15.4016,0.082500000000000004,12.087,13.089,14.19,15.401999999999999,16.736000000000001,18.207999999999998,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,957,-0.17330000000000001,15.403499999999999,0.08251,12.087999999999999,13.090999999999999,14.192,15.404,16.738,18.210999999999999,19.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,958,-0.17330000000000001,15.4054,0.082519999999999996,12.089,13.092000000000001,14.193,15.404999999999999,16.741,18.213999999999999,19.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,959,-0.17330000000000001,15.407299999999999,0.082530000000000006,12.09,13.093,14.195,15.407,16.742999999999999,18.216000000000001,19.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,960,-0.17330000000000001,15.4092,0.082530000000000006,12.092000000000001,13.095000000000001,14.196999999999999,15.409000000000001,16.745000000000001,18.218,19.846 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,961,-0.17330000000000001,15.411,0.082540000000000002,12.093,13.096,14.198,15.411,16.747,18.221,19.849 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,962,-0.17330000000000001,15.4129,0.082549999999999998,12.093999999999999,13.098000000000001,14.2,15.413,16.748999999999999,18.224,19.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,963,-0.17330000000000001,15.4148,0.082559999999999995,12.095000000000001,13.099,14.202,15.414999999999999,16.751000000000001,18.225999999999999,19.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,964,-0.17330000000000001,15.416600000000001,0.082570000000000005,12.096,13.1,14.202999999999999,15.417,16.754000000000001,18.228999999999999,19.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,965,-0.17330000000000001,15.4185,0.082570000000000005,12.098000000000001,13.102,14.205,15.417999999999999,16.756,18.231000000000002,19.861000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,966,-0.17330000000000001,15.420299999999999,0.082580000000000001,12.099,13.103,14.206,15.42,16.757999999999999,18.233000000000001,19.864000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,967,-0.17330000000000001,15.4222,0.082589999999999997,12.1,13.103999999999999,14.208,15.422000000000001,16.760000000000002,18.236000000000001,19.867000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,968,-0.17330000000000001,15.423999999999999,0.082600000000000007,12.101000000000001,13.106,14.209,15.423999999999999,16.762,18.239000000000001,19.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,969,-0.17330000000000001,15.4259,0.082610000000000003,12.102,13.106999999999999,14.211,15.426,16.763999999999999,18.241,19.873000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,970,-0.17330000000000001,15.4277,0.082619999999999999,12.103,13.108000000000001,14.212999999999999,15.428000000000001,16.765999999999998,18.244,19.876000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,971,-0.17330000000000001,15.429600000000001,0.082619999999999999,12.105,13.11,14.214,15.43,16.768999999999998,18.245999999999999,19.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,972,-0.17330000000000001,15.4314,0.082629999999999995,12.106,13.111000000000001,14.215999999999999,15.430999999999999,16.771000000000001,18.248000000000001,19.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,973,-0.17330000000000001,15.433199999999999,0.082640000000000005,12.106999999999999,13.112,14.217000000000001,15.433,16.773,18.251000000000001,19.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,974,-0.17330000000000001,15.4351,0.082650000000000001,12.108000000000001,13.114000000000001,14.218999999999999,15.435,16.774999999999999,18.254000000000001,19.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,975,-0.17330000000000001,15.4369,0.082659999999999997,12.109,13.115,14.221,15.436999999999999,16.777000000000001,18.256,19.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,976,-0.17330000000000001,15.438700000000001,0.082669999999999993,12.11,13.116,14.222,15.439,16.779,18.259,19.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,977,-0.17330000000000001,15.4405,0.082680000000000003,12.111000000000001,13.118,14.224,15.44,16.780999999999999,18.260999999999999,19.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,978,-0.17330000000000001,15.442399999999999,0.082680000000000003,12.113,13.119,14.225,15.442,16.783000000000001,18.263000000000002,19.899000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,979,-0.17330000000000001,15.4442,0.08269,12.114000000000001,13.121,14.227,15.444000000000001,16.786000000000001,18.265999999999998,19.901 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,980,-0.17330000000000001,15.446,0.082699999999999996,12.115,13.122,14.228,15.446,16.788,18.268000000000001,19.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,981,-0.17330000000000001,15.447800000000001,0.082710000000000006,12.116,13.122999999999999,14.23,15.448,16.79,18.271000000000001,19.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,982,-0.17330000000000001,15.4496,0.082720000000000002,12.117000000000001,13.124000000000001,14.231,15.45,16.792000000000002,18.273,19.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,983,-0.17330000000000001,15.4514,0.082729999999999998,12.118,13.125999999999999,14.233000000000001,15.451000000000001,16.794,18.276,19.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,984,-0.17330000000000001,15.453200000000001,0.082739999999999994,12.119,13.127000000000001,14.234,15.452999999999999,16.795999999999999,18.277999999999999,19.916 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,985,-0.17330000000000001,15.455,0.082750000000000004,12.12,13.128,14.236000000000001,15.455,16.797999999999998,18.280999999999999,19.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,986,-0.17330000000000001,15.456799999999999,0.082750000000000004,12.122,13.13,14.238,15.457000000000001,16.8,18.283000000000001,19.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,987,-0.17330000000000001,15.458600000000001,0.08276,12.122999999999999,13.131,14.239000000000001,15.459,16.802,18.285,19.923999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,988,-0.17330000000000001,15.4604,0.082769999999999996,12.124000000000001,13.132,14.241,15.46,16.805,18.288,19.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,989,-0.17330000000000001,15.462199999999999,0.082780000000000006,12.125,13.134,14.242000000000001,15.462,16.806999999999999,18.29,19.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,990,-0.17330000000000001,15.464,0.082790000000000002,12.125999999999999,13.135,14.244,15.464,16.809000000000001,18.292999999999999,19.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,991,-0.17330000000000001,15.4658,0.082799999999999999,12.127000000000001,13.135999999999999,14.244999999999999,15.465999999999999,16.811,18.295000000000002,19.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,992,-0.17330000000000001,15.467499999999999,0.082809999999999995,12.128,13.137,14.247,15.468,16.812999999999999,18.297999999999998,19.939 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,993,-0.17330000000000001,15.4693,0.082820000000000005,12.129,13.138999999999999,14.247999999999999,15.468999999999999,16.815000000000001,18.3,19.942 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,994,-0.17330000000000001,15.4711,0.082820000000000005,12.13,13.14,14.25,15.471,16.817,18.302,19.943999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,995,-0.17330000000000001,15.472899999999999,0.082830000000000001,12.131,13.141,14.250999999999999,15.473000000000001,16.818999999999999,18.305,19.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,996,-0.17330000000000001,15.4747,0.082839999999999997,12.132999999999999,13.143000000000001,14.253,15.475,16.821000000000002,18.308,19.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,997,-0.17330000000000001,15.4764,0.082849999999999993,12.134,13.144,14.254,15.476000000000001,16.823,18.309999999999999,19.952999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,998,-0.17330000000000001,15.478199999999999,0.082860000000000003,12.135,13.145,14.256,15.478,16.824999999999999,18.312000000000001,19.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,999,-0.17330000000000001,15.48,0.082869999999999999,12.135999999999999,13.146000000000001,14.257,15.48,16.827999999999999,18.315000000000001,19.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1000,-0.17330000000000001,15.4817,0.082879999999999995,12.137,13.148,14.259,15.481999999999999,16.829999999999998,18.317,19.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1001,-0.17330000000000001,15.483499999999999,0.082890000000000005,12.138,13.148999999999999,14.26,15.484,16.832000000000001,18.32,19.965 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1002,-0.17330000000000001,15.485300000000001,0.082900000000000001,12.138999999999999,13.15,14.262,15.484999999999999,16.834,18.321999999999999,19.968 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1003,-0.17330000000000001,15.487,0.082909999999999998,12.14,13.151,14.263,15.487,16.835999999999999,18.324999999999999,19.97 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1004,-0.17330000000000001,15.488799999999999,0.082909999999999998,12.141,13.153,14.265000000000001,15.489000000000001,16.838000000000001,18.327000000000002,19.972999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1005,-0.17330000000000001,15.490500000000001,0.082919999999999994,12.141999999999999,13.154,14.266,15.49,16.84,18.329000000000001,19.975999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1006,-0.17330000000000001,15.4923,0.082930000000000004,12.143000000000001,13.154999999999999,14.268000000000001,15.492000000000001,16.841999999999999,18.332000000000001,19.978000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1007,-0.17330000000000001,15.494,0.08294,12.144,13.156000000000001,14.269,15.494,16.844000000000001,18.334,19.981000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1008,-0.17330000000000001,15.495799999999999,0.082949999999999996,12.145,13.157999999999999,14.271000000000001,15.496,16.846,18.337,19.984000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1009,-0.17330000000000001,15.4975,0.082960000000000006,12.146000000000001,13.159000000000001,14.272,15.497999999999999,16.847999999999999,18.338999999999999,19.986999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1010,-0.17330000000000001,15.4993,0.082970000000000002,12.147,13.16,14.273999999999999,15.499000000000001,16.850000000000001,18.341999999999999,19.989999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1011,-0.17330000000000001,15.500999999999999,0.082979999999999998,12.148,13.161,14.275,15.500999999999999,16.852,18.344000000000001,19.992999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1012,-0.17330000000000001,15.502800000000001,0.082989999999999994,12.148999999999999,13.163,14.276999999999999,15.503,16.853999999999999,18.346,19.995999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1013,-0.17330000000000001,15.5045,0.083000000000000004,12.15,13.164,14.278,15.504,16.856000000000002,18.349,19.998999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1014,-0.17330000000000001,15.5063,0.08301,12.151,13.164999999999999,14.28,15.506,16.859000000000002,18.350999999999999,20.001999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1015,-0.17330000000000001,15.507999999999999,0.083019999999999997,12.151999999999999,13.166,14.281000000000001,15.507999999999999,16.861000000000001,18.353999999999999,20.004000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1016,-0.17330000000000001,15.5097,0.083030000000000007,12.153,13.167,14.282,15.51,16.863,18.356000000000002,20.007000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1017,-0.17330000000000001,15.5115,0.083030000000000007,12.154999999999999,13.169,14.284000000000001,15.512,16.864999999999998,18.358000000000001,20.010000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1018,-0.17330000000000001,15.513199999999999,0.083040000000000003,12.156000000000001,13.17,14.285,15.513,16.867000000000001,18.361000000000001,20.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1019,-0.17330000000000001,15.514900000000001,0.083049999999999999,12.157,13.170999999999999,14.287000000000001,15.515000000000001,16.869,18.363,20.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1020,-0.17330000000000001,15.5167,0.083059999999999995,12.157999999999999,13.173,14.288,15.516999999999999,16.870999999999999,18.366,20.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1021,-0.17330000000000001,15.5184,0.083070000000000005,12.159000000000001,13.173999999999999,14.29,15.518000000000001,16.873000000000001,18.367999999999999,20.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1022,-0.17330000000000001,15.520099999999999,0.083080000000000001,12.16,13.175000000000001,14.291,15.52,16.875,18.37,20.024000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1023,-0.17330000000000001,15.5219,0.083089999999999997,12.161,13.176,14.292999999999999,15.522,16.876999999999999,18.373000000000001,20.027000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1024,-0.17330000000000001,15.5236,0.083099999999999993,12.162000000000001,13.177,14.294,15.523999999999999,16.879000000000001,18.375,20.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1025,-0.17330000000000001,15.5253,0.083110000000000003,12.163,13.179,14.295999999999999,15.525,16.881,18.378,20.032 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1026,-0.17330000000000001,15.526999999999999,0.083119999999999999,12.164,13.18,14.297000000000001,15.526999999999999,16.882999999999999,18.38,20.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1027,-0.17330000000000001,15.5288,0.083129999999999996,12.164999999999999,13.180999999999999,14.298999999999999,15.529,16.885000000000002,18.382000000000001,20.038 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1028,-0.17330000000000001,15.5305,0.083140000000000006,12.166,13.182,14.3,15.53,16.887,18.385000000000002,20.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1029,-0.17330000000000001,15.5322,0.083150000000000002,12.167,13.183999999999999,14.301,15.532,16.888999999999999,18.387,20.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1030,-0.17330000000000001,15.533899999999999,0.083159999999999998,12.167999999999999,13.185,14.303000000000001,15.534000000000001,16.890999999999998,18.39,20.047000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1031,-0.17330000000000001,15.535600000000001,0.083169999999999994,12.169,13.186,14.304,15.536,16.893000000000001,18.391999999999999,20.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1032,-0.17330000000000001,15.5374,0.083180000000000004,12.17,13.186999999999999,14.305999999999999,15.537000000000001,16.895,18.395,20.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1033,-0.17330000000000001,15.539099999999999,0.08319,12.170999999999999,13.188000000000001,14.307,15.539,16.896999999999998,18.396999999999998,20.055 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1034,-0.17330000000000001,15.540800000000001,0.083199999999999996,12.172000000000001,13.19,14.308999999999999,15.541,16.899000000000001,18.399000000000001,20.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1035,-0.17330000000000001,15.5425,0.083210000000000006,12.173,13.191000000000001,14.31,15.542,16.901,18.402000000000001,20.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1036,-0.17330000000000001,15.5442,0.083220000000000002,12.173999999999999,13.192,14.311,15.544,16.902999999999999,18.404,20.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1037,-0.17330000000000001,15.5459,0.083229999999999998,12.175000000000001,13.193,14.313000000000001,15.545999999999999,16.905000000000001,18.407,20.065999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1038,-0.17330000000000001,15.547599999999999,0.083239999999999995,12.176,13.194000000000001,14.314,15.548,16.907,18.408999999999999,20.068999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1039,-0.17330000000000001,15.549300000000001,0.083250000000000005,12.177,13.195,14.316000000000001,15.548999999999999,16.908999999999999,18.411000000000001,20.071999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1040,-0.17330000000000001,15.5511,0.083250000000000005,12.178000000000001,13.196999999999999,14.317,15.551,16.911000000000001,18.413,20.074000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1041,-0.17330000000000001,15.5528,0.083260000000000001,12.179,13.198,14.319000000000001,15.553000000000001,16.913,18.416,20.077000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1042,-0.17330000000000001,15.554500000000001,0.083269999999999997,12.18,13.199,14.32,15.554,16.914999999999999,18.417999999999999,20.079999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1043,-0.17330000000000001,15.5562,0.083280000000000007,12.180999999999999,13.201000000000001,14.321999999999999,15.555999999999999,16.917000000000002,18.420999999999999,20.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1044,-0.17330000000000001,15.5579,0.083290000000000003,12.182,13.202,14.323,15.558,16.919,18.422999999999998,20.085999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1045,-0.17330000000000001,15.5596,0.083299999999999999,12.183,13.202999999999999,14.324999999999999,15.56,16.920999999999999,18.425000000000001,20.088999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1046,-0.17330000000000001,15.561299999999999,0.083309999999999995,12.183999999999999,13.204000000000001,14.326000000000001,15.561,16.923999999999999,18.428000000000001,20.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1047,-0.17330000000000001,15.563000000000001,0.083320000000000005,12.185,13.205,14.327,15.563000000000001,16.925999999999998,18.43,20.094000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1048,-0.17330000000000001,15.5647,0.083330000000000001,12.186,13.206,14.329000000000001,15.565,16.928000000000001,18.433,20.097000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1049,-0.17330000000000001,15.5664,0.083339999999999997,12.186999999999999,13.208,14.33,15.566000000000001,16.93,18.434999999999999,20.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1050,-0.17330000000000001,15.568099999999999,0.083349999999999994,12.188000000000001,13.209,14.332000000000001,15.568,16.931999999999999,18.437000000000001,20.103000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1051,-0.17330000000000001,15.569800000000001,0.083360000000000004,12.189,13.21,14.333,15.57,16.934000000000001,18.440000000000001,20.106000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1052,-0.17330000000000001,15.5715,0.08337,12.19,13.211,14.334,15.571999999999999,16.936,18.442,20.108000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1053,-0.17330000000000001,15.5732,0.083379999999999996,12.191000000000001,13.212,14.336,15.573,16.937999999999999,18.445,20.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1054,-0.17330000000000001,15.5749,0.083390000000000006,12.192,13.214,14.337,15.574999999999999,16.940000000000001,18.446999999999999,20.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1055,-0.17330000000000001,15.576599999999999,0.083400000000000002,12.193,13.215,14.339,15.577,16.942,18.449000000000002,20.117000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1056,-0.17330000000000001,15.5783,0.083409999999999998,12.194000000000001,13.215999999999999,14.34,15.577999999999999,16.943999999999999,18.452000000000002,20.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1057,-0.17330000000000001,15.58,0.083419999999999994,12.195,13.217000000000001,14.342000000000001,15.58,16.946000000000002,18.454000000000001,20.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1058,-0.17330000000000001,15.5817,0.083430000000000004,12.196,13.218,14.343,15.582000000000001,16.948,18.457000000000001,20.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1059,-0.17330000000000001,15.583399999999999,0.08344,12.196999999999999,13.22,14.343999999999999,15.583,16.95,18.459,20.128 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1060,-0.17330000000000001,15.585100000000001,0.083449999999999996,12.198,13.221,14.346,15.585000000000001,16.952000000000002,18.460999999999999,20.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1061,-0.17330000000000001,15.5868,0.083460000000000006,12.199,13.222,14.347,15.587,16.954000000000001,18.463999999999999,20.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1062,-0.17330000000000001,15.5885,0.083470000000000003,12.2,13.223000000000001,14.349,15.587999999999999,16.956,18.466000000000001,20.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1063,-0.17330000000000001,15.590199999999999,0.083479999999999999,12.201000000000001,13.224,14.35,15.59,16.957999999999998,18.468,20.138999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1064,-0.17330000000000001,15.591900000000001,0.083489999999999995,12.202,13.225,14.352,15.592000000000001,16.96,18.471,20.141999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1065,-0.17330000000000001,15.5936,0.083510000000000001,12.202,13.226000000000001,14.353,15.593999999999999,16.962,18.474,20.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1066,-0.17330000000000001,15.5953,0.083519999999999997,12.202999999999999,13.228,14.353999999999999,15.595000000000001,16.963999999999999,18.475999999999999,20.149000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1067,-0.17330000000000001,15.597,0.083529999999999993,12.204000000000001,13.228999999999999,14.356,15.597,16.966000000000001,18.478000000000002,20.151 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1068,-0.17330000000000001,15.598699999999999,0.083540000000000003,12.205,13.23,14.356999999999999,15.599,16.968,18.481000000000002,20.154 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1069,-0.17330000000000001,15.6004,0.083549999999999999,12.206,13.231,14.359,15.6,16.97,18.483000000000001,20.157 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1070,-0.17330000000000001,15.602,0.083559999999999995,12.207000000000001,13.231999999999999,14.36,15.602,16.972000000000001,18.486000000000001,20.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1071,-0.17330000000000001,15.6037,0.083570000000000005,12.208,13.233000000000001,14.361000000000001,15.603999999999999,16.974,18.488,20.163 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1072,-0.17330000000000001,15.605399999999999,0.083580000000000002,12.209,13.234999999999999,14.363,15.605,16.975999999999999,18.489999999999998,20.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1073,-0.17330000000000001,15.607100000000001,0.083589999999999998,12.21,13.236000000000001,14.364000000000001,15.606999999999999,16.978000000000002,18.492999999999999,20.167999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1074,-0.17330000000000001,15.6088,0.083599999999999994,12.211,13.237,14.366,15.609,16.98,18.495000000000001,20.170999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1075,-0.17330000000000001,15.6105,0.083610000000000004,12.212,13.238,14.367000000000001,15.61,16.981999999999999,18.497,20.173999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1076,-0.17330000000000001,15.6122,0.08362,12.212999999999999,13.239000000000001,14.368,15.612,16.984000000000002,18.5,20.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1077,-0.17330000000000001,15.613899999999999,0.083629999999999996,12.214,13.24,14.37,15.614000000000001,16.986000000000001,18.501999999999999,20.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1078,-0.17330000000000001,15.615600000000001,0.083640000000000006,12.215,13.242000000000001,14.371,15.616,16.988,18.504999999999999,20.181999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1079,-0.17330000000000001,15.6173,0.083650000000000002,12.215999999999999,13.243,14.372999999999999,15.617000000000001,16.989999999999998,18.507000000000001,20.184999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1080,-0.17330000000000001,15.619,0.083659999999999998,12.217000000000001,13.244,14.374000000000001,15.619,16.992000000000001,18.509,20.187999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1081,-0.17330000000000001,15.6206,0.083669999999999994,12.218,13.244999999999999,14.375,15.621,16.994,18.512,20.190999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1082,-0.17330000000000001,15.622299999999999,0.083680000000000004,12.218999999999999,13.246,14.377000000000001,15.622,16.995999999999999,18.513999999999999,20.193999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1083,-0.17330000000000001,15.624000000000001,0.083690000000000001,12.22,13.247999999999999,14.378,15.624000000000001,16.998000000000001,18.516999999999999,20.196000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1084,-0.17330000000000001,15.6257,0.083699999999999997,12.221,13.249000000000001,14.38,15.625999999999999,17,18.518999999999998,20.199000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1085,-0.17330000000000001,15.6274,0.083710000000000007,12.222,13.25,14.381,15.627000000000001,17.001999999999999,18.521000000000001,20.202000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1086,-0.17330000000000001,15.629099999999999,0.083720000000000003,12.223000000000001,13.250999999999999,14.382999999999999,15.629,17.004000000000001,18.524000000000001,20.204999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1087,-0.17330000000000001,15.630800000000001,0.083729999999999999,12.224,13.252000000000001,14.384,15.631,17.006,18.526,20.207999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1088,-0.17330000000000001,15.6325,0.083750000000000005,12.224,13.253,14.385,15.632,17.009,18.529,20.210999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1089,-0.17330000000000001,15.6342,0.083760000000000001,12.225,13.254,14.387,15.634,17.010999999999999,18.530999999999999,20.213999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1090,-0.17330000000000001,15.6358,0.083769999999999997,12.226000000000001,13.255000000000001,14.388,15.635999999999999,17.012,18.533999999999999,20.216999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1091,-0.17330000000000001,15.637499999999999,0.083779999999999993,12.227,13.257,14.388999999999999,15.638,17.015000000000001,18.536000000000001,20.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1092,-0.17330000000000001,15.639200000000001,0.083790000000000003,12.228,13.257999999999999,14.391,15.638999999999999,17.016999999999999,18.538,20.222000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1093,-0.17330000000000001,15.6409,0.083799999999999999,12.228999999999999,13.259,14.391999999999999,15.641,17.018999999999998,18.541,20.225000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1094,-0.17330000000000001,15.6426,0.083809999999999996,12.23,13.26,14.394,15.643000000000001,17.021000000000001,18.542999999999999,20.228000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1095,-0.17330000000000001,15.644299999999999,0.083820000000000006,12.231,13.260999999999999,14.395,15.644,17.023,18.545999999999999,20.231000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1096,-0.17330000000000001,15.646000000000001,0.083830000000000002,12.231999999999999,13.263,14.397,15.646000000000001,17.024999999999999,18.547999999999998,20.234000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1097,-0.17330000000000001,15.6477,0.083839999999999998,12.233000000000001,13.263999999999999,14.398,15.648,17.027000000000001,18.55,20.236999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1098,-0.17330000000000001,15.6494,0.083849999999999994,12.234,13.265000000000001,14.398999999999999,15.648999999999999,17.029,18.553000000000001,20.239000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1099,-0.17330000000000001,15.651,0.083860000000000004,12.234999999999999,13.266,14.401,15.651,17.030999999999999,18.555,20.242000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1100,-0.17330000000000001,15.652699999999999,0.08387,12.236000000000001,13.266999999999999,14.401999999999999,15.653,17.033000000000001,18.556999999999999,20.245000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1101,-0.17330000000000001,15.654400000000001,0.083879999999999996,12.237,13.268000000000001,14.404,15.654,17.035,18.559999999999999,20.248000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1102,-0.17330000000000001,15.6561,0.083900000000000002,12.237,13.269,14.404999999999999,15.656000000000001,17.036999999999999,18.562999999999999,20.251000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1103,-0.17330000000000001,15.6578,0.083909999999999998,12.238,13.27,14.406000000000001,15.657999999999999,17.039000000000001,18.565000000000001,20.254000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1104,-0.17330000000000001,15.6595,0.083919999999999995,12.239000000000001,13.272,14.407999999999999,15.66,17.041,18.567,20.257000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1105,-0.17330000000000001,15.661199999999999,0.083930000000000005,12.24,13.273,14.409000000000001,15.661,17.042999999999999,18.57,20.260000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1106,-0.17330000000000001,15.6629,0.083940000000000001,12.241,13.273999999999999,14.411,15.663,17.045000000000002,18.571999999999999,20.263000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1107,-0.17330000000000001,15.6645,0.083949999999999997,12.242000000000001,13.275,14.412000000000001,15.664,17.047000000000001,18.574000000000002,20.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1108,-0.17330000000000001,15.6662,0.083960000000000007,12.243,13.276,14.413,15.666,17.048999999999999,18.577000000000002,20.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1109,-0.17330000000000001,15.667899999999999,0.083970000000000003,12.244,13.278,14.414999999999999,15.667999999999999,17.050999999999998,18.579000000000001,20.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1110,-0.17330000000000001,15.669600000000001,0.083979999999999999,12.244999999999999,13.279,14.416,15.67,17.053000000000001,18.582000000000001,20.274000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1111,-0.17330000000000001,15.6713,0.083989999999999995,12.246,13.28,14.417999999999999,15.670999999999999,17.055,18.584,20.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1112,-0.17330000000000001,15.673,0.084010000000000001,12.247,13.281000000000001,14.419,15.673,17.056999999999999,18.587,20.28 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1113,-0.17330000000000001,15.6747,0.084019999999999997,12.247999999999999,13.282,14.42,15.675000000000001,17.059000000000001,18.588999999999999,20.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1114,-0.17330000000000001,15.676399999999999,0.084029999999999994,12.249000000000001,13.282999999999999,14.422000000000001,15.676,17.061,18.591999999999999,20.286000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1115,-0.17330000000000001,15.678000000000001,0.084040000000000004,12.25,13.284000000000001,14.423,15.678000000000001,17.062999999999999,18.594000000000001,20.288 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1116,-0.17330000000000001,15.6797,0.08405,12.250999999999999,13.285,14.423999999999999,15.68,17.065000000000001,18.596,20.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1117,-0.17330000000000001,15.6814,0.084059999999999996,12.252000000000001,13.287000000000001,14.426,15.680999999999999,17.067,18.599,20.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1118,-0.17330000000000001,15.6831,0.084070000000000006,12.252000000000001,13.288,14.427,15.683,17.068999999999999,18.600999999999999,20.297000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1119,-0.17330000000000001,15.684799999999999,0.084080000000000002,12.253,13.289,14.429,15.685,17.071000000000002,18.603999999999999,20.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1120,-0.17330000000000001,15.686500000000001,0.084089999999999998,12.254,13.29,14.43,15.686,17.073,18.606000000000002,20.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1121,-0.17330000000000001,15.6882,0.084099999999999994,12.255000000000001,13.291,14.432,15.688000000000001,17.074999999999999,18.608000000000001,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1122,-0.17330000000000001,15.6899,0.08412,12.256,13.292,14.433,15.69,17.077000000000002,18.611000000000001,20.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1123,-0.17330000000000001,15.691599999999999,0.084129999999999996,12.257,13.292999999999999,14.433999999999999,15.692,17.079000000000001,18.614000000000001,20.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1124,-0.17330000000000001,15.693199999999999,0.084140000000000006,12.257999999999999,13.295,14.436,15.693,17.081,18.616,20.315000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1125,-0.17330000000000001,15.694900000000001,0.084150000000000003,12.259,13.295999999999999,14.436999999999999,15.695,17.082999999999998,18.617999999999999,20.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1126,-0.17330000000000001,15.6966,0.084159999999999999,12.26,13.297000000000001,14.438000000000001,15.696999999999999,17.085000000000001,18.620999999999999,20.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1127,-0.17330000000000001,15.6983,0.084169999999999995,12.260999999999999,13.298,14.44,15.698,17.087,18.623000000000001,20.323 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1128,-0.17330000000000001,15.7,0.084180000000000005,12.262,13.298999999999999,14.441000000000001,15.7,17.088999999999999,18.625,20.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1129,-0.17330000000000001,15.701700000000001,0.084190000000000001,12.263,13.3,14.443,15.702,17.091000000000001,18.628,20.329000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1130,-0.17330000000000001,15.7034,0.084209999999999993,12.263,13.301,14.444000000000001,15.702999999999999,17.094000000000001,18.631,20.332000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1131,-0.17330000000000001,15.7051,0.084220000000000003,12.263999999999999,13.303000000000001,14.445,15.705,17.096,18.632999999999999,20.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1132,-0.17330000000000001,15.7067,0.084229999999999999,12.265000000000001,13.304,14.446999999999999,15.707000000000001,17.097999999999999,18.635000000000002,20.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1133,-0.17330000000000001,15.708399999999999,0.084239999999999995,12.266,13.305,14.448,15.708,17.100000000000001,18.638000000000002,20.341000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1134,-0.17330000000000001,15.710100000000001,0.084250000000000005,12.266999999999999,13.305999999999999,14.45,15.71,17.102,18.64,20.343 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1135,-0.17330000000000001,15.7118,0.084260000000000002,12.268000000000001,13.307,14.451000000000001,15.712,17.103999999999999,18.641999999999999,20.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1136,-0.17330000000000001,15.7135,0.084269999999999998,12.269,13.308,14.452,15.714,17.106000000000002,18.645,20.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1137,-0.17330000000000001,15.715199999999999,0.084290000000000004,12.27,13.308999999999999,14.454000000000001,15.715,17.108000000000001,18.648,20.353000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1138,-0.17330000000000001,15.716900000000001,0.0843,12.271000000000001,13.31,14.455,15.717000000000001,17.11,18.649999999999999,20.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1139,-0.17330000000000001,15.7186,0.084309999999999996,12.272,13.311999999999999,14.457000000000001,15.718999999999999,17.111999999999998,18.652000000000001,20.358000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1140,-0.17330000000000001,15.7203,0.084320000000000006,12.273,13.313000000000001,14.458,15.72,17.114000000000001,18.655000000000001,20.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1141,-0.17330000000000001,15.7219,0.084330000000000002,12.273999999999999,13.314,14.459,15.722,17.116,18.657,20.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1142,-0.17330000000000001,15.723599999999999,0.084339999999999998,12.275,13.315,14.461,15.724,17.117999999999999,18.66,20.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1143,-0.17330000000000001,15.725300000000001,0.084349999999999994,12.276,13.316000000000001,14.462,15.725,17.12,18.661999999999999,20.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1144,-0.17330000000000001,15.727,0.084370000000000001,12.276,13.317,14.462999999999999,15.727,17.122,18.664999999999999,20.373000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1145,-0.17330000000000001,15.7287,0.084379999999999997,12.276999999999999,13.318,14.465,15.728999999999999,17.123999999999999,18.667000000000002,20.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1146,-0.17330000000000001,15.730399999999999,0.084390000000000007,12.278,13.32,14.465999999999999,15.73,17.126000000000001,18.670000000000002,20.379000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1147,-0.17330000000000001,15.732100000000001,0.084400000000000003,12.279,13.321,14.468,15.731999999999999,17.128,18.672000000000001,20.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1148,-0.17330000000000001,15.7338,0.084409999999999999,12.28,13.321999999999999,14.468999999999999,15.734,17.13,18.673999999999999,20.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1149,-0.17330000000000001,15.7355,0.084419999999999995,12.281000000000001,13.323,14.47,15.736000000000001,17.132000000000001,18.677,20.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1150,-0.17330000000000001,15.7371,0.084430000000000005,12.282,13.324,14.472,15.737,17.134,18.678999999999998,20.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1151,-0.17330000000000001,15.738799999999999,0.084449999999999997,12.282999999999999,13.324999999999999,14.473000000000001,15.739000000000001,17.135999999999999,18.681999999999999,20.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1152,-0.17330000000000001,15.740500000000001,0.084459999999999993,12.284000000000001,13.326000000000001,14.475,15.74,17.138000000000002,18.684000000000001,20.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1153,-0.17330000000000001,15.7422,0.084470000000000003,12.285,13.327999999999999,14.476000000000001,15.742000000000001,17.14,18.687000000000001,20.399000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1154,-0.17330000000000001,15.7439,0.08448,12.286,13.329000000000001,14.477,15.744,17.141999999999999,18.689,20.402000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1155,-0.17330000000000001,15.7456,0.084489999999999996,12.286,13.33,14.478999999999999,15.746,17.143999999999998,18.690999999999999,20.405000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1156,-0.17330000000000001,15.747299999999999,0.084500000000000006,12.287000000000001,13.331,14.48,15.747,17.146000000000001,18.693999999999999,20.408000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1157,-0.17330000000000001,15.749000000000001,0.084519999999999998,12.288,13.332000000000001,14.481,15.749000000000001,17.149000000000001,18.696999999999999,20.411000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1158,-0.17330000000000001,15.7507,0.084529999999999994,12.289,13.333,14.483000000000001,15.750999999999999,17.151,18.699000000000002,20.414000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1159,-0.17330000000000001,15.7524,0.084540000000000004,12.29,13.334,14.484,15.752000000000001,17.152999999999999,18.701000000000001,20.417000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1160,-0.17330000000000001,15.754,0.08455,12.291,13.335000000000001,14.486000000000001,15.754,17.155000000000001,18.704000000000001,20.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1161,-0.17330000000000001,15.755699999999999,0.084559999999999996,12.292,13.337,14.487,15.756,17.157,18.706,20.422000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1162,-0.17330000000000001,15.757400000000001,0.084570000000000006,12.292999999999999,13.337999999999999,14.488,15.757,17.158999999999999,18.709,20.425000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1163,-0.17330000000000001,15.7591,0.084589999999999999,12.292999999999999,13.339,14.49,15.759,17.161000000000001,18.710999999999999,20.428999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1164,-0.17330000000000001,15.7608,0.084599999999999995,12.294,13.34,14.491,15.760999999999999,17.163,18.713999999999999,20.431000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1165,-0.17330000000000001,15.762499999999999,0.084610000000000005,12.295,13.340999999999999,14.493,15.762,17.164999999999999,18.716000000000001,20.434000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1166,-0.17330000000000001,15.764200000000001,0.084620000000000001,12.295999999999999,13.342000000000001,14.494,15.763999999999999,17.167000000000002,18.719000000000001,20.437000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1167,-0.17330000000000001,15.7659,0.084629999999999997,12.297000000000001,13.343,14.494999999999999,15.766,17.169,18.721,20.440000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1168,-0.17330000000000001,15.7676,0.084650000000000003,12.298,13.343999999999999,14.497,15.768000000000001,17.170999999999999,18.724,20.443000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1169,-0.17330000000000001,15.7692,0.084659999999999999,12.298999999999999,13.345000000000001,14.497999999999999,15.769,17.172999999999998,18.725999999999999,20.446000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1170,-0.17330000000000001,15.770899999999999,0.084669999999999995,12.3,13.347,14.499000000000001,15.771000000000001,17.175000000000001,18.728000000000002,20.449000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1171,-0.17330000000000001,15.772600000000001,0.084680000000000005,12.301,13.348000000000001,14.500999999999999,15.773,17.177,18.731000000000002,20.452000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1172,-0.17330000000000001,15.7743,0.084690000000000001,12.302,13.349,14.502000000000001,15.773999999999999,17.178999999999998,18.733000000000001,20.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1173,-0.17330000000000001,15.776,0.084709999999999994,12.302,13.35,14.504,15.776,17.181000000000001,18.736000000000001,20.457999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1174,-0.17330000000000001,15.777699999999999,0.084720000000000004,12.303000000000001,13.351000000000001,14.505000000000001,15.778,17.183,18.738,20.460999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1175,-0.17330000000000001,15.779400000000001,0.08473,12.304,13.352,14.506,15.779,17.184999999999999,18.741,20.463999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1176,-0.17330000000000001,15.7811,0.084739999999999996,12.305,13.353,14.507999999999999,15.781000000000001,17.187000000000001,18.742999999999999,20.466999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1177,-0.17330000000000001,15.7828,0.084750000000000006,12.305999999999999,13.355,14.509,15.782999999999999,17.190000000000001,18.745999999999999,20.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1178,-0.17330000000000001,15.7844,0.084760000000000002,12.307,13.356,14.510999999999999,15.784000000000001,17.190999999999999,18.748000000000001,20.472000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1179,-0.17330000000000001,15.786099999999999,0.084779999999999994,12.308,13.356999999999999,14.512,15.786,17.193999999999999,18.751000000000001,20.475999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1180,-0.17330000000000001,15.787800000000001,0.084790000000000004,12.308999999999999,13.358000000000001,14.513,15.788,17.196000000000002,18.753,20.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1181,-0.17330000000000001,15.7895,0.0848,12.31,13.359,14.515000000000001,15.79,17.198,18.756,20.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1182,-0.17330000000000001,15.7912,0.084809999999999997,12.311,13.36,14.516,15.791,17.2,18.757999999999999,20.484000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1183,-0.17330000000000001,15.792899999999999,0.084820000000000007,12.311999999999999,13.361000000000001,14.518000000000001,15.792999999999999,17.202000000000002,18.760000000000002,20.486999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1184,-0.17330000000000001,15.794600000000001,0.084839999999999999,12.311999999999999,13.362,14.519,15.795,17.204000000000001,18.763000000000002,20.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1185,-0.17330000000000001,15.7963,0.084849999999999995,12.313000000000001,13.363,14.52,15.795999999999999,17.206,18.765999999999998,20.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1186,-0.17330000000000001,15.7979,0.084860000000000005,12.314,13.365,14.522,15.798,17.207999999999998,18.768000000000001,20.495999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1187,-0.17330000000000001,15.7996,0.084870000000000001,12.315,13.366,14.523,15.8,17.21,18.77,20.498999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1188,-0.17330000000000001,15.801299999999999,0.084889999999999993,12.316000000000001,13.367000000000001,14.523999999999999,15.801,17.212,18.773,20.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1189,-0.17330000000000001,15.803000000000001,0.084900000000000003,12.317,13.368,14.526,15.803000000000001,17.213999999999999,18.774999999999999,20.504999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1190,-0.17330000000000001,15.8047,0.084909999999999999,12.318,13.369,14.526999999999999,15.805,17.216000000000001,18.777999999999999,20.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1191,-0.17330000000000001,15.8064,0.084919999999999995,12.319000000000001,13.37,14.529,15.805999999999999,17.218,18.78,20.510999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1192,-0.17330000000000001,15.808,0.084930000000000005,12.32,13.371,14.53,15.808,17.22,18.783000000000001,20.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1193,-0.17330000000000001,15.809699999999999,0.084949999999999998,12.32,13.372,14.531000000000001,15.81,17.222000000000001,18.785,20.516999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1194,-0.17330000000000001,15.811400000000001,0.084959999999999994,12.321,13.372999999999999,14.532999999999999,15.811,17.224,18.788,20.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1195,-0.17330000000000001,15.8131,0.084970000000000004,12.321999999999999,13.375,14.534000000000001,15.813000000000001,17.225999999999999,18.79,20.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1196,-0.17330000000000001,15.8148,0.08498,12.323,13.375999999999999,14.535,15.815,17.228000000000002,18.792999999999999,20.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1197,-0.17330000000000001,15.8165,0.084989999999999996,12.324,13.377000000000001,14.537000000000001,15.816000000000001,17.23,18.795000000000002,20.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1198,-0.17330000000000001,15.818199999999999,0.085010000000000002,12.324999999999999,13.378,14.538,15.818,17.233000000000001,18.797999999999998,20.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1199,-0.17330000000000001,15.819800000000001,0.085019999999999998,12.326000000000001,13.379,14.539,15.82,17.234999999999999,18.8,20.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1200,-0.17330000000000001,15.8215,0.085029999999999994,12.327,13.38,14.541,15.821999999999999,17.236999999999998,18.802,20.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1201,-0.17330000000000001,15.8232,0.085040000000000004,12.327999999999999,13.381,14.542,15.823,17.239000000000001,18.805,20.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1202,-0.17330000000000001,15.8249,0.085059999999999997,12.327999999999999,13.382,14.544,15.824999999999999,17.241,18.808,20.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1203,-0.17330000000000001,15.826599999999999,0.085070000000000007,12.329000000000001,13.382999999999999,14.545,15.827,17.242999999999999,18.809999999999999,20.547000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1204,-0.17330000000000001,15.828200000000001,0.085080000000000003,12.33,13.384,14.545999999999999,15.827999999999999,17.245000000000001,18.812000000000001,20.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1205,-0.17330000000000001,15.8299,0.085089999999999999,12.331,13.385999999999999,14.548,15.83,17.247,18.815000000000001,20.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1206,-0.17330000000000001,15.8316,0.085099999999999995,12.332000000000001,13.387,14.548999999999999,15.832000000000001,17.248999999999999,18.817,20.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1207,-0.17330000000000001,15.833299999999999,0.085120000000000001,12.333,13.388,14.55,15.833,17.251000000000001,18.82,20.559000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1208,-0.17330000000000001,15.835000000000001,0.085129999999999997,12.334,13.388999999999999,14.552,15.835000000000001,17.253,18.821999999999999,20.562000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1209,-0.17330000000000001,15.836600000000001,0.085139999999999993,12.334,13.39,14.553000000000001,15.837,17.254999999999999,18.824999999999999,20.565000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1210,-0.17330000000000001,15.8383,0.085150000000000003,12.335000000000001,13.391,14.555,15.837999999999999,17.257000000000001,18.827000000000002,20.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1211,-0.17330000000000001,15.84,0.085169999999999996,12.336,13.391999999999999,14.555999999999999,15.84,17.259,18.829999999999998,20.571000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1212,-0.17330000000000001,15.841699999999999,0.085180000000000006,12.337,13.393000000000001,14.557,15.842000000000001,17.260999999999999,18.832000000000001,20.574000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1213,-0.17330000000000001,15.843299999999999,0.085190000000000002,12.337999999999999,13.394,14.558999999999999,15.843,17.263000000000002,18.835000000000001,20.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1214,-0.17330000000000001,15.845000000000001,0.085199999999999998,12.339,13.396000000000001,14.56,15.845000000000001,17.265000000000001,18.837,20.579000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1215,-0.17330000000000001,15.8467,0.085220000000000004,12.339,13.396000000000001,14.561,15.847,17.266999999999999,18.84,20.582999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1216,-0.17330000000000001,15.8484,0.08523,12.34,13.398,14.563000000000001,15.848000000000001,17.268999999999998,18.841999999999999,20.585999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1217,-0.17330000000000001,15.85,0.085239999999999996,12.340999999999999,13.398999999999999,14.564,15.85,17.271000000000001,18.844000000000001,20.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1218,-0.17330000000000001,15.851699999999999,0.085250000000000006,12.342000000000001,13.4,14.565,15.852,17.273,18.847000000000001,20.591000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1219,-0.17330000000000001,15.853400000000001,0.085269999999999999,12.343,13.401,14.567,15.853,17.276,18.850000000000001,20.594999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1220,-0.17330000000000001,15.8551,0.085279999999999995,12.343999999999999,13.401999999999999,14.568,15.855,17.277999999999999,18.852,20.597999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1221,-0.17330000000000001,15.8567,0.085290000000000005,12.345000000000001,13.403,14.569000000000001,15.856999999999999,17.279,18.853999999999999,20.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1222,-0.17330000000000001,15.8584,0.085300000000000001,12.346,13.404,14.571,15.858000000000001,17.280999999999999,18.856999999999999,20.603000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1223,-0.17330000000000001,15.860099999999999,0.085319999999999993,12.346,13.404999999999999,14.571999999999999,15.86,17.283999999999999,18.86,20.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1224,-0.17330000000000001,15.861800000000001,0.085330000000000003,12.347,13.406000000000001,14.574,15.862,17.286000000000001,18.861999999999998,20.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1225,-0.17330000000000001,15.8634,0.085339999999999999,12.348000000000001,13.407,14.574999999999999,15.863,17.288,18.864000000000001,20.611999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1226,-0.17330000000000001,15.8651,0.085349999999999995,12.349,13.409000000000001,14.576000000000001,15.865,17.29,18.867000000000001,20.614999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1227,-0.17330000000000001,15.8668,0.085370000000000001,12.35,13.41,14.577999999999999,15.867000000000001,17.292000000000002,18.869,20.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1228,-0.17330000000000001,15.868399999999999,0.085379999999999998,12.351000000000001,13.411,14.579000000000001,15.868,17.294,18.872,20.620999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1229,-0.17330000000000001,15.870100000000001,0.085389999999999994,12.352,13.412000000000001,14.58,15.87,17.295999999999999,18.873999999999999,20.623999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1230,-0.17330000000000001,15.8718,0.085400000000000004,12.353,13.413,14.582000000000001,15.872,17.297999999999998,18.876999999999999,20.626999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1231,-0.17330000000000001,15.8734,0.085419999999999996,12.353,13.414,14.583,15.872999999999999,17.3,18.879000000000001,20.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1232,-0.17330000000000001,15.8751,0.085430000000000006,12.353999999999999,13.414999999999999,14.584,15.875,17.302,18.882000000000001,20.632999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1233,-0.17330000000000001,15.876799999999999,0.085440000000000002,12.355,13.416,14.586,15.877000000000001,17.303999999999998,18.884,20.635999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1234,-0.17330000000000001,15.878399999999999,0.085449999999999998,12.356,13.417,14.587,15.878,17.306000000000001,18.885999999999999,20.638999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1235,-0.17330000000000001,15.880100000000001,0.085470000000000004,12.356999999999999,13.417999999999999,14.587999999999999,15.88,17.308,18.888999999999999,20.641999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1236,-0.17330000000000001,15.8818,0.08548,12.358000000000001,13.419,14.59,15.882,17.309999999999999,18.891999999999999,20.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1237,-0.17330000000000001,15.8834,0.085489999999999997,12.358000000000001,13.42,14.590999999999999,15.882999999999999,17.312000000000001,18.893999999999998,20.648 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1238,-0.17330000000000001,15.8851,0.085500000000000007,12.359,13.422000000000001,14.593,15.885,17.314,18.896000000000001,20.651 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1239,-0.17330000000000001,15.886799999999999,0.085519999999999999,12.36,13.423,14.593999999999999,15.887,17.315999999999999,18.899000000000001,20.654 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1240,-0.17330000000000001,15.888400000000001,0.085529999999999995,12.361000000000001,13.423999999999999,14.595000000000001,15.888,17.318000000000001,18.901,20.657 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1241,-0.17330000000000001,15.8901,0.085540000000000005,12.362,13.425000000000001,14.597,15.89,17.32,18.904,20.66 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1242,-0.17330000000000001,15.8918,0.085550000000000001,12.363,13.426,14.598000000000001,15.891999999999999,17.321999999999999,18.905999999999999,20.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1243,-0.17330000000000001,15.8934,0.085569999999999993,12.363,13.427,14.599,15.893000000000001,17.324000000000002,18.908999999999999,20.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1244,-0.17330000000000001,15.895099999999999,0.085580000000000003,12.364000000000001,13.428000000000001,14.601000000000001,15.895,17.326000000000001,18.911000000000001,20.669 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1245,-0.17330000000000001,15.896699999999999,0.085589999999999999,12.365,13.429,14.602,15.897,17.327999999999999,18.914000000000001,20.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1246,-0.17330000000000001,15.898400000000001,0.085610000000000006,12.366,13.43,14.603,15.898,17.331,18.916,20.675000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1247,-0.17330000000000001,15.9001,0.085620000000000002,12.367000000000001,13.430999999999999,14.605,15.9,17.332999999999998,18.919,20.678000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1248,-0.17330000000000001,15.9017,0.085629999999999998,12.368,13.432,14.606,15.901999999999999,17.334,18.920999999999999,20.681000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1249,-0.17330000000000001,15.9034,0.085639999999999994,12.369,13.433,14.606999999999999,15.903,17.337,18.923999999999999,20.684000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1250,-0.17330000000000001,15.904999999999999,0.08566,12.369,13.433999999999999,14.608000000000001,15.904999999999999,17.338999999999999,18.925999999999998,20.687000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1251,-0.17330000000000001,15.906700000000001,0.085669999999999996,12.37,13.435,14.61,15.907,17.341000000000001,18.928999999999998,20.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1252,-0.17330000000000001,15.9084,0.085680000000000006,12.371,13.436999999999999,14.611000000000001,15.907999999999999,17.343,18.931000000000001,20.693000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1253,-0.17330000000000001,15.91,0.085690000000000002,12.372,13.438000000000001,14.613,15.91,17.344999999999999,18.933,20.696000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1254,-0.17330000000000001,15.9117,0.085709999999999995,12.372999999999999,13.439,14.614000000000001,15.912000000000001,17.347000000000001,18.936,20.699000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1255,-0.17330000000000001,15.9133,0.085720000000000005,12.374000000000001,13.44,14.615,15.913,17.349,18.937999999999999,20.702000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1256,-0.17330000000000001,15.914999999999999,0.085730000000000001,12.375,13.441000000000001,14.617000000000001,15.914999999999999,17.350999999999999,18.940999999999999,20.704999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1257,-0.17330000000000001,15.916600000000001,0.085750000000000007,12.375,13.442,14.618,15.917,17.353000000000002,18.943999999999999,20.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1258,-0.17330000000000001,15.9183,0.085760000000000003,12.375999999999999,13.443,14.619,15.917999999999999,17.355,18.946000000000002,20.710999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1259,-0.17330000000000001,15.9199,0.085769999999999999,12.377000000000001,13.444000000000001,14.621,15.92,17.356999999999999,18.948,20.713999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1260,-0.17330000000000001,15.9216,0.085779999999999995,12.378,13.445,14.622,15.922000000000001,17.359000000000002,18.951000000000001,20.716999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1261,-0.17330000000000001,15.9232,0.085800000000000001,12.378,13.446,14.622999999999999,15.923,17.361000000000001,18.952999999999999,20.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1262,-0.17330000000000001,15.924899999999999,0.085809999999999997,12.379,13.446999999999999,14.625,15.925000000000001,17.363,18.956,20.722999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1263,-0.17330000000000001,15.926500000000001,0.085819999999999994,12.38,13.448,14.625999999999999,15.926,17.364999999999998,18.957999999999998,20.725000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1264,-0.17330000000000001,15.9282,0.08584,12.381,13.449,14.627000000000001,15.928000000000001,17.367000000000001,18.960999999999999,20.728999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1265,-0.17330000000000001,15.9298,0.085849999999999996,12.382,13.45,14.629,15.93,17.369,18.963000000000001,20.731999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1266,-0.17330000000000001,15.9315,0.085860000000000006,12.382999999999999,13.451000000000001,14.63,15.932,17.370999999999999,18.966000000000001,20.734999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1267,-0.17330000000000001,15.9331,0.085870000000000002,12.384,13.452,14.631,15.933,17.373000000000001,18.968,20.736999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1268,-0.17330000000000001,15.934799999999999,0.085889999999999994,12.384,13.452999999999999,14.632999999999999,15.935,17.375,18.971,20.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1269,-0.17330000000000001,15.936400000000001,0.085900000000000004,12.385,13.455,14.634,15.936,17.376999999999999,18.972999999999999,20.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1270,-0.17330000000000001,15.9381,0.08591,12.385999999999999,13.456,14.635,15.938000000000001,17.379000000000001,18.975000000000001,20.745999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1271,-0.17330000000000001,15.9397,0.085930000000000006,12.387,13.457000000000001,14.635999999999999,15.94,17.381,18.978000000000002,20.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1272,-0.17330000000000001,15.9414,0.085940000000000003,12.388,13.458,14.638,15.941000000000001,17.382999999999999,18.98,20.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1273,-0.17330000000000001,15.943,0.085949999999999999,12.388,13.459,14.638999999999999,15.943,17.385000000000002,18.983000000000001,20.754999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1274,-0.17330000000000001,15.944699999999999,0.085959999999999995,12.388999999999999,13.46,14.641,15.945,17.387,18.984999999999999,20.757999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1275,-0.17330000000000001,15.946300000000001,0.085980000000000001,12.39,13.461,14.641999999999999,15.946,17.388999999999999,18.988,20.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1276,-0.17330000000000001,15.947900000000001,0.085989999999999997,12.391,13.462,14.643000000000001,15.948,17.390999999999998,18.989999999999998,20.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1277,-0.17330000000000001,15.9496,0.085999999999999993,12.391999999999999,13.462999999999999,14.645,15.95,17.393000000000001,18.992999999999999,20.766999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1278,-0.17330000000000001,15.9512,0.086019999999999999,12.391999999999999,13.464,14.646000000000001,15.951000000000001,17.395,18.995000000000001,20.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1279,-0.17330000000000001,15.9529,0.086029999999999995,12.393000000000001,13.465,14.647,15.952999999999999,17.396999999999998,18.998000000000001,20.774000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1280,-0.17330000000000001,15.954499999999999,0.086040000000000005,12.394,13.465999999999999,14.648,15.954000000000001,17.399000000000001,19,20.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1281,-0.17330000000000001,15.956099999999999,0.086059999999999998,12.395,13.467000000000001,14.65,15.956,17.401,19.003,20.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1282,-0.17330000000000001,15.957800000000001,0.086069999999999994,12.396000000000001,13.468,14.651,15.958,17.402999999999999,19.004999999999999,20.783000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1283,-0.17330000000000001,15.9594,0.086080000000000004,12.397,13.468999999999999,14.651999999999999,15.959,17.405000000000001,19.007000000000001,20.785 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1284,-0.17330000000000001,15.9611,0.08609,12.398,13.47,14.654,15.961,17.407,19.010000000000002,20.788 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1285,-0.17330000000000001,15.9627,0.086110000000000006,12.398,13.471,14.654999999999999,15.962999999999999,17.408999999999999,19.013000000000002,20.792000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1286,-0.17330000000000001,15.9643,0.086120000000000002,12.398999999999999,13.472,14.656000000000001,15.964,17.411000000000001,19.015000000000001,20.794 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1287,-0.17330000000000001,15.965999999999999,0.086129999999999998,12.4,13.473000000000001,14.657999999999999,15.965999999999999,17.413,19.016999999999999,20.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1288,-0.17330000000000001,15.967599999999999,0.086150000000000004,12.4,13.474,14.659000000000001,15.968,17.416,19.02,20.800999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1289,-0.17330000000000001,15.9693,0.08616,12.401,13.475,14.66,15.968999999999999,17.417999999999999,19.021999999999998,20.803000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1290,-0.17330000000000001,15.9709,0.086169999999999997,12.401999999999999,13.477,14.662000000000001,15.971,17.419,19.024999999999999,20.806000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1291,-0.17330000000000001,15.9725,0.086190000000000003,12.403,13.477,14.663,15.972,17.422000000000001,19.027000000000001,20.81 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1292,-0.17330000000000001,15.9742,0.086199999999999999,12.404,13.478999999999999,14.664,15.974,17.423999999999999,19.03,20.812000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1293,-0.17330000000000001,15.9758,0.086209999999999995,12.404999999999999,13.48,14.666,15.976000000000001,17.425999999999998,19.032,20.815000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1294,-0.17330000000000001,15.977399999999999,0.086230000000000001,12.404999999999999,13.48,14.667,15.977,17.428000000000001,19.035,20.818999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1295,-0.17330000000000001,15.979100000000001,0.086239999999999997,12.406000000000001,13.481999999999999,14.667999999999999,15.978999999999999,17.43,19.036999999999999,20.821000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1296,-0.17330000000000001,15.980700000000001,0.086249999999999993,12.407,13.483000000000001,14.669,15.981,17.431999999999999,19.039000000000001,20.824000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1297,-0.17330000000000001,15.9823,0.086269999999999999,12.407999999999999,13.484,14.670999999999999,15.981999999999999,17.434000000000001,19.042000000000002,20.827999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1298,-0.17330000000000001,15.984,0.086279999999999996,12.409000000000001,13.484999999999999,14.672000000000001,15.984,17.436,19.045000000000002,20.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1299,-0.17330000000000001,15.9856,0.086290000000000006,12.409000000000001,13.486000000000001,14.673,15.986000000000001,17.437999999999999,19.047000000000001,20.832999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1300,-0.17330000000000001,15.9872,0.086300000000000002,12.41,13.487,14.675000000000001,15.987,17.440000000000001,19.048999999999999,20.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1301,-0.17330000000000001,15.988799999999999,0.086319999999999994,12.411,13.488,14.676,15.989000000000001,17.442,19.052,20.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1302,-0.17330000000000001,15.990500000000001,0.086330000000000004,12.412000000000001,13.489000000000001,14.677,15.99,17.443999999999999,19.053999999999998,20.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1303,-0.17330000000000001,15.992100000000001,0.08634,12.413,13.49,14.679,15.992000000000001,17.446000000000002,19.056999999999999,20.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1304,-0.17330000000000001,15.9937,0.086360000000000006,12.413,13.491,14.68,15.994,17.448,19.059000000000001,20.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1305,-0.17330000000000001,15.9954,0.086370000000000002,12.414,13.492000000000001,14.680999999999999,15.994999999999999,17.45,19.062000000000001,20.850999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1306,-0.17330000000000001,15.997,0.086379999999999998,12.414999999999999,13.493,14.683,15.997,17.452000000000002,19.064,20.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1307,-0.17330000000000001,15.9986,0.086400000000000005,12.416,13.494,14.683999999999999,15.999000000000001,17.454000000000001,19.067,20.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1308,-0.17330000000000001,16.0002,0.086410000000000001,12.416,13.494999999999999,14.685,16,17.456,19.068999999999999,20.86 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1309,-0.17330000000000001,16.001899999999999,0.086419999999999997,12.417,13.496,14.686,16.001999999999999,17.457999999999998,19.071000000000002,20.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1310,-0.17330000000000001,16.003499999999999,0.086440000000000003,12.417999999999999,13.497,14.688000000000001,16.003,17.46,19.074000000000002,20.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1311,-0.17330000000000001,16.005099999999999,0.086449999999999999,12.419,13.497999999999999,14.689,16.004999999999999,17.462,19.076000000000001,20.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1312,-0.17330000000000001,16.006699999999999,0.086459999999999995,12.42,13.499000000000001,14.69,16.007000000000001,17.463999999999999,19.079000000000001,20.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1313,-0.17330000000000001,16.008400000000002,0.086480000000000001,12.42,13.5,14.692,16.007999999999999,17.466000000000001,19.081,20.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1314,-0.17330000000000001,16.010000000000002,0.086489999999999997,12.420999999999999,13.500999999999999,14.693,16.010000000000002,17.468,19.084,20.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1315,-0.17330000000000001,16.011600000000001,0.086499999999999994,12.422000000000001,13.502000000000001,14.694000000000001,16.012,17.47,19.085999999999999,20.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1316,-0.17330000000000001,16.013200000000001,0.08652,12.423,13.503,14.695,16.013000000000002,17.472000000000001,19.088999999999999,20.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1317,-0.17330000000000001,16.014900000000001,0.086529999999999996,12.423999999999999,13.504,14.696999999999999,16.015000000000001,17.474,19.091000000000001,20.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1318,-0.17330000000000001,16.016500000000001,0.086540000000000006,12.425000000000001,13.505000000000001,14.698,16.015999999999998,17.475999999999999,19.094000000000001,20.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1319,-0.17330000000000001,16.0181,0.086559999999999998,12.425000000000001,13.506,14.699,16.018000000000001,17.478000000000002,19.096,20.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1320,-0.17330000000000001,16.0197,0.086569999999999994,12.426,13.507,14.701000000000001,16.02,17.48,19.099,20.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1321,-0.17330000000000001,16.0214,0.086580000000000004,12.427,13.507999999999999,14.702,16.021000000000001,17.481999999999999,19.100999999999999,20.899000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1322,-0.17330000000000001,16.023,0.086599999999999996,12.427,13.509,14.702999999999999,16.023,17.484000000000002,19.103999999999999,20.902000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1323,-0.17330000000000001,16.0246,0.086610000000000006,12.428000000000001,13.51,14.705,16.024999999999999,17.486000000000001,19.106000000000002,20.905000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1324,-0.17330000000000001,16.026199999999999,0.086620000000000003,12.429,13.510999999999999,14.706,16.026,17.488,19.108000000000001,20.908000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1325,-0.17330000000000001,16.027799999999999,0.086639999999999995,12.43,13.512,14.707000000000001,16.027999999999999,17.489999999999998,19.111000000000001,20.911000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1326,-0.17330000000000001,16.029499999999999,0.086650000000000005,12.430999999999999,13.513,14.708,16.029,17.492000000000001,19.113,20.914000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1327,-0.17330000000000001,16.031099999999999,0.086660000000000001,12.432,13.513999999999999,14.71,16.030999999999999,17.494,19.116,20.917000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1328,-0.17330000000000001,16.032699999999998,0.086679999999999993,12.432,13.515000000000001,14.711,16.033000000000001,17.495999999999999,19.117999999999999,20.92 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1329,-0.17330000000000001,16.034300000000002,0.086690000000000003,12.433,13.516,14.712,16.033999999999999,17.498000000000001,19.120999999999999,20.922999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1330,-0.17330000000000001,16.035900000000002,0.086699999999999999,12.433999999999999,13.516999999999999,14.714,16.036000000000001,17.5,19.123000000000001,20.925999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1331,-0.17330000000000001,16.037600000000001,0.086720000000000005,12.433999999999999,13.518000000000001,14.715,16.038,17.501999999999999,19.126000000000001,20.928999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1332,-0.17330000000000001,16.039200000000001,0.086730000000000002,12.435,13.519,14.715999999999999,16.039000000000001,17.504000000000001,19.128,20.931999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1333,-0.17330000000000001,16.040800000000001,0.086739999999999998,12.436,13.521000000000001,14.718,16.041,17.506,19.13,20.934999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1334,-0.17330000000000001,16.042400000000001,0.086760000000000004,12.436999999999999,13.521000000000001,14.718999999999999,16.042000000000002,17.507999999999999,19.132999999999999,20.937999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1335,-0.17330000000000001,16.044,0.08677,12.438000000000001,13.522,14.72,16.044,17.510000000000002,19.135000000000002,20.940999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1336,-0.17330000000000001,16.0457,0.086779999999999996,12.439,13.523999999999999,14.721,16.045999999999999,17.512,19.138000000000002,20.943999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1337,-0.17330000000000001,16.0473,0.086800000000000002,12.439,13.523999999999999,14.723000000000001,16.047000000000001,17.513999999999999,19.14,20.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1338,-0.17330000000000001,16.0489,0.086809999999999998,12.44,13.526,14.724,16.048999999999999,17.515999999999998,19.143000000000001,20.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1339,-0.17330000000000001,16.0505,0.086819999999999994,12.441000000000001,13.526999999999999,14.725,16.05,17.518000000000001,19.145,20.952999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1340,-0.17330000000000001,16.052099999999999,0.086840000000000001,12.441000000000001,13.526999999999999,14.726000000000001,16.052,17.52,19.148,20.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1341,-0.17330000000000001,16.053799999999999,0.086849999999999997,12.442,13.529,14.728,16.053999999999998,17.521999999999998,19.149999999999999,20.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1342,-0.17330000000000001,16.055399999999999,0.086860000000000007,12.443,13.53,14.728999999999999,16.055,17.524000000000001,19.152999999999999,20.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1343,-0.17330000000000001,16.056999999999999,0.086879999999999999,12.444000000000001,13.531000000000001,14.73,16.056999999999999,17.526,19.155000000000001,20.965 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1344,-0.17330000000000001,16.058599999999998,0.086889999999999995,12.445,13.532,14.731999999999999,16.059000000000001,17.527999999999999,19.158000000000001,20.968 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1345,-0.17330000000000001,16.060199999999998,0.086900000000000005,12.446,13.532999999999999,14.733000000000001,16.059999999999999,17.53,19.16,20.971 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1346,-0.17330000000000001,16.061800000000002,0.086919999999999997,12.446,13.534000000000001,14.734,16.062000000000001,17.532,19.163,20.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1347,-0.17330000000000001,16.063500000000001,0.086929999999999993,12.446999999999999,13.535,14.736000000000001,16.064,17.533999999999999,19.164999999999999,20.977 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1348,-0.17330000000000001,16.065100000000001,0.086940000000000003,12.448,13.536,14.737,16.065000000000001,17.536000000000001,19.167000000000002,20.98 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1349,-0.17330000000000001,16.066700000000001,0.086959999999999996,12.448,13.537000000000001,14.738,16.067,17.538,19.170000000000002,20.983000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1350,-0.17330000000000001,16.068300000000001,0.086970000000000006,12.449,13.538,14.739000000000001,16.068000000000001,17.54,19.172000000000001,20.986000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1351,-0.17330000000000001,16.069900000000001,0.086980000000000002,12.45,13.539,14.741,16.07,17.542000000000002,19.175000000000001,20.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1352,-0.17330000000000001,16.0715,0.086999999999999994,12.451000000000001,13.54,14.742000000000001,16.071999999999999,17.544,19.177,20.992000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1353,-0.17330000000000001,16.0731,0.087010000000000004,12.452,13.541,14.743,16.073,17.545999999999999,19.18,20.995000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1354,-0.17330000000000001,16.0748,0.08702,12.452999999999999,13.542,14.744999999999999,16.074999999999999,17.547999999999998,19.181999999999999,20.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1355,-0.17330000000000001,16.0764,0.087040000000000006,12.452999999999999,13.542999999999999,14.746,16.076000000000001,17.55,19.184999999999999,21.001000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1356,-0.17330000000000001,16.077999999999999,0.087050000000000002,12.454000000000001,13.544,14.747,16.077999999999999,17.552,19.187000000000001,21.004000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1357,-0.17330000000000001,16.079599999999999,0.087059999999999998,12.455,13.545,14.749000000000001,16.079999999999998,17.553999999999998,19.189,21.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1358,-0.17330000000000001,16.081199999999999,0.087080000000000005,12.455,13.545999999999999,14.75,16.081,17.556000000000001,19.192,21.01 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1359,-0.17330000000000001,16.082799999999999,0.087090000000000001,12.456,13.547000000000001,14.750999999999999,16.082999999999998,17.558,19.193999999999999,21.013000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1360,-0.17330000000000001,16.084399999999999,0.087099999999999997,12.457000000000001,13.548,14.752000000000001,16.084,17.559999999999999,19.196999999999999,21.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1361,-0.17330000000000001,16.086099999999998,0.087120000000000003,12.458,13.548999999999999,14.754,16.085999999999999,17.562000000000001,19.199000000000002,21.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1362,-0.17330000000000001,16.087700000000002,0.087129999999999999,12.459,13.55,14.755000000000001,16.088000000000001,17.564,19.202000000000002,21.021999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1363,-0.17330000000000001,16.089300000000001,0.087139999999999995,12.459,13.551,14.756,16.088999999999999,17.565999999999999,19.204000000000001,21.024000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1364,-0.17330000000000001,16.090900000000001,0.087160000000000001,12.46,13.552,14.757,16.091000000000001,17.568000000000001,19.207000000000001,21.027999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1365,-0.17330000000000001,16.092500000000001,0.087169999999999997,12.461,13.553000000000001,14.759,16.093,17.57,19.209,21.030999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1366,-0.17330000000000001,16.094100000000001,0.087179999999999994,12.462,13.554,14.76,16.094000000000001,17.571999999999999,19.210999999999999,21.033000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1367,-0.17330000000000001,16.095700000000001,0.0872,12.462,13.555,14.760999999999999,16.096,17.574000000000002,19.213999999999999,21.036999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1368,-0.17330000000000001,16.0974,0.087209999999999996,12.462999999999999,13.555999999999999,14.763,16.097000000000001,17.576000000000001,19.216000000000001,21.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1369,-0.17330000000000001,16.099,0.087230000000000002,12.464,13.557,14.763999999999999,16.099,17.577999999999999,19.219000000000001,21.042999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1370,-0.17330000000000001,16.1006,0.087239999999999998,12.465,13.558,14.765000000000001,16.100999999999999,17.579999999999998,19.221,21.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1371,-0.17330000000000001,16.1022,0.087249999999999994,12.465999999999999,13.558999999999999,14.766,16.102,17.582000000000001,19.224,21.047999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1372,-0.17330000000000001,16.1038,0.08727,12.465999999999999,13.56,14.768000000000001,16.103999999999999,17.584,19.225999999999999,21.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1373,-0.17330000000000001,16.105399999999999,0.087279999999999996,12.467000000000001,13.561,14.769,16.105,17.585999999999999,19.228999999999999,21.055 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1374,-0.17330000000000001,16.106999999999999,0.087290000000000006,12.468,13.561999999999999,14.77,16.106999999999999,17.588000000000001,19.231000000000002,21.056999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1375,-0.17330000000000001,16.108599999999999,0.087309999999999999,12.468,13.563000000000001,14.771000000000001,16.109000000000002,17.59,19.234000000000002,21.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1376,-0.17330000000000001,16.110299999999999,0.087319999999999995,12.468999999999999,13.564,14.773,16.11,17.591999999999999,19.236000000000001,21.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1377,-0.17330000000000001,16.111899999999999,0.087330000000000005,12.47,13.565,14.773999999999999,16.111999999999998,17.594000000000001,19.239000000000001,21.065999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1378,-0.17330000000000001,16.113499999999998,0.087349999999999997,12.471,13.566000000000001,14.775,16.113,17.596,19.241,21.07 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1379,-0.17330000000000001,16.115100000000002,0.087359999999999993,12.472,13.567,14.776999999999999,16.114999999999998,17.597999999999999,19.244,21.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1380,-0.17330000000000001,16.116700000000002,0.087370000000000003,12.472,13.568,14.778,16.117000000000001,17.600000000000001,19.245999999999999,21.074999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1381,-0.17330000000000001,16.118300000000001,0.087389999999999995,12.473000000000001,13.569000000000001,14.779,16.117999999999999,17.602,19.248999999999999,21.079000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1382,-0.17330000000000001,16.119900000000001,0.087400000000000005,12.474,13.57,14.781000000000001,16.12,17.603999999999999,19.251000000000001,21.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1383,-0.17330000000000001,16.121500000000001,0.087410000000000002,12.475,13.571,14.782,16.122,17.606000000000002,19.253,21.084 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1384,-0.17330000000000001,16.123200000000001,0.087429999999999994,12.475,13.571999999999999,14.782999999999999,16.123000000000001,17.608000000000001,19.256,21.088000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1385,-0.17330000000000001,16.1248,0.087440000000000004,12.476000000000001,13.573,14.784000000000001,16.125,17.61,19.257999999999999,21.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1386,-0.17330000000000001,16.1264,0.087459999999999996,12.477,13.574,14.786,16.126000000000001,17.611999999999998,19.260999999999999,21.094000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1387,-0.17330000000000001,16.128,0.087470000000000006,12.478,13.574999999999999,14.787000000000001,16.128,17.614000000000001,19.263000000000002,21.097000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1388,-0.17330000000000001,16.1296,0.087480000000000002,12.478999999999999,13.576000000000001,14.788,16.13,17.616,19.265999999999998,21.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1389,-0.17330000000000001,16.1312,0.087499999999999994,12.478999999999999,13.577,14.789,16.131,17.617999999999999,19.268000000000001,21.103000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1390,-0.17330000000000001,16.1328,0.087510000000000004,12.48,13.577999999999999,14.791,16.132999999999999,17.62,19.271000000000001,21.106000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1391,-0.17330000000000001,16.134399999999999,0.087520000000000001,12.481,13.579000000000001,14.792,16.134,17.622,19.273,21.108000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1392,-0.17330000000000001,16.135999999999999,0.087540000000000007,12.481,13.58,14.792999999999999,16.135999999999999,17.623999999999999,19.276,21.111999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1393,-0.17330000000000001,16.137699999999999,0.087550000000000003,12.481999999999999,13.581,14.795,16.138000000000002,17.626000000000001,19.277999999999999,21.114999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1394,-0.17330000000000001,16.139299999999999,0.087559999999999999,12.483000000000001,13.582000000000001,14.795999999999999,16.138999999999999,17.628,19.28,21.117999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1395,-0.17330000000000001,16.140899999999998,0.087580000000000005,12.484,13.583,14.797000000000001,16.140999999999998,17.63,19.283000000000001,21.120999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1396,-0.17330000000000001,16.142499999999998,0.087590000000000001,12.484999999999999,13.584,14.798,16.141999999999999,17.632000000000001,19.285,21.123999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1397,-0.17330000000000001,16.144100000000002,0.087599999999999997,12.484999999999999,13.585000000000001,14.8,16.143999999999998,17.634,19.288,21.126000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1398,-0.17330000000000001,16.145700000000001,0.087620000000000003,12.486000000000001,13.586,14.801,16.146000000000001,17.635999999999999,19.29,21.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1399,-0.17330000000000001,16.147300000000001,0.08763,12.487,13.587,14.802,16.146999999999998,17.638000000000002,19.292999999999999,21.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1400,-0.17330000000000001,16.148900000000001,0.087650000000000006,12.487,13.587999999999999,14.803000000000001,16.149000000000001,17.64,19.295000000000002,21.135999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1401,-0.17330000000000001,16.150600000000001,0.087660000000000002,12.488,13.589,14.805,16.151,17.641999999999999,19.297999999999998,21.138999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1402,-0.17330000000000001,16.152200000000001,0.087669999999999998,12.489000000000001,13.59,14.805999999999999,16.152000000000001,17.643999999999998,19.3,21.141999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1403,-0.17330000000000001,16.1538,0.087690000000000004,12.49,13.590999999999999,14.807,16.154,17.646000000000001,19.303000000000001,21.145 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1404,-0.17330000000000001,16.1554,0.0877,12.491,13.592000000000001,14.808999999999999,16.155000000000001,17.648,19.305,21.148 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1405,-0.17330000000000001,16.157,0.087709999999999996,12.491,13.593,14.81,16.157,17.649999999999999,19.308,21.151 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1406,-0.17330000000000001,16.1586,0.087730000000000002,12.492000000000001,13.593999999999999,14.811,16.158999999999999,17.652000000000001,19.309999999999999,21.154 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1407,-0.17330000000000001,16.1602,0.087739999999999999,12.493,13.595000000000001,14.813000000000001,16.16,17.654,19.312999999999999,21.157 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1408,-0.17330000000000001,16.161899999999999,0.087749999999999995,12.494,13.596,14.814,16.161999999999999,17.655999999999999,19.315000000000001,21.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1409,-0.17330000000000001,16.163499999999999,0.087770000000000001,12.494,13.597,14.815,16.164000000000001,17.658000000000001,19.318000000000001,21.163 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1410,-0.17330000000000001,16.165099999999999,0.087779999999999997,12.494999999999999,13.598000000000001,14.816000000000001,16.164999999999999,17.66,19.32,21.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1411,-0.17330000000000001,16.166699999999999,0.087800000000000003,12.496,13.599,14.818,16.167000000000002,17.661999999999999,19.323,21.169 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1412,-0.17330000000000001,16.168299999999999,0.087809999999999999,12.497,13.6,14.819000000000001,16.167999999999999,17.664000000000001,19.324999999999999,21.172000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1413,-0.17330000000000001,16.169899999999998,0.087819999999999995,12.497999999999999,13.601000000000001,14.82,16.170000000000002,17.666,19.327000000000002,21.175000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1414,-0.17330000000000001,16.171500000000002,0.087840000000000001,12.497999999999999,13.602,14.821,16.172000000000001,17.667999999999999,19.329999999999998,21.178000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1415,-0.17330000000000001,16.173200000000001,0.087849999999999998,12.499000000000001,13.603,14.823,16.172999999999998,17.670000000000002,19.332000000000001,21.181000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1416,-0.17330000000000001,16.174800000000001,0.087859999999999994,12.5,13.603999999999999,14.824,16.175000000000001,17.672000000000001,19.335000000000001,21.184000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1417,-0.17330000000000001,16.176400000000001,0.08788,12.5,13.605,14.824999999999999,16.175999999999998,17.673999999999999,19.337,21.187000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1418,-0.17330000000000001,16.178000000000001,0.087889999999999996,12.500999999999999,13.606,14.827,16.178000000000001,17.675999999999998,19.34,21.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1419,-0.17330000000000001,16.179600000000001,0.087900000000000006,12.502000000000001,13.606999999999999,14.827999999999999,16.18,17.678000000000001,19.341999999999999,21.193000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1420,-0.17330000000000001,16.1812,0.087919999999999998,12.503,13.608000000000001,14.829000000000001,16.181000000000001,17.68,19.344999999999999,21.196000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1421,-0.17330000000000001,16.1828,0.087929999999999994,12.504,13.609,14.83,16.183,17.681999999999999,19.347000000000001,21.199000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1422,-0.17330000000000001,16.1845,0.08795,12.504,13.61,14.832000000000001,16.184000000000001,17.684000000000001,19.350000000000001,21.202999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1423,-0.17330000000000001,16.1861,0.087959999999999997,12.505000000000001,13.611000000000001,14.833,16.186,17.686,19.352,21.204999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1424,-0.17330000000000001,16.1877,0.087970000000000007,12.506,13.612,14.834,16.187999999999999,17.687999999999999,19.355,21.207999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1425,-0.17330000000000001,16.189299999999999,0.087989999999999999,12.506,13.613,14.836,16.189,17.690000000000001,19.356999999999999,21.212 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1426,-0.17330000000000001,16.190899999999999,0.087999999999999995,12.507,13.614000000000001,14.837,16.190999999999999,17.692,19.36,21.213999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1427,-0.17330000000000001,16.192499999999999,0.088010000000000005,12.507999999999999,13.615,14.837999999999999,16.192,17.693999999999999,19.361999999999998,21.216999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1428,-0.17330000000000001,16.194199999999999,0.088029999999999997,12.509,13.616,14.839,16.193999999999999,17.696000000000002,19.364999999999998,21.221 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1429,-0.17330000000000001,16.195799999999998,0.088039999999999993,12.51,13.617000000000001,14.840999999999999,16.196000000000002,17.698,19.367000000000001,21.222999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1430,-0.17330000000000001,16.197399999999998,0.088050000000000003,12.510999999999999,13.618,14.842000000000001,16.196999999999999,17.7,19.369,21.225999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1431,-0.17330000000000001,16.199000000000002,0.088069999999999996,12.510999999999999,13.619,14.843,16.199000000000002,17.702000000000002,19.372,21.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1432,-0.17330000000000001,16.200600000000001,0.088080000000000006,12.512,13.62,14.845000000000001,16.201000000000001,17.704000000000001,19.373999999999999,21.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1433,-0.17330000000000001,16.202200000000001,0.088099999999999998,12.512,13.621,14.846,16.202000000000002,17.706,19.376999999999999,21.236000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1434,-0.17330000000000001,16.203900000000001,0.088109999999999994,12.513,13.622,14.847,16.204000000000001,17.707999999999998,19.38,21.239000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1435,-0.17330000000000001,16.205500000000001,0.088120000000000004,12.513999999999999,13.622999999999999,14.848000000000001,16.206,17.71,19.382000000000001,21.242000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1436,-0.17330000000000001,16.207100000000001,0.088139999999999996,12.515000000000001,13.624000000000001,14.85,16.207000000000001,17.712,19.385000000000002,21.245000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1437,-0.17330000000000001,16.2087,0.088150000000000006,12.516,13.625,14.851000000000001,16.209,17.713999999999999,19.387,21.248000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1438,-0.17330000000000001,16.2103,0.088160000000000002,12.516999999999999,13.625999999999999,14.852,16.21,17.716000000000001,19.388999999999999,21.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1439,-0.17330000000000001,16.212,0.088179999999999994,12.516999999999999,13.627000000000001,14.853999999999999,16.212,17.719000000000001,19.391999999999999,21.254000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1440,-0.17330000000000001,16.2136,0.088190000000000004,12.518000000000001,13.628,14.855,16.213999999999999,17.72,19.393999999999998,21.257000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1441,-0.17330000000000001,16.215199999999999,0.088209999999999997,12.519,13.629,14.856,16.215,17.722999999999999,19.396999999999998,21.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1442,-0.17330000000000001,16.216799999999999,0.088220000000000007,12.519,13.63,14.856999999999999,16.216999999999999,17.725000000000001,19.399000000000001,21.263000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1443,-0.17330000000000001,16.218399999999999,0.088230000000000003,12.52,13.631,14.859,16.218,17.725999999999999,19.402000000000001,21.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1444,-0.17330000000000001,16.220099999999999,0.088249999999999995,12.521000000000001,13.632,14.86,16.22,17.728999999999999,19.405000000000001,21.268999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1445,-0.17330000000000001,16.221699999999998,0.088260000000000005,12.522,13.632999999999999,14.861000000000001,16.222000000000001,17.731000000000002,19.407,21.271999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1446,-0.17330000000000001,16.223299999999998,0.088270000000000001,12.523,13.634,14.863,16.222999999999999,17.733000000000001,19.408999999999999,21.274999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1447,-0.17330000000000001,16.224900000000002,0.088289999999999993,12.523,13.635,14.864000000000001,16.225000000000001,17.734999999999999,19.411999999999999,21.277999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1448,-0.17330000000000001,16.226600000000001,0.088300000000000003,12.523999999999999,13.635999999999999,14.865,16.227,17.736999999999998,19.414000000000001,21.280999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1449,-0.17330000000000001,16.228200000000001,0.088319999999999996,12.525,13.637,14.866,16.228000000000002,17.739000000000001,19.417000000000002,21.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1450,-0.17330000000000001,16.229800000000001,0.088330000000000006,12.525,13.638,14.868,16.23,17.741,19.419,21.286999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1451,-0.17330000000000001,16.231400000000001,0.088340000000000002,12.526,13.638999999999999,14.869,16.231000000000002,17.742999999999999,19.422000000000001,21.29 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1452,-0.17330000000000001,16.2331,0.088359999999999994,12.526999999999999,13.64,14.87,16.233000000000001,17.745000000000001,19.423999999999999,21.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1453,-0.17330000000000001,16.2347,0.088370000000000004,12.528,13.641,14.872,16.234999999999999,17.747,19.427,21.297000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1454,-0.17330000000000001,16.2363,0.08838,12.529,13.641999999999999,14.872999999999999,16.236000000000001,17.748999999999999,19.428999999999998,21.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1455,-0.17330000000000001,16.2379,0.088400000000000006,12.529,13.643000000000001,14.874000000000001,16.238,17.751000000000001,19.431999999999999,21.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1456,-0.17330000000000001,16.239599999999999,0.088410000000000002,12.53,13.644,14.875,16.239999999999998,17.753,19.434000000000001,21.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1457,-0.17330000000000001,16.241199999999999,0.088419999999999999,12.531000000000001,13.645,14.877000000000001,16.241,17.754999999999999,19.437000000000001,21.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1458,-0.17330000000000001,16.242799999999999,0.088440000000000005,12.532,13.646000000000001,14.878,16.242999999999999,17.757000000000001,19.439,21.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1459,-0.17330000000000001,16.244399999999999,0.088450000000000001,12.532,13.647,14.879,16.244,17.759,19.442,21.315000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1460,-0.17330000000000001,16.246099999999998,0.088469999999999993,12.532999999999999,13.648,14.881,16.245999999999999,17.760999999999999,19.443999999999999,21.318000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1461,-0.17330000000000001,16.247699999999998,0.088480000000000003,12.534000000000001,13.648999999999999,14.882,16.248000000000001,17.763000000000002,19.446999999999999,21.321000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1462,-0.17330000000000001,16.249300000000002,0.088489999999999999,12.535,13.65,14.882999999999999,16.248999999999999,17.765000000000001,19.449000000000002,21.324000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1463,-0.17330000000000001,16.250900000000001,0.088510000000000005,12.535,13.651,14.884,16.251000000000001,17.766999999999999,19.452000000000002,21.327000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1464,-0.17330000000000001,16.252600000000001,0.088520000000000001,12.536,13.651999999999999,14.885999999999999,16.253,17.768999999999998,19.454000000000001,21.33 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1465,-0.17330000000000001,16.254200000000001,0.088529999999999998,12.537000000000001,13.653,14.887,16.254000000000001,17.771000000000001,19.457000000000001,21.332999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1466,-0.17330000000000001,16.255800000000001,0.088550000000000004,12.538,13.654,14.888,16.256,17.773,19.459,21.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1467,-0.17330000000000001,16.2575,0.08856,12.539,13.654999999999999,14.89,16.257999999999999,17.774999999999999,19.462,21.338999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1468,-0.17330000000000001,16.2591,0.088580000000000006,12.539,13.656000000000001,14.891,16.259,17.777000000000001,19.463999999999999,21.343 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1469,-0.17330000000000001,16.2607,0.088590000000000002,12.54,13.657,14.891999999999999,16.260999999999999,17.779,19.466999999999999,21.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1470,-0.17330000000000001,16.2624,0.088599999999999998,12.541,13.657999999999999,14.894,16.262,17.780999999999999,19.469000000000001,21.347999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1471,-0.17330000000000001,16.263999999999999,0.088620000000000004,12.541,13.659000000000001,14.895,16.263999999999999,17.783000000000001,19.472000000000001,21.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1472,-0.17330000000000001,16.265599999999999,0.08863,12.542,13.66,14.896000000000001,16.265999999999998,17.785,19.474,21.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1473,-0.17330000000000001,16.267299999999999,0.088639999999999997,12.542999999999999,13.661,14.897,16.266999999999999,17.786999999999999,19.477,21.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1474,-0.17330000000000001,16.268899999999999,0.088660000000000003,12.544,13.662000000000001,14.898999999999999,16.268999999999998,17.789000000000001,19.478999999999999,21.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1475,-0.17330000000000001,16.270499999999998,0.088669999999999999,12.545,13.663,14.9,16.27,17.791,19.481999999999999,21.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1476,-0.17330000000000001,16.272200000000002,0.088690000000000005,12.545,13.664,14.901,16.271999999999998,17.794,19.484999999999999,21.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1477,-0.17330000000000001,16.273800000000001,0.088700000000000001,12.545999999999999,13.664999999999999,14.903,16.274000000000001,17.795000000000002,19.486999999999998,21.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1478,-0.17330000000000001,16.275400000000001,0.088709999999999997,12.547000000000001,13.666,14.904,16.274999999999999,17.797000000000001,19.489000000000001,21.373000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1479,-0.17330000000000001,16.277100000000001,0.088730000000000003,12.548,13.667,14.904999999999999,16.277000000000001,17.8,19.492000000000001,21.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1480,-0.17330000000000001,16.278700000000001,0.088739999999999999,12.548,13.667999999999999,14.906000000000001,16.279,17.802,19.494,21.379000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1481,-0.17330000000000001,16.2803,0.088749999999999996,12.548999999999999,13.669,14.907999999999999,16.28,17.803999999999998,19.497,21.382000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1482,-0.17330000000000001,16.282,0.088770000000000002,12.55,13.67,14.909000000000001,16.282,17.806000000000001,19.498999999999999,21.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1483,-0.17330000000000001,16.2836,0.088779999999999998,12.551,13.670999999999999,14.91,16.283999999999999,17.808,19.501999999999999,21.388000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1484,-0.17330000000000001,16.2852,0.088800000000000004,12.551,13.672000000000001,14.912000000000001,16.285,17.809999999999999,19.504999999999999,21.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1485,-0.17330000000000001,16.286899999999999,0.08881,12.552,13.673,14.913,16.286999999999999,17.812000000000001,19.507000000000001,21.395 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1486,-0.17330000000000001,16.288499999999999,0.088819999999999996,12.553000000000001,13.673999999999999,14.914,16.288,17.814,19.509,21.396999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1487,-0.17330000000000001,16.290099999999999,0.088840000000000002,12.554,13.675000000000001,14.914999999999999,16.29,17.815999999999999,19.512,21.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1488,-0.17330000000000001,16.291799999999999,0.088849999999999998,12.555,13.676,14.917,16.292000000000002,17.818000000000001,19.513999999999999,21.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1489,-0.17330000000000001,16.293399999999998,0.088859999999999995,12.555,13.677,14.917999999999999,16.292999999999999,17.82,19.516999999999999,21.405999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1490,-0.17330000000000001,16.295100000000001,0.088880000000000001,12.555999999999999,13.678000000000001,14.919,16.295000000000002,17.821999999999999,19.52,21.41 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1491,-0.17330000000000001,16.296700000000001,0.088889999999999997,12.557,13.679,14.920999999999999,16.297000000000001,17.824000000000002,19.521999999999998,21.413 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1492,-0.17330000000000001,16.298300000000001,0.088910000000000003,12.557,13.68,14.922000000000001,16.297999999999998,17.826000000000001,19.524999999999999,21.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1493,-0.17330000000000001,16.3,0.088919999999999999,12.558,13.680999999999999,14.923,16.3,17.827999999999999,19.527000000000001,21.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1494,-0.17330000000000001,16.301600000000001,0.088929999999999995,12.558999999999999,13.682,14.925000000000001,16.302,17.829999999999998,19.529,21.422000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1495,-0.17330000000000001,16.3033,0.088950000000000001,12.56,13.683,14.926,16.303000000000001,17.832000000000001,19.532,21.425999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1496,-0.17330000000000001,16.3049,0.088959999999999997,12.561,13.683999999999999,14.927,16.305,17.834,19.535,21.428000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1497,-0.17330000000000001,16.3065,0.088969999999999994,12.561999999999999,13.685,14.929,16.306000000000001,17.835999999999999,19.536999999999999,21.431000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1498,-0.17330000000000001,16.308199999999999,0.08899,12.561999999999999,13.686,14.93,16.308,17.838000000000001,19.54,21.434999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1499,-0.17330000000000001,16.309799999999999,0.088999999999999996,12.563000000000001,13.686999999999999,14.930999999999999,16.309999999999999,17.84,19.542000000000002,21.437000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1500,-0.17330000000000001,16.311499999999999,0.089020000000000002,12.564,13.688000000000001,14.932,16.311,17.843,19.545000000000002,21.440999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1501,-0.17330000000000001,16.313099999999999,0.089029999999999998,12.565,13.689,14.933999999999999,16.312999999999999,17.844000000000001,19.547000000000001,21.443999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1502,-0.17330000000000001,16.314800000000002,0.089039999999999994,12.565,13.69,14.935,16.315000000000001,17.846,19.55,21.446999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1503,-0.17330000000000001,16.316400000000002,0.08906,12.566000000000001,13.691000000000001,14.936,16.315999999999999,17.849,19.552,21.45 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1504,-0.17330000000000001,16.318000000000001,0.089069999999999996,12.567,13.692,14.938000000000001,16.318000000000001,17.850999999999999,19.555,21.452999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1505,-0.17330000000000001,16.319700000000001,0.089090000000000003,12.567,13.693,14.939,16.32,17.853000000000002,19.558,21.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1506,-0.17330000000000001,16.321300000000001,0.089099999999999999,12.568,13.694000000000001,14.94,16.321000000000002,17.855,19.559999999999999,21.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1507,-0.17330000000000001,16.323,0.089109999999999995,12.569000000000001,13.695,14.942,16.323,17.856999999999999,19.562000000000001,21.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1508,-0.17330000000000001,16.3246,0.089130000000000001,12.57,13.696,14.943,16.324999999999999,17.859000000000002,19.565000000000001,21.466000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1509,-0.17330000000000001,16.3263,0.089139999999999997,12.571,13.696999999999999,14.944000000000001,16.326000000000001,17.861000000000001,19.567,21.469000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1510,-0.17330000000000001,16.3279,0.089149999999999993,12.571999999999999,13.698,14.945,16.327999999999999,17.863,19.57,21.471 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1511,-0.17330000000000001,16.329599999999999,0.089169999999999999,12.571999999999999,13.699,14.946999999999999,16.329999999999998,17.864999999999998,19.573,21.475000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1512,-0.17330000000000001,16.331199999999999,0.089179999999999995,12.573,13.7,14.948,16.331,17.867000000000001,19.574999999999999,21.478000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1513,-0.17330000000000001,16.332899999999999,0.089200000000000002,12.574,13.701000000000001,14.949,16.332999999999998,17.869,19.577999999999999,21.481000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1514,-0.17330000000000001,16.334499999999998,0.089209999999999998,12.574,13.702,14.951000000000001,16.334,17.870999999999999,19.579999999999998,21.484000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1515,-0.17330000000000001,16.336200000000002,0.089219999999999994,12.574999999999999,13.702999999999999,14.952,16.335999999999999,17.873000000000001,19.582999999999998,21.486999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1516,-0.17330000000000001,16.337800000000001,0.08924,12.576000000000001,13.704000000000001,14.952999999999999,16.338000000000001,17.875,19.585000000000001,21.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1517,-0.17330000000000001,16.339500000000001,0.089249999999999996,12.577,13.705,14.955,16.34,17.876999999999999,19.588000000000001,21.492999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1518,-0.17330000000000001,16.341100000000001,0.089260000000000006,12.577999999999999,13.706,14.956,16.341000000000001,17.879000000000001,19.59,21.495999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1519,-0.17330000000000001,16.3428,0.089279999999999998,12.577999999999999,13.707000000000001,14.957000000000001,16.343,17.881,19.593,21.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1520,-0.17330000000000001,16.3444,0.089289999999999994,12.579000000000001,13.708,14.958,16.344000000000001,17.882999999999999,19.594999999999999,21.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1521,-0.17330000000000001,16.3461,0.08931,12.58,13.709,14.96,16.346,17.885999999999999,19.597999999999999,21.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1522,-0.17330000000000001,16.3477,0.089319999999999997,12.581,13.71,14.961,16.347999999999999,17.888000000000002,19.600000000000001,21.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1523,-0.17330000000000001,16.349399999999999,0.089330000000000007,12.582000000000001,13.712,14.962,16.349,17.89,19.603000000000002,21.512 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1524,-0.17330000000000001,16.350999999999999,0.089349999999999999,12.582000000000001,13.712,14.964,16.350999999999999,17.891999999999999,19.606000000000002,21.515000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1525,-0.17330000000000001,16.352699999999999,0.089359999999999995,12.583,13.714,14.965,16.353000000000002,17.893999999999998,19.608000000000001,21.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1526,-0.17330000000000001,16.354399999999998,0.089370000000000005,12.584,13.715,14.965999999999999,16.353999999999999,17.896000000000001,19.61,21.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1527,-0.17330000000000001,16.356000000000002,0.089389999999999997,12.585000000000001,13.715999999999999,14.968,16.356000000000002,17.898,19.613,21.524999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1528,-0.17330000000000001,16.357700000000001,0.089399999999999993,12.585000000000001,13.717000000000001,14.968999999999999,16.358000000000001,17.899999999999999,19.616,21.527999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1529,-0.17330000000000001,16.359300000000001,0.089419999999999999,12.586,13.717000000000001,14.97,16.359000000000002,17.902000000000001,19.617999999999999,21.530999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1530,-0.17330000000000001,16.361000000000001,0.089429999999999996,12.587,13.718999999999999,14.972,16.361000000000001,17.904,19.620999999999999,21.533999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1531,-0.17330000000000001,16.3626,0.089440000000000006,12.587999999999999,13.72,14.973000000000001,16.363,17.905999999999999,19.623000000000001,21.536999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1532,-0.17330000000000001,16.3643,0.089459999999999998,12.587999999999999,13.721,14.974,16.364000000000001,17.908000000000001,19.626000000000001,21.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1533,-0.17330000000000001,16.366,0.089469999999999994,12.589,13.722,14.976000000000001,16.366,17.91,19.628,21.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1534,-0.17330000000000001,16.367599999999999,0.089480000000000004,12.59,13.723000000000001,14.977,16.367999999999999,17.911999999999999,19.631,21.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1535,-0.17330000000000001,16.369299999999999,0.089499999999999996,12.590999999999999,13.724,14.978,16.369,17.914000000000001,19.634,21.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1536,-0.17330000000000001,16.370899999999999,0.089510000000000006,12.592000000000001,13.725,14.978999999999999,16.370999999999999,17.916,19.635999999999999,21.552 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1537,-0.17330000000000001,16.372599999999998,0.089529999999999998,12.592000000000001,13.726000000000001,14.981,16.373000000000001,17.919,19.638999999999999,21.556000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1538,-0.17330000000000001,16.374199999999998,0.089539999999999995,12.593,13.727,14.981999999999999,16.373999999999999,17.920999999999999,19.640999999999998,21.559000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1539,-0.17330000000000001,16.375900000000001,0.089550000000000005,12.593999999999999,13.728,14.983000000000001,16.376000000000001,17.922999999999998,19.643999999999998,21.562000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1540,-0.17330000000000001,16.377600000000001,0.089569999999999997,12.595000000000001,13.728999999999999,14.984999999999999,16.378,17.925000000000001,19.646000000000001,21.565000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1541,-0.17330000000000001,16.379200000000001,0.089580000000000007,12.596,13.73,14.986000000000001,16.379000000000001,17.927,19.649000000000001,21.568000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1542,-0.17330000000000001,16.3809,0.089590000000000003,12.596,13.731,14.987,16.381,17.928999999999998,19.651,21.571000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1543,-0.17330000000000001,16.3826,0.089609999999999995,12.597,13.731999999999999,14.989000000000001,16.382999999999999,17.931000000000001,19.654,21.574999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1544,-0.17330000000000001,16.3842,0.089620000000000005,12.598000000000001,13.733000000000001,14.99,16.384,17.933,19.655999999999999,21.577000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1545,-0.17330000000000001,16.385899999999999,0.089639999999999997,12.599,13.734,14.991,16.385999999999999,17.934999999999999,19.658999999999999,21.581 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1546,-0.17330000000000001,16.387499999999999,0.089649999999999994,12.599,13.734999999999999,14.993,16.388000000000002,17.937000000000001,19.661999999999999,21.584 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1547,-0.17330000000000001,16.389199999999999,0.089660000000000004,12.6,13.736000000000001,14.994,16.388999999999999,17.939,19.664000000000001,21.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1548,-0.17330000000000001,16.390899999999998,0.089679999999999996,12.601000000000001,13.737,14.994999999999999,16.390999999999998,17.940999999999999,19.667000000000002,21.59 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1549,-0.17330000000000001,16.392499999999998,0.089690000000000006,12.602,13.738,14.997,16.391999999999999,17.943000000000001,19.669,21.593 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1550,-0.17330000000000001,16.394200000000001,0.089709999999999998,12.602,13.739000000000001,14.997999999999999,16.393999999999998,17.946000000000002,19.672000000000001,21.597000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1551,-0.17330000000000001,16.395900000000001,0.089719999999999994,12.603,13.74,14.999000000000001,16.396000000000001,17.948,19.673999999999999,21.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1552,-0.17330000000000001,16.397500000000001,0.089730000000000004,12.603999999999999,13.741,15.000999999999999,16.398,17.95,19.677,21.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1553,-0.17330000000000001,16.3992,0.089749999999999996,12.605,13.742000000000001,15.002000000000001,16.399000000000001,17.952000000000002,19.68,21.606000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1554,-0.17330000000000001,16.4009,0.089760000000000006,12.606,13.743,15.003,16.401,17.954000000000001,19.681999999999999,21.609000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1555,-0.17330000000000001,16.4025,0.089770000000000003,12.606999999999999,13.744,15.005000000000001,16.402000000000001,17.956,19.684000000000001,21.611999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1556,-0.17330000000000001,16.404199999999999,0.089789999999999995,12.606999999999999,13.744999999999999,15.006,16.404,17.957999999999998,19.687000000000001,21.614999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1557,-0.17330000000000001,16.405899999999999,0.089800000000000005,12.608000000000001,13.746,15.007,16.405999999999999,17.96,19.690000000000001,21.617999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1558,-0.17330000000000001,16.407499999999999,0.089819999999999997,12.609,13.747,15.007999999999999,16.408000000000001,17.962,19.692,21.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1559,-0.17330000000000001,16.409199999999998,0.089829999999999993,12.61,13.747999999999999,15.01,16.408999999999999,17.963999999999999,19.695,21.625 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1560,-0.17330000000000001,16.410900000000002,0.089840000000000003,12.611000000000001,13.75,15.010999999999999,16.411000000000001,17.966000000000001,19.696999999999999,21.626999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1561,-0.17330000000000001,16.412500000000001,0.089859999999999995,12.611000000000001,13.75,15.012,16.411999999999999,17.968,19.7,21.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1562,-0.17330000000000001,16.414200000000001,0.089870000000000005,12.612,13.752000000000001,15.013999999999999,16.414000000000001,17.97,19.702999999999999,21.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1563,-0.17330000000000001,16.415900000000001,0.089880000000000002,12.613,13.753,15.015000000000001,16.416,17.972000000000001,19.704999999999998,21.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1564,-0.17330000000000001,16.4176,0.089899999999999994,12.613,13.754,15.016,16.417999999999999,17.975000000000001,19.707999999999998,21.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1565,-0.17330000000000001,16.4192,0.089910000000000004,12.614000000000001,13.755000000000001,15.018000000000001,16.419,17.977,19.71,21.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1566,-0.17330000000000001,16.4209,0.089929999999999996,12.615,13.756,15.019,16.420999999999999,17.978999999999999,19.713000000000001,21.646999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1567,-0.17330000000000001,16.422599999999999,0.089940000000000006,12.616,13.757,15.02,16.422999999999998,17.981000000000002,19.715,21.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1568,-0.17330000000000001,16.424199999999999,0.089950000000000002,12.617000000000001,13.757999999999999,15.022,16.423999999999999,17.983000000000001,19.718,21.652000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1569,-0.17330000000000001,16.425899999999999,0.089969999999999994,12.617000000000001,13.759,15.023,16.425999999999998,17.984999999999999,19.721,21.655999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1570,-0.17330000000000001,16.427600000000002,0.089980000000000004,12.618,13.76,15.023999999999999,16.428000000000001,17.986999999999998,19.722999999999999,21.658999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1571,-0.17330000000000001,16.429300000000001,0.089990000000000001,12.619,13.760999999999999,15.026,16.428999999999998,17.989000000000001,19.725999999999999,21.661999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1572,-0.17330000000000001,16.430900000000001,0.090010000000000007,12.62,13.762,15.026999999999999,16.431000000000001,17.991,19.728000000000002,21.664999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1573,-0.17330000000000001,16.432600000000001,0.090020000000000003,12.621,13.763,15.028,16.433,17.992999999999999,19.731000000000002,21.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1574,-0.17330000000000001,16.4343,0.090039999999999995,12.621,13.763999999999999,15.03,16.434000000000001,17.995000000000001,19.734000000000002,21.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1575,-0.17330000000000001,16.436,0.090050000000000005,12.622,13.765000000000001,15.031000000000001,16.436,17.998000000000001,19.736000000000001,21.675000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1576,-0.17330000000000001,16.4376,0.090060000000000001,12.622999999999999,13.766,15.032,16.437999999999999,17.998999999999999,19.738,21.678000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1577,-0.17330000000000001,16.439299999999999,0.090079999999999993,12.624000000000001,13.766999999999999,15.034000000000001,16.439,18.001999999999999,19.741,21.681000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1578,-0.17330000000000001,16.440999999999999,0.090090000000000003,12.625,13.768000000000001,15.035,16.440999999999999,18.004000000000001,19.744,21.684000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1579,-0.17330000000000001,16.442699999999999,0.0901,12.625999999999999,13.769,15.036,16.443000000000001,18.006,19.745999999999999,21.687000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1580,-0.17330000000000001,16.444299999999998,0.090120000000000006,12.625999999999999,13.77,15.038,16.443999999999999,18.007999999999999,19.748999999999999,21.690999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1581,-0.17330000000000001,16.446000000000002,0.090130000000000002,12.627000000000001,13.771000000000001,15.039,16.446000000000002,18.010000000000002,19.751000000000001,21.693000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1582,-0.17330000000000001,16.447700000000001,0.090149999999999994,12.628,13.772,15.04,16.448,18.012,19.754000000000001,21.696999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1583,-0.17330000000000001,16.449400000000001,0.090160000000000004,12.629,13.773,15.042,16.449000000000002,18.013999999999999,19.757000000000001,21.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1584,-0.17330000000000001,16.4511,0.09017,12.629,13.773999999999999,15.042999999999999,16.451000000000001,18.015999999999998,19.759,21.702999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1585,-0.17330000000000001,16.4527,0.090190000000000006,12.63,13.775,15.044,16.452999999999999,18.018000000000001,19.762,21.706 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1586,-0.17330000000000001,16.4544,0.090200000000000002,12.631,13.776,15.045999999999999,16.454000000000001,18.02,19.763999999999999,21.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1587,-0.17330000000000001,16.456099999999999,0.090209999999999999,12.632,13.778,15.047000000000001,16.456,18.021999999999998,19.766999999999999,21.712 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1588,-0.17330000000000001,16.457799999999999,0.090230000000000005,12.632,13.778,15.048,16.457999999999998,18.024999999999999,19.77,21.716000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1589,-0.17330000000000001,16.459499999999998,0.090240000000000001,12.632999999999999,13.78,15.05,16.46,18.027000000000001,19.771999999999998,21.719000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1590,-0.17330000000000001,16.461099999999998,0.090260000000000007,12.634,13.78,15.051,16.460999999999999,18.029,19.774999999999999,21.722000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1591,-0.17330000000000001,16.462800000000001,0.090270000000000003,12.635,13.782,15.052,16.463000000000001,18.030999999999999,19.777000000000001,21.725000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1592,-0.17330000000000001,16.464500000000001,0.090279999999999999,12.635999999999999,13.782999999999999,15.054,16.463999999999999,18.033000000000001,19.78,21.728000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1593,-0.17330000000000001,16.466200000000001,0.090300000000000005,12.635999999999999,13.784000000000001,15.055,16.466000000000001,18.035,19.782,21.731999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1594,-0.17330000000000001,16.4679,0.090310000000000001,12.637,13.785,15.055999999999999,16.468,18.036999999999999,19.785,21.734999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1595,-0.17330000000000001,16.4695,0.090319999999999998,12.638,13.786,15.058,16.47,18.039000000000001,19.786999999999999,21.736999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1596,-0.17330000000000001,16.4712,0.090340000000000004,12.638999999999999,13.787000000000001,15.058999999999999,16.471,18.041,19.79,21.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1597,-0.17330000000000001,16.472899999999999,0.09035,12.64,13.788,15.06,16.472999999999999,18.042999999999999,19.792999999999999,21.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1598,-0.17330000000000001,16.474599999999999,0.090359999999999996,12.641,13.789,15.061999999999999,16.475000000000001,18.045000000000002,19.795000000000002,21.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1599,-0.17330000000000001,16.476299999999998,0.090380000000000002,12.641,13.79,15.063000000000001,16.475999999999999,18.047999999999998,19.797999999999998,21.751000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1600,-0.17330000000000001,16.477900000000002,0.090389999999999998,12.641999999999999,13.791,15.064,16.478000000000002,18.05,19.8,21.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1601,-0.17330000000000001,16.479600000000001,0.090410000000000004,12.643000000000001,13.792,15.066000000000001,16.48,18.052,19.803000000000001,21.757000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1602,-0.17330000000000001,16.481300000000001,0.09042,12.644,13.792999999999999,15.067,16.481000000000002,18.053999999999998,19.806000000000001,21.76 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1603,-0.17330000000000001,16.483000000000001,0.090429999999999996,12.645,13.794,15.068,16.483000000000001,18.056000000000001,19.808,21.763000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1604,-0.17330000000000001,16.4847,0.090450000000000003,12.645,13.795,15.07,16.484999999999999,18.058,19.811,21.765999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1605,-0.17330000000000001,16.4864,0.090459999999999999,12.646000000000001,13.795999999999999,15.071,16.486000000000001,18.059999999999999,19.812999999999999,21.768999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1606,-0.17330000000000001,16.488,0.090469999999999995,12.647,13.797000000000001,15.071999999999999,16.488,18.062000000000001,19.815999999999999,21.771999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1607,-0.17330000000000001,16.489699999999999,0.090490000000000001,12.647,13.798,15.074,16.489999999999998,18.064,19.818000000000001,21.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1608,-0.17330000000000001,16.491399999999999,0.090499999999999997,12.648,13.798999999999999,15.074999999999999,16.491,18.065999999999999,19.821000000000002,21.779 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1609,-0.17330000000000001,16.493099999999998,0.090520000000000003,12.648999999999999,13.8,15.076000000000001,16.492999999999999,18.068999999999999,19.824000000000002,21.782 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1610,-0.17330000000000001,16.494800000000001,0.090529999999999999,12.65,13.801,15.077999999999999,16.495000000000001,18.071000000000002,19.826000000000001,21.785 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1611,-0.17330000000000001,16.496500000000001,0.090539999999999995,12.651,13.803000000000001,15.079000000000001,16.495999999999999,18.073,19.829000000000001,21.788 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1612,-0.17330000000000001,16.498100000000001,0.090560000000000002,12.651,13.803000000000001,15.08,16.498000000000001,18.074999999999999,19.831,21.792000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1613,-0.17330000000000001,16.4998,0.090569999999999998,12.651999999999999,13.804,15.082000000000001,16.5,18.077000000000002,19.834,21.795000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1614,-0.17330000000000001,16.5015,0.090579999999999994,12.653,13.805999999999999,15.083,16.501999999999999,18.079000000000001,19.835999999999999,21.797999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1615,-0.17330000000000001,16.5032,0.0906,12.654,13.807,15.084,16.503,18.081,19.838999999999999,21.800999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1616,-0.17330000000000001,16.504899999999999,0.090609999999999996,12.654999999999999,13.808,15.086,16.504999999999999,18.082999999999998,19.841999999999999,21.803999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1617,-0.17330000000000001,16.506599999999999,0.090620000000000006,12.656000000000001,13.808999999999999,15.087,16.507000000000001,18.085000000000001,19.844000000000001,21.806999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1618,-0.17330000000000001,16.508199999999999,0.090639999999999998,12.656000000000001,13.81,15.087999999999999,16.507999999999999,18.087,19.847000000000001,21.811 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1619,-0.17330000000000001,16.509899999999998,0.090649999999999994,12.657,13.811,15.09,16.510000000000002,18.088999999999999,19.849,21.812999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1620,-0.17330000000000001,16.511600000000001,0.090670000000000001,12.657999999999999,13.811999999999999,15.090999999999999,16.512,18.091999999999999,19.852,21.817 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1621,-0.17330000000000001,16.513300000000001,0.090679999999999997,12.659000000000001,13.813000000000001,15.092000000000001,16.513000000000002,18.094000000000001,19.855,21.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1622,-0.17330000000000001,16.515000000000001,0.090690000000000007,12.66,13.814,15.093999999999999,16.515000000000001,18.096,19.856999999999999,21.823 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1623,-0.17330000000000001,16.5167,0.090709999999999999,12.66,13.815,15.095000000000001,16.516999999999999,18.097999999999999,19.86,21.827000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1624,-0.17330000000000001,16.5184,0.090719999999999995,12.661,13.816000000000001,15.096,16.518000000000001,18.100000000000001,19.861999999999998,21.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1625,-0.17330000000000001,16.52,0.090730000000000005,12.662000000000001,13.817,15.098000000000001,16.52,18.102,19.864999999999998,21.832000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1626,-0.17330000000000001,16.521699999999999,0.090749999999999997,12.663,13.818,15.099,16.521999999999998,18.103999999999999,19.867999999999999,21.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1627,-0.17330000000000001,16.523399999999999,0.090759999999999993,12.664,13.819000000000001,15.1,16.523,18.106000000000002,19.87,21.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1628,-0.17330000000000001,16.525099999999998,0.090770000000000003,12.664,13.82,15.102,16.524999999999999,18.108000000000001,19.873000000000001,21.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1629,-0.17330000000000001,16.526800000000001,0.090789999999999996,12.664999999999999,13.821,15.103,16.527000000000001,18.111000000000001,19.875,21.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1630,-0.17330000000000001,16.528500000000001,0.090800000000000006,12.666,13.821999999999999,15.105,16.527999999999999,18.113,19.878,21.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1631,-0.17330000000000001,16.530200000000001,0.090819999999999998,12.667,13.823,15.106,16.53,18.114999999999998,19.881,21.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1632,-0.17330000000000001,16.5318,0.090829999999999994,12.667,13.824,15.106999999999999,16.532,18.117000000000001,19.882999999999999,21.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1633,-0.17330000000000001,16.5335,0.090840000000000004,12.667999999999999,13.824999999999999,15.108000000000001,16.533999999999999,18.119,19.885000000000002,21.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1634,-0.17330000000000001,16.5352,0.090859999999999996,12.669,13.826000000000001,15.11,16.535,18.120999999999999,19.888000000000002,21.861000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1635,-0.17330000000000001,16.536899999999999,0.090870000000000006,12.67,13.827,15.111000000000001,16.536999999999999,18.123000000000001,19.890999999999998,21.864000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1636,-0.17330000000000001,16.538599999999999,0.090880000000000002,12.670999999999999,13.829000000000001,15.113,16.539000000000001,18.125,19.893000000000001,21.867000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1637,-0.17330000000000001,16.540299999999998,0.090899999999999995,12.670999999999999,13.83,15.114000000000001,16.54,18.126999999999999,19.896000000000001,21.870999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1638,-0.17330000000000001,16.541899999999998,0.090910000000000005,12.672000000000001,13.831,15.115,16.542000000000002,18.129000000000001,19.898,21.873999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1639,-0.17330000000000001,16.543600000000001,0.090920000000000001,12.673,13.832000000000001,15.117000000000001,16.544,18.131,19.901,21.876999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1640,-0.17330000000000001,16.545300000000001,0.090939999999999993,12.673999999999999,13.833,15.118,16.545000000000002,18.134,19.904,21.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1641,-0.17330000000000001,16.547000000000001,0.090950000000000003,12.675000000000001,13.834,15.119,16.547000000000001,18.135999999999999,19.905999999999999,21.882999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1642,-0.17330000000000001,16.5487,0.090969999999999995,12.675000000000001,13.835000000000001,15.12,16.548999999999999,18.138000000000002,19.908999999999999,21.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1643,-0.17330000000000001,16.5504,0.090980000000000005,12.676,13.836,15.122,16.55,18.14,19.911999999999999,21.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1644,-0.17330000000000001,16.552099999999999,0.090990000000000001,12.677,13.837,15.122999999999999,16.552,18.141999999999999,19.914000000000001,21.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1645,-0.17330000000000001,16.553699999999999,0.091009999999999994,12.678000000000001,13.837999999999999,15.124000000000001,16.553999999999998,18.143999999999998,19.917000000000002,21.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1646,-0.17330000000000001,16.555399999999999,0.091020000000000004,12.679,13.839,15.125999999999999,16.555,18.146000000000001,19.919,21.899000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1647,-0.17330000000000001,16.557099999999998,0.09103,12.68,13.84,15.127000000000001,16.556999999999999,18.148,19.922000000000001,21.902000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1648,-0.17330000000000001,16.558800000000002,0.091050000000000006,12.68,13.840999999999999,15.128,16.559000000000001,18.149999999999999,19.925000000000001,21.905999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1649,-0.17330000000000001,16.560500000000001,0.091060000000000002,12.680999999999999,13.842000000000001,15.13,16.559999999999999,18.152000000000001,19.927,21.908999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1650,-0.17330000000000001,16.562200000000001,0.091069999999999998,12.682,13.843,15.131,16.562000000000001,18.155000000000001,19.928999999999998,21.911999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1651,-0.17330000000000001,16.563800000000001,0.091090000000000004,12.682,13.843999999999999,15.132,16.564,18.157,19.931999999999999,21.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1652,-0.17330000000000001,16.5655,0.0911,12.683,13.845000000000001,15.134,16.565999999999999,18.158999999999999,19.934999999999999,21.917999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1653,-0.17330000000000001,16.5672,0.091109999999999997,12.683999999999999,13.846,15.135,16.567,18.161000000000001,19.937000000000001,21.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1654,-0.17330000000000001,16.568899999999999,0.091130000000000003,12.685,13.847,15.137,16.568999999999999,18.163,19.940000000000001,21.925000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1655,-0.17330000000000001,16.570599999999999,0.091139999999999999,12.686,13.848000000000001,15.138,16.571000000000002,18.164999999999999,19.942,21.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1656,-0.17330000000000001,16.572199999999999,0.091149999999999995,12.686999999999999,13.849,15.138999999999999,16.571999999999999,18.167000000000002,19.945,21.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1657,-0.17330000000000001,16.573899999999998,0.091170000000000001,12.686999999999999,13.85,15.14,16.574000000000002,18.169,19.948,21.934000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1658,-0.17330000000000001,16.575600000000001,0.091179999999999997,12.688000000000001,13.852,15.141999999999999,16.576000000000001,18.170999999999999,19.95,21.937000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1659,-0.17330000000000001,16.577300000000001,0.091200000000000003,12.689,13.852,15.143000000000001,16.577000000000002,18.172999999999998,19.952999999999999,21.94 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1660,-0.17330000000000001,16.579000000000001,0.091209999999999999,12.69,13.853999999999999,15.145,16.579000000000001,18.175999999999998,19.954999999999998,21.943000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1661,-0.17330000000000001,16.5807,0.091219999999999996,12.691000000000001,13.855,15.146000000000001,16.581,18.178000000000001,19.957999999999998,21.946000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1662,-0.17330000000000001,16.5823,0.091240000000000002,12.691000000000001,13.855,15.147,16.582000000000001,18.18,19.960999999999999,21.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1663,-0.17330000000000001,16.584,0.091249999999999998,12.692,13.856999999999999,15.148999999999999,16.584,18.181999999999999,19.963000000000001,21.952999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1664,-0.17330000000000001,16.585699999999999,0.091259999999999994,12.693,13.858000000000001,15.15,16.585999999999999,18.184000000000001,19.966000000000001,21.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1665,-0.17330000000000001,16.587399999999999,0.09128,12.694000000000001,13.859,15.151,16.587,18.186,19.968,21.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1666,-0.17330000000000001,16.589099999999998,0.091289999999999996,12.695,13.86,15.153,16.588999999999999,18.187999999999999,19.971,21.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1667,-0.17330000000000001,16.590699999999998,0.091300000000000006,12.695,13.861000000000001,15.154,16.591000000000001,18.190000000000001,19.972999999999999,21.965 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1668,-0.17330000000000001,16.592400000000001,0.091319999999999998,12.696,13.862,15.154999999999999,16.591999999999999,18.192,19.975999999999999,21.969000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1669,-0.17330000000000001,16.594100000000001,0.091329999999999995,12.696999999999999,13.863,15.157,16.594000000000001,18.193999999999999,19.978999999999999,21.972000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1670,-0.17330000000000001,16.595800000000001,0.091340000000000005,12.698,13.864000000000001,15.157999999999999,16.596,18.196000000000002,19.981000000000002,21.975000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1671,-0.17330000000000001,16.5975,0.091359999999999997,12.698,13.865,15.159000000000001,16.597999999999999,18.199000000000002,19.984000000000002,21.978000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1672,-0.17330000000000001,16.5991,0.091370000000000007,12.699,13.866,15.161,16.599,18.201000000000001,19.986000000000001,21.981000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1673,-0.17330000000000001,16.6008,0.091380000000000003,12.7,13.867000000000001,15.162000000000001,16.600999999999999,18.202999999999999,19.989000000000001,21.984000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1674,-0.17330000000000001,16.602499999999999,0.091399999999999995,12.701000000000001,13.868,15.163,16.602,18.204999999999998,19.992000000000001,21.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1675,-0.17330000000000001,16.604199999999999,0.091410000000000005,12.702,13.869,15.164999999999999,16.603999999999999,18.207000000000001,19.994,21.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1676,-0.17330000000000001,16.605799999999999,0.091429999999999997,12.702,13.87,15.166,16.606000000000002,18.209,19.997,21.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1677,-0.17330000000000001,16.607500000000002,0.091439999999999994,12.702999999999999,13.871,15.167,16.608000000000001,18.210999999999999,19.998999999999999,21.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1678,-0.17330000000000001,16.609200000000001,0.091450000000000004,12.704000000000001,13.872,15.169,16.609000000000002,18.213000000000001,20.001999999999999,22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1679,-0.17330000000000001,16.610900000000001,0.091469999999999996,12.705,13.872999999999999,15.17,16.611000000000001,18.215,20.004999999999999,22.004000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1680,-0.17330000000000001,16.612500000000001,0.091480000000000006,12.706,13.874000000000001,15.170999999999999,16.611999999999998,18.216999999999999,20.007000000000001,22.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1681,-0.17330000000000001,16.6142,0.091490000000000002,12.707000000000001,13.875,15.173,16.614000000000001,18.219000000000001,20.009,22.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1682,-0.17330000000000001,16.6159,0.091509999999999994,12.707000000000001,13.875999999999999,15.173999999999999,16.616,18.222000000000001,20.012,22.013000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1683,-0.17330000000000001,16.617599999999999,0.091520000000000004,12.708,13.877000000000001,15.175000000000001,16.617999999999999,18.224,20.015000000000001,22.015999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1684,-0.17330000000000001,16.619199999999999,0.09153,12.709,13.879,15.176,16.619,18.225999999999999,20.016999999999999,22.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1685,-0.17330000000000001,16.620899999999999,0.091550000000000006,12.709,13.879,15.178000000000001,16.620999999999999,18.228000000000002,20.02,22.021999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1686,-0.17330000000000001,16.622599999999998,0.091560000000000002,12.71,13.881,15.179,16.623000000000001,18.23,20.021999999999998,22.024999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1687,-0.17330000000000001,16.624300000000002,0.091569999999999999,12.711,13.882,15.180999999999999,16.623999999999999,18.231999999999999,20.024999999999999,22.027999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1688,-0.17330000000000001,16.625900000000001,0.091590000000000005,12.712,13.882999999999999,15.182,16.626000000000001,18.234000000000002,20.027999999999999,22.032 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1689,-0.17330000000000001,16.627600000000001,0.091600000000000001,12.712999999999999,13.884,15.183,16.628,18.236000000000001,20.03,22.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1690,-0.17330000000000001,16.629300000000001,0.091609999999999997,12.714,13.885,15.185,16.629000000000001,18.238,20.033000000000001,22.038 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1691,-0.17330000000000001,16.6309,0.091630000000000003,12.714,13.885999999999999,15.186,16.631,18.239999999999998,20.035,22.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1692,-0.17330000000000001,16.6326,0.091639999999999999,12.715,13.887,15.186999999999999,16.632999999999999,18.242000000000001,20.038,22.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1693,-0.17330000000000001,16.6343,0.091649999999999995,12.715999999999999,13.888,15.188000000000001,16.634,18.244,20.04,22.047000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1694,-0.17330000000000001,16.635899999999999,0.091670000000000001,12.717000000000001,13.888999999999999,15.19,16.635999999999999,18.245999999999999,20.042999999999999,22.050999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1695,-0.17330000000000001,16.637599999999999,0.091679999999999998,12.717000000000001,13.89,15.191000000000001,16.638000000000002,18.248000000000001,20.045000000000002,22.053999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1696,-0.17330000000000001,16.639299999999999,0.091689999999999994,12.718,13.891,15.192,16.638999999999999,18.251000000000001,20.047999999999998,22.056999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1697,-0.17330000000000001,16.640999999999998,0.09171,12.718999999999999,13.891999999999999,15.194000000000001,16.640999999999998,18.253,20.050999999999998,22.06 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1698,-0.17330000000000001,16.642600000000002,0.091719999999999996,12.72,13.893000000000001,15.195,16.643000000000001,18.254999999999999,20.053000000000001,22.062999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1699,-0.17330000000000001,16.644300000000001,0.091730000000000006,12.721,13.894,15.196,16.643999999999998,18.257000000000001,20.056000000000001,22.065999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1700,-0.17330000000000001,16.646000000000001,0.091749999999999998,12.721,13.895,15.198,16.646000000000001,18.259,20.058,22.07 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1701,-0.17330000000000001,16.647600000000001,0.091759999999999994,12.722,13.896000000000001,15.199,16.648,18.260999999999999,20.061,22.071999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1702,-0.17330000000000001,16.6493,0.091770000000000004,12.723000000000001,13.897,15.2,16.649000000000001,18.263000000000002,20.062999999999999,22.074999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1703,-0.17330000000000001,16.651,0.091789999999999997,12.724,13.898,15.202,16.651,18.265000000000001,20.065999999999999,22.079000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1704,-0.17330000000000001,16.6526,0.091800000000000007,12.725,13.898999999999999,15.202999999999999,16.652999999999999,18.266999999999999,20.068000000000001,22.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1705,-0.17330000000000001,16.654299999999999,0.091810000000000003,12.726000000000001,13.9,15.204000000000001,16.654,18.268999999999998,20.071000000000002,22.085000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1706,-0.17330000000000001,16.655899999999999,0.091829999999999995,12.726000000000001,13.901,15.206,16.655999999999999,18.271000000000001,20.074000000000002,22.088000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1707,-0.17330000000000001,16.657599999999999,0.091840000000000005,12.727,13.901999999999999,15.207000000000001,16.658000000000001,18.273,20.076000000000001,22.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1708,-0.17330000000000001,16.659300000000002,0.091850000000000001,12.728,13.903,15.208,16.658999999999999,18.274999999999999,20.079000000000001,22.094000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1709,-0.17330000000000001,16.660900000000002,0.091869999999999993,12.728,13.904,15.209,16.661000000000001,18.277999999999999,20.081,22.097999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1710,-0.17330000000000001,16.662600000000001,0.091880000000000003,12.728999999999999,13.904999999999999,15.211,16.663,18.28,20.084,22.100999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1711,-0.17330000000000001,16.664300000000001,0.091889999999999999,12.73,13.906000000000001,15.212,16.664000000000001,18.282,20.085999999999999,22.103999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1712,-0.17330000000000001,16.665900000000001,0.091910000000000006,12.731,13.907,15.212999999999999,16.666,18.283999999999999,20.088999999999999,22.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1713,-0.17330000000000001,16.6676,0.091920000000000002,12.731999999999999,13.907999999999999,15.215,16.667999999999999,18.286000000000001,20.091999999999999,22.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1714,-0.17330000000000001,16.6692,0.091939999999999994,12.731999999999999,13.909000000000001,15.215999999999999,16.669,18.288,20.094000000000001,22.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1715,-0.17330000000000001,16.6709,0.091950000000000004,12.733000000000001,13.91,15.217000000000001,16.670999999999999,18.29,20.097000000000001,22.117000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1716,-0.17330000000000001,16.672599999999999,0.09196,12.734,13.912000000000001,15.218999999999999,16.672999999999998,18.292000000000002,20.099,22.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1717,-0.17330000000000001,16.674199999999999,0.091980000000000006,12.734999999999999,13.912000000000001,15.22,16.673999999999999,18.294,20.102,22.123000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1718,-0.17330000000000001,16.675899999999999,0.091990000000000002,12.734999999999999,13.913,15.221,16.675999999999998,18.295999999999999,20.103999999999999,22.126000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1719,-0.17330000000000001,16.677499999999998,0.091999999999999998,12.736000000000001,13.914999999999999,15.223000000000001,16.678000000000001,18.297999999999998,20.106999999999999,22.129000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1720,-0.17330000000000001,16.679200000000002,0.092020000000000005,12.737,13.914999999999999,15.224,16.678999999999998,18.3,20.11,22.132000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1721,-0.17330000000000001,16.680800000000001,0.092030000000000001,12.738,13.916,15.225,16.681000000000001,18.302,20.111999999999998,22.135000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1722,-0.17330000000000001,16.682500000000001,0.092039999999999997,12.739000000000001,13.917999999999999,15.227,16.681999999999999,18.303999999999998,20.114000000000001,22.138000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1723,-0.17330000000000001,16.684200000000001,0.092060000000000003,12.739000000000001,13.917999999999999,15.228,16.684000000000001,18.306999999999999,20.117000000000001,22.141999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1724,-0.17330000000000001,16.6858,0.092069999999999999,12.74,13.92,15.228999999999999,16.686,18.309000000000001,20.12,22.145 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1725,-0.17330000000000001,16.6875,0.092079999999999995,12.741,13.920999999999999,15.231,16.687999999999999,18.311,20.122,22.148 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1726,-0.17330000000000001,16.6891,0.092090000000000005,12.742000000000001,13.922000000000001,15.231999999999999,16.689,18.312999999999999,20.125,22.15 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1727,-0.17330000000000001,16.690799999999999,0.092109999999999997,12.742000000000001,13.923,15.233000000000001,16.690999999999999,18.315000000000001,20.126999999999999,22.154 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1728,-0.17330000000000001,16.692399999999999,0.092119999999999994,12.743,13.923999999999999,15.234,16.692,18.317,20.13,22.157 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1729,-0.17330000000000001,16.694099999999999,0.092130000000000004,12.744,13.925000000000001,15.236000000000001,16.693999999999999,18.318999999999999,20.132000000000001,22.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1730,-0.17330000000000001,16.695699999999999,0.092149999999999996,12.744999999999999,13.926,15.237,16.696000000000002,18.321000000000002,20.135000000000002,22.163 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1731,-0.17330000000000001,16.697399999999998,0.092160000000000006,12.746,13.927,15.238,16.696999999999999,18.323,20.137,22.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1732,-0.17330000000000001,16.699000000000002,0.092170000000000002,12.747,13.928000000000001,15.24,16.699000000000002,18.324999999999999,20.14,22.169 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1733,-0.17330000000000001,16.700700000000001,0.092189999999999994,12.747,13.929,15.241,16.701000000000001,18.327000000000002,20.143000000000001,22.172999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1734,-0.17330000000000001,16.702300000000001,0.092200000000000004,12.747999999999999,13.93,15.242000000000001,16.702000000000002,18.329000000000001,20.145,22.175999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1735,-0.17330000000000001,16.704000000000001,0.09221,12.749000000000001,13.930999999999999,15.244,16.704000000000001,18.331,20.146999999999998,22.178999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1736,-0.17330000000000001,16.7056,0.092230000000000006,12.749000000000001,13.932,15.244999999999999,16.706,18.332999999999998,20.149999999999999,22.181999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1737,-0.17330000000000001,16.7073,0.092240000000000003,12.75,13.933,15.246,16.707000000000001,18.335000000000001,20.152999999999999,22.184999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1738,-0.17330000000000001,16.7089,0.092249999999999999,12.750999999999999,13.933999999999999,15.247999999999999,16.709,18.337,20.155000000000001,22.187999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1739,-0.17330000000000001,16.710599999999999,0.092270000000000005,12.752000000000001,13.935,15.249000000000001,16.710999999999999,18.34,20.158000000000001,22.192 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1740,-0.17330000000000001,16.712199999999999,0.092280000000000001,12.753,13.936,15.25,16.712,18.341000000000001,20.16,22.193999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1741,-0.17330000000000001,16.713899999999999,0.092289999999999997,12.754,13.936999999999999,15.252000000000001,16.713999999999999,18.344000000000001,20.163,22.196999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1742,-0.17330000000000001,16.715499999999999,0.092310000000000003,12.754,13.938000000000001,15.253,16.716000000000001,18.346,20.166,22.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1743,-0.17330000000000001,16.717199999999998,0.092319999999999999,12.755000000000001,13.939,15.254,16.716999999999999,18.347999999999999,20.167999999999999,22.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1744,-0.17330000000000001,16.718800000000002,0.092329999999999995,12.756,13.94,15.255000000000001,16.719000000000001,18.350000000000001,20.170000000000002,22.207000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1745,-0.17330000000000001,16.720400000000001,0.092350000000000002,12.756,13.941000000000001,15.257,16.72,18.352,20.172999999999998,22.21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1746,-0.17330000000000001,16.722100000000001,0.092359999999999998,12.757,13.942,15.257999999999999,16.722000000000001,18.353999999999999,20.175999999999998,22.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1747,-0.17330000000000001,16.723700000000001,0.092369999999999994,12.757999999999999,13.943,15.259,16.724,18.356000000000002,20.178000000000001,22.216000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1748,-0.17330000000000001,16.7254,0.09239,12.759,13.944000000000001,15.260999999999999,16.725000000000001,18.358000000000001,20.181000000000001,22.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1749,-0.17330000000000001,16.727,0.092399999999999996,12.76,13.945,15.262,16.727,18.36,20.183,22.222000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1750,-0.17330000000000001,16.7287,0.092410000000000006,12.76,13.946,15.263,16.728999999999999,18.361999999999998,20.186,22.225000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1751,-0.17330000000000001,16.7303,0.092429999999999998,12.760999999999999,13.946999999999999,15.263999999999999,16.73,18.364000000000001,20.187999999999999,22.228999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1752,-0.17330000000000001,16.7319,0.092439999999999994,12.762,13.948,15.266,16.731999999999999,18.366,20.190999999999999,22.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1753,-0.17330000000000001,16.733599999999999,0.092450000000000004,12.763,13.949,15.266999999999999,16.734000000000002,18.367999999999999,20.193000000000001,22.234999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1754,-0.17330000000000001,16.735199999999999,0.092469999999999997,12.763,13.95,15.268000000000001,16.734999999999999,18.37,20.196000000000002,22.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1755,-0.17330000000000001,16.736899999999999,0.092480000000000007,12.763999999999999,13.951000000000001,15.27,16.736999999999998,18.372,20.198,22.241 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1756,-0.17330000000000001,16.738499999999998,0.092490000000000003,12.765000000000001,13.952,15.271000000000001,16.738,18.373999999999999,20.201000000000001,22.244 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1757,-0.17330000000000001,16.740200000000002,0.092509999999999995,12.766,13.952999999999999,15.272,16.739999999999998,18.376000000000001,20.204000000000001,22.248000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1758,-0.17330000000000001,16.741800000000001,0.092520000000000005,12.766,13.954000000000001,15.273999999999999,16.742000000000001,18.378,20.206,22.251000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1759,-0.17330000000000001,16.743400000000001,0.092530000000000001,12.766999999999999,13.955,15.275,16.742999999999999,18.38,20.207999999999998,22.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1760,-0.17330000000000001,16.745100000000001,0.092539999999999997,12.768000000000001,13.956,15.276,16.745000000000001,18.382000000000001,20.210999999999999,22.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1761,-0.17330000000000001,16.746700000000001,0.092560000000000003,12.769,13.957000000000001,15.276999999999999,16.747,18.385000000000002,20.213999999999999,22.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1762,-0.17330000000000001,16.7483,0.09257,12.77,13.958,15.279,16.748000000000001,18.387,20.216000000000001,22.263000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1763,-0.17330000000000001,16.75,0.092579999999999996,12.77,13.959,15.28,16.75,18.388999999999999,20.218,22.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1764,-0.17330000000000001,16.7516,0.092600000000000002,12.771000000000001,13.96,15.281000000000001,16.751999999999999,18.390999999999998,20.221,22.268999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1765,-0.17330000000000001,16.753299999999999,0.092609999999999998,12.772,13.961,15.282999999999999,16.753,18.393000000000001,20.224,22.271999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1766,-0.17330000000000001,16.754899999999999,0.092619999999999994,12.773,13.962,15.284000000000001,16.754999999999999,18.395,20.225999999999999,22.274999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1767,-0.17330000000000001,16.756499999999999,0.09264,12.773,13.962999999999999,15.285,16.756,18.396999999999998,20.228999999999999,22.277999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1768,-0.17330000000000001,16.758199999999999,0.092649999999999996,12.773999999999999,13.964,15.287000000000001,16.757999999999999,18.399000000000001,20.231000000000002,22.280999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1769,-0.17330000000000001,16.759799999999998,0.092660000000000006,12.775,13.965,15.288,16.760000000000002,18.401,20.234000000000002,22.283999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1770,-0.17330000000000001,16.761399999999998,0.092679999999999998,12.776,13.965999999999999,15.289,16.760999999999999,18.402999999999999,20.236000000000001,22.288 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1771,-0.17330000000000001,16.763100000000001,0.092689999999999995,12.776,13.967000000000001,15.29,16.763000000000002,18.405000000000001,20.239000000000001,22.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1772,-0.17330000000000001,16.764700000000001,0.092700000000000005,12.776999999999999,13.968,15.292,16.765000000000001,18.407,20.241,22.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1773,-0.17330000000000001,16.766300000000001,0.092719999999999997,12.778,13.968999999999999,15.292999999999999,16.765999999999998,18.408999999999999,20.244,22.297000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1774,-0.17330000000000001,16.768000000000001,0.092730000000000007,12.779,13.97,15.294,16.768000000000001,18.411000000000001,20.245999999999999,22.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1775,-0.17330000000000001,16.769600000000001,0.092740000000000003,12.78,13.971,15.295999999999999,16.77,18.413,20.248999999999999,22.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1776,-0.17330000000000001,16.7712,0.092759999999999995,12.78,13.972,15.297000000000001,16.771000000000001,18.414999999999999,20.251999999999999,22.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1777,-0.17330000000000001,16.7728,0.092770000000000005,12.781000000000001,13.973000000000001,15.298,16.773,18.417000000000002,20.254000000000001,22.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1778,-0.17330000000000001,16.7745,0.092780000000000001,12.782,13.974,15.298999999999999,16.774000000000001,18.419,20.256,22.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1779,-0.17330000000000001,16.7761,0.092789999999999997,12.782999999999999,13.975,15.301,16.776,18.420999999999999,20.259,22.315000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1780,-0.17330000000000001,16.777699999999999,0.092810000000000004,12.782999999999999,13.976000000000001,15.302,16.777999999999999,18.422999999999998,20.260999999999999,22.318999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1781,-0.17330000000000001,16.779399999999999,0.09282,12.784000000000001,13.977,15.303000000000001,16.779,18.425000000000001,20.263999999999999,22.321999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1782,-0.17330000000000001,16.780999999999999,0.092829999999999996,12.785,13.978,15.305,16.780999999999999,18.427,20.265999999999998,22.324000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1783,-0.17330000000000001,16.782599999999999,0.092850000000000002,12.785,13.978999999999999,15.305999999999999,16.783000000000001,18.428999999999998,20.268999999999998,22.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1784,-0.17330000000000001,16.784199999999998,0.092859999999999998,12.786,13.98,15.307,16.783999999999999,18.431000000000001,20.271000000000001,22.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1785,-0.17330000000000001,16.785900000000002,0.092869999999999994,12.787000000000001,13.981,15.308999999999999,16.786000000000001,18.433,20.274000000000001,22.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1786,-0.17330000000000001,16.787500000000001,0.09289,12.788,13.981999999999999,15.31,16.788,18.436,20.277000000000001,22.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1787,-0.17330000000000001,16.789100000000001,0.092899999999999996,12.789,13.983000000000001,15.311,16.789000000000001,18.437000000000001,20.279,22.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1788,-0.17330000000000001,16.790800000000001,0.092910000000000006,12.789,13.984,15.311999999999999,16.791,18.440000000000001,20.280999999999999,22.343 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1789,-0.17330000000000001,16.792400000000001,0.092929999999999999,12.79,13.984999999999999,15.314,16.792000000000002,18.442,20.283999999999999,22.347000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1790,-0.17330000000000001,16.794,0.092939999999999995,12.791,13.986000000000001,15.315,16.794,18.443999999999999,20.286999999999999,22.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1791,-0.17330000000000001,16.7956,0.092950000000000005,12.792,13.987,15.316000000000001,16.795999999999999,18.446000000000002,20.289000000000001,22.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1792,-0.17330000000000001,16.7973,0.092960000000000001,12.792999999999999,13.988,15.318,16.797000000000001,18.448,20.291,22.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1793,-0.17330000000000001,16.7989,0.092979999999999993,12.792999999999999,13.989000000000001,15.319000000000001,16.798999999999999,18.45,20.294,22.359000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1794,-0.17330000000000001,16.8005,0.092990000000000003,12.794,13.99,15.32,16.8,18.452000000000002,20.297000000000001,22.361999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1795,-0.17330000000000001,16.802099999999999,0.092999999999999999,12.795,13.991,15.321,16.802,18.454000000000001,20.298999999999999,22.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1796,-0.17330000000000001,16.803699999999999,0.093020000000000005,12.795,13.992000000000001,15.321999999999999,16.803999999999998,18.456,20.302,22.367999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1797,-0.17330000000000001,16.805399999999999,0.093030000000000002,12.795999999999999,13.993,15.324,16.805,18.457999999999998,20.303999999999998,22.370999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1798,-0.17330000000000001,16.806999999999999,0.093039999999999998,12.797000000000001,13.994,15.324999999999999,16.806999999999999,18.46,20.306999999999999,22.373999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1799,-0.17330000000000001,16.808599999999998,0.093060000000000004,12.798,13.994999999999999,15.326000000000001,16.809000000000001,18.462,20.309000000000001,22.376999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1800,-0.17330000000000001,16.810199999999998,0.09307,12.798,13.996,15.327999999999999,16.809999999999999,18.463999999999999,20.312000000000001,22.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1801,-0.17330000000000001,16.811900000000001,0.093079999999999996,12.798999999999999,13.997,15.329000000000001,16.812000000000001,18.466000000000001,20.314,22.382999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1802,-0.17330000000000001,16.813500000000001,0.093090000000000006,12.8,13.997999999999999,15.33,16.814,18.468,20.315999999999999,22.385999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1803,-0.17330000000000001,16.815100000000001,0.093109999999999998,12.801,13.999000000000001,15.332000000000001,16.815000000000001,18.47,20.318999999999999,22.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1804,-0.17330000000000001,16.816700000000001,0.093119999999999994,12.802,14,15.333,16.817,18.472000000000001,20.321999999999999,22.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1805,-0.17330000000000001,16.818300000000001,0.093130000000000004,12.802,14.000999999999999,15.334,16.818000000000001,18.474,20.324000000000002,22.395 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1806,-0.17330000000000001,16.82,0.093149999999999997,12.803000000000001,14.002000000000001,15.335000000000001,16.82,18.475999999999999,20.327000000000002,22.399000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1807,-0.17330000000000001,16.8216,0.093160000000000007,12.804,14.003,15.337,16.821999999999999,18.478000000000002,20.329000000000001,22.402000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1808,-0.17330000000000001,16.8232,0.093170000000000003,12.805,14.004,15.337999999999999,16.823,18.48,20.332000000000001,22.405000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1809,-0.17330000000000001,16.8248,0.093189999999999995,12.805,14.005000000000001,15.339,16.824999999999999,18.481999999999999,20.334,22.408000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1810,-0.17330000000000001,16.8264,0.093200000000000005,12.805999999999999,14.006,15.34,16.826000000000001,18.484000000000002,20.337,22.411000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1811,-0.17330000000000001,16.827999999999999,0.093210000000000001,12.807,14.007,15.342000000000001,16.827999999999999,18.486000000000001,20.338999999999999,22.414000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1812,-0.17330000000000001,16.829699999999999,0.093219999999999997,12.808,14.007999999999999,15.343,16.829999999999998,18.488,20.341999999999999,22.417000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1813,-0.17330000000000001,16.831299999999999,0.093240000000000003,12.808,14.009,15.343999999999999,16.831,18.489999999999998,20.344000000000001,22.42 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1814,-0.17330000000000001,16.832899999999999,0.09325,12.808999999999999,14.01,15.346,16.832999999999998,18.492000000000001,20.347000000000001,22.422999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1815,-0.17330000000000001,16.834499999999998,0.093259999999999996,12.81,14.010999999999999,15.347,16.834,18.494,20.349,22.425999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1816,-0.17330000000000001,16.836099999999998,0.093280000000000002,12.81,14.012,15.348000000000001,16.835999999999999,18.495999999999999,20.352,22.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1817,-0.17330000000000001,16.837700000000002,0.093289999999999998,12.811,14.013,15.349,16.838000000000001,18.498000000000001,20.353999999999999,22.431999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1818,-0.17330000000000001,16.839300000000001,0.093299999999999994,12.811999999999999,14.013999999999999,15.351000000000001,16.838999999999999,18.5,20.356000000000002,22.434999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1819,-0.17330000000000001,16.841000000000001,0.09332,12.813000000000001,14.015000000000001,15.352,16.841000000000001,18.501999999999999,20.359000000000002,22.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1820,-0.17330000000000001,16.842600000000001,0.093329999999999996,12.814,14.016,15.353,16.843,18.504000000000001,20.361999999999998,22.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1821,-0.17330000000000001,16.844200000000001,0.093340000000000006,12.814,14.016999999999999,15.355,16.844000000000001,18.506,20.364000000000001,22.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1822,-0.17330000000000001,16.845800000000001,0.093350000000000002,12.815,14.018000000000001,15.356,16.846,18.507999999999999,20.366,22.446999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1823,-0.17330000000000001,16.8474,0.093369999999999995,12.816000000000001,14.019,15.356999999999999,16.847000000000001,18.510000000000002,20.369,22.451000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1824,-0.17330000000000001,16.849,0.093380000000000005,12.817,14.02,15.358000000000001,16.849,18.512,20.372,22.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1825,-0.17330000000000001,16.8506,0.093390000000000001,12.817,14.021000000000001,15.36,16.850999999999999,18.513999999999999,20.373999999999999,22.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1826,-0.17330000000000001,16.8522,0.093410000000000007,12.818,14.022,15.361000000000001,16.852,18.515999999999998,20.376999999999999,22.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1827,-0.17330000000000001,16.8538,0.093420000000000003,12.819000000000001,14.023,15.362,16.853999999999999,18.518000000000001,20.379000000000001,22.463000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1828,-0.17330000000000001,16.855499999999999,0.093429999999999999,12.82,14.023999999999999,15.364000000000001,16.856000000000002,18.52,20.382000000000001,22.466000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1829,-0.17330000000000001,16.857099999999999,0.093439999999999995,12.821,14.025,15.365,16.856999999999999,18.521999999999998,20.384,22.469000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1830,-0.17330000000000001,16.858699999999999,0.093460000000000001,12.821,14.026,15.366,16.859000000000002,18.524000000000001,20.387,22.472000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1831,-0.17330000000000001,16.860299999999999,0.093469999999999998,12.821999999999999,14.026999999999999,15.367000000000001,16.86,18.526,20.388999999999999,22.475000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1832,-0.17330000000000001,16.861899999999999,0.093479999999999994,12.823,14.028,15.369,16.861999999999998,18.527999999999999,20.390999999999998,22.478000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1833,-0.17330000000000001,16.863499999999998,0.0935,12.823,14.029,15.37,16.864000000000001,18.53,20.393999999999998,22.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1834,-0.17330000000000001,16.865100000000002,0.093509999999999996,12.824,14.03,15.371,16.864999999999998,18.532,20.396999999999998,22.484000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1835,-0.17330000000000001,16.866700000000002,0.093520000000000006,12.824999999999999,14.031000000000001,15.372,16.867000000000001,18.533999999999999,20.399000000000001,22.486999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1836,-0.17330000000000001,16.868300000000001,0.093530000000000002,12.826000000000001,14.032,15.374000000000001,16.867999999999999,18.536000000000001,20.401,22.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1837,-0.17330000000000001,16.869900000000001,0.093549999999999994,12.826000000000001,14.032999999999999,15.375,16.87,18.538,20.404,22.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1838,-0.17330000000000001,16.871500000000001,0.093560000000000004,12.827,14.034000000000001,15.375999999999999,16.872,18.54,20.405999999999999,22.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1839,-0.17330000000000001,16.873100000000001,0.09357,12.827999999999999,14.035,15.377000000000001,16.873000000000001,18.542000000000002,20.408999999999999,22.498999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1840,-0.17330000000000001,16.874700000000001,0.093590000000000007,12.827999999999999,14.036,15.379,16.875,18.544,20.411999999999999,22.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1841,-0.17330000000000001,16.876300000000001,0.093600000000000003,12.829000000000001,14.037000000000001,15.38,16.876000000000001,18.545999999999999,20.414000000000001,22.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1842,-0.17330000000000001,16.878,0.093609999999999999,12.83,14.038,15.381,16.878,18.547999999999998,20.416,22.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1843,-0.17330000000000001,16.8796,0.093619999999999995,12.831,14.039,15.382999999999999,16.88,18.55,20.419,22.512 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1844,-0.17330000000000001,16.8812,0.093640000000000001,12.832000000000001,14.04,15.384,16.881,18.553000000000001,20.420999999999999,22.515000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1845,-0.17330000000000001,16.8828,0.093649999999999997,12.832000000000001,14.041,15.385,16.882999999999999,18.555,20.423999999999999,22.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1846,-0.17330000000000001,16.884399999999999,0.093659999999999993,12.833,14.042,15.385999999999999,16.884,18.556000000000001,20.425999999999998,22.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1847,-0.17330000000000001,16.885999999999999,0.093679999999999999,12.834,14.042999999999999,15.388,16.885999999999999,18.559000000000001,20.428999999999998,22.524000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1848,-0.17330000000000001,16.887599999999999,0.093689999999999996,12.835000000000001,14.044,15.388999999999999,16.888000000000002,18.561,20.431000000000001,22.527000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1849,-0.17330000000000001,16.889199999999999,0.093700000000000006,12.835000000000001,14.045,15.39,16.888999999999999,18.562999999999999,20.434000000000001,22.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1850,-0.17330000000000001,16.890799999999999,0.093710000000000002,12.836,14.045999999999999,15.391,16.890999999999998,18.564,20.436,22.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1851,-0.17330000000000001,16.892399999999999,0.093729999999999994,12.837,14.047000000000001,15.393000000000001,16.891999999999999,18.567,20.439,22.536000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1852,-0.17330000000000001,16.893999999999998,0.093740000000000004,12.837999999999999,14.048,15.394,16.893999999999998,18.568999999999999,20.440999999999999,22.539000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1853,-0.17330000000000001,16.895600000000002,0.09375,12.837999999999999,14.048999999999999,15.395,16.896000000000001,18.57,20.443999999999999,22.542000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1854,-0.17330000000000001,16.897200000000002,0.093770000000000006,12.839,14.05,15.396000000000001,16.896999999999998,18.573,20.446000000000002,22.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1855,-0.17330000000000001,16.898800000000001,0.093780000000000002,12.84,14.051,15.398,16.899000000000001,18.574999999999999,20.449000000000002,22.548999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1856,-0.17330000000000001,16.900400000000001,0.093789999999999998,12.840999999999999,14.052,15.398999999999999,16.899999999999999,18.577000000000002,20.451000000000001,22.550999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,91,0.39329999999999998,13.4779,0.074740000000000001,10.657999999999999,11.554,12.493,13.478,14.507999999999999,15.585000000000001,16.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,92,0.3916,13.49,0.074759999999999993,10.667999999999999,11.564,12.504,13.49,14.522,15.6,16.725000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,93,0.39,13.502000000000001,0.074779999999999999,10.677,11.574,12.515000000000001,13.502000000000001,14.535,15.614000000000001,16.742000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,94,0.38840000000000002,13.5139,0.074800000000000005,10.686,11.584,12.526,13.513999999999999,14.548,15.629,16.757999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,95,0.38679999999999998,13.5258,0.074810000000000001,10.696,11.593999999999999,12.537000000000001,13.526,14.561,15.643000000000001,16.774000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,96,0.38519999999999999,13.5375,0.074829999999999994,10.705,11.603999999999999,12.548,13.538,14.574,15.657999999999999,16.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,97,0.3836,13.549200000000001,0.07485,10.714,11.613,12.558,13.548999999999999,14.587,15.672000000000001,16.806000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,98,0.3821,13.560700000000001,0.074859999999999996,10.723000000000001,11.622999999999999,12.569000000000001,13.561,14.599,15.686,16.821000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,99,0.3805,13.5722,0.074880000000000002,10.731999999999999,11.632999999999999,12.579000000000001,13.571999999999999,14.612,15.7,16.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,100,0.379,13.583600000000001,0.074899999999999994,10.74,11.641999999999999,12.59,13.584,14.625,15.714,16.853000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,101,0.37740000000000001,13.594900000000001,0.074910000000000004,10.749000000000001,11.651999999999999,12.6,13.595000000000001,14.637,15.728,16.867999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,102,0.37590000000000001,13.6061,0.074929999999999997,10.757999999999999,11.661,12.61,13.606,14.65,15.742000000000001,16.882999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,103,0.37440000000000001,13.6172,0.074940000000000007,10.766999999999999,11.670999999999999,12.62,13.617000000000001,14.662000000000001,15.755000000000001,16.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,104,0.37290000000000001,13.628299999999999,0.074959999999999999,10.776,11.68,12.631,13.628,14.673999999999999,15.769,16.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,105,0.37140000000000001,13.639200000000001,0.074980000000000005,10.784000000000001,11.689,12.64,13.638999999999999,14.686,15.782,16.928000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,106,0.36990000000000001,13.6501,0.074990000000000001,10.792999999999999,11.698,12.651,13.65,14.698,15.795,16.943000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,107,0.36840000000000001,13.6609,0.075009999999999993,10.801,11.707000000000001,12.66,13.661,14.71,15.808999999999999,16.957999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,108,0.3669,13.6716,0.075020000000000003,10.808999999999999,11.715999999999999,12.67,13.672000000000001,14.722,15.821999999999999,16.972000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,109,0.36549999999999999,13.6822,0.075039999999999996,10.818,11.725,12.68,13.682,14.734,15.835000000000001,16.986999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,110,0.36399999999999999,13.6927,0.075050000000000006,10.826000000000001,11.734,12.689,13.693,14.744999999999999,15.847,17.001000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,111,0.36259999999999998,13.703099999999999,0.075069999999999998,10.834,11.743,12.699,13.702999999999999,14.757,15.86,17.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,112,0.36109999999999998,13.7134,0.075090000000000004,10.842000000000001,11.750999999999999,12.708,13.712999999999999,14.768000000000001,15.872999999999999,17.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,113,0.35970000000000002,13.723699999999999,0.0751,10.85,11.76,12.718,13.724,14.779,15.885999999999999,17.042999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,114,0.35830000000000001,13.7339,0.075120000000000006,10.858000000000001,11.769,12.727,13.734,14.791,15.898,17.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,115,0.3569,13.7439,0.075130000000000002,10.866,11.776999999999999,12.736000000000001,13.744,14.802,15.91,17.071000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,116,0.35549999999999998,13.7539,0.075149999999999995,10.872999999999999,11.785,12.744999999999999,13.754,14.813000000000001,15.923,17.085000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,117,0.35410000000000003,13.7638,0.075160000000000005,10.881,11.794,12.754,13.763999999999999,14.824,15.935,17.097999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,118,0.35270000000000001,13.7736,0.075179999999999997,10.888999999999999,11.802,12.763,13.773999999999999,14.834,15.946999999999999,17.111999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,119,0.3513,13.7834,0.075190000000000007,10.897,11.81,12.772,13.782999999999999,14.845000000000001,15.959,17.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,120,0.34989999999999999,13.792999999999999,0.075209999999999999,10.904,11.818,12.781000000000001,13.792999999999999,14.856,15.971,17.138000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,121,0.34849999999999998,13.8026,0.075219999999999995,10.912000000000001,11.826000000000001,12.79,13.803000000000001,14.866,15.981999999999999,17.151 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,122,0.34720000000000001,13.811999999999999,0.075240000000000001,10.919,11.834,12.798,13.811999999999999,14.877000000000001,15.994,17.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,123,0.3458,13.821400000000001,0.075249999999999997,10.926,11.842000000000001,12.807,13.821,14.887,16.006,17.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,124,0.34449999999999997,13.8307,0.075270000000000004,10.933,11.85,12.815,13.831,14.898,16.016999999999999,17.190000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,125,0.34320000000000001,13.8399,0.07528,10.941000000000001,11.858000000000001,12.824,13.84,14.907999999999999,16.027999999999999,17.202999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,126,0.34179999999999999,13.849,0.075300000000000006,10.948,11.865,12.832000000000001,13.849,14.917999999999999,16.04,17.216000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,127,0.34050000000000002,13.8581,0.075310000000000002,10.955,11.872999999999999,12.84,13.858000000000001,14.928000000000001,16.050999999999998,17.228000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,128,0.3392,13.867000000000001,0.075319999999999998,10.962,11.88,12.848000000000001,13.867000000000001,14.938000000000001,16.062000000000001,17.239999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,129,0.33789999999999998,13.8759,0.075340000000000004,10.968999999999999,11.888,12.856,13.875999999999999,14.948,16.073,17.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,130,0.33660000000000001,13.8847,0.07535,10.976000000000001,11.895,12.864000000000001,13.885,14.957000000000001,16.082999999999998,17.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,131,0.33529999999999999,13.8934,0.075370000000000006,10.981999999999999,11.901999999999999,12.872,13.893000000000001,14.967000000000001,16.094000000000001,17.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,132,0.33400000000000002,13.901999999999999,0.075380000000000003,10.989000000000001,11.91,12.88,13.901999999999999,14.976000000000001,16.105,17.288 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,133,0.3327,13.910500000000001,0.075399999999999995,10.994999999999999,11.917,12.888,13.91,14.986000000000001,16.116,17.300999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,134,0.33139999999999997,13.919,0.075410000000000005,11.002000000000001,11.923999999999999,12.896000000000001,13.919,14.994999999999999,16.126000000000001,17.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,135,0.3301,13.927300000000001,0.075420000000000001,11.009,11.930999999999999,12.903,13.927,15.004,16.135999999999999,17.323 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,136,0.32890000000000003,13.935600000000001,0.075439999999999993,11.015000000000001,11.938000000000001,12.911,13.936,15.013999999999999,16.146000000000001,17.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,137,0.3276,13.9438,0.075450000000000003,11.022,11.945,12.917999999999999,13.944000000000001,15.023,16.157,17.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,138,0.32640000000000002,13.9519,0.075469999999999995,11.028,11.951000000000001,12.925000000000001,13.952,15.032,16.167000000000002,17.358000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,139,0.3251,13.96,0.075480000000000005,11.034000000000001,11.958,12.933,13.96,15.041,16.177,17.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,140,0.32390000000000002,13.9679,0.075490000000000002,11.04,11.965,12.94,13.968,15.048999999999999,16.186,17.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,141,0.3226,13.9758,0.075509999999999994,11.045999999999999,11.971,12.946999999999999,13.976000000000001,15.058,16.196000000000002,17.390999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,142,0.32140000000000002,13.983599999999999,0.075520000000000004,11.052,11.978,12.954000000000001,13.984,15.067,16.206,17.402000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,143,0.32019999999999998,13.991300000000001,0.07553,11.058999999999999,11.984,12.961,13.991,15.074999999999999,16.215,17.411999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,144,0.31900000000000001,13.998900000000001,0.075550000000000006,11.064,11.991,12.968,13.999000000000001,15.084,16.225000000000001,17.422999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,145,0.31769999999999998,14.006500000000001,0.075560000000000002,11.07,11.997,12.975,14.006,15.092000000000001,16.234000000000002,17.434000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,146,0.3165,14.013999999999999,0.075569999999999998,11.076000000000001,12.003,12.981999999999999,14.013999999999999,15.101000000000001,16.244,17.443999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,147,0.31530000000000002,14.0214,0.075590000000000004,11.082000000000001,12.009,12.989000000000001,14.021000000000001,15.109,16.253,17.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,148,0.31409999999999999,14.028700000000001,0.075600000000000001,11.087999999999999,12.015000000000001,12.994999999999999,14.029,15.117000000000001,16.262,17.465 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,149,0.31290000000000001,14.0359,0.075609999999999997,11.093,12.022,13.002000000000001,14.036,15.125,16.271000000000001,17.475000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,150,0.31169999999999998,14.043100000000001,0.075630000000000003,11.099,12.026999999999999,13.007999999999999,14.042999999999999,15.132999999999999,16.28,17.484999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,151,0.31059999999999999,14.0502,0.075639999999999999,11.103999999999999,12.032999999999999,13.015000000000001,14.05,15.141,16.289000000000001,17.495000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,152,0.30940000000000001,14.0572,0.075649999999999995,11.11,12.039,13.021000000000001,14.057,15.148999999999999,16.297000000000001,17.504999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,153,0.30819999999999997,14.0642,0.075670000000000001,11.115,12.045,13.028,14.064,15.157,16.306000000000001,17.515000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,154,0.307,14.071,0.075679999999999997,11.12,12.051,13.034000000000001,14.071,15.164,16.315000000000001,17.524000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,155,0.30590000000000001,14.0778,0.075689999999999993,11.125999999999999,12.055999999999999,13.04,14.077999999999999,15.172000000000001,16.323,17.533999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,156,0.30470000000000003,14.0845,0.075700000000000003,11.131,12.061999999999999,13.045999999999999,14.084,15.179,16.331,17.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,157,0.30359999999999998,14.091200000000001,0.075719999999999996,11.135999999999999,12.068,13.052,14.090999999999999,15.186999999999999,16.34,17.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,158,0.3024,14.0977,0.075730000000000006,11.141,12.073,13.058,14.098000000000001,15.194000000000001,16.347999999999999,17.562000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,159,0.30130000000000001,14.104200000000001,0.075740000000000002,11.146000000000001,12.077999999999999,13.064,14.103999999999999,15.201000000000001,16.356000000000002,17.571000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,160,0.30009999999999998,14.1107,0.075749999999999998,11.151,12.084,13.07,14.111000000000001,15.208,16.364000000000001,17.579999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,161,0.29899999999999999,14.117000000000001,0.075770000000000004,11.156000000000001,12.089,13.074999999999999,14.117000000000001,15.215,16.372,17.588999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,162,0.2979,14.1233,0.07578,11.161,12.093999999999999,13.081,14.122999999999999,15.222,16.38,17.597999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,163,0.29670000000000002,14.1295,0.075789999999999996,11.166,12.1,13.087,14.13,15.228999999999999,16.388000000000002,17.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,164,0.29559999999999997,14.1357,0.075800000000000006,11.170999999999999,12.105,13.093,14.135999999999999,15.236000000000001,16.395,17.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,165,0.29449999999999998,14.1418,0.075810000000000002,11.176,12.11,13.098000000000001,14.141999999999999,15.243,16.402999999999999,17.623999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,166,0.29339999999999999,14.1478,0.075829999999999995,11.18,12.115,13.103,14.148,15.25,16.411000000000001,17.632999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,167,0.2923,14.1538,0.075840000000000005,11.185,12.12,13.109,14.154,15.256,16.417999999999999,17.641999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,168,0.29120000000000001,14.159700000000001,0.075850000000000001,11.189,12.125,13.114000000000001,14.16,15.263,16.425999999999998,17.649999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,169,0.29010000000000002,14.1655,0.075859999999999997,11.194000000000001,12.13,13.12,14.166,15.269,16.433,17.658000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,170,0.28899999999999998,14.1713,0.075870000000000007,11.198,12.134,13.125,14.170999999999999,15.276,16.440000000000001,17.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,171,0.28789999999999999,14.177,0.075880000000000003,11.202999999999999,12.138999999999999,13.13,14.177,15.282,16.446999999999999,17.673999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,172,0.2868,14.182600000000001,0.075889999999999999,11.207000000000001,12.144,13.135,14.183,15.288,16.454000000000001,17.681999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,173,0.28570000000000001,14.1882,0.075910000000000005,11.211,12.148,13.14,14.188000000000001,15.295,16.462,17.690999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,174,0.28470000000000001,14.1937,0.075920000000000001,11.215999999999999,12.153,13.145,14.194000000000001,15.301,16.468,17.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,175,0.28360000000000002,14.199199999999999,0.075929999999999997,11.22,12.157999999999999,13.15,14.199,15.307,16.475000000000001,17.706 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,176,0.28249999999999997,14.204599999999999,0.075939999999999994,11.224,12.162000000000001,13.154999999999999,14.205,15.313000000000001,16.481999999999999,17.713999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,177,0.28139999999999998,14.209899999999999,0.075950000000000004,11.228999999999999,12.167,13.16,14.21,15.319000000000001,16.489000000000001,17.722000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,178,0.28039999999999998,14.215199999999999,0.07596,11.233000000000001,12.170999999999999,13.164999999999999,14.215,15.324999999999999,16.495000000000001,17.728999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,179,0.27929999999999999,14.220499999999999,0.075969999999999996,11.237,12.176,13.169,14.22,15.331,16.501999999999999,17.736999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,180,0.27829999999999999,14.2256,0.075980000000000006,11.241,12.18,13.173999999999999,14.226000000000001,15.336,16.509,17.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,181,0.2772,14.230700000000001,0.075990000000000002,11.244999999999999,12.183999999999999,13.179,14.231,15.342000000000001,16.515000000000001,17.751000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,182,0.2762,14.235799999999999,0.075999999999999998,11.249000000000001,12.188000000000001,13.183,14.236000000000001,15.348000000000001,16.521000000000001,17.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,183,0.27510000000000001,14.2408,0.076009999999999994,11.253,12.192,13.188000000000001,14.241,15.353,16.527999999999999,17.765999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,184,0.27410000000000001,14.245799999999999,0.07603,11.256,12.196,13.192,14.246,15.359,16.533999999999999,17.773 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,185,0.27300000000000002,14.2507,0.076039999999999996,11.26,12.201000000000001,13.196999999999999,14.250999999999999,15.365,16.541,17.780999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,186,0.27200000000000002,14.2555,0.076050000000000006,11.263999999999999,12.205,13.201000000000001,14.256,15.37,16.547000000000001,17.786999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,187,0.27100000000000002,14.260300000000001,0.076060000000000003,11.268000000000001,12.209,13.205,14.26,15.375,16.553000000000001,17.794 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,188,0.27,14.265000000000001,0.076069999999999999,11.271000000000001,12.212,13.21,14.265000000000001,15.381,16.559000000000001,17.800999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,189,0.26889999999999997,14.2697,0.076079999999999995,11.275,12.215999999999999,13.214,14.27,15.385999999999999,16.565000000000001,17.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,190,0.26790000000000003,14.2743,0.076090000000000005,11.279,12.22,13.218,14.273999999999999,15.391,16.57,17.815000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,191,0.26690000000000003,14.2789,0.076100000000000001,11.282,12.224,13.222,14.279,15.396000000000001,16.576000000000001,17.821000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,192,0.26590000000000003,14.2834,0.076109999999999997,11.286,12.228,13.226000000000001,14.282999999999999,15.401,16.582000000000001,17.827999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,193,0.26490000000000002,14.2879,0.076119999999999993,11.289,12.231999999999999,13.23,14.288,15.406000000000001,16.588000000000001,17.834 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,194,0.26390000000000002,14.292299999999999,0.076130000000000003,11.292999999999999,12.234999999999999,13.234,14.292,15.411,16.593,17.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,195,0.26290000000000002,14.2967,0.076130000000000003,11.297000000000001,12.239000000000001,13.238,14.297000000000001,15.416,16.599,17.847000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,196,0.26190000000000002,14.3011,0.076139999999999999,11.3,12.243,13.242000000000001,14.301,15.420999999999999,16.603999999999999,17.853000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,197,0.26090000000000002,14.305300000000001,0.076149999999999995,11.303000000000001,12.246,13.246,14.305,15.426,16.61,17.859000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,198,0.25990000000000002,14.3096,0.076160000000000005,11.307,12.25,13.25,14.31,15.430999999999999,16.614999999999998,17.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,199,0.25890000000000002,14.313700000000001,0.076170000000000002,11.31,12.253,13.254,14.314,15.435,16.62,17.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,200,0.25790000000000002,14.3179,0.076179999999999998,11.313000000000001,12.257,13.257999999999999,14.318,15.44,16.626000000000001,17.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,201,0.25690000000000002,14.321999999999999,0.076189999999999994,11.316000000000001,12.26,13.260999999999999,14.321999999999999,15.444000000000001,16.631,17.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,202,0.25600000000000001,14.326000000000001,0.076200000000000004,11.319000000000001,12.263,13.265000000000001,14.326000000000001,15.449,16.635999999999999,17.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,203,0.255,14.33,0.07621,11.321999999999999,12.266999999999999,13.269,14.33,15.452999999999999,16.640999999999998,17.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,204,0.254,14.334,0.076219999999999996,11.326000000000001,12.27,13.272,14.334,15.458,16.646000000000001,17.902000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,205,0.253,14.337899999999999,0.076230000000000006,11.329000000000001,12.273,13.276,14.337999999999999,15.462,16.651,17.908000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,206,0.25209999999999999,14.341699999999999,0.076230000000000006,11.332000000000001,12.276999999999999,13.279,14.342000000000001,15.467000000000001,16.655999999999999,17.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,207,0.25109999999999999,14.345599999999999,0.076240000000000002,11.335000000000001,12.28,13.282999999999999,14.346,15.471,16.661000000000001,17.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,208,0.25019999999999998,14.349299999999999,0.076249999999999998,11.337999999999999,12.282999999999999,13.286,14.349,15.475,16.666,17.923999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,209,0.2492,14.3531,0.076259999999999994,11.340999999999999,12.286,13.289,14.353,15.478999999999999,16.670999999999999,17.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,210,0.2482,14.3568,0.076270000000000004,11.343999999999999,12.289,13.292999999999999,14.356999999999999,15.484,16.675999999999998,17.934999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,211,0.24729999999999999,14.3604,0.076280000000000001,11.346,12.292,13.295999999999999,14.36,15.488,16.68,17.940999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,212,0.24629999999999999,14.364000000000001,0.076280000000000001,11.35,12.295,13.298999999999999,14.364000000000001,15.492000000000001,16.684999999999999,17.946000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,213,0.24540000000000001,14.367599999999999,0.076289999999999997,11.352,12.298,13.303000000000001,14.368,15.496,16.689,17.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,214,0.2445,14.3711,0.076300000000000007,11.355,12.301,13.305999999999999,14.371,15.5,16.693999999999999,17.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,215,0.24349999999999999,14.374599999999999,0.076310000000000003,11.358000000000001,12.304,13.308999999999999,14.375,15.504,16.698,17.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,216,0.24260000000000001,14.3781,0.076319999999999999,11.36,12.307,13.311999999999999,14.378,15.507999999999999,16.702999999999999,17.966999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,217,0.2417,14.381500000000001,0.076319999999999999,11.363,12.31,13.315,14.382,15.510999999999999,16.707000000000001,17.972000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,218,0.2407,14.3849,0.076329999999999995,11.366,12.313000000000001,13.318,14.385,15.515000000000001,16.712,17.977 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,219,0.23980000000000001,14.388199999999999,0.076340000000000005,11.369,12.316000000000001,13.321,14.388,15.519,16.716000000000001,17.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,220,0.2389,14.391500000000001,0.076350000000000001,11.371,12.318,13.324,14.391999999999999,15.523,16.72,17.986999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,221,0.2379,14.3947,0.076350000000000001,11.374000000000001,12.321,13.327,14.395,15.526,16.724,17.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,222,0.23699999999999999,14.398,0.076359999999999997,11.377000000000001,12.324,13.33,14.398,15.53,16.728000000000002,17.995999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,223,0.2361,14.401199999999999,0.076369999999999993,11.379,12.326000000000001,13.333,14.401,15.534000000000001,16.733000000000001,18.001000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,224,0.23519999999999999,14.404299999999999,0.076380000000000003,11.381,12.329000000000001,13.336,14.404,15.537000000000001,16.736999999999998,18.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,225,0.23430000000000001,14.407400000000001,0.076380000000000003,11.384,12.332000000000001,13.339,14.407,15.54,16.741,18.010000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,226,0.2334,14.410500000000001,0.07639,11.387,12.334,13.340999999999999,14.41,15.544,16.745000000000001,18.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,227,0.23250000000000001,14.413500000000001,0.076399999999999996,11.388999999999999,12.337,13.343999999999999,14.414,15.547000000000001,16.748999999999999,18.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,228,0.2316,14.416499999999999,0.076399999999999996,11.391,12.339,13.347,14.416,15.551,16.751999999999999,18.024000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,229,0.23069999999999999,14.419499999999999,0.076410000000000006,11.394,12.342000000000001,13.35,14.42,15.554,16.756,18.029 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,230,0.2298,14.422499999999999,0.076420000000000002,11.396000000000001,12.343999999999999,13.352,14.422000000000001,15.558,16.760000000000002,18.033000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,231,0.22889999999999999,14.4254,0.076420000000000002,11.398999999999999,12.347,13.355,14.425000000000001,15.561,16.763999999999999,18.036999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,232,0.22800000000000001,14.4282,0.076429999999999998,11.401,12.349,13.358000000000001,14.428000000000001,15.564,16.766999999999999,18.042000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,233,0.2271,14.431100000000001,0.076439999999999994,11.403,12.352,13.36,14.430999999999999,15.567,16.771000000000001,18.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,234,0.22620000000000001,14.4339,0.076439999999999994,11.406000000000001,12.353999999999999,13.363,14.433999999999999,15.57,16.774999999999999,18.05 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,235,0.2253,14.4367,0.076450000000000004,11.407999999999999,12.356,13.365,14.436999999999999,15.574,16.779,18.053999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,236,0.22439999999999999,14.439399999999999,0.07646,11.41,12.359,13.368,14.439,15.577,16.782,18.059000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,237,0.2235,14.4421,0.07646,11.412000000000001,12.361000000000001,13.37,14.442,15.58,16.785,18.062999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,238,0.22270000000000001,14.444800000000001,0.076469999999999996,11.414,12.363,13.372999999999999,14.445,15.583,16.789000000000001,18.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,239,0.2218,14.4475,0.076469999999999996,11.417,12.366,13.375,14.448,15.586,16.792000000000002,18.071000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,240,0.22090000000000001,14.450100000000001,0.076480000000000006,11.419,12.368,13.377000000000001,14.45,15.589,16.795999999999999,18.074999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,241,0.22,14.4527,0.076490000000000002,11.420999999999999,12.37,13.38,14.452999999999999,15.592000000000001,16.798999999999999,18.079000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,242,0.21920000000000001,14.455299999999999,0.076490000000000002,11.423,12.372,13.382,14.455,15.593999999999999,16.803000000000001,18.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,243,0.21829999999999999,14.457800000000001,0.076499999999999999,11.425000000000001,12.374000000000001,13.384,14.458,15.597,16.806000000000001,18.087 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,244,0.21740000000000001,14.4604,0.076499999999999999,11.427,12.377000000000001,13.387,14.46,15.6,16.809000000000001,18.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,245,0.21659999999999999,14.4628,0.076509999999999995,11.429,12.379,13.388999999999999,14.462999999999999,15.603,16.812000000000001,18.094000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,246,0.2157,14.465299999999999,0.076520000000000005,11.430999999999999,12.381,13.391,14.465,15.606,16.815999999999999,18.097999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,247,0.21479999999999999,14.467700000000001,0.076520000000000005,11.433,12.382999999999999,13.393000000000001,14.468,15.609,16.818999999999999,18.102 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,248,0.214,14.4702,0.076530000000000001,11.435,12.385,13.396000000000001,14.47,15.611000000000001,16.821999999999999,18.106000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,249,0.21310000000000001,14.4725,0.076530000000000001,11.436999999999999,12.387,13.398,14.472,15.614000000000001,16.824999999999999,18.109000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,250,0.21229999999999999,14.4749,0.076539999999999997,11.439,12.388999999999999,13.4,14.475,15.617000000000001,16.827999999999999,18.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,251,0.2114,14.4772,0.076539999999999997,11.441000000000001,12.391,13.401999999999999,14.477,15.619,16.831,18.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,252,0.21060000000000001,14.4795,0.076550000000000007,11.443,12.393000000000001,13.404,14.48,15.622,16.834,18.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,253,0.2097,14.4818,0.076550000000000007,11.445,12.395,13.406000000000001,14.481999999999999,15.624000000000001,16.837,18.123000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,254,0.2089,14.4841,0.076560000000000003,11.446,12.397,13.407999999999999,14.484,15.627000000000001,16.84,18.126999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,255,0.20810000000000001,14.4863,0.076560000000000003,11.448,12.398999999999999,13.41,14.486000000000001,15.629,16.843,18.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,256,0.2072,14.4885,0.076569999999999999,11.45,12.4,13.412000000000001,14.488,15.632,16.846,18.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,257,0.2064,14.4907,0.076569999999999999,11.452,12.401999999999999,13.414,14.491,15.634,16.849,18.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,258,0.2056,14.492900000000001,0.076579999999999995,11.454000000000001,12.404,13.416,14.493,15.637,16.852,18.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,259,0.20469999999999999,14.494999999999999,0.076579999999999995,11.456,12.406000000000001,13.417999999999999,14.494999999999999,15.638999999999999,16.853999999999999,18.143000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,260,0.2039,14.4971,0.076590000000000005,11.457000000000001,12.407999999999999,13.42,14.497,15.641999999999999,16.856999999999999,18.146999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,261,0.2031,14.4992,0.076590000000000005,11.459,12.41,13.422000000000001,14.499000000000001,15.644,16.86,18.149999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,262,0.20219999999999999,14.501300000000001,0.076600000000000001,11.461,12.411,13.423999999999999,14.500999999999999,15.647,16.863,18.152999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,263,0.2014,14.503399999999999,0.076600000000000001,11.462999999999999,12.413,13.426,14.503,15.648999999999999,16.864999999999998,18.155999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,264,0.2006,14.5054,0.076609999999999998,11.464,12.414999999999999,13.428000000000001,14.505000000000001,15.651,16.867999999999999,18.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,265,0.19980000000000001,14.507400000000001,0.076609999999999998,11.465999999999999,12.417,13.43,14.507,15.653,16.870999999999999,18.163 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,266,0.19900000000000001,14.509399999999999,0.076619999999999994,11.467000000000001,12.417999999999999,13.430999999999999,14.509,15.656000000000001,16.873999999999999,18.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,267,0.1981,14.5114,0.076619999999999994,11.468999999999999,12.42,13.433,14.510999999999999,15.657999999999999,16.876000000000001,18.169 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,268,0.1973,14.513299999999999,0.076630000000000004,11.471,12.422000000000001,13.435,14.513,15.66,16.879000000000001,18.172000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,269,0.19650000000000001,14.5153,0.076630000000000004,11.473000000000001,12.423,13.436999999999999,14.515000000000001,15.662000000000001,16.881,18.175000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,270,0.19570000000000001,14.517200000000001,0.076630000000000004,11.474,12.425000000000001,13.439,14.516999999999999,15.664,16.884,18.178000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,271,0.19489999999999999,14.5191,0.07664,11.476000000000001,12.427,13.44,14.519,15.667,16.885999999999999,18.181000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,272,0.19409999999999999,14.521000000000001,0.07664,11.477,12.428000000000001,13.442,14.521000000000001,15.669,16.888999999999999,18.184000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,273,0.1933,14.5228,0.076649999999999996,11.478999999999999,12.43,13.444000000000001,14.523,15.670999999999999,16.890999999999998,18.187000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,274,0.1925,14.524699999999999,0.076649999999999996,11.481,12.432,13.445,14.525,15.673,16.893999999999998,18.190000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,275,0.19170000000000001,14.5265,0.076660000000000006,11.481999999999999,12.433,13.446999999999999,14.526,15.675000000000001,16.896000000000001,18.193000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,276,0.19089999999999999,14.5283,0.076660000000000006,11.484,12.435,13.449,14.528,15.677,16.898,18.195 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,277,0.19009999999999999,14.530099999999999,0.076660000000000006,11.484999999999999,12.436,13.45,14.53,15.679,16.901,18.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,278,0.1893,14.5319,0.076670000000000002,11.487,12.438000000000001,13.452,14.532,15.680999999999999,16.902999999999999,18.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,279,0.1885,14.5336,0.076670000000000002,11.488,12.439,13.452999999999999,14.534000000000001,15.683,16.905000000000001,18.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,280,0.18770000000000001,14.535399999999999,0.076670000000000002,11.49,12.441000000000001,13.455,14.535,15.685,16.908000000000001,18.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,281,0.18690000000000001,14.537100000000001,0.076679999999999998,11.491,12.442,13.457000000000001,14.537000000000001,15.686999999999999,16.91,18.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,282,0.18609999999999999,14.5388,0.076679999999999998,11.493,12.444000000000001,13.458,14.539,15.689,16.911999999999999,18.212 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,283,0.18529999999999999,14.5405,0.076689999999999994,11.494,12.445,13.46,14.54,15.691000000000001,16.914999999999999,18.215 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,284,0.18459999999999999,14.542199999999999,0.076689999999999994,11.496,12.446999999999999,13.461,14.542,15.693,16.917000000000002,18.216999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,285,0.18379999999999999,14.543799999999999,0.076689999999999994,11.497,12.448,13.462999999999999,14.544,15.695,16.919,18.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,286,0.183,14.545500000000001,0.076700000000000004,11.497999999999999,12.45,13.464,14.545999999999999,15.696999999999999,16.920999999999999,18.222999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,287,0.1822,14.5471,0.076700000000000004,11.5,12.451000000000001,13.465999999999999,14.547000000000001,15.698,16.922999999999998,18.225000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,288,0.18140000000000001,14.5487,0.076700000000000004,11.500999999999999,12.452999999999999,13.467000000000001,14.548999999999999,15.7,16.925000000000001,18.227 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,289,0.1807,14.5503,0.07671,11.502000000000001,12.454000000000001,13.468999999999999,14.55,15.702,16.928000000000001,18.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,290,0.1799,14.5519,0.07671,11.504,12.455,13.47,14.552,15.704000000000001,16.93,18.233000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,291,0.17910000000000001,14.5535,0.07671,11.505000000000001,12.457000000000001,13.472,14.554,15.706,16.931999999999999,18.234999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,292,0.1784,14.555,0.076719999999999997,11.507,12.458,13.473000000000001,14.555,15.707000000000001,16.934000000000001,18.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,293,0.17760000000000001,14.5566,0.076719999999999997,11.507999999999999,12.459,13.474,14.557,15.709,16.936,18.239999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,294,0.17680000000000001,14.5581,0.076719999999999997,11.51,12.461,13.476000000000001,14.558,15.711,16.937999999999999,18.242000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,295,0.17610000000000001,14.5596,0.076730000000000007,11.510999999999999,12.462,13.477,14.56,15.712999999999999,16.940000000000001,18.245000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,296,0.17530000000000001,14.5611,0.076730000000000007,11.512,12.462999999999999,13.478999999999999,14.561,15.714,16.942,18.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,297,0.17449999999999999,14.5626,0.076730000000000007,11.513,12.465,13.48,14.563000000000001,15.715999999999999,16.943999999999999,18.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,298,0.17380000000000001,14.5641,0.076740000000000003,11.515000000000001,12.465999999999999,13.481,14.564,15.718,16.946000000000002,18.251999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,299,0.17299999999999999,14.5656,0.076740000000000003,11.516,12.467000000000001,13.483000000000001,14.566000000000001,15.718999999999999,16.948,18.254999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,300,0.17230000000000001,14.567,0.076740000000000003,11.516999999999999,12.468999999999999,13.484,14.567,15.721,16.95,18.257000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,301,0.17150000000000001,14.5685,0.076749999999999999,11.518000000000001,12.47,13.484999999999999,14.568,15.723000000000001,16.952000000000002,18.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,302,0.17069999999999999,14.569900000000001,0.076749999999999999,11.52,12.471,13.487,14.57,15.724,16.954000000000001,18.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,303,0.17,14.571300000000001,0.076749999999999999,11.521000000000001,12.472,13.488,14.571,15.726000000000001,16.954999999999998,18.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,304,0.16919999999999999,14.572800000000001,0.076749999999999999,11.523,12.474,13.489000000000001,14.573,15.728,16.957000000000001,18.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,305,0.16850000000000001,14.574199999999999,0.076759999999999995,11.523,12.475,13.491,14.574,15.728999999999999,16.959,18.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,306,0.1678,14.5756,0.076759999999999995,11.525,12.476000000000001,13.492000000000001,14.576000000000001,15.731,16.960999999999999,18.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,307,0.16700000000000001,14.5769,0.076759999999999995,11.526,12.477,13.493,14.577,15.731999999999999,16.963000000000001,18.273 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,308,0.1663,14.5783,0.076770000000000005,11.526999999999999,12.478,13.494,14.577999999999999,15.734,16.965,18.274999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,309,0.16550000000000001,14.579700000000001,0.076770000000000005,11.528,12.48,13.496,14.58,15.734999999999999,16.966999999999999,18.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,310,0.1648,14.581,0.076770000000000005,11.53,12.481,13.497,14.581,15.737,16.968,18.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,311,0.16400000000000001,14.5824,0.076770000000000005,11.531000000000001,12.481999999999999,13.497999999999999,14.582000000000001,15.738,16.97,18.280999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,312,0.1633,14.5837,0.076780000000000001,11.532,12.483000000000001,13.499000000000001,14.584,15.74,16.972000000000001,18.283999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,313,0.16259999999999999,14.585000000000001,0.076780000000000001,11.532999999999999,12.484,13.500999999999999,14.585000000000001,15.741,16.974,18.286000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,314,0.1618,14.5863,0.076780000000000001,11.534000000000001,12.486000000000001,13.502000000000001,14.586,15.743,16.975000000000001,18.288 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,315,0.16109999999999999,14.5876,0.076789999999999997,11.535,12.487,13.503,14.587999999999999,15.744,16.977,18.29 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,316,0.16039999999999999,14.588900000000001,0.076789999999999997,11.537000000000001,12.488,13.504,14.589,15.746,16.978999999999999,18.292000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,317,0.15959999999999999,14.590199999999999,0.076789999999999997,11.538,12.489000000000001,13.505000000000001,14.59,15.747,16.981000000000002,18.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,318,0.15890000000000001,14.5915,0.076789999999999997,11.539,12.49,13.507,14.592000000000001,15.749000000000001,16.981999999999999,18.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,319,0.15820000000000001,14.5928,0.076799999999999993,11.54,12.491,13.507999999999999,14.593,15.75,16.984000000000002,18.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,320,0.1575,14.593999999999999,0.076799999999999993,11.541,12.492000000000001,13.509,14.593999999999999,15.752000000000001,16.986000000000001,18.300999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,321,0.15670000000000001,14.5953,0.076799999999999993,11.542999999999999,12.494,13.51,14.595000000000001,15.753,16.988,18.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,322,0.156,14.596500000000001,0.076799999999999993,11.544,12.494999999999999,13.510999999999999,14.596,15.754,16.989000000000001,18.303999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,323,0.15529999999999999,14.597799999999999,0.076810000000000003,11.545,12.496,13.512,14.598000000000001,15.756,16.991,18.306999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,324,0.15459999999999999,14.599,0.076810000000000003,11.545999999999999,12.497,13.513,14.599,15.757,16.992999999999999,18.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,325,0.15390000000000001,14.600199999999999,0.076810000000000003,11.547000000000001,12.497999999999999,13.515000000000001,14.6,15.759,16.994,18.309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,326,0.15310000000000001,14.6014,0.076810000000000003,11.548,12.499000000000001,13.516,14.601000000000001,15.76,16.995999999999999,18.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,327,0.15240000000000001,14.602600000000001,0.076810000000000003,11.548999999999999,12.5,13.516999999999999,14.603,15.760999999999999,16.997,18.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,328,0.1517,14.6038,0.076819999999999999,11.55,12.500999999999999,13.518000000000001,14.603999999999999,15.763,16.998999999999999,18.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,329,0.151,14.605,0.076819999999999999,11.551,12.502000000000001,13.519,14.605,15.763999999999999,17.001000000000001,18.318000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,330,0.15029999999999999,14.606199999999999,0.076819999999999999,11.552,12.503,13.52,14.606,15.766,17.001999999999999,18.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,331,0.14960000000000001,14.6074,0.076819999999999999,11.554,12.505000000000001,13.521000000000001,14.606999999999999,15.766999999999999,17.004000000000001,18.321999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,332,0.1489,14.608599999999999,0.076829999999999996,11.554,12.505000000000001,13.522,14.609,15.768000000000001,17.006,18.324000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,333,0.1482,14.6098,0.076829999999999996,11.555999999999999,12.507,13.523,14.61,15.77,17.007000000000001,18.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,334,0.14749999999999999,14.610900000000001,0.076829999999999996,11.557,12.507999999999999,13.523999999999999,14.611000000000001,15.771000000000001,17.007999999999999,18.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,335,0.14680000000000001,14.6121,0.076829999999999996,11.558,12.509,13.526,14.612,15.772,17.010000000000002,18.329999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,336,0.14610000000000001,14.613200000000001,0.076829999999999996,11.558999999999999,12.51,13.526999999999999,14.613,15.773,17.010999999999999,18.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,337,0.1454,14.6144,0.076840000000000006,11.56,12.510999999999999,13.528,14.614000000000001,15.775,17.013000000000002,18.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,338,0.1447,14.615500000000001,0.076840000000000006,11.561,12.512,13.529,14.616,15.776,17.015000000000001,18.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,339,0.14399999999999999,14.6167,0.076840000000000006,11.561999999999999,12.513,13.53,14.617000000000001,15.776999999999999,17.015999999999998,18.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,340,0.14330000000000001,14.617800000000001,0.076840000000000006,11.563000000000001,12.513999999999999,13.531000000000001,14.618,15.779,17.018000000000001,18.338999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,341,0.1426,14.6189,0.076850000000000002,11.564,12.515000000000001,13.532,14.619,15.78,17.018999999999998,18.341000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,342,0.1419,14.62,0.076850000000000002,11.565,12.516,13.532999999999999,14.62,15.781000000000001,17.021000000000001,18.343 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,343,0.14119999999999999,14.6211,0.076850000000000002,11.566000000000001,12.516999999999999,13.534000000000001,14.621,15.782,17.021999999999998,18.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,344,0.14050000000000001,14.622299999999999,0.076850000000000002,11.567,12.518000000000001,13.535,14.622,15.784000000000001,17.024000000000001,18.347000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,345,0.13980000000000001,14.6234,0.076850000000000002,11.568,12.519,13.536,14.622999999999999,15.785,17.024999999999999,18.347999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,346,0.1391,14.624499999999999,0.076859999999999998,11.569000000000001,12.52,13.537000000000001,14.624000000000001,15.786,17.027000000000001,18.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,347,0.1384,14.6256,0.076859999999999998,11.57,12.521000000000001,13.538,14.625999999999999,15.788,17.027999999999999,18.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,348,0.13769999999999999,14.6267,0.076859999999999998,11.571,12.522,13.539,14.627000000000001,15.789,17.03,18.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,349,0.13700000000000001,14.627700000000001,0.076859999999999998,11.571999999999999,12.523,13.54,14.628,15.79,17.030999999999999,18.356000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,350,0.13639999999999999,14.6288,0.076859999999999998,11.573,12.523999999999999,13.541,14.629,15.791,17.032,18.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,351,0.13569999999999999,14.629899999999999,0.076869999999999994,11.574,12.525,13.542,14.63,15.792999999999999,17.033999999999999,18.359000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,352,0.13500000000000001,14.631,0.076869999999999994,11.574999999999999,12.526,13.542999999999999,14.631,15.794,17.036000000000001,18.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,353,0.1343,14.632099999999999,0.076869999999999994,11.576000000000001,12.526999999999999,13.544,14.632,15.795,17.036999999999999,18.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,354,0.1336,14.633100000000001,0.076869999999999994,11.577,12.528,13.545,14.632999999999999,15.795999999999999,17.038,18.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,355,0.13300000000000001,14.6342,0.076869999999999994,11.577999999999999,12.529,13.545999999999999,14.634,15.797000000000001,17.04,18.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,356,0.1323,14.635300000000001,0.076869999999999994,11.579000000000001,12.53,13.547000000000001,14.635,15.798999999999999,17.041,18.367999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,357,0.13159999999999999,14.6363,0.076880000000000004,11.58,12.531000000000001,13.548,14.635999999999999,15.8,17.042999999999999,18.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,358,0.13089999999999999,14.6374,0.076880000000000004,11.581,12.532,13.548999999999999,14.637,15.801,17.044,18.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,359,0.1303,14.638400000000001,0.076880000000000004,11.582000000000001,12.532999999999999,13.55,14.638,15.802,17.045999999999999,18.373000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,360,0.12959999999999999,14.6395,0.076880000000000004,11.583,12.534000000000001,13.551,14.64,15.803000000000001,17.047000000000001,18.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,361,0.12889999999999999,14.640499999999999,0.076880000000000004,11.584,12.535,13.552,14.64,15.804,17.047999999999998,18.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,362,0.1283,14.6416,0.07689,11.585000000000001,12.535,13.553000000000001,14.641999999999999,15.805999999999999,17.05,18.379000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,363,0.12759999999999999,14.6426,0.07689,11.586,12.536,13.554,14.643000000000001,15.807,17.050999999999998,18.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,364,0.12690000000000001,14.643599999999999,0.07689,11.587,12.537000000000001,13.555,14.644,15.808,17.053000000000001,18.382000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,365,0.1263,14.6447,0.07689,11.587999999999999,12.538,13.555999999999999,14.645,15.808999999999999,17.053999999999998,18.382999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,366,0.12559999999999999,14.6457,0.07689,11.589,12.539,13.557,14.646000000000001,15.81,17.055,18.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,367,0.1249,14.646800000000001,0.07689,11.59,12.54,13.558,14.647,15.811999999999999,17.056999999999999,18.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,368,0.12429999999999999,14.6478,0.076899999999999996,11.590999999999999,12.541,13.558999999999999,14.648,15.813000000000001,17.058,18.388999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,369,0.1236,14.6488,0.076899999999999996,11.592000000000001,12.542,13.56,14.648999999999999,15.814,17.059999999999999,18.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,370,0.1229,14.649800000000001,0.076899999999999996,11.593,12.542999999999999,13.56,14.65,15.815,17.061,18.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,371,0.12230000000000001,14.6509,0.076899999999999996,11.593999999999999,12.544,13.561999999999999,14.651,15.816000000000001,17.062000000000001,18.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,372,0.1216,14.651899999999999,0.076899999999999996,11.595000000000001,12.545,13.561999999999999,14.651999999999999,15.817,17.064,18.395 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,373,0.121,14.652900000000001,0.076910000000000006,11.596,12.545999999999999,13.563000000000001,14.653,15.819000000000001,17.065000000000001,18.396999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,374,0.1203,14.6539,0.076910000000000006,11.597,12.547000000000001,13.564,14.654,15.82,17.067,18.399000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,375,0.1197,14.654999999999999,0.076910000000000006,11.598000000000001,12.548,13.565,14.654999999999999,15.821,17.068000000000001,18.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,376,0.11899999999999999,14.656000000000001,0.076910000000000006,11.599,12.548999999999999,13.566000000000001,14.656000000000001,15.821999999999999,17.068999999999999,18.402000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,377,0.11840000000000001,14.657,0.076910000000000006,11.6,12.548999999999999,13.567,14.657,15.823,17.071000000000002,18.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,378,0.1177,14.657999999999999,0.076910000000000006,11.601000000000001,12.55,13.568,14.657999999999999,15.824,17.071999999999999,18.405000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,379,0.1171,14.659000000000001,0.076920000000000002,11.601000000000001,12.551,13.569000000000001,14.659000000000001,15.826000000000001,17.073,18.407 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,380,0.1164,14.66,0.076920000000000002,11.602,12.552,13.57,14.66,15.827,17.074999999999999,18.408999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,381,0.1158,14.661,0.076920000000000002,11.603,12.553000000000001,13.571,14.661,15.827999999999999,17.076000000000001,18.411000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,382,0.11509999999999999,14.662000000000001,0.076920000000000002,11.603999999999999,12.554,13.571999999999999,14.662000000000001,15.829000000000001,17.077000000000002,18.411999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,383,0.1145,14.6631,0.076920000000000002,11.605,12.555,13.573,14.663,15.83,17.079000000000001,18.414000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,384,0.1138,14.664099999999999,0.076920000000000002,11.606,12.555999999999999,13.574,14.664,15.831,17.079999999999998,18.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,385,0.1132,14.665100000000001,0.076929999999999998,11.606999999999999,12.557,13.574999999999999,14.664999999999999,15.833,17.082000000000001,18.417000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,386,0.1125,14.6661,0.076929999999999998,11.608000000000001,12.558,13.576000000000001,14.666,15.834,17.082999999999998,18.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,387,0.1119,14.6671,0.076929999999999998,11.609,12.558999999999999,13.577,14.667,15.835000000000001,17.084,18.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,388,0.1113,14.668100000000001,0.076929999999999998,11.61,12.56,13.577,14.667999999999999,15.836,17.085999999999999,18.422000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,389,0.1106,14.6691,0.076929999999999998,11.611000000000001,12.561,13.577999999999999,14.669,15.837,17.087,18.423999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,390,0.11,14.6701,0.076929999999999998,11.612,12.561,13.579000000000001,14.67,15.837999999999999,17.088000000000001,18.425000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,391,0.10929999999999999,14.671099999999999,0.076929999999999998,11.613,12.561999999999999,13.58,14.670999999999999,15.839,17.088999999999999,18.427 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,392,0.1087,14.6721,0.076939999999999995,11.614000000000001,12.563000000000001,13.581,14.672000000000001,15.84,17.091000000000001,18.428999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,393,0.1081,14.6731,0.076939999999999995,11.615,12.564,13.582000000000001,14.673,15.842000000000001,17.091999999999999,18.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,394,0.1074,14.674099999999999,0.076939999999999995,11.616,12.565,13.583,14.673999999999999,15.843,17.094000000000001,18.431999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,395,0.10680000000000001,14.6751,0.076939999999999995,11.617000000000001,12.566000000000001,13.584,14.675000000000001,15.843999999999999,17.094999999999999,18.434000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,396,0.1062,14.6761,0.076939999999999995,11.618,12.567,13.585000000000001,14.676,15.845000000000001,17.096,18.434999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,397,0.1056,14.677099999999999,0.076939999999999995,11.619,12.568,13.586,14.677,15.846,17.097000000000001,18.437000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,398,0.10489999999999999,14.678100000000001,0.076950000000000005,11.619,12.569000000000001,13.587,14.678000000000001,15.847,17.099,18.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,399,0.1043,14.6791,0.076950000000000005,11.62,12.57,13.587999999999999,14.679,15.848000000000001,17.100000000000001,18.440000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,400,0.1037,14.680099999999999,0.076950000000000005,11.621,12.57,13.589,14.68,15.849,17.102,18.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,401,0.10299999999999999,14.681100000000001,0.076950000000000005,11.622,12.571,13.59,14.680999999999999,15.851000000000001,17.103000000000002,18.443000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,402,0.1024,14.6821,0.076950000000000005,11.622999999999999,12.571999999999999,13.590999999999999,14.682,15.852,17.103999999999999,18.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,403,0.1018,14.683,0.076950000000000005,11.624000000000001,12.573,13.590999999999999,14.683,15.853,17.105,18.446000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,404,0.1012,14.683999999999999,0.076950000000000005,11.625,12.574,13.592000000000001,14.683999999999999,15.853999999999999,17.106999999999999,18.448 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,405,0.10050000000000001,14.685,0.076960000000000001,11.625999999999999,12.574999999999999,13.593,14.685,15.855,17.108000000000001,18.45 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,406,0.099900000000000003,14.686,0.076960000000000001,11.627000000000001,12.576000000000001,13.593999999999999,14.686,15.856,17.11,18.452000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,407,0.099299999999999999,14.686999999999999,0.076960000000000001,11.628,12.577,13.595000000000001,14.686999999999999,15.856999999999999,17.111000000000001,18.452999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,408,0.098699999999999996,14.688000000000001,0.076960000000000001,11.629,12.577999999999999,13.596,14.688000000000001,15.858000000000001,17.111999999999998,18.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,409,0.098100000000000007,14.689,0.076960000000000001,11.63,12.579000000000001,13.597,14.689,15.86,17.114000000000001,18.456 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,410,0.097500000000000003,14.69,0.076960000000000001,11.631,12.58,13.598000000000001,14.69,15.861000000000001,17.114999999999998,18.457999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,411,0.096799999999999997,14.691000000000001,0.076969999999999997,11.631,12.58,13.599,14.691000000000001,15.862,17.116,18.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,412,0.096199999999999994,14.692,0.076969999999999997,11.632,12.581,13.6,14.692,15.863,17.117999999999999,18.460999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,413,0.095600000000000004,14.693,0.076969999999999997,11.632999999999999,12.582000000000001,13.601000000000001,14.693,15.864000000000001,17.119,18.463000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,414,0.095000000000000001,14.694000000000001,0.076969999999999997,11.634,12.583,13.602,14.694000000000001,15.865,17.12,18.465 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,415,0.094399999999999998,14.695,0.076969999999999997,11.635,12.584,13.603,14.695,15.866,17.122,18.466000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,416,0.093799999999999994,14.696,0.076969999999999997,11.635999999999999,12.585000000000001,13.603,14.696,15.867000000000001,17.123000000000001,18.468 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,417,0.093200000000000005,14.697100000000001,0.076969999999999997,11.637,12.586,13.605,14.696999999999999,15.869,17.123999999999999,18.469000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,418,0.092600000000000002,14.6981,0.076980000000000007,11.638,12.587,13.605,14.698,15.87,17.126000000000001,18.471 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,419,0.091899999999999996,14.6991,0.076980000000000007,11.638999999999999,12.587999999999999,13.606,14.699,15.871,17.126999999999999,18.472999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,420,0.091300000000000006,14.700100000000001,0.076980000000000007,11.64,12.589,13.606999999999999,14.7,15.872,17.128,18.475000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,421,0.090700000000000003,14.7011,0.076980000000000007,11.641,12.59,13.608000000000001,14.701000000000001,15.872999999999999,17.13,18.475999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,422,0.0901,14.7021,0.076980000000000007,11.641999999999999,12.590999999999999,13.609,14.702,15.874000000000001,17.131,18.478000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,423,0.089499999999999996,14.703099999999999,0.076980000000000007,11.643000000000001,12.592000000000001,13.61,14.702999999999999,15.875,17.132000000000001,18.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,424,0.088900000000000007,14.7041,0.076980000000000007,11.644,12.593,13.611000000000001,14.704000000000001,15.877000000000001,17.134,18.481000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,425,0.088300000000000003,14.7051,0.076990000000000003,11.645,12.593,13.612,14.705,15.878,17.135000000000002,18.483000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,426,0.0877,14.706099999999999,0.076990000000000003,11.646000000000001,12.593999999999999,13.613,14.706,15.879,17.137,18.484000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,427,0.087099999999999997,14.7072,0.076990000000000003,11.647,12.595000000000001,13.614000000000001,14.707000000000001,15.88,17.138000000000002,18.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,428,0.086499999999999994,14.7082,0.076990000000000003,11.648,12.596,13.615,14.708,15.881,17.138999999999999,18.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,429,0.085900000000000004,14.709199999999999,0.076990000000000003,11.648999999999999,12.597,13.616,14.709,15.882,17.14,18.489000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,430,0.085300000000000001,14.7102,0.076990000000000003,11.65,12.598000000000001,13.617000000000001,14.71,15.882999999999999,17.141999999999999,18.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,431,0.084699999999999998,14.7112,0.076990000000000003,11.651,12.599,13.618,14.711,15.885,17.143000000000001,18.492000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,432,0.084099999999999994,14.712300000000001,0.076999999999999999,11.651,12.6,13.619,14.712,15.885999999999999,17.145,18.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,433,0.083500000000000005,14.7133,0.076999999999999999,11.651999999999999,12.601000000000001,13.62,14.712999999999999,15.887,17.146000000000001,18.495999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,434,0.082900000000000001,14.7143,0.076999999999999999,11.653,12.602,13.62,14.714,15.888,17.146999999999998,18.498000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,435,0.082299999999999998,14.715299999999999,0.076999999999999999,11.654,12.603,13.621,14.715,15.888999999999999,17.149000000000001,18.498999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,436,0.081699999999999995,14.7164,0.076999999999999999,11.654999999999999,12.603999999999999,13.622,14.715999999999999,15.89,17.149999999999999,18.501000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,437,0.081199999999999994,14.7174,0.076999999999999999,11.656000000000001,12.605,13.622999999999999,14.717000000000001,15.891999999999999,17.151,18.501999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,438,0.080600000000000005,14.718400000000001,0.076999999999999999,11.657,12.606,13.624000000000001,14.718,15.893000000000001,17.152999999999999,18.504000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,439,0.08,14.7195,0.077009999999999995,11.657999999999999,12.606,13.625,14.72,15.894,17.154,18.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,440,0.079399999999999998,14.720499999999999,0.077009999999999995,11.659000000000001,12.606999999999999,13.625999999999999,14.72,15.895,17.155999999999999,18.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,441,0.078799999999999995,14.7216,0.077009999999999995,11.66,12.608000000000001,13.627000000000001,14.722,15.896000000000001,17.157,18.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,442,0.078200000000000006,14.7226,0.077009999999999995,11.661,12.609,13.628,14.723000000000001,15.898,17.158000000000001,18.510999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,443,0.077600000000000002,14.723599999999999,0.077009999999999995,11.662000000000001,12.61,13.629,14.724,15.898999999999999,17.16,18.512 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,444,0.076999999999999999,14.7247,0.077009999999999995,11.663,12.611000000000001,13.63,14.725,15.9,17.161000000000001,18.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,445,0.076399999999999996,14.7257,0.077009999999999995,11.664,12.612,13.631,14.726000000000001,15.901,17.161999999999999,18.515999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,446,0.075899999999999995,14.726800000000001,0.077009999999999995,11.664999999999999,12.613,13.632,14.727,15.901999999999999,17.164000000000001,18.516999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,447,0.075300000000000006,14.7278,0.077020000000000005,11.666,12.614000000000001,13.632999999999999,14.728,15.903,17.164999999999999,18.518999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,448,0.074700000000000003,14.728899999999999,0.077020000000000005,11.667,12.615,13.634,14.728999999999999,15.904999999999999,17.167000000000002,18.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,449,0.074099999999999999,14.73,0.077020000000000005,11.667999999999999,12.616,13.635,14.73,15.906000000000001,17.167999999999999,18.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,450,0.073499999999999996,14.731,0.077020000000000005,11.669,12.617000000000001,13.635999999999999,14.731,15.907,17.169,18.524000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,451,0.072999999999999995,14.732100000000001,0.077020000000000005,11.67,12.618,13.637,14.731999999999999,15.907999999999999,17.170999999999999,18.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,452,0.072400000000000006,14.7331,0.077020000000000005,11.670999999999999,12.619,13.638,14.733000000000001,15.909000000000001,17.172000000000001,18.527000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,453,0.071800000000000003,14.7342,0.077020000000000005,11.672000000000001,12.62,13.638999999999999,14.734,15.91,17.172999999999998,18.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,454,0.071199999999999999,14.735300000000001,0.077030000000000001,11.672000000000001,12.621,13.64,14.734999999999999,15.912000000000001,17.175000000000001,18.530999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,455,0.070599999999999996,14.7364,0.077030000000000001,11.673999999999999,12.622,13.641,14.736000000000001,15.913,17.177,18.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,456,0.070099999999999996,14.737399999999999,0.077030000000000001,11.673999999999999,12.622999999999999,13.641999999999999,14.737,15.914,17.178000000000001,18.533999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,457,0.069500000000000006,14.7385,0.077030000000000001,11.676,12.624000000000001,13.643000000000001,14.738,15.914999999999999,17.178999999999998,18.536000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,458,0.068900000000000003,14.739599999999999,0.077030000000000001,11.677,12.625,13.644,14.74,15.917,17.181000000000001,18.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,459,0.0683,14.7407,0.077030000000000001,11.678000000000001,12.625999999999999,13.645,14.741,15.917999999999999,17.181999999999999,18.539000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,460,0.067799999999999999,14.7418,0.077030000000000001,11.679,12.627000000000001,13.646000000000001,14.742000000000001,15.919,17.183,18.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,461,0.067199999999999996,14.742900000000001,0.077030000000000001,11.68,12.628,13.647,14.743,15.92,17.184999999999999,18.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,462,0.066600000000000006,14.7439,0.077039999999999997,11.68,12.628,13.648,14.744,15.922000000000001,17.187000000000001,18.545000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,463,0.066100000000000006,14.744999999999999,0.077039999999999997,11.680999999999999,12.629,13.648999999999999,14.744999999999999,15.923,17.187999999999999,18.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,464,0.065500000000000003,14.7461,0.077039999999999997,11.682,12.631,13.65,14.746,15.923999999999999,17.189,18.547999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,465,0.064899999999999999,14.747199999999999,0.077039999999999997,11.683999999999999,12.632,13.651,14.747,15.925000000000001,17.190999999999999,18.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,466,0.064399999999999999,14.7483,0.077039999999999997,11.685,12.632999999999999,13.651999999999999,14.747999999999999,15.926,17.192,18.550999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,467,0.063799999999999996,14.749499999999999,0.077039999999999997,11.686,12.634,13.653,14.75,15.928000000000001,17.193999999999999,18.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,468,0.063200000000000006,14.7506,0.077039999999999997,11.686999999999999,12.635,13.654,14.750999999999999,15.929,17.195,18.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,469,0.062700000000000006,14.7517,0.077039999999999997,11.688000000000001,12.635999999999999,13.654999999999999,14.752000000000001,15.93,17.196000000000002,18.556000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,470,0.062100000000000002,14.752800000000001,0.077049999999999993,11.689,12.637,13.656000000000001,14.753,15.932,17.198,18.559000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,471,0.061499999999999999,14.7539,0.077049999999999993,11.69,12.638,13.657,14.754,15.933,17.2,18.559999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,472,0.060999999999999999,14.755000000000001,0.077049999999999993,11.691000000000001,12.638999999999999,13.657999999999999,14.755000000000001,15.933999999999999,17.201000000000001,18.562000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,473,0.060400000000000002,14.7562,0.077049999999999993,11.692,12.64,13.659000000000001,14.756,15.935,17.202000000000002,18.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,474,0.059799999999999999,14.757300000000001,0.077049999999999993,11.693,12.641,13.661,14.757,15.936,17.204000000000001,18.565000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,475,0.059299999999999999,14.7584,0.077049999999999993,11.694000000000001,12.641999999999999,13.662000000000001,14.757999999999999,15.938000000000001,17.204999999999998,18.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,476,0.058700000000000002,14.759600000000001,0.077049999999999993,11.695,12.643000000000001,13.663,14.76,15.939,17.207000000000001,18.568999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,477,0.058200000000000002,14.7607,0.077049999999999993,11.696,12.644,13.664,14.760999999999999,15.94,17.207999999999998,18.571000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,478,0.057599999999999998,14.761799999999999,0.077060000000000003,11.696999999999999,12.645,13.664999999999999,14.762,15.942,17.21,18.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,479,0.057099999999999998,14.763,0.077060000000000003,11.698,12.646000000000001,13.666,14.763,15.943,17.210999999999999,18.574999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,480,0.056500000000000002,14.764099999999999,0.077060000000000003,11.699,12.647,13.667,14.763999999999999,15.944000000000001,17.213000000000001,18.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,481,0.055899999999999998,14.7653,0.077060000000000003,11.7,12.648,13.667999999999999,14.765000000000001,15.945,17.213999999999999,18.577999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,482,0.055399999999999998,14.766400000000001,0.077060000000000003,11.701000000000001,12.648999999999999,13.669,14.766,15.946999999999999,17.216000000000001,18.579999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,483,0.054800000000000001,14.7676,0.077060000000000003,11.702,12.65,13.67,14.768000000000001,15.948,17.216999999999999,18.581 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,484,0.054300000000000001,14.768800000000001,0.077060000000000003,11.702999999999999,12.651,13.670999999999999,14.769,15.949,17.219000000000001,18.582999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,485,0.053699999999999998,14.7699,0.077060000000000003,11.704000000000001,12.651999999999999,13.672000000000001,14.77,15.951000000000001,17.22,18.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,486,0.053199999999999997,14.771100000000001,0.07707,11.705,12.653,13.673,14.771000000000001,15.952,17.222000000000001,18.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,487,0.052600000000000001,14.7723,0.07707,11.706,12.654,13.673999999999999,14.772,15.952999999999999,17.222999999999999,18.588999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,488,0.0521,14.773400000000001,0.07707,11.707000000000001,12.654999999999999,13.675000000000001,14.773,15.955,17.225000000000001,18.591000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,489,0.051499999999999997,14.7746,0.07707,11.708,12.656000000000001,13.677,14.775,15.956,17.225999999999999,18.591999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,490,0.050999999999999997,14.7758,0.07707,11.71,12.657,13.678000000000001,14.776,15.957000000000001,17.228000000000002,18.594000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,491,0.0504,14.776999999999999,0.07707,11.711,12.659000000000001,13.679,14.776999999999999,15.959,17.228999999999999,18.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,492,0.0499,14.7782,0.07707,11.712,12.66,13.68,14.778,15.96,17.231000000000002,18.597999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,493,0.049299999999999997,14.779400000000001,0.07707,11.712999999999999,12.661,13.680999999999999,14.779,15.961,17.231999999999999,18.600000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,494,0.048800000000000003,14.7805,0.07707,11.714,12.662000000000001,13.682,14.78,15.962,17.234000000000002,18.600999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,495,0.0482,14.781700000000001,0.077079999999999996,11.715,12.663,13.683,14.782,15.964,17.236000000000001,18.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,496,0.047699999999999999,14.7829,0.077079999999999996,11.715999999999999,12.664,13.683999999999999,14.782999999999999,15.965,17.236999999999998,18.605 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,497,0.047100000000000003,14.7842,0.077079999999999996,11.717000000000001,12.664999999999999,13.686,14.784000000000001,15.967000000000001,17.239000000000001,18.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,498,0.046600000000000003,14.785399999999999,0.077079999999999996,11.718,12.666,13.686999999999999,14.785,15.968,17.239999999999998,18.609000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,499,0.046100000000000002,14.7866,0.077079999999999996,11.718999999999999,12.667,13.688000000000001,14.787000000000001,15.968999999999999,17.242000000000001,18.611000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,500,0.045499999999999999,14.787800000000001,0.077079999999999996,11.72,12.667999999999999,13.689,14.788,15.971,17.242999999999999,18.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,501,0.044999999999999998,14.789,0.077079999999999996,11.722,12.669,13.69,14.789,15.972,17.245000000000001,18.614000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,502,0.044400000000000002,14.7902,0.077079999999999996,11.723000000000001,12.67,13.691000000000001,14.79,15.973000000000001,17.245999999999999,18.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,503,0.043900000000000002,14.791399999999999,0.077079999999999996,11.724,12.672000000000001,13.692,14.791,15.975,17.248000000000001,18.617999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,504,0.043400000000000001,14.7927,0.077090000000000006,11.725,12.673,13.693,14.792999999999999,15.976000000000001,17.25,18.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,505,0.042799999999999998,14.793900000000001,0.077090000000000006,11.726000000000001,12.673999999999999,13.695,14.794,15.977,17.251000000000001,18.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,506,0.042299999999999997,14.7951,0.077090000000000006,11.727,12.675000000000001,13.696,14.795,15.978999999999999,17.253,18.623999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,507,0.041700000000000001,14.7964,0.077090000000000006,11.728,12.676,13.696999999999999,14.795999999999999,15.98,17.254000000000001,18.626000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,508,0.041200000000000001,14.797599999999999,0.077090000000000006,11.728999999999999,12.677,13.698,14.798,15.981999999999999,17.256,18.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,509,0.0407,14.7989,0.077090000000000006,11.73,12.678000000000001,13.699,14.798999999999999,15.983000000000001,17.257999999999999,18.629000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,510,0.040099999999999997,14.8001,0.077090000000000006,11.731999999999999,12.679,13.7,14.8,15.984,17.259,18.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,511,0.039600000000000003,14.801299999999999,0.077090000000000006,11.733000000000001,12.68,13.702,14.801,15.986000000000001,17.260999999999999,18.632999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,512,0.039100000000000003,14.8026,0.077090000000000006,11.734,12.682,13.702999999999999,14.803000000000001,15.987,17.262,18.635000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,513,0.0385,14.803900000000001,0.077100000000000002,11.734999999999999,12.683,13.704000000000001,14.804,15.989000000000001,17.263999999999999,18.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,514,0.037999999999999999,14.805099999999999,0.077100000000000002,11.736000000000001,12.683999999999999,13.705,14.805,15.99,17.265999999999998,18.638999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,515,0.037499999999999999,14.8064,0.077100000000000002,11.737,12.685,13.706,14.805999999999999,15.991,17.266999999999999,18.640999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,516,0.036900000000000002,14.807600000000001,0.077100000000000002,11.738,12.686,13.707000000000001,14.808,15.993,17.268999999999998,18.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,517,0.036400000000000002,14.8089,0.077100000000000002,11.739000000000001,12.686999999999999,13.709,14.808999999999999,15.994,17.27,18.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,518,0.035900000000000001,14.8102,0.077100000000000002,11.741,12.688000000000001,13.71,14.81,15.996,17.271999999999998,18.646999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,519,0.035299999999999998,14.811500000000001,0.077100000000000002,11.742000000000001,12.69,13.711,14.811999999999999,15.997,17.274000000000001,18.648 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,520,0.034799999999999998,14.8127,0.077100000000000002,11.743,12.691000000000001,13.712,14.813000000000001,15.997999999999999,17.274999999999999,18.649999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,521,0.034299999999999997,14.814,0.077100000000000002,11.744,12.692,13.712999999999999,14.814,16,17.277000000000001,18.652000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,522,0.033799999999999997,14.815300000000001,0.077109999999999998,11.744999999999999,12.693,13.714,14.815,16.001000000000001,17.279,18.655000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,523,0.0332,14.816599999999999,0.077109999999999998,11.746,12.694000000000001,13.715999999999999,14.817,16.003,17.28,18.655999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,524,0.0327,14.8179,0.077109999999999998,11.747,12.695,13.717000000000001,14.818,16.004000000000001,17.282,18.658000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,525,0.032199999999999999,14.8192,0.077109999999999998,11.749000000000001,12.696,13.718,14.819000000000001,16.006,17.283999999999999,18.66 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,526,0.031699999999999999,14.820499999999999,0.077109999999999998,11.75,12.698,13.718999999999999,14.82,16.007000000000001,17.285,18.661999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,527,0.031099999999999999,14.8218,0.077109999999999998,11.750999999999999,12.699,13.721,14.821999999999999,16.007999999999999,17.286999999999999,18.664000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,528,0.030599999999999999,14.8231,0.077109999999999998,11.752000000000001,12.7,13.722,14.823,16.010000000000002,17.289000000000001,18.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,529,0.030099999999999998,14.824400000000001,0.077109999999999998,11.753,12.701000000000001,13.723000000000001,14.824,16.010999999999999,17.29,18.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,530,0.029600000000000001,14.825699999999999,0.077109999999999998,11.755000000000001,12.702,13.724,14.826000000000001,16.013000000000002,17.292000000000002,18.670000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,531,0.029100000000000001,14.827,0.077109999999999998,11.756,12.704000000000001,13.725,14.827,16.013999999999999,17.292999999999999,18.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,532,0.028500000000000001,14.8283,0.077119999999999994,11.757,12.705,13.727,14.827999999999999,16.015999999999998,17.295000000000002,18.673999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,533,0.028000000000000001,14.829599999999999,0.077119999999999994,11.757999999999999,12.706,13.728,14.83,16.016999999999999,17.297000000000001,18.675999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,534,0.0275,14.8309,0.077119999999999994,11.759,12.707000000000001,13.728999999999999,14.831,16.018999999999998,17.298999999999999,18.678000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,535,0.027,14.8323,0.077119999999999994,11.76,12.708,13.73,14.832000000000001,16.02,17.3,18.68 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,536,0.026499999999999999,14.833600000000001,0.077119999999999994,11.760999999999999,12.709,13.731999999999999,14.834,16.021999999999998,17.302,18.681999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,537,0.025899999999999999,14.834899999999999,0.077119999999999994,11.763,12.711,13.733000000000001,14.835000000000001,16.023,17.303999999999998,18.684000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,538,0.025399999999999999,14.8362,0.077119999999999994,11.763999999999999,12.712,13.734,14.836,16.024000000000001,17.305,18.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,539,0.024899999999999999,14.8376,0.077119999999999994,11.765000000000001,12.712999999999999,13.734999999999999,14.837999999999999,16.026,17.306999999999999,18.687999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,540,0.024400000000000002,14.838900000000001,0.077119999999999994,11.766,12.714,13.737,14.839,16.027000000000001,17.309000000000001,18.689 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,541,0.023900000000000001,14.840299999999999,0.077130000000000004,11.766999999999999,12.715,13.738,14.84,16.029,17.311,18.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,542,0.023400000000000001,14.8416,0.077130000000000004,11.768000000000001,12.715999999999999,13.739000000000001,14.842000000000001,16.030999999999999,17.312000000000001,18.693999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,543,0.022800000000000001,14.843,0.077130000000000004,11.77,12.718,13.74,14.843,16.032,17.314,18.696000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,544,0.0223,14.8443,0.077130000000000004,11.771000000000001,12.718999999999999,13.741,14.843999999999999,16.033000000000001,17.315999999999999,18.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,545,0.0218,14.845700000000001,0.077130000000000004,11.772,12.72,13.743,14.846,16.035,17.317,18.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,546,0.021299999999999999,14.847,0.077130000000000004,11.773,12.721,13.744,14.847,16.036000000000001,17.318999999999999,18.702000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,547,0.020799999999999999,14.8484,0.077130000000000004,11.775,12.723000000000001,13.744999999999999,14.848000000000001,16.038,17.321000000000002,18.704000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,548,0.020299999999999999,14.8497,0.077130000000000004,11.776,12.724,13.747,14.85,16.039000000000001,17.321999999999999,18.706 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,549,0.019800000000000002,14.851100000000001,0.077130000000000004,11.776999999999999,12.725,13.747999999999999,14.851000000000001,16.041,17.324000000000002,18.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,550,0.019300000000000001,14.852499999999999,0.07714,11.778,12.726000000000001,13.749000000000001,14.852,16.042999999999999,17.326000000000001,18.71 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,551,0.018800000000000001,14.853899999999999,0.07714,11.779,12.727,13.75,14.853999999999999,16.044,17.327999999999999,18.712 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,552,0.0183,14.8552,0.07714,11.78,12.728999999999999,13.752000000000001,14.855,16.045999999999999,17.329999999999998,18.713999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,553,0.0177,14.8566,0.07714,11.782,12.73,13.753,14.856999999999999,16.047000000000001,17.331,18.716000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,554,0.0172,14.858000000000001,0.07714,11.782999999999999,12.731,13.754,14.858000000000001,16.048999999999999,17.332999999999998,18.718 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,555,0.0167,14.859400000000001,0.07714,11.784000000000001,12.731999999999999,13.756,14.859,16.05,17.335000000000001,18.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,556,0.016199999999999999,14.860799999999999,0.07714,11.786,12.734,13.757,14.861000000000001,16.052,17.337,18.722000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,557,0.015699999999999999,14.8622,0.07714,11.787000000000001,12.734999999999999,13.757999999999999,14.862,16.053000000000001,17.338000000000001,18.724 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,558,0.0152,14.8635,0.07714,11.788,12.736000000000001,13.759,14.864000000000001,16.055,17.34,18.725999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,559,0.0147,14.8649,0.07714,11.789,12.737,13.760999999999999,14.865,16.056000000000001,17.341999999999999,18.728000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,560,0.014200000000000001,14.866300000000001,0.077149999999999996,11.79,12.738,13.762,14.866,16.058,17.344000000000001,18.731000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,561,0.0137,14.867699999999999,0.077149999999999996,11.791,12.74,13.763,14.868,16.059000000000001,17.344999999999999,18.733000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,562,0.0132,14.869199999999999,0.077149999999999996,11.792999999999999,12.741,13.765000000000001,14.869,16.061,17.347000000000001,18.734999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,563,0.012699999999999999,14.8706,0.077149999999999996,11.794,12.742000000000001,13.766,14.871,16.062999999999999,17.349,18.736999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,564,0.012200000000000001,14.872,0.077149999999999996,11.795,12.744,13.766999999999999,14.872,16.064,17.350999999999999,18.739000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,565,0.0117,14.8734,0.077149999999999996,11.797000000000001,12.744999999999999,13.769,14.872999999999999,16.065999999999999,17.352,18.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,566,0.0112,14.8748,0.077149999999999996,11.798,12.746,13.77,14.875,16.067,17.353999999999999,18.742999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,567,0.010699999999999999,14.876200000000001,0.077149999999999996,11.798999999999999,12.747,13.771000000000001,14.875999999999999,16.068999999999999,17.356000000000002,18.745000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,568,0.010200000000000001,14.877700000000001,0.077160000000000006,11.8,12.749000000000001,13.772,14.878,16.071000000000002,17.358000000000001,18.748000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,569,0.0097000000000000003,14.879099999999999,0.077160000000000006,11.801,12.75,13.773999999999999,14.879,16.071999999999999,17.36,18.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,570,0.0091999999999999998,14.8805,0.077160000000000006,11.803000000000001,12.750999999999999,13.775,14.88,16.074000000000002,17.361999999999998,18.751999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,571,0.0086999999999999994,14.882,0.077160000000000006,11.804,12.753,13.776999999999999,14.882,16.074999999999999,17.363,18.754000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,572,0.0082000000000000007,14.8834,0.077160000000000006,11.805,12.754,13.778,14.882999999999999,16.077000000000002,17.364999999999998,18.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,573,0.0077000000000000002,14.8848,0.077160000000000006,11.807,12.755000000000001,13.779,14.885,16.077999999999999,17.367000000000001,18.757999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,574,0.0071999999999999998,14.8863,0.077160000000000006,11.808,12.756,13.781000000000001,14.885999999999999,16.079999999999998,17.369,18.760000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,575,0.0067000000000000002,14.887700000000001,0.077160000000000006,11.808999999999999,12.757999999999999,13.782,14.888,16.082000000000001,17.370999999999999,18.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,576,0.0061999999999999998,14.889200000000001,0.077160000000000006,11.811,12.759,13.782999999999999,14.888999999999999,16.082999999999998,17.372,18.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,577,0.0057000000000000002,14.890599999999999,0.077170000000000002,11.811,12.76,13.784000000000001,14.891,16.085000000000001,17.373999999999999,18.766999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,578,0.0051999999999999998,14.892099999999999,0.077170000000000002,11.813000000000001,12.760999999999999,13.786,14.891999999999999,16.087,17.376000000000001,18.768999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,579,0.0047000000000000002,14.893599999999999,0.077170000000000002,11.814,12.763,13.787000000000001,14.894,16.088000000000001,17.378,18.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,580,0.0043,14.895,0.077170000000000002,11.815,12.763999999999999,13.789,14.895,16.09,17.38,18.773 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,581,0.0038,14.8965,0.077170000000000002,11.817,12.765000000000001,13.79,14.896000000000001,16.091000000000001,17.382000000000001,18.774999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,582,0.0033,14.898,0.077170000000000002,11.818,12.766999999999999,13.791,14.898,16.093,17.384,18.777000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,583,0.0028,14.8995,0.077170000000000002,11.819000000000001,12.768000000000001,13.792999999999999,14.9,16.094999999999999,17.385000000000002,18.779 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,584,0.0023,14.9009,0.077170000000000002,11.821,12.769,13.794,14.901,16.096,17.387,18.780999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,585,0.0018,14.9024,0.077179999999999999,11.821999999999999,12.771000000000001,13.795,14.901999999999999,16.097999999999999,17.388999999999999,18.783999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,586,0.0012999999999999999,14.9039,0.077179999999999999,11.823,12.772,13.797000000000001,14.904,16.100000000000001,17.390999999999998,18.786000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,587,0.00080000000000000004,14.9054,0.077179999999999999,11.824,12.773,13.798,14.904999999999999,16.100999999999999,17.393000000000001,18.788 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,588,0.00029999999999999997,14.9069,0.077179999999999999,11.826000000000001,12.775,13.8,14.907,16.103000000000002,17.395,18.791 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,589,-0.0001,14.9084,0.077179999999999999,11.827,12.776,13.801,14.907999999999999,16.105,17.396999999999998,18.792999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,590,-0.00059999999999999995,14.9099,0.077179999999999999,11.827999999999999,12.776999999999999,13.802,14.91,16.106000000000002,17.399000000000001,18.795000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,591,-0.0011000000000000001,14.9114,0.077179999999999999,11.83,12.779,13.804,14.911,16.108000000000001,17.401,18.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,592,-0.0016000000000000001,14.9129,0.077179999999999999,11.831,12.78,13.805,14.913,16.11,17.402000000000001,18.798999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,593,-0.0020999999999999999,14.914400000000001,0.077179999999999999,11.832000000000001,12.781000000000001,13.807,14.914,16.111000000000001,17.404,18.800999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,594,-0.0025999999999999999,14.916,0.077189999999999995,11.833,12.782999999999999,13.808,14.916,16.113,17.407,18.803999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,595,-0.0030999999999999999,14.9175,0.077189999999999995,11.835000000000001,12.784000000000001,13.808999999999999,14.917999999999999,16.114999999999998,17.408000000000001,18.806000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,596,-0.0035000000000000001,14.919,0.077189999999999995,11.836,12.785,13.811,14.919,16.116,17.41,18.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,597,-0.0040000000000000001,14.920500000000001,0.077189999999999995,11.837999999999999,12.787000000000001,13.811999999999999,14.92,16.117999999999999,17.411999999999999,18.809999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,598,-0.0044999999999999997,14.9221,0.077189999999999995,11.839,12.788,13.814,14.922000000000001,16.12,17.414000000000001,18.812999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,599,-0.0050000000000000001,14.9236,0.077189999999999995,11.84,12.789,13.815,14.923999999999999,16.120999999999999,17.416,18.815000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,600,-0.0054999999999999997,14.9251,0.077189999999999995,11.842000000000001,12.791,13.817,14.925000000000001,16.123000000000001,17.417999999999999,18.817 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,601,-0.0060000000000000001,14.9267,0.077200000000000005,11.843,12.792,13.818,14.927,16.125,17.420000000000002,18.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,602,-0.0064000000000000003,14.9282,0.077200000000000005,11.843999999999999,12.792999999999999,13.819000000000001,14.928000000000001,16.126999999999999,17.422000000000001,18.821999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,603,-0.0068999999999999999,14.9298,0.077200000000000005,11.845000000000001,12.795,13.821,14.93,16.128,17.423999999999999,18.824000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,604,-0.0074000000000000003,14.9313,0.077200000000000005,11.847,12.795999999999999,13.821999999999999,14.930999999999999,16.13,17.425999999999998,18.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,605,-0.0079000000000000008,14.9329,0.077200000000000005,11.848000000000001,12.798,13.824,14.933,16.132000000000001,17.428000000000001,18.829000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,606,-0.0083000000000000001,14.9345,0.077200000000000005,11.85,12.798999999999999,13.824999999999999,14.933999999999999,16.134,17.43,18.831 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,607,-0.0088000000000000005,14.936,0.077200000000000005,11.851000000000001,12.8,13.827,14.936,16.135000000000002,17.431999999999999,18.832999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,608,-0.0092999999999999992,14.9376,0.077200000000000005,11.852,12.802,13.827999999999999,14.938000000000001,16.137,17.433,18.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,609,-0.0097999999999999997,14.9392,0.077210000000000001,11.853,12.803000000000001,13.83,14.939,16.138999999999999,17.436,18.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,610,-0.0103,14.9407,0.077210000000000001,11.855,12.804,13.831,14.941000000000001,16.14,17.437999999999999,18.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,611,-0.010699999999999999,14.942299999999999,0.077210000000000001,11.856,12.805999999999999,13.832000000000001,14.942,16.141999999999999,17.440000000000001,18.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,612,-0.0112,14.943899999999999,0.077210000000000001,11.858000000000001,12.807,13.834,14.944000000000001,16.143999999999998,17.442,18.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,613,-0.0117,14.945499999999999,0.077210000000000001,11.859,12.808999999999999,13.835000000000001,14.946,16.146000000000001,17.443999999999999,18.847000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,614,-0.012200000000000001,14.947100000000001,0.077210000000000001,11.861000000000001,12.81,13.837,14.946999999999999,16.146999999999998,17.446000000000002,18.849 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,615,-0.0126,14.948700000000001,0.077210000000000001,11.862,12.811999999999999,13.837999999999999,14.949,16.149000000000001,17.446999999999999,18.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,616,-0.013100000000000001,14.9503,0.077219999999999997,11.863,12.813000000000001,13.84,14.95,16.151,17.45,18.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,617,-0.013599999999999999,14.9519,0.077219999999999997,11.864000000000001,12.814,13.840999999999999,14.952,16.152999999999999,17.452000000000002,18.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,618,-0.014,14.9535,0.077219999999999997,11.866,12.816000000000001,13.843,14.954000000000001,16.155000000000001,17.454000000000001,18.859000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,619,-0.014500000000000001,14.9551,0.077219999999999997,11.867000000000001,12.817,13.843999999999999,14.955,16.155999999999999,17.456,18.861000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,620,-0.014999999999999999,14.9567,0.077219999999999997,11.869,12.819000000000001,13.846,14.957000000000001,16.158000000000001,17.457999999999998,18.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,621,-0.0155,14.958299999999999,0.077219999999999997,11.87,12.82,13.847,14.958,16.16,17.46,18.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,622,-0.015900000000000001,14.959899999999999,0.077219999999999997,11.871,12.821,13.849,14.96,16.161999999999999,17.462,18.867999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,623,-0.016400000000000001,14.961600000000001,0.077229999999999993,11.872999999999999,12.823,13.85,14.962,16.164000000000001,17.463999999999999,18.870999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,624,-0.016899999999999998,14.963200000000001,0.077229999999999993,11.874000000000001,12.824,13.852,14.962999999999999,16.164999999999999,17.466000000000001,18.873000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,625,-0.017299999999999999,14.9648,0.077229999999999993,11.875,12.826000000000001,13.853,14.965,16.167000000000002,17.468,18.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,626,-0.0178,14.9665,0.077229999999999993,11.877000000000001,12.827,13.855,14.965999999999999,16.169,17.47,18.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,627,-0.0183,14.9681,0.077229999999999993,11.878,12.829000000000001,13.856,14.968,16.170999999999999,17.472000000000001,18.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,628,-0.018700000000000001,14.9697,0.077229999999999993,11.88,12.83,13.858000000000001,14.97,16.172999999999998,17.474,18.882000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,629,-0.019199999999999998,14.971399999999999,0.077240000000000003,11.881,12.831,13.859,14.971,16.175000000000001,17.475999999999999,18.885000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,630,-0.019699999999999999,14.973000000000001,0.077240000000000003,11.882,12.833,13.861000000000001,14.973000000000001,16.175999999999998,17.478000000000002,18.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,631,-0.0201,14.9747,0.077240000000000003,11.884,12.834,13.862,14.975,16.178000000000001,17.48,18.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,632,-0.0206,14.9763,0.077240000000000003,11.885,12.836,13.864000000000001,14.976000000000001,16.18,17.481999999999999,18.891999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,633,-0.021100000000000001,14.978,0.077240000000000003,11.887,12.837,13.866,14.978,16.181999999999999,17.484000000000002,18.893999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,634,-0.021499999999999998,14.979699999999999,0.077240000000000003,11.888,12.839,13.867000000000001,14.98,16.184000000000001,17.486999999999998,18.896999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,635,-0.021999999999999999,14.981299999999999,0.077249999999999999,11.888999999999999,12.84,13.868,14.981,16.186,17.489000000000001,18.899999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,636,-0.022499999999999999,14.983000000000001,0.077249999999999999,11.891,12.842000000000001,13.87,14.983000000000001,16.187000000000001,17.491,18.902000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,637,-0.0229,14.9847,0.077249999999999999,11.891999999999999,12.843,13.872,14.984999999999999,16.189,17.492999999999999,18.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,638,-0.023400000000000001,14.9863,0.077249999999999999,11.894,12.843999999999999,13.872999999999999,14.986000000000001,16.190999999999999,17.495000000000001,18.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,639,-0.023800000000000002,14.988,0.077249999999999999,11.895,12.846,13.875,14.988,16.193000000000001,17.497,18.908999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,640,-0.024299999999999999,14.989699999999999,0.077249999999999999,11.897,12.848000000000001,13.875999999999999,14.99,16.195,17.498999999999999,18.911000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,641,-0.024799999999999999,14.991400000000001,0.077259999999999995,11.898,12.849,13.878,14.991,16.196999999999999,17.501999999999999,18.914000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,642,-0.0252,14.9931,0.077259999999999995,11.898999999999999,12.85,13.879,14.993,16.199000000000002,17.504000000000001,18.917000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,643,-0.025700000000000001,14.9948,0.077259999999999995,11.901,12.852,13.881,14.994999999999999,16.2,17.506,18.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,644,-0.026100000000000002,14.996499999999999,0.077259999999999995,11.901999999999999,12.853,13.882999999999999,14.996,16.202000000000002,17.507999999999999,18.922000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,645,-0.026599999999999999,14.998200000000001,0.077259999999999995,11.904,12.855,13.884,14.997999999999999,16.204000000000001,17.510000000000002,18.923999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,646,-0.027099999999999999,14.9999,0.077259999999999995,11.904999999999999,12.856,13.885999999999999,15,16.206,17.512,18.925999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,647,-0.0275,15.0016,0.077270000000000005,11.906000000000001,12.858000000000001,13.887,15.002000000000001,16.207999999999998,17.513999999999999,18.928999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,648,-0.028000000000000001,15.003299999999999,0.077270000000000005,11.907999999999999,12.859,13.888999999999999,15.003,16.21,17.516999999999999,18.931999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,649,-0.028400000000000002,15.005000000000001,0.077270000000000005,11.909000000000001,12.861000000000001,13.89,15.005000000000001,16.212,17.518999999999998,18.934000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,650,-0.028899999999999999,15.0067,0.077270000000000005,11.911,12.862,13.891999999999999,15.007,16.213999999999999,17.521000000000001,18.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,651,-0.029399999999999999,15.0084,0.077270000000000005,11.912000000000001,12.864000000000001,13.894,15.007999999999999,16.216000000000001,17.523,18.939 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,652,-0.0298,15.0101,0.077270000000000005,11.914,12.865,13.895,15.01,16.216999999999999,17.524999999999999,18.940999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,653,-0.030300000000000001,15.011900000000001,0.077280000000000001,11.914999999999999,12.867000000000001,13.897,15.012,16.219000000000001,17.527000000000001,18.943999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,654,-0.030700000000000002,15.0136,0.077280000000000001,11.917,12.868,13.898,15.013999999999999,16.221,17.529,18.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,655,-0.031199999999999999,15.0153,0.077280000000000001,11.917999999999999,12.87,13.9,15.015000000000001,16.222999999999999,17.532,18.949000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,656,-0.031600000000000003,15.017099999999999,0.077280000000000001,11.92,12.871,13.901999999999999,15.016999999999999,16.225000000000001,17.533999999999999,18.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,657,-0.032099999999999997,15.018800000000001,0.077280000000000001,11.920999999999999,12.872999999999999,13.903,15.019,16.227,17.536000000000001,18.954000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,658,-0.032500000000000001,15.0205,0.077289999999999998,11.922000000000001,12.874000000000001,13.904999999999999,15.02,16.228999999999999,17.538,18.957000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,659,-0.033000000000000002,15.0223,0.077289999999999998,11.923999999999999,12.875999999999999,13.906000000000001,15.022,16.231000000000002,17.54,18.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,660,-0.033399999999999999,15.023999999999999,0.077289999999999998,11.925000000000001,12.877000000000001,13.907999999999999,15.023999999999999,16.233000000000001,17.542999999999999,18.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,661,-0.0339,15.0258,0.077289999999999998,11.927,12.879,13.91,15.026,16.234999999999999,17.545000000000002,18.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,662,-0.034299999999999997,15.0275,0.077289999999999998,11.928000000000001,12.88,13.911,15.028,16.236999999999998,17.547000000000001,18.966999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,663,-0.034799999999999998,15.029299999999999,0.077289999999999998,11.93,12.882,13.913,15.029,16.239000000000001,17.548999999999999,18.969000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,664,-0.035200000000000002,15.0311,0.077299999999999994,11.930999999999999,12.882999999999999,13.914,15.031000000000001,16.241,17.552,18.972000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,665,-0.035700000000000003,15.0328,0.077299999999999994,11.933,12.885,13.916,15.032999999999999,16.242999999999999,17.553999999999998,18.975000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,666,-0.0361,15.034599999999999,0.077299999999999994,11.933999999999999,12.887,13.917999999999999,15.035,16.245000000000001,17.556000000000001,18.977 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,667,-0.036600000000000001,15.0364,0.077299999999999994,11.936,12.888,13.919,15.036,16.247,17.558,18.98 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,668,-0.036999999999999998,15.0381,0.077299999999999994,11.936999999999999,12.89,13.920999999999999,15.038,16.248000000000001,17.559999999999999,18.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,669,-0.037499999999999999,15.039899999999999,0.077310000000000004,11.939,12.891,13.923,15.04,16.251000000000001,17.562999999999999,18.984999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,670,-0.037900000000000003,15.041700000000001,0.077310000000000004,11.94,12.893000000000001,13.923999999999999,15.042,16.253,17.565000000000001,18.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,671,-0.038399999999999997,15.0435,0.077310000000000004,11.942,12.894,13.926,15.044,16.254999999999999,17.567,18.989999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,672,-0.038800000000000001,15.045299999999999,0.077310000000000004,11.943,12.896000000000001,13.928000000000001,15.045,16.256,17.568999999999999,18.992999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,673,-0.039300000000000002,15.0471,0.077310000000000004,11.945,12.897,13.929,15.047000000000001,16.257999999999999,17.571000000000002,18.995000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,674,-0.039699999999999999,15.0488,0.07732,11.946,12.898999999999999,13.930999999999999,15.048999999999999,16.260000000000002,17.574000000000002,18.998000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,675,-0.0402,15.050599999999999,0.07732,11.948,12.9,13.932,15.051,16.262,17.576000000000001,19.001000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,676,-0.040599999999999997,15.0524,0.07732,11.949,12.901999999999999,13.933999999999999,15.052,16.263999999999999,17.577999999999999,19.003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,677,-0.041099999999999998,15.0542,0.07732,11.951000000000001,12.904,13.936,15.054,16.265999999999998,17.581,19.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,678,-0.041500000000000002,15.055999999999999,0.077329999999999996,11.952,12.904999999999999,13.936999999999999,15.055999999999999,16.268999999999998,17.582999999999998,19.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,679,-0.042000000000000003,15.0578,0.077329999999999996,11.954000000000001,12.907,13.939,15.058,16.27,17.585000000000001,19.010999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,680,-0.0424,15.059699999999999,0.077329999999999996,11.955,12.907999999999999,13.941000000000001,15.06,16.273,17.588000000000001,19.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,681,-0.042799999999999998,15.061500000000001,0.077329999999999996,11.957000000000001,12.91,13.942,15.061999999999999,16.274999999999999,17.59,19.015999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,682,-0.043299999999999998,15.0633,0.077329999999999996,11.958,12.911,13.944000000000001,15.063000000000001,16.276,17.591999999999999,19.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,683,-0.043700000000000003,15.065099999999999,0.077340000000000006,11.96,12.913,13.946,15.065,16.279,17.594000000000001,19.021999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,684,-0.044200000000000003,15.0669,0.077340000000000006,11.961,12.914,13.946999999999999,15.067,16.280999999999999,17.597000000000001,19.024000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,685,-0.044600000000000001,15.0687,0.077340000000000006,11.962999999999999,12.916,13.949,15.069000000000001,16.283000000000001,17.599,19.027000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,686,-0.044999999999999998,15.070600000000001,0.077340000000000006,11.964,12.917999999999999,13.951000000000001,15.071,16.285,17.600999999999999,19.029 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,687,-0.045499999999999999,15.0724,0.077340000000000006,11.965999999999999,12.919,13.952999999999999,15.071999999999999,16.286999999999999,17.603000000000002,19.032 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,688,-0.045900000000000003,15.074199999999999,0.077350000000000002,11.967000000000001,12.920999999999999,13.954000000000001,15.074,16.289000000000001,17.606000000000002,19.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,689,-0.046399999999999997,15.076000000000001,0.077350000000000002,11.968999999999999,12.922000000000001,13.956,15.076000000000001,16.291,17.608000000000001,19.038 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,690,-0.046800000000000001,15.0779,0.077350000000000002,11.97,12.923999999999999,13.958,15.077999999999999,16.292999999999999,17.61,19.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,691,-0.047199999999999999,15.079700000000001,0.077350000000000002,11.972,12.926,13.959,15.08,16.295000000000002,17.613,19.042999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,692,-0.047699999999999999,15.0815,0.077359999999999998,11.973000000000001,12.927,13.961,15.082000000000001,16.297000000000001,17.614999999999998,19.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,693,-0.048099999999999997,15.083399999999999,0.077359999999999998,11.975,12.929,13.962999999999999,15.083,16.298999999999999,17.617999999999999,19.047999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,694,-0.048599999999999997,15.0852,0.077359999999999998,11.976000000000001,12.93,13.964,15.085000000000001,16.300999999999998,17.62,19.050999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,695,-0.049000000000000002,15.0871,0.077359999999999998,11.978,12.932,13.965999999999999,15.087,16.303000000000001,17.622,19.053000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,696,-0.049399999999999999,15.088900000000001,0.077369999999999994,11.978999999999999,12.933,13.968,15.089,16.305,17.625,19.056999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,697,-0.0499,15.0908,0.077369999999999994,11.981,12.935,13.968999999999999,15.090999999999999,16.306999999999999,17.626999999999999,19.059000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,698,-0.050299999999999997,15.092599999999999,0.077369999999999994,11.981999999999999,12.936999999999999,13.971,15.093,16.309000000000001,17.629000000000001,19.062000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,699,-0.050700000000000002,15.0945,0.077369999999999994,11.984,12.938000000000001,13.973000000000001,15.093999999999999,16.311,17.631,19.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,700,-0.051200000000000002,15.096299999999999,0.077380000000000004,11.984999999999999,12.94,13.974,15.096,16.312999999999999,17.634,19.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,701,-0.0516,15.0982,0.077380000000000004,11.987,12.941000000000001,13.976000000000001,15.098000000000001,16.315000000000001,17.635999999999999,19.07 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,702,-0.0521,15.1,0.077380000000000004,11.988,12.943,13.978,15.1,16.317,17.638000000000002,19.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,703,-0.052499999999999998,15.101900000000001,0.077380000000000004,11.99,12.945,13.98,15.102,16.318999999999999,17.640999999999998,19.074999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,704,-0.052900000000000003,15.1037,0.07739,11.991,12.946,13.981,15.103999999999999,16.321999999999999,17.643000000000001,19.077999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,705,-0.053400000000000003,15.105600000000001,0.07739,11.993,12.948,13.983000000000001,15.106,16.324000000000002,17.646000000000001,19.081 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,706,-0.053800000000000001,15.1075,0.07739,11.994999999999999,12.949,13.984999999999999,15.108000000000001,16.326000000000001,17.648,19.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,707,-0.054199999999999998,15.109299999999999,0.07739,11.996,12.951000000000001,13.986000000000001,15.109,16.327999999999999,17.649999999999999,19.085999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,708,-0.054600000000000003,15.1112,0.077399999999999997,11.997,12.952,13.988,15.111000000000001,16.329999999999998,17.652999999999999,19.088999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,709,-0.055100000000000003,15.113099999999999,0.077399999999999997,11.999000000000001,12.954000000000001,13.99,15.113,16.332000000000001,17.655000000000001,19.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,710,-0.055500000000000001,15.1149,0.077399999999999997,12.000999999999999,12.956,13.991,15.115,16.334,17.657,19.094000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,711,-0.055899999999999998,15.1168,0.077399999999999997,12.002000000000001,12.957000000000001,13.993,15.117000000000001,16.335999999999999,17.66,19.097000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,712,-0.056399999999999999,15.1187,0.077410000000000007,12.004,12.959,13.994999999999999,15.119,16.338000000000001,17.661999999999999,19.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,713,-0.056800000000000003,15.1206,0.077410000000000007,12.005000000000001,12.961,13.997,15.121,16.34,17.664999999999999,19.103000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,714,-0.057200000000000001,15.122400000000001,0.077410000000000007,12.007,12.962,13.997999999999999,15.122,16.341999999999999,17.667000000000002,19.105 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,715,-0.057700000000000001,15.1243,0.077410000000000007,12.009,12.964,14,15.124000000000001,16.344000000000001,17.669,19.108000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,716,-0.058099999999999999,15.126200000000001,0.077420000000000003,12.01,12.965,14.002000000000001,15.125999999999999,16.347000000000001,17.672000000000001,19.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,717,-0.058500000000000003,15.1281,0.077420000000000003,12.010999999999999,12.967000000000001,14.004,15.128,16.349,17.673999999999999,19.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,718,-0.058900000000000001,15.13,0.077420000000000003,12.013,12.968999999999999,14.005000000000001,15.13,16.350999999999999,17.675999999999998,19.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,719,-0.059400000000000001,15.1318,0.077420000000000003,12.015000000000001,12.97,14.007,15.132,16.353000000000002,17.678999999999998,19.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,720,-0.059799999999999999,15.133699999999999,0.077429999999999999,12.016,12.972,14.009,15.134,16.355,17.681000000000001,19.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,721,-0.060199999999999997,15.1356,0.077429999999999999,12.018000000000001,12.973000000000001,14.01,15.135999999999999,16.356999999999999,17.684000000000001,19.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,722,-0.060699999999999997,15.137499999999999,0.077429999999999999,12.019,12.975,14.012,15.138,16.359000000000002,17.686,19.126999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,723,-0.061100000000000002,15.1394,0.077439999999999995,12.021000000000001,12.977,14.013999999999999,15.138999999999999,16.361000000000001,17.689,19.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,724,-0.061499999999999999,15.141299999999999,0.077439999999999995,12.022,12.978,14.016,15.141,16.363,17.690999999999999,19.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,725,-0.061899999999999997,15.1432,0.077439999999999995,12.023999999999999,12.98,14.016999999999999,15.143000000000001,16.366,17.693000000000001,19.135999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,726,-0.062399999999999997,15.145099999999999,0.077439999999999995,12.025,12.981999999999999,14.019,15.145,16.367999999999999,17.695,19.138000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,727,-0.062799999999999995,15.147,0.077450000000000005,12.026999999999999,12.983000000000001,14.021000000000001,15.147,16.37,17.698,19.141999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,728,-0.063200000000000006,15.1488,0.077450000000000005,12.028,12.984999999999999,14.022,15.148999999999999,16.372,17.7,19.143999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,729,-0.063600000000000004,15.150700000000001,0.077450000000000005,12.03,12.986000000000001,14.023999999999999,15.151,16.373999999999999,17.702999999999999,19.146999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,730,-0.064100000000000004,15.1526,0.077460000000000001,12.031000000000001,12.988,14.026,15.153,16.376000000000001,17.704999999999998,19.149999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,731,-0.064500000000000002,15.154500000000001,0.077460000000000001,12.032999999999999,12.99,14.028,15.154,16.378,17.707999999999998,19.152999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,732,-0.064899999999999999,15.1564,0.077460000000000001,12.035,12.991,14.029,15.156000000000001,16.38,17.71,19.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,733,-0.065299999999999997,15.158300000000001,0.077460000000000001,12.036,12.993,14.031000000000001,15.157999999999999,16.382000000000001,17.712,19.158000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,734,-0.065699999999999995,15.1602,0.077469999999999997,12.037000000000001,12.994,14.032999999999999,15.16,16.385000000000002,17.715,19.161000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,735,-0.066199999999999995,15.162100000000001,0.077469999999999997,12.039,12.996,14.035,15.162000000000001,16.387,17.716999999999999,19.164000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,736,-0.066600000000000006,15.164,0.077469999999999997,12.041,12.997999999999999,14.036,15.164,16.388999999999999,17.72,19.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,737,-0.067000000000000004,15.165900000000001,0.077479999999999993,12.042,12.999000000000001,14.038,15.166,16.390999999999998,17.722000000000001,19.169 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,738,-0.067400000000000002,15.1678,0.077479999999999993,12.044,13.000999999999999,14.04,15.167999999999999,16.393000000000001,17.725000000000001,19.172000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,739,-0.067900000000000002,15.169700000000001,0.077479999999999993,12.045,13.003,14.042,15.17,16.395,17.727,19.175000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,740,-0.0683,15.1716,0.077490000000000003,12.047000000000001,13.004,14.042999999999999,15.172000000000001,16.396999999999998,17.73,19.178000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,741,-0.068699999999999997,15.173500000000001,0.077490000000000003,12.048,13.006,14.045,15.173999999999999,16.399000000000001,17.731999999999999,19.181000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,742,-0.069099999999999995,15.1754,0.077490000000000003,12.05,13.007,14.047000000000001,15.175000000000001,16.402000000000001,17.734000000000002,19.183 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,743,-0.069500000000000006,15.1774,0.077490000000000003,12.052,13.009,14.048999999999999,15.177,16.404,17.736999999999998,19.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,744,-0.069900000000000004,15.1793,0.077499999999999999,12.053000000000001,13.010999999999999,14.05,15.179,16.405999999999999,17.739000000000001,19.189 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,745,-0.070400000000000004,15.1812,0.077499999999999999,12.055,13.012,14.052,15.180999999999999,16.408000000000001,17.742000000000001,19.192 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,746,-0.070800000000000002,15.1831,0.077499999999999999,12.055999999999999,13.013999999999999,14.054,15.183,16.41,17.744,19.193999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,747,-0.071199999999999999,15.185,0.077509999999999996,12.057,13.015000000000001,14.055,15.185,16.411999999999999,17.747,19.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,748,-0.071599999999999997,15.1869,0.077509999999999996,12.058999999999999,13.016999999999999,14.057,15.186999999999999,16.414000000000001,17.748999999999999,19.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,749,-0.071999999999999995,15.188800000000001,0.077509999999999996,12.061,13.019,14.058999999999999,15.189,16.416,17.751000000000001,19.202999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,750,-0.072499999999999995,15.1907,0.077520000000000006,12.061999999999999,13.02,14.061,15.191000000000001,16.419,17.754000000000001,19.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,751,-0.072900000000000006,15.192600000000001,0.077520000000000006,12.064,13.022,14.061999999999999,15.193,16.420999999999999,17.756,19.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,752,-0.073300000000000004,15.1945,0.077520000000000006,12.065,13.023999999999999,14.064,15.194000000000001,16.422999999999998,17.757999999999999,19.210999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,753,-0.073700000000000002,15.196400000000001,0.077530000000000002,12.067,13.025,14.066000000000001,15.196,16.425000000000001,17.760999999999999,19.213999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,754,-0.074099999999999999,15.1983,0.077530000000000002,12.068,13.026999999999999,14.068,15.198,16.427,17.763000000000002,19.216999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,755,-0.074499999999999997,15.200200000000001,0.077530000000000002,12.07,13.028,14.069000000000001,15.2,16.428999999999998,17.765999999999998,19.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,756,-0.074899999999999994,15.2021,0.077539999999999998,12.071,13.03,14.071,15.202,16.431000000000001,17.768000000000001,19.222999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,757,-0.075399999999999995,15.204000000000001,0.077539999999999998,12.073,13.032,14.073,15.204000000000001,16.434000000000001,17.771000000000001,19.225999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,758,-0.075800000000000006,15.2059,0.077539999999999998,12.074,13.032999999999999,14.074999999999999,15.206,16.436,17.773,19.228000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,759,-0.076200000000000004,15.2079,0.077549999999999994,12.076000000000001,13.035,14.076000000000001,15.208,16.437999999999999,17.776,19.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,760,-0.076600000000000001,15.2098,0.077549999999999994,12.077,13.037000000000001,14.077999999999999,15.21,16.440000000000001,17.777999999999999,19.234000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,761,-0.076999999999999999,15.2117,0.077549999999999994,12.079000000000001,13.038,14.08,15.212,16.442,17.78,19.236999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,762,-0.077399999999999997,15.2136,0.077560000000000004,12.08,13.04,14.081,15.214,16.443999999999999,17.783000000000001,19.239999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,763,-0.077799999999999994,15.2155,0.077560000000000004,12.082000000000001,13.041,14.083,15.215999999999999,16.446000000000002,17.785,19.242999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,764,-0.078200000000000006,15.2174,0.077560000000000004,12.084,13.042999999999999,14.085000000000001,15.217000000000001,16.449000000000002,17.788,19.245000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,765,-0.078700000000000006,15.2193,0.07757,12.085000000000001,13.044,14.087,15.218999999999999,16.451000000000001,17.79,19.248000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,766,-0.079100000000000004,15.2212,0.07757,12.087,13.045999999999999,14.087999999999999,15.221,16.452999999999999,17.792999999999999,19.251000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,767,-0.079500000000000001,15.223100000000001,0.077579999999999996,12.087999999999999,13.048,14.09,15.223000000000001,16.454999999999998,17.795000000000002,19.254000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,768,-0.079899999999999999,15.225,0.077579999999999996,12.089,13.048999999999999,14.092000000000001,15.225,16.457000000000001,17.797999999999998,19.257000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,769,-0.080299999999999996,15.226900000000001,0.077579999999999996,12.090999999999999,13.051,14.093999999999999,15.227,16.459,17.8,19.260000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,770,-0.080699999999999994,15.2288,0.077590000000000006,12.092000000000001,13.052,14.095000000000001,15.228999999999999,16.460999999999999,17.803000000000001,19.263000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,771,-0.081100000000000005,15.230700000000001,0.077590000000000006,12.093999999999999,13.054,14.097,15.231,16.463999999999999,17.805,19.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,772,-0.081500000000000003,15.2326,0.077590000000000006,12.096,13.055999999999999,14.099,15.233000000000001,16.466000000000001,17.806999999999999,19.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,773,-0.081900000000000001,15.234500000000001,0.077600000000000002,12.097,13.057,14.1,15.234,16.468,17.809999999999999,19.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,774,-0.082299999999999998,15.2364,0.077600000000000002,12.099,13.058999999999999,14.102,15.236000000000001,16.47,17.812000000000001,19.274000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,775,-0.082699999999999996,15.238300000000001,0.077600000000000002,12.1,13.061,14.103999999999999,15.238,16.472000000000001,17.815000000000001,19.276 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,776,-0.083099999999999993,15.2402,0.077609999999999998,12.102,13.061999999999999,14.106,15.24,16.474,17.817,19.28 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,777,-0.083599999999999994,15.242100000000001,0.077609999999999998,12.103,13.064,14.106999999999999,15.242000000000001,16.475999999999999,17.82,19.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,778,-0.084000000000000005,15.244,0.077619999999999995,12.103999999999999,13.065,14.109,15.244,16.478999999999999,17.821999999999999,19.286000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,779,-0.084400000000000003,15.245900000000001,0.077619999999999995,12.106,13.067,14.111000000000001,15.246,16.481000000000002,17.824999999999999,19.288 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,780,-0.0848,15.2478,0.077619999999999995,12.108000000000001,13.069000000000001,14.113,15.247999999999999,16.483000000000001,17.827000000000002,19.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,781,-0.085199999999999998,15.249700000000001,0.077630000000000005,12.109,13.07,14.114000000000001,15.25,16.484999999999999,17.829999999999998,19.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,782,-0.085599999999999996,15.2516,0.077630000000000005,12.111000000000001,13.071999999999999,14.116,15.252000000000001,16.486999999999998,17.832000000000001,19.297000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,783,-0.085999999999999993,15.253500000000001,0.077630000000000005,12.112,13.073,14.118,15.254,16.489000000000001,17.834,19.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,784,-0.086400000000000005,15.2554,0.077640000000000001,12.114000000000001,13.074999999999999,14.119,15.255000000000001,16.491,17.837,19.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,785,-0.086800000000000002,15.257300000000001,0.077640000000000001,12.115,13.076000000000001,14.121,15.257,16.492999999999999,17.838999999999999,19.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,786,-0.0872,15.2591,0.077649999999999997,12.116,13.077999999999999,14.122999999999999,15.259,16.495999999999999,17.841999999999999,19.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,787,-0.087599999999999997,15.260999999999999,0.077649999999999997,12.118,13.08,14.125,15.260999999999999,16.498000000000001,17.844000000000001,19.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,788,-0.087999999999999995,15.2629,0.077649999999999997,12.12,13.081,14.125999999999999,15.263,16.5,17.846,19.312999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,789,-0.088400000000000006,15.264799999999999,0.077660000000000007,12.121,13.083,14.128,15.265000000000001,16.501999999999999,17.849,19.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,790,-0.088800000000000004,15.2667,0.077660000000000007,12.122999999999999,13.084,14.13,15.266999999999999,16.504000000000001,17.850999999999999,19.318999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,791,-0.089200000000000002,15.268599999999999,0.077670000000000003,12.124000000000001,13.086,14.131,15.269,16.506,17.853999999999999,19.321999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,792,-0.089599999999999999,15.2705,0.077670000000000003,12.125999999999999,13.087,14.132999999999999,15.27,16.507999999999999,17.856000000000002,19.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,793,-0.09,15.2723,0.077670000000000003,12.127000000000001,13.089,14.135,15.272,16.510000000000002,17.858000000000001,19.327000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,794,-0.090399999999999994,15.2742,0.077679999999999999,12.128,13.09,14.135999999999999,15.273999999999999,16.513000000000002,17.861000000000001,19.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,795,-0.090800000000000006,15.2761,0.077679999999999999,12.13,13.092000000000001,14.138,15.276,16.515000000000001,17.863,19.332999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,796,-0.091200000000000003,15.278,0.077689999999999995,12.131,13.093999999999999,14.14,15.278,16.516999999999999,17.866,19.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,797,-0.091600000000000001,15.2799,0.077689999999999995,12.132999999999999,13.095000000000001,14.141999999999999,15.28,16.518999999999998,17.867999999999999,19.338999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,798,-0.091999999999999998,15.281700000000001,0.077689999999999995,12.134,13.097,14.143000000000001,15.282,16.521000000000001,17.870999999999999,19.341999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,799,-0.092399999999999996,15.2836,0.077700000000000005,12.135999999999999,13.098000000000001,14.145,15.284000000000001,16.523,17.873000000000001,19.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,800,-0.092799999999999994,15.285500000000001,0.077700000000000005,12.137,13.1,14.147,15.286,16.524999999999999,17.876000000000001,19.347000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,801,-0.093200000000000005,15.2873,0.077710000000000001,12.138999999999999,13.101000000000001,14.148,15.287000000000001,16.527000000000001,17.878,19.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,802,-0.093600000000000003,15.289199999999999,0.077710000000000001,12.14,13.103,14.15,15.289,16.529,17.88,19.353000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,803,-0.094,15.2911,0.077710000000000001,12.141999999999999,13.105,14.151999999999999,15.291,16.530999999999999,17.882999999999999,19.356000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,804,-0.094399999999999998,15.292999999999999,0.077719999999999997,12.143000000000001,13.106,14.153,15.292999999999999,16.533999999999999,17.885000000000002,19.359000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,805,-0.094799999999999995,15.2948,0.077719999999999997,12.145,13.108000000000001,14.154999999999999,15.295,16.536000000000001,17.888000000000002,19.361999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,806,-0.095200000000000007,15.2967,0.077729999999999994,12.146000000000001,13.109,14.157,15.297000000000001,16.538,17.89,19.364999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,807,-0.095600000000000004,15.298500000000001,0.077729999999999994,12.148,13.111000000000001,14.157999999999999,15.298,16.54,17.891999999999999,19.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,808,-0.096000000000000002,15.3004,0.077740000000000004,12.148999999999999,13.112,14.16,15.3,16.542000000000002,17.895,19.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,809,-0.0964,15.302300000000001,0.077740000000000004,12.15,13.114000000000001,14.162000000000001,15.302,16.544,17.896999999999998,19.373000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,810,-0.096799999999999997,15.3041,0.077740000000000004,12.151999999999999,13.116,14.164,15.304,16.545999999999999,17.899999999999999,19.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,811,-0.097199999999999995,15.305999999999999,0.07775,12.153,13.117000000000001,14.164999999999999,15.305999999999999,16.547999999999998,17.902000000000001,19.379000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,812,-0.097600000000000006,15.3078,0.07775,12.154999999999999,13.119,14.167,15.308,16.55,17.905000000000001,19.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,813,-0.098000000000000004,15.309699999999999,0.077759999999999996,12.156000000000001,13.12,14.169,15.31,16.553000000000001,17.907,19.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,814,-0.098400000000000001,15.311500000000001,0.077759999999999996,12.157999999999999,13.122,14.17,15.311999999999999,16.555,17.908999999999999,19.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,815,-0.098799999999999999,15.3134,0.077770000000000006,12.159000000000001,13.122999999999999,14.172000000000001,15.313000000000001,16.556999999999999,17.911999999999999,19.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,816,-0.099199999999999997,15.315200000000001,0.077770000000000006,12.161,13.125,14.173999999999999,15.315,16.559000000000001,17.914000000000001,19.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,817,-0.099599999999999994,15.3171,0.077780000000000002,12.162000000000001,13.125999999999999,14.175000000000001,15.317,16.561,17.917000000000002,19.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,818,-0.099900000000000003,15.318899999999999,0.077780000000000002,12.163,13.128,14.177,15.319000000000001,16.562999999999999,17.919,19.398 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,819,-0.1003,15.3207,0.077780000000000002,12.164999999999999,13.129,14.178000000000001,15.321,16.565000000000001,17.920999999999999,19.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,820,-0.1007,15.3226,0.077789999999999998,12.166,13.131,14.18,15.323,16.567,17.923999999999999,19.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,821,-0.1011,15.324400000000001,0.077789999999999998,12.167999999999999,13.132,14.182,15.324,16.568999999999999,17.925999999999998,19.407 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,822,-0.10150000000000001,15.3263,0.077799999999999994,12.169,13.134,14.183,15.326000000000001,16.571000000000002,17.928999999999998,19.41 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,823,-0.1019,15.328099999999999,0.077799999999999994,12.170999999999999,13.135,14.185,15.327999999999999,16.573,17.931000000000001,19.411999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,824,-0.1023,15.3299,0.077810000000000004,12.172000000000001,13.137,14.186999999999999,15.33,16.576000000000001,17.934000000000001,19.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,825,-0.1027,15.331799999999999,0.077810000000000004,12.173,13.138,14.188000000000001,15.332000000000001,16.577999999999999,17.936,19.417999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,826,-0.1031,15.333600000000001,0.07782,12.175000000000001,13.14,14.19,15.334,16.579999999999998,17.937999999999999,19.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,827,-0.10349999999999999,15.3354,0.07782,12.176,13.141,14.192,15.335000000000001,16.582000000000001,17.940999999999999,19.423999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,828,-0.10390000000000001,15.337199999999999,0.07782,12.178000000000001,13.143000000000001,14.193,15.337,16.584,17.943000000000001,19.425999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,829,-0.1043,15.3391,0.077829999999999996,12.179,13.144,14.195,15.339,16.585999999999999,17.946000000000002,19.428999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,830,-0.1046,15.3409,0.077829999999999996,12.180999999999999,13.146000000000001,14.196999999999999,15.340999999999999,16.588000000000001,17.948,19.431999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,831,-0.105,15.342700000000001,0.077840000000000006,12.182,13.147,14.198,15.343,16.59,17.95,19.434999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,832,-0.10539999999999999,15.3445,0.077840000000000006,12.183,13.148999999999999,14.2,15.343999999999999,16.591999999999999,17.952000000000002,19.437000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,833,-0.10580000000000001,15.346299999999999,0.077850000000000003,12.183999999999999,13.15,14.201000000000001,15.346,16.594000000000001,17.954999999999998,19.440000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,834,-0.1062,15.348100000000001,0.077850000000000003,12.186,13.151999999999999,14.202999999999999,15.348000000000001,16.596,17.957000000000001,19.443000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,835,-0.1066,15.3499,0.077859999999999999,12.186999999999999,13.153,14.205,15.35,16.597999999999999,17.96,19.446000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,836,-0.107,15.351699999999999,0.077859999999999999,12.189,13.154999999999999,14.206,15.352,16.600000000000001,17.962,19.449000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,837,-0.1074,15.3536,0.077869999999999995,12.19,13.156000000000001,14.208,15.353999999999999,16.602,17.965,19.452000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,838,-0.1077,15.355399999999999,0.077869999999999995,12.192,13.157999999999999,14.21,15.355,16.603999999999999,17.966999999999999,19.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,839,-0.1081,15.357200000000001,0.077880000000000005,12.193,13.159000000000001,14.211,15.356999999999999,16.606000000000002,17.969000000000001,19.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,840,-0.1085,15.359,0.077880000000000005,12.194000000000001,13.161,14.212999999999999,15.359,16.608000000000001,17.972000000000001,19.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,841,-0.1089,15.360799999999999,0.077890000000000001,12.196,13.162000000000001,14.214,15.361000000000001,16.611000000000001,17.974,19.463000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,842,-0.10929999999999999,15.362500000000001,0.077890000000000001,12.196999999999999,13.164,14.215999999999999,15.362,16.611999999999998,17.975999999999999,19.465 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,843,-0.10970000000000001,15.3643,0.077899999999999997,12.198,13.164999999999999,14.218,15.364000000000001,16.614999999999998,17.978999999999999,19.468 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,844,-0.1101,15.366099999999999,0.077899999999999997,12.2,13.167,14.218999999999999,15.366,16.617000000000001,17.981000000000002,19.471 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,845,-0.1105,15.367900000000001,0.077899999999999997,12.201000000000001,13.167999999999999,14.221,15.368,16.619,17.983000000000001,19.472999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,846,-0.1108,15.3697,0.077909999999999993,12.202999999999999,13.17,14.222,15.37,16.620999999999999,17.986000000000001,19.475999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,847,-0.11119999999999999,15.371499999999999,0.077909999999999993,12.204000000000001,13.170999999999999,14.224,15.372,16.623000000000001,17.988,19.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,848,-0.1116,15.3733,0.077920000000000003,12.205,13.173,14.226000000000001,15.372999999999999,16.625,17.989999999999998,19.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,849,-0.112,15.375,0.077920000000000003,12.207000000000001,13.173999999999999,14.227,15.375,16.626999999999999,17.992999999999999,19.484000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,850,-0.1124,15.376799999999999,0.077929999999999999,12.208,13.175000000000001,14.228999999999999,15.377000000000001,16.629000000000001,17.995000000000001,19.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,851,-0.1128,15.3786,0.077929999999999999,12.21,13.177,14.23,15.379,16.631,17.997,19.489999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,852,-0.11310000000000001,15.3804,0.077939999999999995,12.211,13.178000000000001,14.231999999999999,15.38,16.632999999999999,18,19.492999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,853,-0.1135,15.382099999999999,0.077939999999999995,12.212,13.18,14.234,15.382,16.635000000000002,18.001999999999999,19.495000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,854,-0.1139,15.383900000000001,0.077950000000000005,12.212999999999999,13.180999999999999,14.234999999999999,15.384,16.637,18.004999999999999,19.498999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,855,-0.1143,15.3857,0.077950000000000005,12.215,13.183,14.237,15.385999999999999,16.638999999999999,18.007000000000001,19.501000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,856,-0.1147,15.3874,0.077960000000000002,12.215999999999999,13.183999999999999,14.238,15.387,16.640999999999998,18.009,19.504000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,857,-0.115,15.389200000000001,0.077960000000000002,12.218,13.186,14.24,15.388999999999999,16.643000000000001,18.010999999999999,19.507000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,858,-0.1154,15.391,0.077969999999999998,12.218999999999999,13.186999999999999,14.242000000000001,15.391,16.645,18.013999999999999,19.510000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,859,-0.1158,15.3927,0.077969999999999998,12.22,13.188000000000001,14.243,15.393000000000001,16.646999999999998,18.015999999999998,19.512 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,860,-0.1162,15.394500000000001,0.077979999999999994,12.221,13.19,14.244999999999999,15.394,16.649000000000001,18.018999999999998,19.515000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,861,-0.1166,15.3962,0.077979999999999994,12.223000000000001,13.191000000000001,14.246,15.396000000000001,16.651,18.021000000000001,19.516999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,862,-0.11700000000000001,15.398,0.077990000000000004,12.224,13.193,14.247999999999999,15.398,16.652999999999999,18.023,19.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,863,-0.1173,15.399699999999999,0.078,12.225,13.194000000000001,14.249000000000001,15.4,16.655000000000001,18.026,19.524000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,864,-0.1177,15.401400000000001,0.078,12.227,13.195,14.250999999999999,15.401,16.657,18.027999999999999,19.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,865,-0.1181,15.4032,0.078009999999999996,12.228,13.196999999999999,14.252000000000001,15.403,16.658999999999999,18.03,19.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,866,-0.11849999999999999,15.4049,0.078009999999999996,12.228999999999999,13.198,14.254,15.404999999999999,16.661000000000001,18.032,19.530999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,867,-0.1188,15.406700000000001,0.078020000000000006,12.231,13.2,14.255000000000001,15.407,16.663,18.035,19.533999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,868,-0.1192,15.4084,0.078020000000000006,12.231999999999999,13.201000000000001,14.257,15.407999999999999,16.664999999999999,18.036999999999999,19.536999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,869,-0.1196,15.4101,0.078030000000000002,12.233000000000001,13.202,14.259,15.41,16.667000000000002,18.039000000000001,19.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,870,-0.12,15.411899999999999,0.078030000000000002,12.234999999999999,13.204000000000001,14.26,15.412000000000001,16.669,18.042000000000002,19.542000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,871,-0.12039999999999999,15.413600000000001,0.078039999999999998,12.236000000000001,13.205,14.262,15.414,16.670999999999999,18.044,19.545000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,872,-0.1207,15.4153,0.078039999999999998,12.237,13.207000000000001,14.263,15.414999999999999,16.672999999999998,18.045999999999999,19.547999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,873,-0.1211,15.417,0.078049999999999994,12.238,13.208,14.265000000000001,15.417,16.675000000000001,18.048999999999999,19.550999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,874,-0.1215,15.418699999999999,0.078049999999999994,12.24,13.21,14.266,15.419,16.677,18.050999999999998,19.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,875,-0.12189999999999999,15.420500000000001,0.078060000000000004,12.241,13.211,14.268000000000001,15.42,16.678999999999998,18.053000000000001,19.556000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,876,-0.1222,15.4222,0.078060000000000004,12.243,13.212,14.269,15.422000000000001,16.681000000000001,18.055,19.558 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,877,-0.1226,15.4239,0.078070000000000001,12.244,13.214,14.271000000000001,15.423999999999999,16.683,18.058,19.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,878,-0.123,15.425599999999999,0.078070000000000001,12.244999999999999,13.215,14.272,15.426,16.684000000000001,18.059999999999999,19.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,879,-0.1234,15.427300000000001,0.078079999999999997,12.246,13.215999999999999,14.273999999999999,15.427,16.686,18.062000000000001,19.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,880,-0.1237,15.429,0.078079999999999997,12.247999999999999,13.218,14.275,15.429,16.687999999999999,18.064,19.568999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,881,-0.1241,15.4307,0.078090000000000007,12.249000000000001,13.218999999999999,14.276999999999999,15.430999999999999,16.690000000000001,18.067,19.571999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,882,-0.1245,15.432399999999999,0.078100000000000003,12.25,13.22,14.278,15.432,16.692,18.068999999999999,19.574999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,883,-0.1249,15.434100000000001,0.078100000000000003,12.250999999999999,13.222,14.28,15.433999999999999,16.693999999999999,18.071000000000002,19.577000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,884,-0.12520000000000001,15.4358,0.078109999999999999,12.253,13.223000000000001,14.281000000000001,15.436,16.696000000000002,18.074000000000002,19.579999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,885,-0.12559999999999999,15.4375,0.078109999999999999,12.254,13.225,14.282999999999999,15.438000000000001,16.698,18.076000000000001,19.582999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,886,-0.126,15.4391,0.078119999999999995,12.255000000000001,13.226000000000001,14.284000000000001,15.439,16.7,18.077999999999999,19.585999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,887,-0.12640000000000001,15.440799999999999,0.078119999999999995,12.257,13.227,14.286,15.441000000000001,16.702000000000002,18.079999999999998,19.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,888,-0.12670000000000001,15.442500000000001,0.078130000000000005,12.257999999999999,13.228999999999999,14.287000000000001,15.442,16.704000000000001,18.082999999999998,19.591000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,889,-0.12709999999999999,15.4442,0.078130000000000005,12.259,13.23,14.289,15.444000000000001,16.706,18.085000000000001,19.593 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,890,-0.1275,15.4459,0.078140000000000001,12.26,13.231,14.29,15.446,16.707999999999998,18.087,19.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,891,-0.12790000000000001,15.4475,0.078149999999999997,12.260999999999999,13.233000000000001,14.292,15.448,16.71,18.088999999999999,19.599 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,892,-0.12820000000000001,15.449199999999999,0.078149999999999997,12.263,13.234,14.292999999999999,15.449,16.712,18.091999999999999,19.600999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,893,-0.12859999999999999,15.450900000000001,0.078159999999999993,12.263999999999999,13.234999999999999,14.295,15.451000000000001,16.713999999999999,18.094000000000001,19.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,894,-0.129,15.452500000000001,0.078159999999999993,12.265000000000001,13.237,14.295999999999999,15.452,16.715,18.096,19.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,895,-0.1293,15.4542,0.078170000000000003,12.266,13.238,14.298,15.454000000000001,16.716999999999999,18.097999999999999,19.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,896,-0.12970000000000001,15.4559,0.078170000000000003,12.268000000000001,13.24,14.298999999999999,15.456,16.719000000000001,18.100000000000001,19.611999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,897,-0.13009999999999999,15.4575,0.078179999999999999,12.269,13.241,14.301,15.458,16.721,18.103000000000002,19.614999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,898,-0.1305,15.459199999999999,0.078179999999999999,12.27,13.242000000000001,14.302,15.459,16.722999999999999,18.105,19.617000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,899,-0.1308,15.460800000000001,0.078189999999999996,12.271000000000001,13.243,14.304,15.461,16.725000000000001,18.106999999999999,19.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,900,-0.13120000000000001,15.4625,0.078200000000000006,12.272,13.244999999999999,14.305,15.462,16.727,18.11,19.623000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,901,-0.13159999999999999,15.4641,0.078200000000000006,12.273999999999999,13.246,14.307,15.464,16.728999999999999,18.111999999999998,19.625 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,902,-0.13189999999999999,15.4658,0.078210000000000002,12.275,13.247,14.308,15.465999999999999,16.731000000000002,18.114000000000001,19.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,903,-0.1323,15.4674,0.078210000000000002,12.276,13.249000000000001,14.31,15.467000000000001,16.731999999999999,18.116,19.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,904,-0.13270000000000001,15.468999999999999,0.078219999999999998,12.276999999999999,13.25,14.311,15.468999999999999,16.734000000000002,18.117999999999999,19.632999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,905,-0.13300000000000001,15.470700000000001,0.078229999999999994,12.278,13.250999999999999,14.311999999999999,15.471,16.736000000000001,18.120999999999999,19.635999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,906,-0.13339999999999999,15.472300000000001,0.078229999999999994,12.28,13.253,14.314,15.472,16.738,18.123000000000001,19.638999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,907,-0.1338,15.4739,0.078240000000000004,12.281000000000001,13.254,14.315,15.474,16.739999999999998,18.125,19.640999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,908,-0.1341,15.4756,0.078240000000000004,12.282,13.255000000000001,14.317,15.476000000000001,16.742000000000001,18.126999999999999,19.643999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,909,-0.13450000000000001,15.4772,0.07825,12.282999999999999,13.257,14.318,15.477,16.744,18.129000000000001,19.646999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,910,-0.13489999999999999,15.4788,0.07825,12.285,13.257999999999999,14.32,15.478999999999999,16.745999999999999,18.131,19.649000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,911,-0.13519999999999999,15.480399999999999,0.078259999999999996,12.286,13.259,14.321,15.48,16.748000000000001,18.134,19.652000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,912,-0.1356,15.482100000000001,0.078270000000000006,12.287000000000001,13.26,14.321999999999999,15.481999999999999,16.75,18.135999999999999,19.655000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,913,-0.13600000000000001,15.483700000000001,0.078270000000000006,12.288,13.262,14.324,15.484,16.751000000000001,18.138000000000002,19.657 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,914,-0.1363,15.485300000000001,0.078280000000000002,12.289,13.263,14.324999999999999,15.484999999999999,16.753,18.14,19.66 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,915,-0.13669999999999999,15.4869,0.078280000000000002,12.291,13.263999999999999,14.327,15.487,16.754999999999999,18.141999999999999,19.661999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,916,-0.1371,15.4885,0.078289999999999998,12.292,13.266,14.327999999999999,15.488,16.757000000000001,18.145,19.664999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,917,-0.13739999999999999,15.4901,0.078299999999999995,12.292999999999999,13.266999999999999,14.329000000000001,15.49,16.759,18.146999999999998,19.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,918,-0.13780000000000001,15.4917,0.078299999999999995,12.294,13.268000000000001,14.331,15.492000000000001,16.760999999999999,18.149000000000001,19.670000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,919,-0.13819999999999999,15.4933,0.078310000000000005,12.295,13.269,14.332000000000001,15.493,16.763000000000002,18.151,19.672999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,920,-0.13850000000000001,15.494899999999999,0.078310000000000005,12.297000000000001,13.271000000000001,14.334,15.494999999999999,16.763999999999999,18.152999999999999,19.675000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,921,-0.1389,15.496499999999999,0.078320000000000001,12.298,13.272,14.335000000000001,15.496,16.765999999999998,18.155999999999999,19.678000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,922,-0.13930000000000001,15.498100000000001,0.078329999999999997,12.298999999999999,13.273,14.337,15.497999999999999,16.768000000000001,18.158000000000001,19.681000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,923,-0.1396,15.499700000000001,0.078329999999999997,12.3,13.275,14.337999999999999,15.5,16.77,18.16,19.683 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,924,-0.14000000000000001,15.501300000000001,0.078340000000000007,12.301,13.276,14.339,15.500999999999999,16.771999999999998,18.161999999999999,19.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,925,-0.14030000000000001,15.502800000000001,0.078340000000000007,12.302,13.276999999999999,14.340999999999999,15.503,16.773,18.164000000000001,19.687999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,926,-0.14069999999999999,15.5044,0.078350000000000003,12.303000000000001,13.278,14.342000000000001,15.504,16.774999999999999,18.166,19.690999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,927,-0.1411,15.506,0.078359999999999999,12.304,13.279,14.343999999999999,15.506,16.777000000000001,18.169,19.693999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,928,-0.1414,15.5076,0.078359999999999999,12.305999999999999,13.281000000000001,14.345000000000001,15.507999999999999,16.779,18.170999999999999,19.696000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,929,-0.14180000000000001,15.5091,0.078369999999999995,12.307,13.282,14.346,15.509,16.780999999999999,18.172999999999998,19.699000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,930,-0.14219999999999999,15.5107,0.078369999999999995,12.308,13.282999999999999,14.348000000000001,15.510999999999999,16.783000000000001,18.175000000000001,19.701000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,931,-0.14249999999999999,15.5123,0.078380000000000005,12.308999999999999,13.285,14.349,15.512,16.783999999999999,18.177,19.704000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,932,-0.1429,15.5138,0.078390000000000001,12.31,13.286,14.35,15.513999999999999,16.786000000000001,18.178999999999998,19.706 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,933,-0.14319999999999999,15.5154,0.078390000000000001,12.311999999999999,13.287000000000001,14.352,15.515000000000001,16.788,18.181000000000001,19.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,934,-0.14360000000000001,15.5169,0.078399999999999997,12.311999999999999,13.288,14.353,15.516999999999999,16.79,18.184000000000001,19.710999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,935,-0.14399999999999999,15.5185,0.078409999999999994,12.314,13.289,14.353999999999999,15.518000000000001,16.792000000000002,18.186,19.713999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,936,-0.14430000000000001,15.520099999999999,0.078409999999999994,12.315,13.291,14.356,15.52,16.794,18.187999999999999,19.716000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,937,-0.1447,15.521599999999999,0.078420000000000004,12.316000000000001,13.292,14.356999999999999,15.522,16.795000000000002,18.190000000000001,19.719000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,938,-0.14499999999999999,15.523199999999999,0.078420000000000004,12.317,13.292999999999999,14.359,15.523,16.797000000000001,18.192,19.721 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,939,-0.1454,15.524699999999999,0.07843,12.318,13.294,14.36,15.525,16.798999999999999,18.193999999999999,19.724 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,940,-0.14580000000000001,15.526199999999999,0.078439999999999996,12.319000000000001,13.295,14.361000000000001,15.526,16.800999999999998,18.196999999999999,19.727 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,941,-0.14610000000000001,15.527799999999999,0.078439999999999996,12.321,13.297000000000001,14.363,15.528,16.802,18.198,19.728999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,942,-0.14649999999999999,15.529299999999999,0.078450000000000006,12.321,13.298,14.364000000000001,15.529,16.803999999999998,18.201000000000001,19.731999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,943,-0.14680000000000001,15.530799999999999,0.078460000000000002,12.321999999999999,13.298999999999999,14.365,15.531000000000001,16.806000000000001,18.202999999999999,19.734000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,944,-0.1472,15.532400000000001,0.078460000000000002,12.324,13.3,14.367000000000001,15.532,16.808,18.204999999999998,19.736999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,945,-0.14760000000000001,15.533899999999999,0.078469999999999998,12.324999999999999,13.301,14.368,15.534000000000001,16.809999999999999,18.207000000000001,19.739999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,946,-0.1479,15.535399999999999,0.078479999999999994,12.326000000000001,13.303000000000001,14.369,15.535,16.811,18.209,19.742000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,947,-0.14829999999999999,15.537000000000001,0.078479999999999994,12.327,13.304,14.371,15.537000000000001,16.812999999999999,18.210999999999999,19.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,948,-0.14860000000000001,15.538500000000001,0.078490000000000004,12.327999999999999,13.305,14.372,15.538,16.815000000000001,18.213000000000001,19.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,949,-0.14899999999999999,15.54,0.078490000000000004,12.329000000000001,13.305999999999999,14.372999999999999,15.54,16.817,18.215,19.748999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,950,-0.14929999999999999,15.541499999999999,0.0785,12.33,13.307,14.375,15.542,16.818000000000001,18.218,19.751999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,951,-0.1497,15.542999999999999,0.078509999999999996,12.331,13.308999999999999,14.375999999999999,15.542999999999999,16.82,18.22,19.754999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,952,-0.15010000000000001,15.544499999999999,0.078509999999999996,12.333,13.31,14.377000000000001,15.544,16.821999999999999,18.222000000000001,19.757000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,953,-0.15040000000000001,15.545999999999999,0.078520000000000006,12.334,13.311,14.379,15.545999999999999,16.824000000000002,18.224,19.760000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,954,-0.15079999999999999,15.547499999999999,0.078530000000000003,12.334,13.311999999999999,14.38,15.548,16.826000000000001,18.225999999999999,19.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,955,-0.15110000000000001,15.548999999999999,0.078530000000000003,12.336,13.313000000000001,14.381,15.548999999999999,16.827000000000002,18.228000000000002,19.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,956,-0.1515,15.5505,0.078539999999999999,12.337,13.314,14.382999999999999,15.55,16.829000000000001,18.23,19.766999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,957,-0.15179999999999999,15.552,0.078549999999999995,12.337999999999999,13.316000000000001,14.384,15.552,16.831,18.231999999999999,19.77 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,958,-0.1522,15.5535,0.078549999999999995,12.339,13.317,14.385,15.554,16.832000000000001,18.234000000000002,19.771999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,959,-0.1525,15.555,0.078560000000000005,12.34,13.318,14.385999999999999,15.555,16.834,18.236000000000001,19.774999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,960,-0.15290000000000001,15.5565,0.078570000000000001,12.340999999999999,13.319000000000001,14.388,15.555999999999999,16.835999999999999,18.239000000000001,19.777000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,961,-0.15329999999999999,15.558,0.078570000000000001,12.342000000000001,13.32,14.388999999999999,15.558,16.838000000000001,18.239999999999998,19.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,962,-0.15359999999999999,15.5595,0.078579999999999997,12.343,13.321,14.39,15.56,16.84,18.242999999999999,19.782 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,963,-0.154,15.561,0.078589999999999993,12.343999999999999,13.323,14.391999999999999,15.561,16.841000000000001,18.245000000000001,19.785 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,964,-0.15429999999999999,15.5624,0.078589999999999993,12.345000000000001,13.324,14.393000000000001,15.561999999999999,16.843,18.247,19.786999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,965,-0.1547,15.5639,0.078600000000000003,12.346,13.324999999999999,14.394,15.564,16.844999999999999,18.248999999999999,19.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,966,-0.155,15.5654,0.078609999999999999,12.347,13.326000000000001,14.395,15.565,16.847000000000001,18.251000000000001,19.792000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,967,-0.15540000000000001,15.5669,0.078609999999999999,12.349,13.327,14.397,15.567,16.847999999999999,18.253,19.795000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,968,-0.15570000000000001,15.568300000000001,0.078619999999999995,12.349,13.327999999999999,14.398,15.568,16.850000000000001,18.254999999999999,19.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,969,-0.15609999999999999,15.569800000000001,0.078630000000000005,12.35,13.329000000000001,14.398999999999999,15.57,16.852,18.257000000000001,19.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,970,-0.15640000000000001,15.571199999999999,0.078630000000000005,12.352,13.331,14.401,15.571,16.853000000000002,18.259,19.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,971,-0.15679999999999999,15.572699999999999,0.078640000000000002,12.352,13.332000000000001,14.401999999999999,15.573,16.855,18.260999999999999,19.805 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,972,-0.15709999999999999,15.574199999999999,0.078649999999999998,12.353,13.333,14.403,15.574,16.856999999999999,18.263000000000002,19.806999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,973,-0.1575,15.5756,0.078649999999999998,12.355,13.334,14.404,15.576000000000001,16.858000000000001,18.265000000000001,19.809000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,974,-0.1578,15.5771,0.078659999999999994,12.356,13.335000000000001,14.406000000000001,15.577,16.86,18.266999999999999,19.812000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,975,-0.15820000000000001,15.5785,0.078670000000000004,12.356,13.336,14.407,15.577999999999999,16.861999999999998,18.268999999999998,19.815000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,976,-0.1585,15.58,0.078670000000000004,12.358000000000001,13.337,14.407999999999999,15.58,16.864000000000001,18.271000000000001,19.817 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,977,-0.15890000000000001,15.5814,0.07868,12.359,13.337999999999999,14.409000000000001,15.581,16.864999999999998,18.273,19.818999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,978,-0.15920000000000001,15.5829,0.078689999999999996,12.36,13.34,14.411,15.583,16.867000000000001,18.274999999999999,19.821999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,979,-0.15959999999999999,15.584300000000001,0.078689999999999996,12.361000000000001,13.340999999999999,14.412000000000001,15.584,16.869,18.277000000000001,19.824000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,980,-0.15989999999999999,15.585699999999999,0.078700000000000006,12.362,13.342000000000001,14.413,15.586,16.87,18.279,19.827000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,981,-0.1603,15.587199999999999,0.078710000000000002,12.363,13.343,14.414,15.587,16.872,18.282,19.829000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,982,-0.16059999999999999,15.5886,0.078710000000000002,12.364000000000001,13.343999999999999,14.416,15.589,16.873999999999999,18.283000000000001,19.831 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,983,-0.161,15.59,0.078719999999999998,12.365,13.345000000000001,14.417,15.59,16.875,18.285,19.834 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,984,-0.1613,15.5915,0.078729999999999994,12.366,13.346,14.417999999999999,15.592000000000001,16.876999999999999,18.288,19.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,985,-0.16170000000000001,15.5929,0.078729999999999994,12.367000000000001,13.347,14.42,15.593,16.879000000000001,18.289000000000001,19.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,986,-0.16200000000000001,15.5943,0.078740000000000004,12.368,13.348000000000001,14.420999999999999,15.593999999999999,16.88,18.291,19.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,987,-0.16239999999999999,15.595700000000001,0.078750000000000001,12.369,13.349,14.422000000000001,15.596,16.882000000000001,18.292999999999999,19.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,988,-0.16270000000000001,15.597099999999999,0.078759999999999997,12.369,13.35,14.423,15.597,16.884,18.295999999999999,19.846 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,989,-0.16309999999999999,15.598599999999999,0.078759999999999997,12.371,13.352,14.423999999999999,15.599,16.885000000000002,18.297000000000001,19.849 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,990,-0.16339999999999999,15.6,0.078770000000000007,12.372,13.353,14.426,15.6,16.887,18.3,19.850999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,991,-0.1638,15.6014,0.078780000000000003,12.372999999999999,13.353999999999999,14.427,15.601000000000001,16.888999999999999,18.302,19.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,992,-0.1641,15.6028,0.078780000000000003,12.374000000000001,13.355,14.428000000000001,15.603,16.89,18.303000000000001,19.856000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,993,-0.16450000000000001,15.604200000000001,0.078789999999999999,12.375,13.356,14.429,15.603999999999999,16.891999999999999,18.305,19.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,994,-0.1648,15.605600000000001,0.078799999999999995,12.375,13.356999999999999,14.43,15.606,16.893999999999998,18.308,19.861000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,995,-0.16520000000000001,15.606999999999999,0.078799999999999995,12.377000000000001,13.358000000000001,14.432,15.606999999999999,16.895,18.309000000000001,19.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,996,-0.16550000000000001,15.6084,0.078810000000000005,12.378,13.359,14.433,15.608000000000001,16.896999999999998,18.311,19.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,997,-0.1658,15.6098,0.078820000000000001,12.378,13.36,14.433999999999999,15.61,16.899000000000001,18.312999999999999,19.867999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,998,-0.16619999999999999,15.6112,0.078829999999999997,12.379,13.361000000000001,14.435,15.611000000000001,16.899999999999999,18.315999999999999,19.870999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,999,-0.16650000000000001,15.6126,0.078829999999999997,12.381,13.362,14.436999999999999,15.613,16.902000000000001,18.317,19.873000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1000,-0.16689999999999999,15.614000000000001,0.078839999999999993,12.381,13.363,14.438000000000001,15.614000000000001,16.904,18.318999999999999,19.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1001,-0.16719999999999999,15.615399999999999,0.078850000000000003,12.382,13.364000000000001,14.439,15.615,16.905000000000001,18.321000000000002,19.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1002,-0.1676,15.6167,0.078850000000000003,12.382999999999999,13.366,14.44,15.617000000000001,16.907,18.323,19.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1003,-0.16789999999999999,15.6181,0.07886,12.384,13.367000000000001,14.441000000000001,15.618,16.908999999999999,18.324999999999999,19.882000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1004,-0.16830000000000001,15.6195,0.078869999999999996,12.385,13.368,14.442,15.62,16.91,18.327000000000002,19.885000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1005,-0.1686,15.620900000000001,0.078880000000000006,12.385999999999999,13.369,14.444000000000001,15.621,16.911999999999999,18.329000000000001,19.888000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1006,-0.16889999999999999,15.622299999999999,0.078880000000000006,12.387,13.37,14.445,15.622,16.913,18.331,19.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1007,-0.16930000000000001,15.6236,0.078890000000000002,12.388,13.371,14.446,15.624000000000001,16.914999999999999,18.332999999999998,19.891999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1008,-0.1696,15.625,0.078899999999999998,12.388999999999999,13.372,14.446999999999999,15.625,16.917000000000002,18.335000000000001,19.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1009,-0.17,15.6264,0.078899999999999998,12.39,13.372999999999999,14.448,15.625999999999999,16.917999999999999,18.337,19.896999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1010,-0.17030000000000001,15.627700000000001,0.078909999999999994,12.391,13.374000000000001,14.45,15.628,16.920000000000002,18.338999999999999,19.899000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1011,-0.17069999999999999,15.629099999999999,0.078920000000000004,12.391999999999999,13.375,14.451000000000001,15.629,16.922000000000001,18.341000000000001,19.902000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1012,-0.17100000000000001,15.6305,0.07893,12.393000000000001,13.375999999999999,14.452,15.63,16.922999999999998,18.343,19.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1013,-0.17130000000000001,15.6318,0.07893,12.394,13.377000000000001,14.452999999999999,15.632,16.925000000000001,18.344999999999999,19.905999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1014,-0.17169999999999999,15.6332,0.078939999999999996,12.395,13.378,14.454000000000001,15.632999999999999,16.925999999999998,18.347000000000001,19.908999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1015,-0.17199999999999999,15.634499999999999,0.078950000000000006,12.395,13.379,14.455,15.634,16.928000000000001,18.349,19.911000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1016,-0.1724,15.635899999999999,0.078950000000000006,12.397,13.38,14.457000000000001,15.635999999999999,16.93,18.350999999999999,19.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1017,-0.17269999999999999,15.6372,0.078960000000000002,12.397,13.381,14.458,15.637,16.931000000000001,18.353000000000002,19.916 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1018,-0.1731,15.6386,0.078969999999999999,12.398,13.382,14.459,15.638999999999999,16.933,18.355,19.917999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1019,-0.1734,15.639900000000001,0.078979999999999995,12.398999999999999,13.382999999999999,14.46,15.64,16.934000000000001,18.356999999999999,19.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1020,-0.17369999999999999,15.641299999999999,0.078979999999999995,12.4,13.384,14.461,15.641,16.936,18.358000000000001,19.922999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1021,-0.1741,15.6426,0.078990000000000005,12.401,13.385,14.462,15.643000000000001,16.937999999999999,18.36,19.925000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1022,-0.1744,15.644,0.079000000000000001,12.401999999999999,13.385999999999999,14.462999999999999,15.644,16.939,18.361999999999998,19.928000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1023,-0.17480000000000001,15.645300000000001,0.079009999999999997,12.403,13.387,14.465,15.645,16.940999999999999,18.364000000000001,19.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1024,-0.17510000000000001,15.646699999999999,0.079009999999999997,12.404,13.388,14.465999999999999,15.647,16.942,18.366,19.931999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1025,-0.1754,15.648,0.079020000000000007,12.404999999999999,13.388999999999999,14.467000000000001,15.648,16.943999999999999,18.367999999999999,19.934999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1026,-0.17580000000000001,15.6493,0.079030000000000003,12.406000000000001,13.39,14.468,15.648999999999999,16.946000000000002,18.37,19.937000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1027,-0.17610000000000001,15.650700000000001,0.079039999999999999,12.406000000000001,13.391,14.468999999999999,15.651,16.946999999999999,18.372,19.940000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1028,-0.17649999999999999,15.651999999999999,0.079039999999999999,12.407999999999999,13.391999999999999,14.47,15.651999999999999,16.949000000000002,18.373999999999999,19.942 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1029,-0.17680000000000001,15.6533,0.079049999999999995,12.407999999999999,13.393000000000001,14.471,15.653,16.95,18.376000000000001,19.943999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1030,-0.17710000000000001,15.6546,0.079060000000000005,12.409000000000001,13.394,14.473000000000001,15.654999999999999,16.952000000000002,18.378,19.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1031,-0.17749999999999999,15.656000000000001,0.079060000000000005,12.41,13.395,14.474,15.656000000000001,16.952999999999999,18.379000000000001,19.949000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1032,-0.17780000000000001,15.657299999999999,0.079070000000000001,12.411,13.396000000000001,14.475,15.657,16.954999999999998,18.381,19.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1033,-0.17810000000000001,15.6586,0.079079999999999998,12.412000000000001,13.397,14.476000000000001,15.659000000000001,16.957000000000001,18.382999999999999,19.954000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1034,-0.17849999999999999,15.6599,0.079089999999999994,12.413,13.398,14.477,15.66,16.957999999999998,18.385000000000002,19.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1035,-0.17879999999999999,15.661199999999999,0.079089999999999994,12.414,13.398999999999999,14.478,15.661,16.96,18.387,19.957999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1036,-0.1792,15.6625,0.079100000000000004,12.414999999999999,13.4,14.478999999999999,15.662000000000001,16.960999999999999,18.388999999999999,19.960999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1037,-0.17949999999999999,15.6639,0.07911,12.414999999999999,13.401,14.481,15.664,16.963000000000001,18.390999999999998,19.963000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1038,-0.17979999999999999,15.6652,0.079119999999999996,12.416,13.401999999999999,14.481999999999999,15.664999999999999,16.965,18.393000000000001,19.966000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1039,-0.1802,15.666499999999999,0.079119999999999996,12.417,13.403,14.483000000000001,15.666,16.966000000000001,18.395,19.968 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1040,-0.18049999999999999,15.6678,0.079130000000000006,12.417999999999999,13.404,14.484,15.667999999999999,16.968,18.396999999999998,19.97 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1041,-0.18079999999999999,15.6691,0.079140000000000002,12.419,13.404999999999999,14.484999999999999,15.669,16.969000000000001,18.399000000000001,19.972999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1042,-0.1812,15.670400000000001,0.079149999999999998,12.42,13.406000000000001,14.486000000000001,15.67,16.971,18.401,19.975000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1043,-0.18149999999999999,15.6717,0.079149999999999998,12.420999999999999,13.407,14.487,15.672000000000001,16.972000000000001,18.402000000000001,19.977 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1044,-0.18179999999999999,15.673,0.079159999999999994,12.422000000000001,13.407999999999999,14.488,15.673,16.974,18.404,19.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1045,-0.1822,15.674300000000001,0.079170000000000004,12.422000000000001,13.409000000000001,14.489000000000001,15.673999999999999,16.975000000000001,18.405999999999999,19.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1046,-0.1825,15.675599999999999,0.07918,12.423,13.41,14.49,15.676,16.977,18.408000000000001,19.984000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1047,-0.18290000000000001,15.6769,0.07918,12.423999999999999,13.411,14.492000000000001,15.677,16.978000000000002,18.41,19.986000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1048,-0.1832,15.6782,0.079189999999999997,12.425000000000001,13.412000000000001,14.493,15.678000000000001,16.98,18.411999999999999,19.989000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1049,-0.1835,15.679500000000001,0.079200000000000007,12.426,13.413,14.494,15.68,16.981999999999999,18.414000000000001,19.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1050,-0.18390000000000001,15.6807,0.079210000000000003,12.427,13.414,14.494999999999999,15.680999999999999,16.983000000000001,18.416,19.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1051,-0.1842,15.682,0.079219999999999999,12.427,13.414999999999999,14.496,15.682,16.984999999999999,18.417999999999999,19.995999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1052,-0.1845,15.683299999999999,0.079219999999999999,12.429,13.416,14.497,15.683,16.986000000000001,18.419,19.998000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1053,-0.18490000000000001,15.6846,0.079229999999999995,12.429,13.417,14.497999999999999,15.685,16.988,18.420999999999999,20 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1054,-0.1852,15.6859,0.079240000000000005,12.43,13.417999999999999,14.499000000000001,15.686,16.989000000000001,18.422999999999998,20.003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1055,-0.1855,15.687200000000001,0.079250000000000001,12.430999999999999,13.417999999999999,14.5,15.686999999999999,16.991,18.425000000000001,20.004999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1056,-0.18590000000000001,15.6884,0.079250000000000001,12.432,13.42,14.500999999999999,15.688000000000001,16.992000000000001,18.427,20.007000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1057,-0.1862,15.6897,0.079259999999999997,12.433,13.42,14.503,15.69,16.994,18.428999999999998,20.010000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1058,-0.1865,15.691000000000001,0.079269999999999993,12.433999999999999,13.420999999999999,14.504,15.691000000000001,16.995999999999999,18.431000000000001,20.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1059,-0.18690000000000001,15.692299999999999,0.079280000000000003,12.433999999999999,13.422000000000001,14.505000000000001,15.692,16.997,18.433,20.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1060,-0.18720000000000001,15.6935,0.079280000000000003,12.435,13.423,14.506,15.694000000000001,16.998000000000001,18.434000000000001,20.015999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1061,-0.1875,15.694800000000001,0.079289999999999999,12.436,13.423999999999999,14.507,15.695,17,18.436,20.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1062,-0.18790000000000001,15.696099999999999,0.079299999999999995,12.436999999999999,13.425000000000001,14.507999999999999,15.696,17.001999999999999,18.437999999999999,20.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1063,-0.18820000000000001,15.6973,0.079310000000000005,12.438000000000001,13.426,14.509,15.696999999999999,17.003,18.440000000000001,20.024000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1064,-0.1885,15.698600000000001,0.079320000000000002,12.438000000000001,13.427,14.51,15.699,17.004999999999999,18.442,20.026 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1065,-0.1888,15.6999,0.079320000000000002,12.44,13.428000000000001,14.510999999999999,15.7,17.006,18.443999999999999,20.027999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1066,-0.18920000000000001,15.7011,0.079329999999999998,12.44,13.429,14.512,15.701000000000001,17.007999999999999,18.446000000000002,20.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1067,-0.1895,15.702400000000001,0.079339999999999994,12.441000000000001,13.43,14.513,15.702,17.009,18.446999999999999,20.033000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1068,-0.1898,15.7036,0.079350000000000004,12.442,13.430999999999999,14.513999999999999,15.704000000000001,17.010999999999999,18.449000000000002,20.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1069,-0.19020000000000001,15.7049,0.079350000000000004,12.443,13.432,14.515000000000001,15.705,17.012,18.451000000000001,20.036999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1070,-0.1905,15.706200000000001,0.07936,12.444000000000001,13.433,14.516999999999999,15.706,17.013999999999999,18.452999999999999,20.039000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1071,-0.1908,15.7074,0.079369999999999996,12.444000000000001,13.433,14.518000000000001,15.707000000000001,17.015000000000001,18.454999999999998,20.042000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1072,-0.19120000000000001,15.7087,0.079380000000000006,12.445,13.433999999999999,14.519,15.709,17.016999999999999,18.457000000000001,20.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1073,-0.1915,15.709899999999999,0.079390000000000002,12.446,13.435,14.52,15.71,17.018000000000001,18.459,20.047000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1074,-0.1918,15.7112,0.079390000000000002,12.446999999999999,13.436,14.521000000000001,15.711,17.02,18.46,20.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1075,-0.19209999999999999,15.712400000000001,0.079399999999999998,12.448,13.436999999999999,14.522,15.712,17.021000000000001,18.462,20.050999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1076,-0.1925,15.713699999999999,0.079409999999999994,12.449,13.438000000000001,14.523,15.714,17.023,18.463999999999999,20.053000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1077,-0.1928,15.7149,0.079420000000000004,12.449,13.439,14.523999999999999,15.715,17.024000000000001,18.466000000000001,20.056000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1078,-0.19309999999999999,15.716100000000001,0.079420000000000004,12.45,13.44,14.525,15.715999999999999,17.026,18.468,20.056999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1079,-0.19350000000000001,15.7174,0.079430000000000001,12.451000000000001,13.441000000000001,14.526,15.717000000000001,17.027000000000001,18.47,20.059999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1080,-0.1938,15.7186,0.079439999999999997,12.452,13.442,14.526999999999999,15.718999999999999,17.029,18.471,20.062000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1081,-0.19409999999999999,15.719900000000001,0.079450000000000007,12.452999999999999,13.443,14.528,15.72,17.03,18.472999999999999,20.065000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1082,-0.19439999999999999,15.7211,0.079460000000000003,12.452999999999999,13.443,14.529,15.721,17.032,18.475000000000001,20.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1083,-0.1948,15.722300000000001,0.079460000000000003,12.454000000000001,13.445,14.53,15.722,17.033000000000001,18.477,20.068999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1084,-0.1951,15.723599999999999,0.079469999999999999,12.455,13.445,14.531000000000001,15.724,17.035,18.478999999999999,20.071000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1085,-0.19539999999999999,15.7248,0.079479999999999995,12.456,13.446,14.532,15.725,17.036000000000001,18.481000000000002,20.074000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1086,-0.1958,15.726000000000001,0.079490000000000005,12.457000000000001,13.446999999999999,14.532999999999999,15.726000000000001,17.038,18.481999999999999,20.076000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1087,-0.1961,15.7273,0.079500000000000001,12.457000000000001,13.448,14.534000000000001,15.727,17.039000000000001,18.484000000000002,20.079000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1088,-0.19639999999999999,15.7285,0.079500000000000001,12.458,13.449,14.535,15.728,17.041,18.486000000000001,20.079999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1089,-0.19670000000000001,15.729699999999999,0.079509999999999997,12.459,13.45,14.536,15.73,17.042000000000002,18.488,20.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1090,-0.1971,15.731,0.079519999999999993,12.46,13.451000000000001,14.537000000000001,15.731,17.044,18.489999999999998,20.085000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1091,-0.19739999999999999,15.732200000000001,0.079530000000000003,12.461,13.452,14.538,15.731999999999999,17.045000000000002,18.492000000000001,20.088000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1092,-0.19769999999999999,15.7334,0.079530000000000003,12.462,13.452999999999999,14.54,15.733000000000001,17.047000000000001,18.492999999999999,20.088999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1093,-0.19800000000000001,15.7346,0.07954,12.462,13.452999999999999,14.541,15.734999999999999,17.047999999999998,18.495000000000001,20.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1094,-0.19839999999999999,15.735799999999999,0.079549999999999996,12.462999999999999,13.454000000000001,14.542,15.736000000000001,17.05,18.497,20.094000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1095,-0.19869999999999999,15.7371,0.079560000000000006,12.464,13.455,14.542999999999999,15.737,17.050999999999998,18.498999999999999,20.097000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1096,-0.19900000000000001,15.738300000000001,0.079570000000000002,12.464,13.456,14.544,15.738,17.053000000000001,18.501000000000001,20.099 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1097,-0.1993,15.7395,0.079570000000000002,12.465999999999999,13.457000000000001,14.545,15.74,17.053999999999998,18.501999999999999,20.100999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1098,-0.19969999999999999,15.7407,0.079579999999999998,12.465999999999999,13.458,14.545999999999999,15.741,17.055,18.504000000000001,20.103000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1099,-0.2,15.741899999999999,0.079589999999999994,12.467000000000001,13.459,14.547000000000001,15.742000000000001,17.056999999999999,18.506,20.105 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1100,-0.20030000000000001,15.7431,0.079600000000000004,12.468,13.46,14.548,15.743,17.058,18.507999999999999,20.108000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1101,-0.2006,15.744400000000001,0.07961,12.468,13.46,14.548999999999999,15.744,17.059999999999999,18.510000000000002,20.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1102,-0.20100000000000001,15.7456,0.07961,12.47,13.462,14.55,15.746,17.061,18.510999999999999,20.111999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1103,-0.20130000000000001,15.7468,0.079619999999999996,12.47,13.462,14.551,15.747,17.062999999999999,18.513000000000002,20.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1104,-0.2016,15.747999999999999,0.079630000000000006,12.471,13.462999999999999,14.552,15.747999999999999,17.064,18.515000000000001,20.117000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1105,-0.2019,15.7492,0.079640000000000002,12.472,13.464,14.553000000000001,15.749000000000001,17.065999999999999,18.516999999999999,20.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1106,-0.20230000000000001,15.750400000000001,0.079649999999999999,12.472,13.465,14.554,15.75,17.067,18.518999999999998,20.120999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1107,-0.2026,15.7516,0.079659999999999995,12.473000000000001,13.465999999999999,14.555,15.752000000000001,17.068999999999999,18.521000000000001,20.123999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1108,-0.2029,15.752800000000001,0.079659999999999995,12.474,13.467000000000001,14.555999999999999,15.753,17.07,18.521999999999998,20.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1109,-0.20319999999999999,15.754,0.079670000000000005,12.475,13.468,14.557,15.754,17.071999999999999,18.524000000000001,20.128 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1110,-0.20349999999999999,15.7552,0.079680000000000001,12.475,13.468,14.558,15.755000000000001,17.073,18.526,20.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1111,-0.2039,15.756399999999999,0.079689999999999997,12.476000000000001,13.468999999999999,14.558999999999999,15.756,17.074999999999999,18.527999999999999,20.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1112,-0.20419999999999999,15.7576,0.079699999999999993,12.477,13.47,14.56,15.757999999999999,17.076000000000001,18.53,20.135000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1113,-0.20449999999999999,15.758800000000001,0.079699999999999993,12.478,13.471,14.561,15.759,17.077000000000002,18.530999999999999,20.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1114,-0.20480000000000001,15.76,0.079710000000000003,12.478999999999999,13.472,14.561999999999999,15.76,17.079000000000001,18.533000000000001,20.138999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1115,-0.20519999999999999,15.761200000000001,0.079719999999999999,12.478999999999999,13.473000000000001,14.563000000000001,15.760999999999999,17.079999999999998,18.535,20.140999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1116,-0.20549999999999999,15.7624,0.079729999999999995,12.48,13.473000000000001,14.564,15.762,17.082000000000001,18.536999999999999,20.143999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1117,-0.20580000000000001,15.7636,0.079740000000000005,12.481,13.474,14.565,15.763999999999999,17.082999999999998,18.539000000000001,20.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1118,-0.20610000000000001,15.764799999999999,0.079740000000000005,12.481999999999999,13.475,14.566000000000001,15.765000000000001,17.085000000000001,18.54,20.148 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1119,-0.2064,15.766,0.079750000000000001,12.481999999999999,13.476000000000001,14.567,15.766,17.085999999999999,18.542000000000002,20.149999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1120,-0.20680000000000001,15.767200000000001,0.079759999999999998,12.483000000000001,13.477,14.568,15.766999999999999,17.088000000000001,18.544,20.152999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1121,-0.20710000000000001,15.7684,0.079769999999999994,12.484,13.478,14.569000000000001,15.768000000000001,17.088999999999999,18.545999999999999,20.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1122,-0.2074,15.769500000000001,0.079780000000000004,12.484999999999999,13.478999999999999,14.57,15.77,17.091000000000001,18.547999999999998,20.157 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1123,-0.2077,15.7707,0.07979,12.484999999999999,13.478999999999999,14.571,15.771000000000001,17.091999999999999,18.548999999999999,20.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1124,-0.20799999999999999,15.7719,0.07979,12.486000000000001,13.48,14.571999999999999,15.772,17.093,18.550999999999998,20.161000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1125,-0.2084,15.773099999999999,0.079799999999999996,12.487,13.481,14.573,15.773,17.094999999999999,18.553000000000001,20.164000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1126,-0.2087,15.7743,0.079810000000000006,12.488,13.481999999999999,14.574,15.773999999999999,17.096,18.555,20.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1127,-0.20899999999999999,15.775499999999999,0.079820000000000002,12.488,13.483000000000001,14.574999999999999,15.776,17.097999999999999,18.556999999999999,20.167999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1128,-0.20930000000000001,15.7767,0.079829999999999998,12.489000000000001,13.484,14.576000000000001,15.776999999999999,17.099,18.558,20.170999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1129,-0.20960000000000001,15.777799999999999,0.079829999999999998,12.49,13.484999999999999,14.577,15.778,17.100999999999999,18.559999999999999,20.172000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1130,-0.21,15.779,0.079839999999999994,12.491,13.486000000000001,14.577999999999999,15.779,17.102,18.562000000000001,20.175000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1131,-0.21029999999999999,15.780200000000001,0.079850000000000004,12.491,13.486000000000001,14.579000000000001,15.78,17.103999999999999,18.564,20.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1132,-0.21060000000000001,15.7814,0.07986,12.492000000000001,13.487,14.58,15.781000000000001,17.105,18.565000000000001,20.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1133,-0.2109,15.782500000000001,0.079869999999999997,12.493,13.488,14.581,15.782,17.106000000000002,18.567,20.181999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1134,-0.2112,15.7837,0.079880000000000007,12.493,13.489000000000001,14.582000000000001,15.784000000000001,17.108000000000001,18.568999999999999,20.184000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1135,-0.21160000000000001,15.7849,0.079880000000000007,12.494999999999999,13.49,14.583,15.785,17.109000000000002,18.571000000000002,20.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1136,-0.21190000000000001,15.786099999999999,0.079890000000000003,12.494999999999999,13.491,14.584,15.786,17.111000000000001,18.571999999999999,20.187999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1137,-0.2122,15.7872,0.079899999999999999,12.496,13.491,14.585000000000001,15.787000000000001,17.111999999999998,18.574000000000002,20.190000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1138,-0.21249999999999999,15.788399999999999,0.079909999999999995,12.497,13.492000000000001,14.586,15.788,17.114000000000001,18.576000000000001,20.193000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1139,-0.21279999999999999,15.7896,0.079920000000000005,12.497,13.493,14.587,15.79,17.114999999999998,18.577999999999999,20.195 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1140,-0.21310000000000001,15.790800000000001,0.079920000000000005,12.497999999999999,13.494,14.587999999999999,15.791,17.116,18.579000000000001,20.196999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1141,-0.2135,15.7919,0.079930000000000001,12.499000000000001,13.494999999999999,14.589,15.792,17.117999999999999,18.581,20.199000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1142,-0.21379999999999999,15.793100000000001,0.079939999999999997,12.5,13.496,14.59,15.792999999999999,17.119,18.582999999999998,20.202000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1143,-0.21410000000000001,15.7943,0.079949999999999993,12.5,13.496,14.590999999999999,15.794,17.120999999999999,18.585000000000001,20.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1144,-0.21440000000000001,15.795400000000001,0.079960000000000003,12.500999999999999,13.497,14.590999999999999,15.795,17.122,18.587,20.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1145,-0.2147,15.7966,0.079969999999999999,12.502000000000001,13.497999999999999,14.592000000000001,15.797000000000001,17.123999999999999,18.588999999999999,20.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1146,-0.215,15.797800000000001,0.079969999999999999,12.503,13.499000000000001,14.593999999999999,15.798,17.125,18.59,20.21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1147,-0.21529999999999999,15.7989,0.079979999999999996,12.503,13.5,14.593999999999999,15.798999999999999,17.126000000000001,18.591999999999999,20.212 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1148,-0.2157,15.8001,0.079990000000000006,12.504,13.500999999999999,14.595000000000001,15.8,17.128,18.594000000000001,20.215 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1149,-0.216,15.801299999999999,0.08,12.505000000000001,13.500999999999999,14.596,15.801,17.129000000000001,18.596,20.216999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1150,-0.21629999999999999,15.8024,0.080009999999999998,12.505000000000001,13.502000000000001,14.597,15.802,17.131,18.597000000000001,20.219000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1151,-0.21659999999999999,15.803599999999999,0.080019999999999994,12.506,13.503,14.598000000000001,15.804,17.132000000000001,18.599,20.222000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1152,-0.21690000000000001,15.8047,0.080019999999999994,12.507,13.504,14.599,15.805,17.132999999999999,18.600999999999999,20.222999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1153,-0.2172,15.805899999999999,0.080030000000000004,12.507999999999999,13.505000000000001,14.6,15.805999999999999,17.135000000000002,18.602,20.225999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1154,-0.21759999999999999,15.8071,0.08004,12.507999999999999,13.506,14.601000000000001,15.807,17.135999999999999,18.603999999999999,20.228000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1155,-0.21790000000000001,15.808199999999999,0.080049999999999996,12.509,13.506,14.602,15.808,17.138000000000002,18.606000000000002,20.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1156,-0.21820000000000001,15.8094,0.080060000000000006,12.51,13.507,14.603,15.808999999999999,17.138999999999999,18.608000000000001,20.233000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1157,-0.2185,15.810499999999999,0.080070000000000002,12.51,13.507999999999999,14.603999999999999,15.81,17.140999999999998,18.61,20.234999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1158,-0.21879999999999999,15.8117,0.080070000000000002,12.510999999999999,13.509,14.605,15.811999999999999,17.141999999999999,18.611000000000001,20.236999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1159,-0.21909999999999999,15.812900000000001,0.080079999999999998,12.512,13.51,14.606,15.813000000000001,17.143000000000001,18.613,20.239000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1160,-0.21940000000000001,15.814,0.080089999999999995,12.513,13.51,14.606999999999999,15.814,17.145,18.614999999999998,20.241 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1161,-0.21970000000000001,15.815200000000001,0.080100000000000005,12.513,13.510999999999999,14.608000000000001,15.815,17.146000000000001,18.617000000000001,20.244 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1162,-0.22009999999999999,15.8163,0.080110000000000001,12.513999999999999,13.512,14.609,15.816000000000001,17.148,18.617999999999999,20.245999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1163,-0.22040000000000001,15.817500000000001,0.080119999999999997,12.515000000000001,13.513,14.61,15.818,17.149000000000001,18.62,20.248000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1164,-0.22070000000000001,15.8186,0.080130000000000007,12.515000000000001,13.513999999999999,14.611000000000001,15.819000000000001,17.151,18.622,20.251000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1165,-0.221,15.819800000000001,0.080130000000000007,12.516,13.515000000000001,14.612,15.82,17.152000000000001,18.623999999999999,20.251999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1166,-0.2213,15.8209,0.080140000000000003,12.516999999999999,13.515000000000001,14.613,15.821,17.152999999999999,18.625,20.254999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1167,-0.22159999999999999,15.822100000000001,0.080149999999999999,12.518000000000001,13.516,14.614000000000001,15.821999999999999,17.155000000000001,18.626999999999999,20.257000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1168,-0.22189999999999999,15.8232,0.080159999999999995,12.518000000000001,13.516999999999999,14.615,15.823,17.155999999999999,18.629000000000001,20.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1169,-0.22220000000000001,15.824400000000001,0.080170000000000005,12.519,13.518000000000001,14.616,15.824,17.158000000000001,18.631,20.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1170,-0.22259999999999999,15.8255,0.080180000000000001,12.52,13.518000000000001,14.616,15.826000000000001,17.158999999999999,18.632999999999999,20.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1171,-0.22289999999999999,15.826700000000001,0.080180000000000001,12.521000000000001,13.52,14.618,15.827,17.16,18.634,20.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1172,-0.22320000000000001,15.8278,0.080189999999999997,12.521000000000001,13.52,14.618,15.827999999999999,17.161999999999999,18.635999999999999,20.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1173,-0.2235,15.829000000000001,0.080199999999999994,12.522,13.521000000000001,14.619,15.829000000000001,17.163,18.638000000000002,20.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1174,-0.2238,15.8301,0.080210000000000004,12.523,13.522,14.62,15.83,17.164999999999999,18.64,20.271999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1175,-0.22409999999999999,15.831200000000001,0.08022,12.523,13.523,14.621,15.831,17.166,18.640999999999998,20.274999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1176,-0.22439999999999999,15.8324,0.080229999999999996,12.523999999999999,13.523,14.622,15.832000000000001,17.167999999999999,18.643000000000001,20.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1177,-0.22470000000000001,15.833500000000001,0.080229999999999996,12.525,13.523999999999999,14.622999999999999,15.834,17.169,18.645,20.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1178,-0.22500000000000001,15.8347,0.080240000000000006,12.526,13.525,14.624000000000001,15.835000000000001,17.170000000000002,18.646000000000001,20.280999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1179,-0.22539999999999999,15.835800000000001,0.080250000000000002,12.526,13.526,14.625,15.836,17.172000000000001,18.648,20.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1180,-0.22570000000000001,15.837,0.080259999999999998,12.526999999999999,13.526999999999999,14.625999999999999,15.837,17.172999999999998,18.649999999999999,20.286000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1181,-0.22600000000000001,15.838100000000001,0.080269999999999994,12.528,13.526999999999999,14.627000000000001,15.837999999999999,17.173999999999999,18.652000000000001,20.288 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1182,-0.2263,15.8392,0.080280000000000004,12.528,13.528,14.628,15.839,17.175999999999998,18.654,20.29 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1183,-0.2266,15.840400000000001,0.08029,12.529,13.529,14.629,15.84,17.177,18.655000000000001,20.292999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1184,-0.22689999999999999,15.8415,0.08029,12.53,13.53,14.63,15.842000000000001,17.178999999999998,18.657,20.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1185,-0.22720000000000001,15.842700000000001,0.080299999999999996,12.531000000000001,13.531000000000001,14.631,15.843,17.18,18.658999999999999,20.297000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1186,-0.22750000000000001,15.8438,0.080310000000000006,12.531000000000001,13.532,14.632,15.843999999999999,17.181000000000001,18.66,20.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1187,-0.2278,15.844900000000001,0.080320000000000003,12.532,13.532,14.632999999999999,15.845000000000001,17.183,18.661999999999999,20.300999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1188,-0.2281,15.8461,0.080329999999999999,12.532,13.532999999999999,14.634,15.846,17.184000000000001,18.664000000000001,20.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1189,-0.22839999999999999,15.847200000000001,0.080339999999999995,12.532999999999999,13.534000000000001,14.634,15.847,17.186,18.666,20.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1190,-0.2288,15.8483,0.080350000000000005,12.534000000000001,13.535,14.635,15.848000000000001,17.187000000000001,18.667999999999999,20.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1191,-0.2291,15.849500000000001,0.080350000000000005,12.535,13.536,14.637,15.85,17.187999999999999,18.669,20.309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1192,-0.22939999999999999,15.8506,0.080360000000000001,12.535,13.536,14.637,15.851000000000001,17.190000000000001,18.670999999999999,20.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1193,-0.22969999999999999,15.851699999999999,0.080369999999999997,12.536,13.537000000000001,14.638,15.852,17.190999999999999,18.672999999999998,20.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1194,-0.23,15.8529,0.080379999999999993,12.537000000000001,13.538,14.638999999999999,15.853,17.193000000000001,18.675000000000001,20.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1195,-0.2303,15.853999999999999,0.080390000000000003,12.537000000000001,13.539,14.64,15.853999999999999,17.193999999999999,18.675999999999998,20.318999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1196,-0.2306,15.8551,0.080399999999999999,12.538,13.539,14.641,15.855,17.195,18.678000000000001,20.321000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1197,-0.23089999999999999,15.856299999999999,0.080409999999999995,12.539,13.54,14.641999999999999,15.856,17.196999999999999,18.68,20.323 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1198,-0.23119999999999999,15.8574,0.080409999999999995,12.54,13.541,14.643000000000001,15.856999999999999,17.198,18.681000000000001,20.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1199,-0.23150000000000001,15.858499999999999,0.080420000000000005,12.54,13.542,14.644,15.858000000000001,17.2,18.683,20.327000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1200,-0.23180000000000001,15.8597,0.080430000000000001,12.541,13.542999999999999,14.645,15.86,17.201000000000001,18.684999999999999,20.329999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1201,-0.2321,15.860799999999999,0.080439999999999998,12.542,13.542999999999999,14.646000000000001,15.861000000000001,17.202000000000002,18.687000000000001,20.332000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1202,-0.2324,15.8619,0.080449999999999994,12.542,13.544,14.647,15.862,17.204000000000001,18.687999999999999,20.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1203,-0.23269999999999999,15.863,0.080460000000000004,12.542999999999999,13.545,14.648,15.863,17.204999999999998,18.690000000000001,20.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1204,-0.2331,15.8642,0.08047,12.544,13.545999999999999,14.648999999999999,15.864000000000001,17.207000000000001,18.692,20.338999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1205,-0.2334,15.8653,0.08047,12.544,13.547000000000001,14.65,15.865,17.207999999999998,18.693000000000001,20.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1206,-0.23369999999999999,15.866400000000001,0.080479999999999996,12.545,13.547000000000001,14.65,15.866,17.209,18.695,20.343 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1207,-0.23400000000000001,15.867599999999999,0.080490000000000006,12.545999999999999,13.548,14.651,15.868,17.210999999999999,18.696999999999999,20.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1208,-0.23430000000000001,15.8687,0.080500000000000002,12.545999999999999,13.548999999999999,14.651999999999999,15.869,17.212,18.699000000000002,20.347000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1209,-0.2346,15.8698,0.080509999999999998,12.547000000000001,13.55,14.653,15.87,17.213999999999999,18.701000000000001,20.350000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1210,-0.2349,15.870900000000001,0.080519999999999994,12.548,13.55,14.654,15.871,17.215,18.702000000000002,20.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1211,-0.23519999999999999,15.8721,0.080530000000000004,12.548,13.551,14.654999999999999,15.872,17.216000000000001,18.704000000000001,20.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1212,-0.23549999999999999,15.873200000000001,0.080530000000000004,12.548999999999999,13.552,14.656000000000001,15.872999999999999,17.218,18.706,20.356000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1213,-0.23580000000000001,15.8743,0.08054,12.55,13.553000000000001,14.657,15.874000000000001,17.219000000000001,18.707000000000001,20.358000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1214,-0.2361,15.875400000000001,0.080549999999999997,12.551,13.554,14.657999999999999,15.875,17.22,18.709,20.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1215,-0.2364,15.8765,0.080560000000000007,12.551,13.554,14.659000000000001,15.875999999999999,17.222000000000001,18.710999999999999,20.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1216,-0.23669999999999999,15.877700000000001,0.080570000000000003,12.552,13.555,14.66,15.878,17.222999999999999,18.713000000000001,20.364999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1217,-0.23699999999999999,15.8788,0.080579999999999999,12.552,13.555999999999999,14.661,15.879,17.225000000000001,18.715,20.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1218,-0.23730000000000001,15.879899999999999,0.080589999999999995,12.553000000000001,13.557,14.662000000000001,15.88,17.225999999999999,18.716000000000001,20.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1219,-0.23760000000000001,15.881,0.080589999999999995,12.554,13.558,14.663,15.881,17.227,18.718,20.370999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1220,-0.2379,15.882099999999999,0.080600000000000005,12.555,13.558,14.663,15.882,17.228999999999999,18.719000000000001,20.373000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1221,-0.2382,15.8833,0.080610000000000001,12.555,13.558999999999999,14.664,15.882999999999999,17.23,18.721,20.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1222,-0.23849999999999999,15.884399999999999,0.080619999999999997,12.555999999999999,13.56,14.664999999999999,15.884,17.231999999999999,18.722999999999999,20.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1223,-0.23880000000000001,15.8855,0.080629999999999993,12.557,13.561,14.666,15.885999999999999,17.233000000000001,18.725000000000001,20.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1224,-0.23910000000000001,15.8866,0.080640000000000003,12.557,13.561,14.667,15.887,17.234000000000002,18.727,20.382000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1225,-0.2394,15.887700000000001,0.080649999999999999,12.558,13.561999999999999,14.667999999999999,15.888,17.236000000000001,18.728000000000002,20.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1226,-0.2397,15.8888,0.080659999999999996,12.558,13.563000000000001,14.669,15.888999999999999,17.236999999999998,18.73,20.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1227,-0.24,15.89,0.080659999999999996,12.558999999999999,13.564,14.67,15.89,17.238,18.731999999999999,20.388999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1228,-0.24030000000000001,15.8911,0.080670000000000006,12.56,13.565,14.670999999999999,15.891,17.239999999999998,18.733000000000001,20.390999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1229,-0.24060000000000001,15.892200000000001,0.080680000000000002,12.561,13.565,14.672000000000001,15.891999999999999,17.241,18.734999999999999,20.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1230,-0.2409,15.8933,0.080689999999999998,12.561,13.566000000000001,14.673,15.893000000000001,17.242999999999999,18.736999999999998,20.395 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1231,-0.2412,15.894399999999999,0.080699999999999994,12.561999999999999,13.567,14.673,15.894,17.244,18.739000000000001,20.398 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1232,-0.24149999999999999,15.8955,0.080710000000000004,12.563000000000001,13.568,14.673999999999999,15.896000000000001,17.245000000000001,18.739999999999998,20.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1233,-0.24179999999999999,15.896599999999999,0.08072,12.563000000000001,13.568,14.675000000000001,15.897,17.247,18.742000000000001,20.402000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1234,-0.2422,15.8977,0.080729999999999996,12.564,13.569000000000001,14.676,15.898,17.248000000000001,18.744,20.405000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1235,-0.24249999999999999,15.898899999999999,0.080729999999999996,12.565,13.57,14.677,15.898999999999999,17.248999999999999,18.745999999999999,20.405999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1236,-0.24279999999999999,15.9,0.080740000000000006,12.565,13.571,14.678000000000001,15.9,17.251000000000001,18.747,20.408999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1237,-0.24310000000000001,15.9011,0.080750000000000002,12.566000000000001,13.571999999999999,14.679,15.901,17.251999999999999,18.748999999999999,20.411000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1238,-0.24340000000000001,15.902200000000001,0.080759999999999998,12.567,13.571999999999999,14.68,15.901999999999999,17.254000000000001,18.751000000000001,20.413 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1239,-0.2437,15.9033,0.080769999999999995,12.567,13.573,14.680999999999999,15.903,17.254999999999999,18.753,20.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1240,-0.24399999999999999,15.904400000000001,0.080780000000000005,12.568,13.574,14.682,15.904,17.256,18.754000000000001,20.417999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1241,-0.24429999999999999,15.9055,0.080790000000000001,12.569000000000001,13.574,14.683,15.906000000000001,17.257999999999999,18.756,20.420000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1242,-0.24460000000000001,15.906599999999999,0.080799999999999997,12.569000000000001,13.574999999999999,14.683,15.907,17.259,18.757999999999999,20.422000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1243,-0.24490000000000001,15.9077,0.080799999999999997,12.57,13.576000000000001,14.683999999999999,15.907999999999999,17.260000000000002,18.759,20.423999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1244,-0.2452,15.908799999999999,0.080810000000000007,12.571,13.577,14.685,15.909000000000001,17.262,18.760999999999999,20.425999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1245,-0.2455,15.91,0.080820000000000003,12.571,13.577999999999999,14.686,15.91,17.263000000000002,18.763000000000002,20.428000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1246,-0.2457,15.911099999999999,0.080829999999999999,12.571999999999999,13.577999999999999,14.686999999999999,15.911,17.265000000000001,18.765000000000001,20.431000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1247,-0.246,15.9122,0.080839999999999995,12.573,13.579000000000001,14.688000000000001,15.912000000000001,17.265999999999998,18.765999999999998,20.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1248,-0.24629999999999999,15.9133,0.080850000000000005,12.573,13.58,14.689,15.913,17.266999999999999,18.768000000000001,20.434999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1249,-0.24660000000000001,15.914400000000001,0.080860000000000001,12.574,13.581,14.69,15.914,17.268999999999998,18.77,20.437000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1250,-0.24690000000000001,15.9155,0.080869999999999997,12.574999999999999,13.581,14.691000000000001,15.916,17.27,18.771999999999998,20.440000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1251,-0.2472,15.916600000000001,0.080869999999999997,12.574999999999999,13.582000000000001,14.692,15.917,17.271000000000001,18.773,20.440999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1252,-0.2475,15.9177,0.080879999999999994,12.576000000000001,13.583,14.693,15.917999999999999,17.273,18.774999999999999,20.443000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1253,-0.24779999999999999,15.918799999999999,0.080890000000000004,12.577,13.584,14.694000000000001,15.919,17.274000000000001,18.777000000000001,20.446000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1254,-0.24809999999999999,15.9199,0.0809,12.577,13.585000000000001,14.694000000000001,15.92,17.276,18.777999999999999,20.448 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1255,-0.24840000000000001,15.920999999999999,0.080909999999999996,12.577999999999999,13.585000000000001,14.695,15.920999999999999,17.277000000000001,18.78,20.45 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1256,-0.2487,15.9221,0.080920000000000006,12.579000000000001,13.586,14.696,15.922000000000001,17.277999999999999,18.782,20.452999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1257,-0.249,15.9232,0.080930000000000002,12.579000000000001,13.587,14.696999999999999,15.923,17.28,18.783999999999999,20.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1258,-0.24929999999999999,15.924300000000001,0.080939999999999998,12.58,13.587,14.698,15.923999999999999,17.280999999999999,18.785,20.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1259,-0.24959999999999999,15.9254,0.080939999999999998,12.581,13.587999999999999,14.699,15.925000000000001,17.282,18.786999999999999,20.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1260,-0.24990000000000001,15.926500000000001,0.080949999999999994,12.581,13.589,14.7,15.926,17.283999999999999,18.789000000000001,20.460999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1261,-0.25019999999999998,15.9276,0.080960000000000004,12.582000000000001,13.59,14.701000000000001,15.928000000000001,17.285,18.79,20.463000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1262,-0.2505,15.928699999999999,0.08097,12.583,13.590999999999999,14.702,15.929,17.286000000000001,18.792000000000002,20.465 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1263,-0.25080000000000002,15.9298,0.080979999999999996,12.583,13.590999999999999,14.702999999999999,15.93,17.288,18.794,20.468 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1264,-0.25109999999999999,15.930899999999999,0.080990000000000006,12.584,13.592000000000001,14.702999999999999,15.930999999999999,17.289000000000001,18.795999999999999,20.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1265,-0.25140000000000001,15.932,0.081000000000000003,12.584,13.593,14.704000000000001,15.932,17.291,18.797000000000001,20.472000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1266,-0.25169999999999998,15.9331,0.081009999999999999,12.585000000000001,13.593999999999999,14.705,15.933,17.292000000000002,18.798999999999999,20.474 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1267,-0.252,15.934200000000001,0.081019999999999995,12.586,13.593999999999999,14.706,15.933999999999999,17.292999999999999,18.800999999999998,20.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1268,-0.25230000000000002,15.9353,0.081019999999999995,12.587,13.595000000000001,14.707000000000001,15.935,17.295000000000002,18.802,20.478000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1269,-0.25259999999999999,15.936400000000001,0.081030000000000005,12.587,13.596,14.708,15.936,17.295999999999999,18.803999999999998,20.481000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1270,-0.25290000000000001,15.9375,0.081040000000000001,12.587999999999999,13.597,14.709,15.938000000000001,17.297000000000001,18.806000000000001,20.483000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1271,-0.25319999999999998,15.938599999999999,0.081049999999999997,12.589,13.597,14.71,15.939,17.298999999999999,18.808,20.484999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1272,-0.2535,15.9397,0.081059999999999993,12.589,13.598000000000001,14.711,15.94,17.3,18.809000000000001,20.486999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1273,-0.25380000000000003,15.940799999999999,0.081070000000000003,12.59,13.599,14.712,15.941000000000001,17.302,18.811,20.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1274,-0.25409999999999999,15.9419,0.081079999999999999,12.59,13.6,14.712,15.942,17.303000000000001,18.812999999999999,20.492000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1275,-0.25440000000000002,15.943,0.081089999999999995,12.590999999999999,13.6,14.712999999999999,15.943,17.303999999999998,18.815000000000001,20.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1276,-0.25459999999999999,15.944100000000001,0.081100000000000005,12.592000000000001,13.601000000000001,14.714,15.944000000000001,17.306000000000001,18.815999999999999,20.495999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1277,-0.25490000000000002,15.9451,0.081100000000000005,12.592000000000001,13.602,14.715,15.945,17.306999999999999,18.818000000000001,20.498000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1278,-0.25519999999999998,15.946199999999999,0.081110000000000002,12.593,13.603,14.715999999999999,15.946,17.308,18.82,20.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1279,-0.2555,15.9473,0.081119999999999998,12.593999999999999,13.603,14.717000000000001,15.946999999999999,17.309999999999999,18.821000000000002,20.501999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1280,-0.25580000000000003,15.948399999999999,0.081129999999999994,12.593999999999999,13.603999999999999,14.718,15.948,17.311,18.823,20.504999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1281,-0.25609999999999999,15.9495,0.081140000000000004,12.595000000000001,13.605,14.718999999999999,15.95,17.312000000000001,18.824999999999999,20.507000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1282,-0.25640000000000002,15.9506,0.08115,12.596,13.606,14.72,15.951000000000001,17.314,18.827000000000002,20.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1283,-0.25669999999999998,15.951700000000001,0.081159999999999996,12.596,13.606,14.72,15.952,17.315000000000001,18.827999999999999,20.512 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1284,-0.25700000000000001,15.9528,0.081170000000000006,12.597,13.606999999999999,14.721,15.952999999999999,17.317,18.829999999999998,20.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1285,-0.25729999999999997,15.953900000000001,0.081180000000000002,12.597,13.608000000000001,14.722,15.954000000000001,17.318000000000001,18.832000000000001,20.515999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1286,-0.2576,15.955,0.081180000000000002,12.598000000000001,13.609,14.723000000000001,15.955,17.318999999999999,18.832999999999998,20.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1287,-0.25790000000000002,15.956099999999999,0.081189999999999998,12.599,13.61,14.724,15.956,17.321000000000002,18.835000000000001,20.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1288,-0.25819999999999999,15.9572,0.081199999999999994,12.6,13.61,14.725,15.957000000000001,17.321999999999999,18.837,20.521999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1289,-0.25850000000000001,15.9582,0.081210000000000004,12.6,13.611000000000001,14.726000000000001,15.958,17.323,18.838000000000001,20.524000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1290,-0.25879999999999997,15.959300000000001,0.081220000000000001,12.601000000000001,13.612,14.727,15.959,17.324999999999999,18.84,20.527000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1291,-0.25900000000000001,15.9604,0.081229999999999997,12.601000000000001,13.612,14.728,15.96,17.326000000000001,18.841999999999999,20.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1292,-0.25929999999999997,15.961499999999999,0.081240000000000007,12.602,13.613,14.728,15.962,17.327000000000002,18.844000000000001,20.530999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1293,-0.2596,15.9626,0.081250000000000003,12.603,13.614000000000001,14.728999999999999,15.962999999999999,17.329000000000001,18.846,20.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1294,-0.25990000000000002,15.963699999999999,0.081259999999999999,12.603,13.615,14.73,15.964,17.329999999999998,18.847000000000001,20.536000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1295,-0.26019999999999999,15.9648,0.081259999999999999,12.603999999999999,13.615,14.731,15.965,17.331,18.849,20.536999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1296,-0.26050000000000001,15.9658,0.081269999999999995,12.605,13.616,14.731999999999999,15.965999999999999,17.332999999999998,18.850000000000001,20.539000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1297,-0.26079999999999998,15.966900000000001,0.081280000000000005,12.605,13.617000000000001,14.733000000000001,15.967000000000001,17.334,18.852,20.542000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1298,-0.2611,15.968,0.081290000000000001,12.606,13.618,14.734,15.968,17.335000000000001,18.853999999999999,20.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1299,-0.26140000000000002,15.969099999999999,0.081299999999999997,12.606999999999999,13.618,14.734999999999999,15.968999999999999,17.337,18.856000000000002,20.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1300,-0.26169999999999999,15.9702,0.081309999999999993,12.606999999999999,13.619,14.736000000000001,15.97,17.338000000000001,18.856999999999999,20.548999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1301,-0.26200000000000001,15.971299999999999,0.081320000000000003,12.608000000000001,13.62,14.737,15.971,17.34,18.859000000000002,20.550999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1302,-0.26229999999999998,15.9724,0.08133,12.608000000000001,13.621,14.737,15.972,17.341000000000001,18.861000000000001,20.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1303,-0.26250000000000001,15.9734,0.081339999999999996,12.609,13.621,14.738,15.973000000000001,17.341999999999999,18.863,20.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1304,-0.26279999999999998,15.974500000000001,0.081339999999999996,12.61,13.622,14.739000000000001,15.974,17.343,18.864000000000001,20.556999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1305,-0.2631,15.9756,0.081350000000000006,12.61,13.622999999999999,14.74,15.976000000000001,17.344999999999999,18.866,20.559000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1306,-0.26340000000000002,15.976699999999999,0.081360000000000002,12.611000000000001,13.624000000000001,14.741,15.977,17.346,18.867999999999999,20.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1307,-0.26369999999999999,15.9778,0.081369999999999998,12.612,13.624000000000001,14.742000000000001,15.978,17.347999999999999,18.869,20.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1308,-0.26400000000000001,15.9788,0.081379999999999994,12.612,13.625,14.743,15.978999999999999,17.349,18.870999999999999,20.565999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1309,-0.26429999999999998,15.979900000000001,0.081390000000000004,12.613,13.625999999999999,14.744,15.98,17.350000000000001,18.873000000000001,20.568000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1310,-0.2646,15.981,0.0814,12.613,13.625999999999999,14.744,15.981,17.352,18.873999999999999,20.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1311,-0.26490000000000002,15.982100000000001,0.081409999999999996,12.614000000000001,13.627000000000001,14.744999999999999,15.981999999999999,17.353000000000002,18.876000000000001,20.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1312,-0.26519999999999999,15.9832,0.081420000000000006,12.615,13.628,14.746,15.983000000000001,17.353999999999999,18.878,20.574999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1313,-0.26540000000000002,15.9842,0.081430000000000002,12.615,13.628,14.747,15.984,17.356000000000002,18.88,20.577000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1314,-0.26569999999999999,15.985300000000001,0.081430000000000002,12.616,13.629,14.747999999999999,15.984999999999999,17.356999999999999,18.881,20.579000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1315,-0.26600000000000001,15.9864,0.081439999999999999,12.617000000000001,13.63,14.749000000000001,15.986000000000001,17.358000000000001,18.882999999999999,20.581 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1316,-0.26629999999999998,15.987500000000001,0.081449999999999995,12.617000000000001,13.631,14.75,15.988,17.36,18.885000000000002,20.582999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1317,-0.2666,15.9885,0.081460000000000005,12.618,13.632,14.750999999999999,15.988,17.361000000000001,18.885999999999999,20.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1318,-0.26690000000000003,15.989599999999999,0.081470000000000001,12.619,13.632,14.750999999999999,15.99,17.361999999999998,18.888000000000002,20.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1319,-0.26719999999999999,15.9907,0.081479999999999997,12.619,13.632999999999999,14.752000000000001,15.991,17.364000000000001,18.89,20.59 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1320,-0.26750000000000002,15.9918,0.081490000000000007,12.62,13.634,14.753,15.992000000000001,17.364999999999998,18.891999999999999,20.591999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1321,-0.26769999999999999,15.992800000000001,0.081500000000000003,12.62,13.634,14.754,15.993,17.366,18.893000000000001,20.594000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1322,-0.26800000000000002,15.9939,0.081509999999999999,12.621,13.635,14.755000000000001,15.994,17.367999999999999,18.895,20.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1323,-0.26829999999999998,15.994999999999999,0.081519999999999995,12.622,13.635999999999999,14.756,15.994999999999999,17.369,18.896999999999998,20.599 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1324,-0.26860000000000001,15.9961,0.081519999999999995,12.622999999999999,13.637,14.757,15.996,17.37,18.898,20.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1325,-0.26889999999999997,15.9971,0.081530000000000005,12.622999999999999,13.637,14.757999999999999,15.997,17.372,18.899999999999999,20.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1326,-0.26919999999999999,15.998200000000001,0.081540000000000001,12.624000000000001,13.638,14.757999999999999,15.997999999999999,17.373000000000001,18.902000000000001,20.605 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1327,-0.26950000000000002,15.9993,0.081549999999999997,12.624000000000001,13.638999999999999,14.759,15.999000000000001,17.375,18.902999999999999,20.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1328,-0.26979999999999998,16.000399999999999,0.081559999999999994,12.625,13.64,14.76,16,17.376000000000001,18.905000000000001,20.609000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1329,-0.27,16.0014,0.081570000000000004,12.625,13.64,14.760999999999999,16.001000000000001,17.376999999999999,18.907,20.611000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1330,-0.27029999999999998,16.002500000000001,0.08158,12.625999999999999,13.641,14.762,16.003,17.379000000000001,18.908999999999999,20.614000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1331,-0.27060000000000001,16.003599999999999,0.081589999999999996,12.627000000000001,13.641999999999999,14.763,16.004000000000001,17.38,18.91,20.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1332,-0.27089999999999997,16.0046,0.081600000000000006,12.627000000000001,13.641999999999999,14.763999999999999,16.004999999999999,17.381,18.911999999999999,20.617999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1333,-0.2712,16.005700000000001,0.081610000000000002,12.628,13.643000000000001,14.763999999999999,16.006,17.382999999999999,18.914000000000001,20.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1334,-0.27150000000000002,16.006799999999998,0.081619999999999998,12.628,13.644,14.765000000000001,16.007000000000001,17.384,18.914999999999999,20.623000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1335,-0.27179999999999999,16.007899999999999,0.081619999999999998,12.629,13.645,14.766,16.007999999999999,17.385000000000002,18.917000000000002,20.623999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1336,-0.27200000000000002,16.008900000000001,0.081629999999999994,12.63,13.645,14.766999999999999,16.009,17.387,18.919,20.626000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1337,-0.27229999999999999,16.010000000000002,0.081640000000000004,12.631,13.646000000000001,14.768000000000001,16.010000000000002,17.388000000000002,18.920000000000002,20.629000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1338,-0.27260000000000001,16.011099999999999,0.08165,12.631,13.647,14.769,16.010999999999999,17.388999999999999,18.922000000000001,20.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1339,-0.27289999999999998,16.0121,0.081659999999999996,12.632,13.648,14.77,16.012,17.390999999999998,18.923999999999999,20.632999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1340,-0.2732,16.013200000000001,0.081670000000000006,12.632,13.648,14.771000000000001,16.013000000000002,17.391999999999999,18.925000000000001,20.635000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1341,-0.27350000000000002,16.014299999999999,0.081680000000000003,12.632999999999999,13.648999999999999,14.772,16.013999999999999,17.393000000000001,18.927,20.638000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1342,-0.27379999999999999,16.0153,0.081689999999999999,12.632999999999999,13.65,14.772,16.015000000000001,17.395,18.928999999999998,20.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1343,-0.27400000000000002,16.016400000000001,0.081699999999999995,12.634,13.65,14.773,16.015999999999998,17.396000000000001,18.931000000000001,20.641999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1344,-0.27429999999999999,16.017499999999998,0.081710000000000005,12.635,13.651,14.773999999999999,16.016999999999999,17.396999999999998,18.931999999999999,20.643999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1345,-0.27460000000000001,16.0185,0.081710000000000005,12.635999999999999,13.651999999999999,14.775,16.018000000000001,17.399000000000001,18.934000000000001,20.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1346,-0.27489999999999998,16.019600000000001,0.081720000000000001,12.635999999999999,13.653,14.776,16.02,17.399999999999999,18.934999999999999,20.648 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1347,-0.2752,16.020700000000001,0.081729999999999997,12.637,13.653,14.776999999999999,16.021000000000001,17.401,18.937000000000001,20.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1348,-0.27550000000000002,16.021699999999999,0.081739999999999993,12.637,13.654,14.778,16.021999999999998,17.402999999999999,18.939,20.652999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1349,-0.27579999999999999,16.0228,0.081750000000000003,12.638,13.654999999999999,14.778,16.023,17.404,18.940999999999999,20.655000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1350,-0.27600000000000002,16.023900000000001,0.081759999999999999,12.638,13.656000000000001,14.779,16.024000000000001,17.405000000000001,18.942,20.657 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1351,-0.27629999999999999,16.024899999999999,0.081769999999999995,12.638999999999999,13.656000000000001,14.78,16.024999999999999,17.407,18.943999999999999,20.658999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1352,-0.27660000000000001,16.026,0.081780000000000005,12.64,13.657,14.781000000000001,16.026,17.408000000000001,18.946000000000002,20.661999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1353,-0.27689999999999998,16.027000000000001,0.081790000000000002,12.64,13.657999999999999,14.782,16.027000000000001,17.408999999999999,18.948,20.664000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1354,-0.2772,16.028099999999998,0.081799999999999998,12.641,13.657999999999999,14.782999999999999,16.027999999999999,17.411000000000001,18.949000000000002,20.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1355,-0.27750000000000002,16.029199999999999,0.081809999999999994,12.641,13.659000000000001,14.784000000000001,16.029,17.411999999999999,18.951000000000001,20.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1356,-0.2777,16.030200000000001,0.081809999999999994,12.641999999999999,13.66,14.785,16.03,17.413,18.952000000000002,20.67 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1357,-0.27800000000000002,16.031300000000002,0.081820000000000004,12.643000000000001,13.661,14.785,16.030999999999999,17.414999999999999,18.954000000000001,20.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1358,-0.27829999999999999,16.032399999999999,0.08183,12.644,13.661,14.786,16.032,17.416,18.956,20.673999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1359,-0.27860000000000001,16.0334,0.081839999999999996,12.644,13.662000000000001,14.787000000000001,16.033000000000001,17.417000000000002,18.957999999999998,20.675999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1360,-0.27889999999999998,16.034500000000001,0.081850000000000006,12.645,13.663,14.788,16.035,17.419,18.959,20.678999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1361,-0.27910000000000001,16.035499999999999,0.081860000000000002,12.645,13.663,14.789,16.035,17.420000000000002,18.960999999999999,20.681000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1362,-0.27939999999999998,16.0366,0.081869999999999998,12.646000000000001,13.664,14.79,16.036999999999999,17.420999999999999,18.963000000000001,20.683 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1363,-0.2797,16.037700000000001,0.081879999999999994,12.646000000000001,13.664999999999999,14.791,16.038,17.422999999999998,18.965,20.684999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1364,-0.28000000000000003,16.038699999999999,0.081890000000000004,12.647,13.664999999999999,14.791,16.039000000000001,17.423999999999999,18.966000000000001,20.687999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1365,-0.28029999999999999,16.0398,0.081900000000000001,12.648,13.666,14.792,16.04,17.425000000000001,18.968,20.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1366,-0.28060000000000002,16.040800000000001,0.081909999999999997,12.648,13.667,14.792999999999999,16.041,17.427,18.97,20.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1367,-0.28079999999999999,16.041899999999998,0.081920000000000007,12.648999999999999,13.667999999999999,14.794,16.042000000000002,17.428000000000001,18.971,20.693999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1368,-0.28110000000000002,16.042899999999999,0.081920000000000007,12.65,13.667999999999999,14.795,16.042999999999999,17.428999999999998,18.972999999999999,20.696000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1369,-0.28139999999999998,16.044,0.081930000000000003,12.65,13.669,14.795999999999999,16.044,17.431000000000001,18.974,20.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1370,-0.28170000000000001,16.045100000000001,0.081939999999999999,12.651,13.67,14.797000000000001,16.045000000000002,17.431999999999999,18.975999999999999,20.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1371,-0.28199999999999997,16.046099999999999,0.081949999999999995,12.651,13.670999999999999,14.797000000000001,16.045999999999999,17.433,18.978000000000002,20.702000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1372,-0.28220000000000001,16.0472,0.081960000000000005,12.651999999999999,13.670999999999999,14.798,16.047000000000001,17.434999999999999,18.98,20.704999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1373,-0.28249999999999997,16.048200000000001,0.081970000000000001,12.651999999999999,13.672000000000001,14.798999999999999,16.047999999999998,17.436,18.981000000000002,20.707000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1374,-0.2828,16.049299999999999,0.081979999999999997,12.653,13.673,14.8,16.048999999999999,17.437000000000001,18.983000000000001,20.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1375,-0.28310000000000002,16.0503,0.081989999999999993,12.654,13.673,14.801,16.05,17.439,18.984999999999999,20.710999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1376,-0.28339999999999999,16.051400000000001,0.082000000000000003,12.654,13.673999999999999,14.802,16.050999999999998,17.440000000000001,18.986999999999998,20.713999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1377,-0.28360000000000002,16.052399999999999,0.08201,12.654999999999999,13.675000000000001,14.802,16.052,17.440999999999999,18.988,20.716000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1378,-0.28389999999999999,16.0535,0.082019999999999996,12.654999999999999,13.675000000000001,14.803000000000001,16.053999999999998,17.443000000000001,18.989999999999998,20.718 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1379,-0.28420000000000001,16.054600000000001,0.082030000000000006,12.656000000000001,13.676,14.804,16.055,17.443999999999999,18.992000000000001,20.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1380,-0.28449999999999998,16.055599999999998,0.082030000000000006,12.657,13.677,14.805,16.056000000000001,17.445,18.992999999999999,20.722000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1381,-0.2848,16.056699999999999,0.082040000000000002,12.657,13.678000000000001,14.805999999999999,16.056999999999999,17.446999999999999,18.995000000000001,20.724 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1382,-0.28499999999999998,16.057700000000001,0.082049999999999998,12.657999999999999,13.678000000000001,14.807,16.058,17.448,18.995999999999999,20.725999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1383,-0.2853,16.058800000000002,0.082059999999999994,12.659000000000001,13.679,14.808,16.059000000000001,17.449000000000002,18.998000000000001,20.728999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1384,-0.28560000000000002,16.059799999999999,0.082070000000000004,12.659000000000001,13.68,14.808,16.059999999999999,17.45,19,20.731000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1385,-0.28589999999999999,16.0609,0.08208,12.66,13.68,14.808999999999999,16.061,17.452000000000002,19.001999999999999,20.733000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1386,-0.28620000000000001,16.061900000000001,0.082089999999999996,12.66,13.680999999999999,14.81,16.062000000000001,17.452999999999999,19.003,20.734999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1387,-0.28639999999999999,16.062999999999999,0.082100000000000006,12.661,13.682,14.811,16.062999999999999,17.454999999999998,19.004999999999999,20.736999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1388,-0.28670000000000001,16.064,0.082110000000000002,12.661,13.682,14.811999999999999,16.064,17.456,19.007000000000001,20.74 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1389,-0.28699999999999998,16.065100000000001,0.082119999999999999,12.662000000000001,13.683,14.813000000000001,16.065000000000001,17.457000000000001,19.007999999999999,20.742000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1390,-0.2873,16.066099999999999,0.082129999999999995,12.663,13.683999999999999,14.813000000000001,16.065999999999999,17.457999999999998,19.010000000000002,20.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1391,-0.28760000000000002,16.0672,0.082140000000000005,12.663,13.683999999999999,14.814,16.067,17.46,19.012,20.745999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1392,-0.2878,16.068200000000001,0.082140000000000005,12.664,13.685,14.815,16.068000000000001,17.460999999999999,19.013000000000002,20.748000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1393,-0.28810000000000002,16.069299999999998,0.082150000000000001,12.664999999999999,13.686,14.816000000000001,16.068999999999999,17.462,19.015000000000001,20.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1394,-0.28839999999999999,16.0703,0.082159999999999997,12.664999999999999,13.686999999999999,14.817,16.07,17.463999999999999,19.016999999999999,20.751999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1395,-0.28870000000000001,16.071400000000001,0.082170000000000007,12.666,13.686999999999999,14.818,16.071000000000002,17.465,19.018000000000001,20.754000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1396,-0.28889999999999999,16.072399999999998,0.082180000000000003,12.666,13.688000000000001,14.819000000000001,16.071999999999999,17.466000000000001,19.02,20.757000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1397,-0.28920000000000001,16.073499999999999,0.082189999999999999,12.667,13.689,14.819000000000001,16.074000000000002,17.468,19.021999999999998,20.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1398,-0.28949999999999998,16.0745,0.082199999999999995,12.667,13.689,14.82,16.074000000000002,17.469000000000001,19.024000000000001,20.760999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1399,-0.2898,16.075600000000001,0.082210000000000005,12.667999999999999,13.69,14.821,16.076000000000001,17.47,19.024999999999999,20.763000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1400,-0.29010000000000002,16.076599999999999,0.082220000000000001,12.669,13.691000000000001,14.821999999999999,16.077000000000002,17.472000000000001,19.027000000000001,20.765999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1401,-0.2903,16.0777,0.082229999999999998,12.669,13.692,14.823,16.077999999999999,17.472999999999999,19.029,20.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1402,-0.29060000000000002,16.078700000000001,0.082239999999999994,12.67,13.692,14.824,16.079000000000001,17.474,19.03,20.77 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1403,-0.29089999999999999,16.079799999999999,0.082250000000000004,12.67,13.693,14.824999999999999,16.079999999999998,17.475999999999999,19.032,20.771999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1404,-0.29120000000000001,16.0808,0.082250000000000004,12.670999999999999,13.694000000000001,14.824999999999999,16.081,17.477,19.033000000000001,20.774000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1405,-0.29139999999999999,16.081800000000001,0.08226,12.672000000000001,13.694000000000001,14.826000000000001,16.082000000000001,17.478000000000002,19.035,20.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1406,-0.29170000000000001,16.082899999999999,0.082269999999999996,12.672000000000001,13.695,14.827,16.082999999999998,17.48,19.036999999999999,20.777999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1407,-0.29199999999999998,16.0839,0.082280000000000006,12.673,13.696,14.827999999999999,16.084,17.481000000000002,19.039000000000001,20.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1408,-0.2923,16.085000000000001,0.082290000000000002,12.673999999999999,13.696999999999999,14.829000000000001,16.085000000000001,17.481999999999999,19.04,20.783000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1409,-0.29249999999999998,16.085999999999999,0.082299999999999998,12.673999999999999,13.696999999999999,14.83,16.085999999999999,17.483000000000001,19.042000000000002,20.785 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1410,-0.2928,16.0871,0.082309999999999994,12.675000000000001,13.698,14.83,16.087,17.484999999999999,19.044,20.786999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1411,-0.29310000000000003,16.088100000000001,0.082320000000000004,12.675000000000001,13.699,14.831,16.088000000000001,17.486000000000001,19.045000000000002,20.789000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1412,-0.29339999999999999,16.089200000000002,0.08233,12.676,13.699,14.832000000000001,16.088999999999999,17.488,19.047000000000001,20.792000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1413,-0.29360000000000003,16.090199999999999,0.082339999999999997,12.676,13.7,14.833,16.09,17.489000000000001,19.048999999999999,20.794 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1414,-0.29389999999999999,16.091200000000001,0.082350000000000007,12.677,13.701000000000001,14.834,16.091000000000001,17.489999999999998,19.05,20.795999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1415,-0.29420000000000002,16.092300000000002,0.082360000000000003,12.677,13.701000000000001,14.835000000000001,16.091999999999999,17.492000000000001,19.052,20.797999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1416,-0.29449999999999998,16.093299999999999,0.082369999999999999,12.678000000000001,13.702,14.835000000000001,16.093,17.492999999999999,19.053999999999998,20.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1417,-0.29470000000000002,16.0944,0.082369999999999999,12.679,13.702999999999999,14.836,16.094000000000001,17.494,19.055,20.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1418,-0.29499999999999998,16.095400000000001,0.082379999999999995,12.68,13.704000000000001,14.837,16.094999999999999,17.495000000000001,19.056999999999999,20.803999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1419,-0.29530000000000001,16.096499999999999,0.082390000000000005,12.68,13.704000000000001,14.837999999999999,16.096,17.497,19.059000000000001,20.806000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1420,-0.29559999999999997,16.0975,0.082400000000000001,12.680999999999999,13.705,14.839,16.097999999999999,17.498000000000001,19.059999999999999,20.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1421,-0.29580000000000001,16.098500000000001,0.082409999999999997,12.680999999999999,13.706,14.84,16.099,17.498999999999999,19.062000000000001,20.811 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1422,-0.29609999999999997,16.099599999999999,0.082419999999999993,12.682,13.706,14.840999999999999,16.100000000000001,17.501000000000001,19.064,20.812999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1423,-0.2964,16.1006,0.082430000000000003,12.682,13.707000000000001,14.840999999999999,16.100999999999999,17.501999999999999,19.065999999999999,20.815000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1424,-0.29670000000000002,16.101700000000001,0.082439999999999999,12.683,13.708,14.842000000000001,16.102,17.503,19.067,20.817 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1425,-0.2969,16.102699999999999,0.082449999999999996,12.683,13.708,14.843,16.103000000000002,17.504999999999999,19.068999999999999,20.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1426,-0.29720000000000002,16.1038,0.082460000000000006,12.683999999999999,13.709,14.843999999999999,16.103999999999999,17.506,19.071000000000002,20.821999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1427,-0.29749999999999999,16.104800000000001,0.082470000000000002,12.685,13.71,14.845000000000001,16.105,17.507000000000001,19.071999999999999,20.824000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1428,-0.29780000000000001,16.105799999999999,0.082479999999999998,12.685,13.71,14.845000000000001,16.106000000000002,17.509,19.074000000000002,20.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1429,-0.29799999999999999,16.1069,0.082489999999999994,12.686,13.711,14.846,16.106999999999999,17.510000000000002,19.076000000000001,20.827999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1430,-0.29830000000000001,16.107900000000001,0.082500000000000004,12.686,13.712,14.847,16.108000000000001,17.510999999999999,19.077000000000002,20.831 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1431,-0.29859999999999998,16.109000000000002,0.082500000000000004,12.686999999999999,13.712999999999999,14.848000000000001,16.109000000000002,17.512,19.079000000000001,20.832000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1432,-0.2989,16.11,0.08251,12.688000000000001,13.712999999999999,14.849,16.11,17.513999999999999,19.081,20.834 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1433,-0.29909999999999998,16.111000000000001,0.082519999999999996,12.688000000000001,13.714,14.85,16.111000000000001,17.515000000000001,19.082000000000001,20.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1434,-0.2994,16.112100000000002,0.082530000000000006,12.689,13.715,14.851000000000001,16.111999999999998,17.515999999999998,19.084,20.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1435,-0.29970000000000002,16.113099999999999,0.082540000000000002,12.689,13.715,14.851000000000001,16.113,17.518000000000001,19.085999999999999,20.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1436,-0.3,16.114100000000001,0.082549999999999998,12.69,13.715999999999999,14.852,16.114000000000001,17.518999999999998,19.087,20.843 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1437,-0.30020000000000002,16.115200000000002,0.082559999999999995,12.691000000000001,13.717000000000001,14.853,16.114999999999998,17.52,19.088999999999999,20.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1438,-0.30049999999999999,16.116199999999999,0.082570000000000005,12.691000000000001,13.717000000000001,14.853999999999999,16.116,17.521999999999998,19.091000000000001,20.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1439,-0.30080000000000001,16.1173,0.082580000000000001,12.692,13.718,14.855,16.117000000000001,17.523,19.093,20.85 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1440,-0.30099999999999999,16.118300000000001,0.082589999999999997,12.692,13.718999999999999,14.856,16.117999999999999,17.524000000000001,19.094000000000001,20.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1441,-0.30130000000000001,16.119299999999999,0.082600000000000007,12.693,13.718999999999999,14.856,16.119,17.526,19.096,20.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1442,-0.30159999999999998,16.1204,0.082610000000000003,12.693,13.72,14.856999999999999,16.12,17.527000000000001,19.097999999999999,20.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1443,-0.3019,16.121400000000001,0.082619999999999999,12.694000000000001,13.721,14.858000000000001,16.120999999999999,17.527999999999999,19.099,20.859000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1444,-0.30209999999999998,16.122399999999999,0.082619999999999999,12.695,13.721,14.859,16.122,17.529,19.100999999999999,20.86 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1445,-0.3024,16.1235,0.082629999999999995,12.695,13.722,14.86,16.123999999999999,17.530999999999999,19.102,20.861999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1446,-0.30270000000000002,16.124500000000001,0.082640000000000005,12.696,13.723000000000001,14.861000000000001,16.125,17.532,19.103999999999999,20.864999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1447,-0.3029,16.125499999999999,0.082650000000000001,12.696,13.723000000000001,14.861000000000001,16.125,17.533000000000001,19.106000000000002,20.867000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1448,-0.30320000000000003,16.1266,0.082659999999999997,12.696999999999999,13.724,14.862,16.126999999999999,17.535,19.106999999999999,20.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1449,-0.30349999999999999,16.127600000000001,0.082669999999999993,12.698,13.725,14.863,16.128,17.536000000000001,19.109000000000002,20.870999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1450,-0.30380000000000001,16.128699999999998,0.082680000000000003,12.698,13.726000000000001,14.864000000000001,16.129000000000001,17.536999999999999,19.111000000000001,20.873999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1451,-0.30399999999999999,16.1297,0.08269,12.699,13.726000000000001,14.865,16.13,17.539000000000001,19.113,20.876000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1452,-0.30430000000000001,16.130700000000001,0.082699999999999996,12.699,13.727,14.866,16.131,17.54,19.114000000000001,20.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1453,-0.30459999999999998,16.131799999999998,0.082710000000000006,12.7,13.728,14.866,16.132000000000001,17.541,19.116,20.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1454,-0.30480000000000002,16.1328,0.082720000000000002,12.7,13.728,14.867000000000001,16.132999999999999,17.542999999999999,19.117999999999999,20.882000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1455,-0.30509999999999998,16.133800000000001,0.082729999999999998,12.701000000000001,13.728999999999999,14.868,16.134,17.544,19.119,20.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1456,-0.3054,16.134899999999998,0.082739999999999994,12.702,13.73,14.869,16.135000000000002,17.545000000000002,19.120999999999999,20.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1457,-0.30559999999999998,16.135899999999999,0.082750000000000004,12.702,13.73,14.87,16.135999999999999,17.547000000000001,19.123000000000001,20.888999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1458,-0.30590000000000001,16.136900000000001,0.082750000000000004,12.702999999999999,13.731,14.871,16.137,17.547999999999998,19.123999999999999,20.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1459,-0.30620000000000003,16.138000000000002,0.08276,12.704000000000001,13.731999999999999,14.872,16.138000000000002,17.548999999999999,19.126000000000001,20.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1460,-0.30649999999999999,16.138999999999999,0.082769999999999996,12.704000000000001,13.731999999999999,14.872,16.138999999999999,17.55,19.126999999999999,20.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1461,-0.30669999999999997,16.14,0.082780000000000006,12.705,13.733000000000001,14.872999999999999,16.14,17.552,19.129000000000001,20.896999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1462,-0.307,16.141100000000002,0.082790000000000002,12.705,13.734,14.874000000000001,16.140999999999998,17.553000000000001,19.131,20.899000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1463,-0.30730000000000002,16.142099999999999,0.082799999999999999,12.706,13.734,14.875,16.141999999999999,17.553999999999998,19.132999999999999,20.902000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1464,-0.3075,16.1431,0.082809999999999995,12.706,13.734999999999999,14.875999999999999,16.143000000000001,17.556000000000001,19.134,20.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1465,-0.30780000000000002,16.144200000000001,0.082820000000000005,12.707000000000001,13.736000000000001,14.875999999999999,16.143999999999998,17.556999999999999,19.135999999999999,20.905999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1466,-0.30809999999999998,16.145199999999999,0.082830000000000001,12.707000000000001,13.736000000000001,14.877000000000001,16.145,17.558,19.138000000000002,20.908000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1467,-0.30830000000000002,16.1462,0.082839999999999997,12.708,13.737,14.878,16.146000000000001,17.559999999999999,19.138999999999999,20.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1468,-0.30859999999999999,16.147300000000001,0.082849999999999993,12.709,13.738,14.879,16.146999999999998,17.561,19.140999999999998,20.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1469,-0.30890000000000001,16.148299999999999,0.082860000000000003,12.709,13.738,14.88,16.148,17.562000000000001,19.143000000000001,20.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1470,-0.30909999999999999,16.1493,0.082869999999999999,12.71,13.739000000000001,14.88,16.149000000000001,17.564,19.143999999999998,20.917000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1471,-0.30940000000000001,16.150400000000001,0.082879999999999995,12.71,13.74,14.881,16.149999999999999,17.565000000000001,19.146000000000001,20.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1472,-0.30969999999999998,16.151399999999999,0.082890000000000005,12.711,13.74,14.882,16.151,17.565999999999999,19.148,20.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1473,-0.31,16.1524,0.082890000000000005,12.712,13.741,14.882999999999999,16.152000000000001,17.567,19.149000000000001,20.922999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1474,-0.31019999999999998,16.153400000000001,0.082900000000000001,12.712,13.742000000000001,14.884,16.152999999999999,17.568999999999999,19.151,20.925000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1475,-0.3105,16.154499999999999,0.082909999999999998,12.712999999999999,13.743,14.885,16.154,17.57,19.152999999999999,20.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1476,-0.31080000000000002,16.1555,0.082919999999999994,12.712999999999999,13.743,14.885999999999999,16.155999999999999,17.571000000000002,19.154,20.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1477,-0.311,16.156500000000001,0.082930000000000004,12.714,13.744,14.885999999999999,16.157,17.573,19.155999999999999,20.931999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1478,-0.31130000000000002,16.157599999999999,0.08294,12.714,13.744999999999999,14.887,16.158000000000001,17.574000000000002,19.158000000000001,20.934000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1479,-0.31159999999999999,16.1586,0.082949999999999996,12.715,13.744999999999999,14.888,16.158999999999999,17.574999999999999,19.158999999999999,20.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1480,-0.31180000000000002,16.159600000000001,0.082960000000000006,12.715,13.746,14.888999999999999,16.16,17.577000000000002,19.161000000000001,20.937999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1481,-0.31209999999999999,16.160699999999999,0.082970000000000002,12.715999999999999,13.747,14.89,16.161000000000001,17.577999999999999,19.163,20.940999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1482,-0.31240000000000001,16.1617,0.082979999999999998,12.717000000000001,13.747,14.89,16.161999999999999,17.579000000000001,19.164999999999999,20.943000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1483,-0.31259999999999999,16.162700000000001,0.082989999999999994,12.717000000000001,13.747999999999999,14.891,16.163,17.581,19.166,20.945 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1484,-0.31290000000000001,16.163799999999998,0.083000000000000004,12.718,13.749000000000001,14.891999999999999,16.164000000000001,17.582000000000001,19.167999999999999,20.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1485,-0.31319999999999998,16.1648,0.08301,12.718,13.749000000000001,14.893000000000001,16.164999999999999,17.582999999999998,19.170000000000002,20.949000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1486,-0.31340000000000001,16.165800000000001,0.083019999999999997,12.718999999999999,13.75,14.894,16.166,17.584,19.170999999999999,20.952000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1487,-0.31369999999999998,16.166799999999999,0.083030000000000007,12.718999999999999,13.750999999999999,14.895,16.167000000000002,17.585999999999999,19.172999999999998,20.954000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1488,-0.314,16.167899999999999,0.083030000000000007,12.72,13.752000000000001,14.896000000000001,16.167999999999999,17.587,19.173999999999999,20.954999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1489,-0.31419999999999998,16.168900000000001,0.083040000000000003,12.721,13.752000000000001,14.896000000000001,16.169,17.588000000000001,19.175999999999998,20.957999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1490,-0.3145,16.169899999999998,0.083049999999999999,12.721,13.753,14.897,16.170000000000002,17.59,19.178000000000001,20.96 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1491,-0.31480000000000002,16.170999999999999,0.083059999999999995,12.722,13.754,14.898,16.170999999999999,17.591000000000001,19.178999999999998,20.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1492,-0.315,16.172000000000001,0.083070000000000005,12.722,13.754,14.898999999999999,16.172000000000001,17.591999999999999,19.181000000000001,20.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1493,-0.31530000000000002,16.172999999999998,0.083080000000000001,12.723000000000001,13.755000000000001,14.9,16.172999999999998,17.594000000000001,19.183,20.966000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1494,-0.31559999999999999,16.173999999999999,0.083089999999999997,12.724,13.755000000000001,14.9,16.173999999999999,17.594999999999999,19.184000000000001,20.969000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1495,-0.31580000000000003,16.1751,0.083099999999999993,12.724,13.756,14.901,16.175000000000001,17.596,19.186,20.971 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1496,-0.31609999999999999,16.176100000000002,0.083110000000000003,12.725,13.757,14.901999999999999,16.175999999999998,17.597000000000001,19.187999999999999,20.972999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1497,-0.31640000000000001,16.177099999999999,0.083119999999999999,12.725,13.757,14.903,16.177,17.599,19.190000000000001,20.975000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1498,-0.31659999999999999,16.1782,0.083129999999999996,12.726000000000001,13.757999999999999,14.904,16.178000000000001,17.600000000000001,19.190999999999999,20.978000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1499,-0.31690000000000002,16.179200000000002,0.083140000000000006,12.726000000000001,13.759,14.904,16.178999999999998,17.600999999999999,19.193000000000001,20.98 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1500,-0.31719999999999998,16.180199999999999,0.083150000000000002,12.727,13.759,14.904999999999999,16.18,17.603000000000002,19.195,20.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1501,-0.31740000000000002,16.1813,0.083159999999999998,12.727,13.76,14.906000000000001,16.181000000000001,17.603999999999999,19.196000000000002,20.984000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1502,-0.31769999999999998,16.182300000000001,0.083169999999999994,12.728,13.760999999999999,14.907,16.181999999999999,17.605,19.198,20.986000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1503,-0.31790000000000002,16.183299999999999,0.083169999999999994,12.728999999999999,13.762,14.907999999999999,16.183,17.606999999999999,19.199000000000002,20.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1504,-0.31819999999999998,16.1843,0.083180000000000004,12.728999999999999,13.762,14.909000000000001,16.184000000000001,17.608000000000001,19.201000000000001,20.99 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1505,-0.31850000000000001,16.185400000000001,0.08319,12.73,13.763,14.91,16.184999999999999,17.609000000000002,19.202999999999999,20.992000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1506,-0.31869999999999998,16.186399999999999,0.083199999999999996,12.731,13.763999999999999,14.91,16.186,17.61,19.204999999999998,20.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1507,-0.31900000000000001,16.1874,0.083210000000000006,12.731,13.763999999999999,14.911,16.187000000000001,17.611999999999998,19.206,20.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1508,-0.31929999999999997,16.188500000000001,0.083220000000000002,12.731999999999999,13.765000000000001,14.912000000000001,16.189,17.613,19.207999999999998,20.998999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1509,-0.31950000000000001,16.189499999999999,0.083229999999999998,12.731999999999999,13.766,14.913,16.189,17.614000000000001,19.21,21.001000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1510,-0.31979999999999997,16.1905,0.083239999999999995,12.733000000000001,13.766,14.914,16.190000000000001,17.616,19.210999999999999,21.003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1511,-0.3201,16.191500000000001,0.083250000000000005,12.733000000000001,13.766999999999999,14.914,16.192,17.617000000000001,19.213000000000001,21.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1512,-0.32029999999999997,16.192599999999999,0.083260000000000001,12.734,13.768000000000001,14.914999999999999,16.193000000000001,17.617999999999999,19.215,21.007999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1513,-0.3206,16.1936,0.083269999999999997,12.734,13.768000000000001,14.916,16.193999999999999,17.62,19.216000000000001,21.01 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1514,-0.32079999999999997,16.194600000000001,0.083280000000000007,12.734999999999999,13.769,14.917,16.195,17.620999999999999,19.218,21.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1515,-0.3211,16.195599999999999,0.083290000000000003,12.734999999999999,13.77,14.917999999999999,16.196000000000002,17.622,19.22,21.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1516,-0.32140000000000002,16.1967,0.083299999999999999,12.736000000000001,13.77,14.919,16.196999999999999,17.623999999999999,19.222000000000001,21.016999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1517,-0.3216,16.197700000000001,0.083309999999999995,12.737,13.771000000000001,14.919,16.198,17.625,19.222999999999999,21.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1518,-0.32190000000000002,16.198699999999999,0.083309999999999995,12.737,13.772,14.92,16.199000000000002,17.626000000000001,19.225000000000001,21.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1519,-0.32219999999999999,16.1998,0.083320000000000005,12.738,13.773,14.920999999999999,16.2,17.626999999999999,19.225999999999999,21.023 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1520,-0.32240000000000002,16.200800000000001,0.083330000000000001,12.739000000000001,13.773,14.922000000000001,16.201000000000001,17.629000000000001,19.228000000000002,21.024999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1521,-0.32269999999999999,16.201799999999999,0.083339999999999997,12.739000000000001,13.773999999999999,14.923,16.202000000000002,17.63,19.23,21.027000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1522,-0.32300000000000001,16.2028,0.083349999999999994,12.74,13.773999999999999,14.923,16.202999999999999,17.631,19.231000000000002,21.029 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1523,-0.32319999999999999,16.203900000000001,0.083360000000000004,12.74,13.775,14.923999999999999,16.204000000000001,17.632999999999999,19.233000000000001,21.030999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1524,-0.32350000000000001,16.204899999999999,0.08337,12.741,13.776,14.925000000000001,16.204999999999998,17.634,19.234999999999999,21.033999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1525,-0.32369999999999999,16.2059,0.083379999999999996,12.741,13.776,14.926,16.206,17.635000000000002,19.236000000000001,21.036000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1526,-0.32400000000000001,16.207000000000001,0.083390000000000006,12.742000000000001,13.776999999999999,14.927,16.207000000000001,17.637,19.238,21.038 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1527,-0.32429999999999998,16.207999999999998,0.083400000000000002,12.742000000000001,13.778,14.928000000000001,16.207999999999998,17.638000000000002,19.239999999999998,21.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1528,-0.32450000000000001,16.209,0.083409999999999998,12.743,13.778,14.928000000000001,16.209,17.638999999999999,19.242000000000001,21.042000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1529,-0.32479999999999998,16.21,0.083419999999999994,12.743,13.779,14.929,16.21,17.640999999999998,19.242999999999999,21.045000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1530,-0.32500000000000001,16.211099999999998,0.083430000000000004,12.744,13.78,14.93,16.210999999999999,17.641999999999999,19.245000000000001,21.047000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1531,-0.32529999999999998,16.2121,0.08344,12.744999999999999,13.78,14.930999999999999,16.212,17.643000000000001,19.247,21.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1532,-0.3256,16.213100000000001,0.083449999999999996,12.744999999999999,13.781000000000001,14.932,16.213000000000001,17.645,19.248000000000001,21.050999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1533,-0.32579999999999998,16.214099999999998,0.083460000000000006,12.746,13.782,14.932,16.213999999999999,17.646000000000001,19.25,21.053000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1534,-0.3261,16.215199999999999,0.083460000000000006,12.747,13.782999999999999,14.933,16.215,17.646999999999998,19.251000000000001,21.055 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1535,-0.32640000000000002,16.216200000000001,0.083470000000000003,12.747,13.782999999999999,14.933999999999999,16.216000000000001,17.648,19.253,21.056999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1536,-0.3266,16.217199999999998,0.083479999999999999,12.747999999999999,13.784000000000001,14.935,16.216999999999999,17.649999999999999,19.254999999999999,21.059000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1537,-0.32690000000000002,16.218299999999999,0.083489999999999995,12.747999999999999,13.785,14.936,16.218,17.651,19.257000000000001,21.062000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1538,-0.3271,16.2193,0.083500000000000005,12.749000000000001,13.785,14.936999999999999,16.219000000000001,17.652000000000001,19.257999999999999,21.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1539,-0.32740000000000002,16.220300000000002,0.083510000000000001,12.749000000000001,13.786,14.936999999999999,16.22,17.654,19.260000000000002,21.065999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1540,-0.32769999999999999,16.221299999999999,0.083519999999999997,12.75,13.787000000000001,14.938000000000001,16.221,17.655000000000001,19.262,21.068000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1541,-0.32790000000000002,16.2224,0.083529999999999993,12.75,13.787000000000001,14.939,16.222000000000001,17.655999999999999,19.263000000000002,21.071000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1542,-0.32819999999999999,16.223400000000002,0.083540000000000003,12.750999999999999,13.788,14.94,16.222999999999999,17.658000000000001,19.265000000000001,21.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1543,-0.32840000000000003,16.224399999999999,0.083549999999999999,12.752000000000001,13.789,14.941000000000001,16.224,17.658999999999999,19.266999999999999,21.074999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1544,-0.32869999999999999,16.2255,0.083559999999999995,12.752000000000001,13.789,14.942,16.225999999999999,17.66,19.268000000000001,21.077000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1545,-0.32900000000000001,16.226500000000001,0.083570000000000005,12.753,13.79,14.942,16.227,17.661000000000001,19.27,21.08 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1546,-0.32919999999999999,16.227499999999999,0.083580000000000002,12.753,13.791,14.943,16.228000000000002,17.663,19.271999999999998,21.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1547,-0.32950000000000002,16.2285,0.083589999999999998,12.754,13.791,14.944000000000001,16.228000000000002,17.664000000000001,19.273,21.084 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1548,-0.32969999999999999,16.229600000000001,0.083599999999999994,12.754,13.792,14.945,16.23,17.664999999999999,19.274999999999999,21.085999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1549,-0.33,16.230599999999999,0.083610000000000004,12.755000000000001,13.792999999999999,14.946,16.231000000000002,17.667000000000002,19.277000000000001,21.088000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1550,-0.33029999999999998,16.2316,0.08362,12.755000000000001,13.792999999999999,14.946,16.231999999999999,17.667999999999999,19.279,21.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1551,-0.33050000000000002,16.232700000000001,0.08362,12.756,13.794,14.946999999999999,16.233000000000001,17.669,19.28,21.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1552,-0.33079999999999998,16.233699999999999,0.083629999999999996,12.757,13.795,14.948,16.234000000000002,17.670999999999999,19.282,21.094000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1553,-0.33100000000000002,16.2347,0.083640000000000006,12.757,13.795,14.949,16.234999999999999,17.672000000000001,19.283000000000001,21.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1554,-0.33129999999999998,16.235700000000001,0.083650000000000002,12.757999999999999,13.795999999999999,14.95,16.236000000000001,17.672999999999998,19.285,21.099 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1555,-0.33160000000000001,16.236799999999999,0.083659999999999998,12.759,13.797000000000001,14.951000000000001,16.236999999999998,17.673999999999999,19.286999999999999,21.100999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1556,-0.33179999999999998,16.2378,0.083669999999999994,12.759,13.797000000000001,14.952,16.238,17.675999999999998,19.288,21.103000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1557,-0.33210000000000001,16.238800000000001,0.083680000000000004,12.76,13.798,14.952,16.239000000000001,17.677,19.29,21.105 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1558,-0.33229999999999998,16.239899999999999,0.083690000000000001,12.76,13.798999999999999,14.952999999999999,16.239999999999998,17.678000000000001,19.292000000000002,21.108000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1559,-0.33260000000000001,16.2409,0.083699999999999997,12.760999999999999,13.798999999999999,14.954000000000001,16.241,17.68,19.294,21.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1560,-0.33279999999999998,16.241900000000001,0.083710000000000007,12.760999999999999,13.8,14.955,16.242000000000001,17.681000000000001,19.295000000000002,21.111999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1561,-0.33310000000000001,16.242899999999999,0.083720000000000003,12.762,13.801,14.956,16.242999999999999,17.681999999999999,19.297000000000001,21.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1562,-0.33339999999999997,16.244,0.083729999999999999,12.762,13.801,14.956,16.244,17.684000000000001,19.298999999999999,21.117000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1563,-0.33360000000000001,16.245000000000001,0.083739999999999995,12.763,13.802,14.957000000000001,16.245000000000001,17.684999999999999,19.3,21.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1564,-0.33389999999999997,16.245999999999999,0.083750000000000005,12.763,13.803000000000001,14.958,16.245999999999999,17.686,19.302,21.120999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1565,-0.33410000000000001,16.2471,0.083760000000000001,12.763999999999999,13.803000000000001,14.959,16.247,17.687999999999999,19.303999999999998,21.123000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1566,-0.33439999999999998,16.248100000000001,0.083769999999999997,12.765000000000001,13.804,14.96,16.248000000000001,17.689,19.306000000000001,21.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1567,-0.3347,16.249099999999999,0.083779999999999993,12.765000000000001,13.805,14.96,16.248999999999999,17.690000000000001,19.306999999999999,21.128 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1568,-0.33489999999999998,16.2501,0.083779999999999993,12.766,13.805999999999999,14.961,16.25,17.690999999999999,19.308,21.129000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1569,-0.3352,16.251200000000001,0.083790000000000003,12.766999999999999,13.805999999999999,14.962,16.251000000000001,17.693000000000001,19.309999999999999,21.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1570,-0.33539999999999998,16.252199999999998,0.083799999999999999,12.766999999999999,13.807,14.962999999999999,16.251999999999999,17.693999999999999,19.312000000000001,21.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1571,-0.3357,16.2532,0.083809999999999996,12.768000000000001,13.808,14.964,16.253,17.695,19.314,21.135999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1572,-0.33589999999999998,16.254300000000001,0.083820000000000006,12.768000000000001,13.808,14.965,16.254000000000001,17.696999999999999,19.315000000000001,21.138000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1573,-0.3362,16.255299999999998,0.083830000000000002,12.769,13.808999999999999,14.965999999999999,16.254999999999999,17.698,19.317,21.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1574,-0.33650000000000002,16.2563,0.083839999999999998,12.769,13.81,14.965999999999999,16.256,17.699000000000002,19.318999999999999,21.143000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1575,-0.3367,16.257400000000001,0.083849999999999994,12.77,13.81,14.967000000000001,16.257000000000001,17.701000000000001,19.321000000000002,21.145 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1576,-0.33700000000000002,16.258400000000002,0.083860000000000004,12.77,13.811,14.968,16.257999999999999,17.702000000000002,19.321999999999999,21.146999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1577,-0.3372,16.259399999999999,0.08387,12.771000000000001,13.811999999999999,14.968999999999999,16.259,17.702999999999999,19.324000000000002,21.149000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1578,-0.33750000000000002,16.2605,0.083879999999999996,12.771000000000001,13.811999999999999,14.97,16.260000000000002,17.704999999999998,19.326000000000001,21.152000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1579,-0.3377,16.261500000000002,0.083890000000000006,12.772,13.813000000000001,14.97,16.262,17.706,19.327000000000002,21.154 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1580,-0.33800000000000002,16.262499999999999,0.083900000000000002,12.773,13.814,14.971,16.262,17.707000000000001,19.329000000000001,21.155999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1581,-0.3382,16.2636,0.083909999999999998,12.773,13.814,14.972,16.263999999999999,17.709,19.331,21.158000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1582,-0.33850000000000002,16.264600000000002,0.083919999999999995,12.773999999999999,13.815,14.973000000000001,16.265000000000001,17.71,19.332000000000001,21.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1583,-0.33879999999999999,16.265599999999999,0.083930000000000005,12.773999999999999,13.816000000000001,14.974,16.265999999999998,17.710999999999999,19.334,21.163 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1584,-0.33900000000000002,16.2666,0.083940000000000001,12.775,13.816000000000001,14.974,16.266999999999999,17.713000000000001,19.335999999999999,21.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1585,-0.33929999999999999,16.267700000000001,0.083940000000000001,12.776,13.817,14.975,16.268000000000001,17.713999999999999,19.337,21.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1586,-0.33950000000000002,16.268699999999999,0.083949999999999997,12.776,13.818,14.976000000000001,16.268999999999998,17.715,19.338999999999999,21.169 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1587,-0.33979999999999999,16.2697,0.083960000000000007,12.776999999999999,13.818,14.977,16.27,17.716000000000001,19.341000000000001,21.170999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1588,-0.34,16.270800000000001,0.083970000000000003,12.776999999999999,13.819000000000001,14.978,16.271000000000001,17.718,19.341999999999999,21.172999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1589,-0.34029999999999999,16.271799999999999,0.083979999999999999,12.778,13.82,14.978999999999999,16.271999999999998,17.719000000000001,19.344000000000001,21.175000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1590,-0.34050000000000002,16.2728,0.083989999999999995,12.778,13.82,14.98,16.273,17.72,19.346,21.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1591,-0.34079999999999999,16.273900000000001,0.084000000000000005,12.779,13.821,14.98,16.274000000000001,17.722000000000001,19.347999999999999,21.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1592,-0.34110000000000001,16.274899999999999,0.084010000000000001,12.78,13.821999999999999,14.981,16.274999999999999,17.722999999999999,19.349,21.181999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1593,-0.34129999999999999,16.2759,0.084019999999999997,12.78,13.821999999999999,14.981999999999999,16.276,17.724,19.350999999999999,21.184000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1594,-0.34160000000000001,16.277000000000001,0.084029999999999994,12.781000000000001,13.823,14.983000000000001,16.277000000000001,17.725999999999999,19.353000000000002,21.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1595,-0.34179999999999999,16.277999999999999,0.084040000000000004,12.781000000000001,13.824,14.984,16.277999999999999,17.727,19.353999999999999,21.189 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1596,-0.34210000000000002,16.279,0.08405,12.782,13.824,14.984,16.279,17.728000000000002,19.356000000000002,21.190999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1597,-0.34229999999999999,16.280100000000001,0.084059999999999996,12.782,13.824999999999999,14.984999999999999,16.28,17.73,19.358000000000001,21.193000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1598,-0.34260000000000002,16.281099999999999,0.084070000000000006,12.782999999999999,13.826000000000001,14.986000000000001,16.280999999999999,17.731000000000002,19.359000000000002,21.195 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1599,-0.34279999999999999,16.2821,0.084080000000000002,12.782999999999999,13.826000000000001,14.987,16.282,17.731999999999999,19.361000000000001,21.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1600,-0.34310000000000002,16.283200000000001,0.084089999999999998,12.784000000000001,13.827,14.988,16.283000000000001,17.734000000000002,19.363,21.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1601,-0.34329999999999999,16.284199999999998,0.084099999999999994,12.784000000000001,13.827999999999999,14.989000000000001,16.283999999999999,17.734999999999999,19.364999999999998,21.202000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1602,-0.34360000000000002,16.2852,0.084110000000000004,12.785,13.827999999999999,14.989000000000001,16.285,17.736000000000001,19.366,21.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1603,-0.34389999999999998,16.286300000000001,0.084110000000000004,12.786,13.829000000000001,14.99,16.286000000000001,17.736999999999998,19.367999999999999,21.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1604,-0.34410000000000002,16.287299999999998,0.08412,12.786,13.83,14.991,16.286999999999999,17.739000000000001,19.369,21.207999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1605,-0.34439999999999998,16.2883,0.084129999999999996,12.787000000000001,13.831,14.992000000000001,16.288,17.739999999999998,19.370999999999999,21.21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1606,-0.34460000000000002,16.289400000000001,0.084140000000000006,12.788,13.831,14.993,16.289000000000001,17.741,19.373000000000001,21.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1607,-0.34489999999999998,16.290400000000002,0.084150000000000003,12.788,13.832000000000001,14.994,16.29,17.742999999999999,19.375,21.215 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1608,-0.34510000000000002,16.291399999999999,0.084159999999999999,12.789,13.833,14.994,16.291,17.744,19.376000000000001,21.216999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1609,-0.34539999999999998,16.2925,0.084169999999999995,12.789,13.833,14.994999999999999,16.292000000000002,17.745000000000001,19.378,21.219000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1610,-0.34560000000000002,16.293500000000002,0.084180000000000005,12.79,13.834,14.996,16.294,17.747,19.38,21.221 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1611,-0.34589999999999999,16.294499999999999,0.084190000000000001,12.79,13.835000000000001,14.997,16.294,17.748000000000001,19.381,21.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1612,-0.34610000000000002,16.2956,0.084199999999999997,12.791,13.835000000000001,14.997999999999999,16.295999999999999,17.748999999999999,19.382999999999999,21.225999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1613,-0.34639999999999999,16.296600000000002,0.084209999999999993,12.791,13.836,14.999000000000001,16.297000000000001,17.751000000000001,19.385000000000002,21.228000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1614,-0.34660000000000002,16.297599999999999,0.084220000000000003,12.792,13.837,14.999000000000001,16.297999999999998,17.751999999999999,19.385999999999999,21.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1615,-0.34689999999999999,16.2987,0.084229999999999999,12.792999999999999,13.837,15,16.298999999999999,17.753,19.388000000000002,21.233000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1616,-0.34710000000000002,16.299700000000001,0.084239999999999995,12.792999999999999,13.837999999999999,15.000999999999999,16.3,17.754999999999999,19.39,21.234999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1617,-0.34739999999999999,16.300699999999999,0.084250000000000005,12.794,13.839,15.002000000000001,16.300999999999998,17.756,19.391999999999999,21.236999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1618,-0.34760000000000002,16.3018,0.084260000000000002,12.794,13.839,15.003,16.302,17.757000000000001,19.393000000000001,21.239000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1619,-0.34789999999999999,16.302800000000001,0.084269999999999998,12.795,13.84,15.003,16.303000000000001,17.759,19.395,21.242000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1620,-0.34820000000000001,16.303899999999999,0.084279999999999994,12.795,13.840999999999999,15.004,16.303999999999998,17.760000000000002,19.396999999999998,21.244 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1621,-0.34839999999999999,16.3049,0.084279999999999994,12.795999999999999,13.840999999999999,15.005000000000001,16.305,17.760999999999999,19.398,21.245000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1622,-0.34870000000000001,16.305900000000001,0.084290000000000004,12.797000000000001,13.842000000000001,15.006,16.306000000000001,17.762,19.399999999999999,21.248000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1623,-0.34889999999999999,16.306999999999999,0.0843,12.797000000000001,13.843,15.007,16.306999999999999,17.763999999999999,19.402000000000001,21.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1624,-0.34920000000000001,16.308,0.084309999999999996,12.798,13.843,15.007999999999999,16.308,17.765000000000001,19.402999999999999,21.251999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1625,-0.34939999999999999,16.309000000000001,0.084320000000000006,12.798,13.843999999999999,15.007999999999999,16.309000000000001,17.765999999999998,19.405000000000001,21.254000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1626,-0.34970000000000001,16.310099999999998,0.084330000000000002,12.798999999999999,13.845000000000001,15.009,16.309999999999999,17.768000000000001,19.407,21.257000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1627,-0.34989999999999999,16.3111,0.084339999999999998,12.798999999999999,13.845000000000001,15.01,16.311,17.768999999999998,19.408000000000001,21.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1628,-0.35020000000000001,16.312100000000001,0.084349999999999994,12.8,13.846,15.010999999999999,16.312000000000001,17.77,19.41,21.260999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1629,-0.35039999999999999,16.313199999999998,0.084360000000000004,12.801,13.847,15.012,16.312999999999999,17.771999999999998,19.411999999999999,21.263000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1630,-0.35070000000000001,16.3142,0.084370000000000001,12.801,13.847,15.013,16.314,17.773,19.414000000000001,21.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1631,-0.35089999999999999,16.315200000000001,0.084379999999999997,12.802,13.848000000000001,15.013,16.315000000000001,17.774000000000001,19.414999999999999,21.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1632,-0.35120000000000001,16.316299999999998,0.084390000000000007,12.802,13.849,15.013999999999999,16.315999999999999,17.776,19.417000000000002,21.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1633,-0.35139999999999999,16.317299999999999,0.084400000000000003,12.803000000000001,13.849,15.015000000000001,16.317,17.777000000000001,19.419,21.271999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1634,-0.35170000000000001,16.3184,0.084409999999999999,12.803000000000001,13.85,15.016,16.318000000000001,17.777999999999999,19.420999999999999,21.274999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1635,-0.35189999999999999,16.319400000000002,0.084419999999999995,12.804,13.851000000000001,15.016999999999999,16.318999999999999,17.78,19.422000000000001,21.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1636,-0.35220000000000001,16.320399999999999,0.084430000000000005,12.804,13.851000000000001,15.018000000000001,16.32,17.780999999999999,19.423999999999999,21.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1637,-0.35239999999999999,16.3215,0.084440000000000001,12.805,13.852,15.018000000000001,16.321999999999999,17.782,19.425999999999998,21.280999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1638,-0.35270000000000001,16.322500000000002,0.084449999999999997,12.805999999999999,13.853,15.019,16.323,17.783999999999999,19.427,21.283999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1639,-0.35289999999999999,16.323499999999999,0.084459999999999993,12.805999999999999,13.853,15.02,16.324000000000002,17.785,19.428999999999998,21.286000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1640,-0.35320000000000001,16.3246,0.084459999999999993,12.807,13.853999999999999,15.021000000000001,16.324999999999999,17.786000000000001,19.43,21.286999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1641,-0.35339999999999999,16.325600000000001,0.084470000000000003,12.808,13.855,15.022,16.326000000000001,17.786999999999999,19.431999999999999,21.29 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1642,-0.35370000000000001,16.326599999999999,0.08448,12.808,13.856,15.023,16.327000000000002,17.789000000000001,19.434000000000001,21.292000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1643,-0.35389999999999999,16.3277,0.084489999999999996,12.808999999999999,13.856,15.023,16.327999999999999,17.79,19.436,21.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1644,-0.35420000000000001,16.328700000000001,0.084500000000000006,12.808999999999999,13.856999999999999,15.023999999999999,16.329000000000001,17.791,19.437000000000001,21.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1645,-0.35439999999999999,16.329799999999999,0.084510000000000002,12.81,13.858000000000001,15.025,16.329999999999998,17.792999999999999,19.439,21.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1646,-0.35470000000000002,16.3308,0.084519999999999998,12.81,13.858000000000001,15.026,16.331,17.794,19.440999999999999,21.300999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1647,-0.35489999999999999,16.331800000000001,0.084529999999999994,12.811,13.859,15.026999999999999,16.332000000000001,17.795000000000002,19.442,21.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1648,-0.35520000000000002,16.332899999999999,0.084540000000000004,12.811,13.86,15.028,16.332999999999998,17.797000000000001,19.443999999999999,21.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1649,-0.35539999999999999,16.3339,0.08455,12.811999999999999,13.86,15.028,16.334,17.797999999999998,19.446000000000002,21.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1650,-0.35570000000000002,16.334900000000001,0.084559999999999996,12.813000000000001,13.861000000000001,15.029,16.335000000000001,17.798999999999999,19.448,21.31 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1651,-0.35589999999999999,16.335999999999999,0.084570000000000006,12.813000000000001,13.862,15.03,16.335999999999999,17.800999999999998,19.449000000000002,21.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1652,-0.35620000000000002,16.337,0.084580000000000002,12.814,13.862,15.031000000000001,16.337,17.802,19.451000000000001,21.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1653,-0.35639999999999999,16.338100000000001,0.084589999999999999,12.814,13.863,15.032,16.338000000000001,17.803000000000001,19.452999999999999,21.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1654,-0.35670000000000002,16.339099999999998,0.084599999999999995,12.815,13.864000000000001,15.032,16.338999999999999,17.805,19.454999999999998,21.318999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1655,-0.3569,16.3401,0.084610000000000005,12.815,13.864000000000001,15.032999999999999,16.34,17.806000000000001,19.456,21.321000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1656,-0.35720000000000002,16.341200000000001,0.084620000000000001,12.816000000000001,13.865,15.034000000000001,16.341000000000001,17.806999999999999,19.457999999999998,21.323 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1657,-0.3574,16.342199999999998,0.084629999999999997,12.816000000000001,13.866,15.035,16.341999999999999,17.809000000000001,19.46,21.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1658,-0.35770000000000002,16.3432,0.084640000000000007,12.817,13.866,15.036,16.343,17.809999999999999,19.460999999999999,21.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1659,-0.3579,16.3443,0.084640000000000007,12.818,13.867000000000001,15.037000000000001,16.344000000000001,17.811,19.463000000000001,21.329000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1660,-0.35820000000000002,16.345300000000002,0.084650000000000003,12.818,13.868,15.038,16.344999999999999,17.812000000000001,19.463999999999999,21.332000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1661,-0.3584,16.346399999999999,0.084659999999999999,12.819000000000001,13.869,15.038,16.346,17.814,19.466000000000001,21.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1662,-0.35859999999999997,16.3474,0.084669999999999995,12.82,13.869,15.039,16.347000000000001,17.815000000000001,19.468,21.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1663,-0.3589,16.348400000000002,0.084680000000000005,12.82,13.87,15.04,16.347999999999999,17.815999999999999,19.47,21.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1664,-0.35909999999999997,16.349499999999999,0.084690000000000001,12.821,13.871,15.041,16.349,17.818000000000001,19.471,21.341000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1665,-0.3594,16.3505,0.084699999999999998,12.821,13.871,15.042,16.350000000000001,17.818999999999999,19.472999999999999,21.343 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1666,-0.35959999999999998,16.351500000000001,0.084709999999999994,12.821999999999999,13.872,15.042,16.352,17.82,19.475000000000001,21.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1667,-0.3599,16.352599999999999,0.084720000000000004,12.821999999999999,13.872999999999999,15.042999999999999,16.353000000000002,17.821999999999999,19.477,21.347000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1668,-0.36009999999999998,16.3536,0.08473,12.823,13.872999999999999,15.044,16.353999999999999,17.823,19.478000000000002,21.35 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1669,-0.3604,16.354700000000001,0.084739999999999996,12.823,13.874000000000001,15.045,16.355,17.824999999999999,19.48,21.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1670,-0.36059999999999998,16.355699999999999,0.084750000000000006,12.824,13.875,15.045999999999999,16.356000000000002,17.826000000000001,19.481999999999999,21.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1671,-0.3609,16.3567,0.084760000000000002,12.824,13.875,15.047000000000001,16.356999999999999,17.827000000000002,19.483000000000001,21.356000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1672,-0.36109999999999998,16.357800000000001,0.084769999999999998,12.824999999999999,13.875999999999999,15.047000000000001,16.358000000000001,17.829000000000001,19.484999999999999,21.359000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1673,-0.3614,16.358799999999999,0.084779999999999994,12.826000000000001,13.877000000000001,15.048,16.359000000000002,17.829999999999998,19.486999999999998,21.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1674,-0.36159999999999998,16.3599,0.084790000000000004,12.826000000000001,13.877000000000001,15.048999999999999,16.36,17.831,19.489000000000001,21.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1675,-0.3619,16.360900000000001,0.0848,12.827,13.878,15.05,16.361000000000001,17.832999999999998,19.489999999999998,21.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1676,-0.36209999999999998,16.361899999999999,0.084809999999999997,12.827,13.878,15.051,16.361999999999998,17.834,19.492000000000001,21.367999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1677,-0.3624,16.363,0.084820000000000007,12.827999999999999,13.879,15.052,16.363,17.835000000000001,19.494,21.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1678,-0.36259999999999998,16.364000000000001,0.084830000000000003,12.827999999999999,13.88,15.052,16.364000000000001,17.835999999999999,19.495999999999999,21.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1679,-0.36280000000000001,16.365100000000002,0.084839999999999999,12.829000000000001,13.881,15.053000000000001,16.364999999999998,17.838000000000001,19.497,21.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1680,-0.36309999999999998,16.366099999999999,0.084839999999999999,12.83,13.881,15.054,16.366,17.838999999999999,19.498999999999999,21.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1681,-0.36330000000000001,16.367100000000001,0.084849999999999995,12.83,13.882,15.055,16.367000000000001,17.84,19.5,21.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1682,-0.36359999999999998,16.368200000000002,0.084860000000000005,12.831,13.882999999999999,15.055999999999999,16.367999999999999,17.841999999999999,19.501999999999999,21.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1683,-0.36380000000000001,16.369199999999999,0.084870000000000001,12.831,13.882999999999999,15.057,16.369,17.843,19.504000000000001,21.382999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1684,-0.36409999999999998,16.3703,0.084879999999999997,12.832000000000001,13.884,15.057,16.37,17.844000000000001,19.506,21.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1685,-0.36430000000000001,16.371300000000002,0.084889999999999993,12.833,13.885,15.058,16.370999999999999,17.846,19.507000000000001,21.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1686,-0.36459999999999998,16.372299999999999,0.084900000000000003,12.833,13.885,15.058999999999999,16.372,17.847000000000001,19.509,21.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1687,-0.36480000000000001,16.3734,0.084909999999999999,12.834,13.885999999999999,15.06,16.373000000000001,17.847999999999999,19.510999999999999,21.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1688,-0.36509999999999998,16.374400000000001,0.084919999999999995,12.834,13.887,15.061,16.373999999999999,17.850000000000001,19.512,21.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1689,-0.36530000000000001,16.375399999999999,0.084930000000000005,12.835000000000001,13.887,15.061,16.375,17.850999999999999,19.513999999999999,21.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1690,-0.36559999999999998,16.3765,0.084940000000000002,12.835000000000001,13.888,15.061999999999999,16.376000000000001,17.852,19.515999999999998,21.399000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1691,-0.36580000000000001,16.377500000000001,0.084949999999999998,12.836,13.888999999999999,15.063000000000001,16.378,17.853999999999999,19.518000000000001,21.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1692,-0.36599999999999999,16.378599999999999,0.084959999999999994,12.837,13.888999999999999,15.064,16.379000000000001,17.855,19.518999999999998,21.402999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1693,-0.36630000000000001,16.3796,0.084970000000000004,12.837,13.89,15.065,16.38,17.856000000000002,19.521000000000001,21.405000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1694,-0.36649999999999999,16.380600000000001,0.08498,12.837999999999999,13.891,15.066000000000001,16.381,17.858000000000001,19.523,21.408000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1695,-0.36680000000000001,16.381699999999999,0.084989999999999996,12.837999999999999,13.891,15.066000000000001,16.382000000000001,17.859000000000002,19.524999999999999,21.41 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1696,-0.36699999999999999,16.3827,0.085000000000000006,12.839,13.891999999999999,15.067,16.382999999999999,17.86,19.526,21.411999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1697,-0.36730000000000002,16.383800000000001,0.085010000000000002,12.839,13.893000000000001,15.068,16.384,17.861999999999998,19.527999999999999,21.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1698,-0.36749999999999999,16.384799999999998,0.085019999999999998,12.84,13.893000000000001,15.069000000000001,16.385000000000002,17.863,19.53,21.417000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1699,-0.36780000000000002,16.385899999999999,0.085029999999999994,12.84,13.894,15.07,16.385999999999999,17.864000000000001,19.532,21.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1700,-0.36799999999999999,16.386900000000001,0.085040000000000004,12.840999999999999,13.895,15.071,16.387,17.866,19.533000000000001,21.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1701,-0.36820000000000003,16.387899999999998,0.085040000000000004,12.842000000000001,13.896000000000001,15.071999999999999,16.388000000000002,17.867000000000001,19.533999999999999,21.422999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1702,-0.36849999999999999,16.388999999999999,0.085050000000000001,12.842000000000001,13.896000000000001,15.071999999999999,16.388999999999999,17.867999999999999,19.536000000000001,21.425000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1703,-0.36870000000000003,16.39,0.085059999999999997,12.843,13.897,15.073,16.39,17.869,19.538,21.427 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1704,-0.36899999999999999,16.391100000000002,0.085070000000000007,12.843999999999999,13.898,15.074,16.390999999999998,17.870999999999999,19.54,21.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1705,-0.36919999999999997,16.392099999999999,0.085080000000000003,12.843999999999999,13.898,15.074999999999999,16.391999999999999,17.872,19.541,21.431999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1706,-0.3695,16.3931,0.085089999999999999,12.845000000000001,13.898999999999999,15.076000000000001,16.393000000000001,17.873000000000001,19.542999999999999,21.434000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1707,-0.36969999999999997,16.394200000000001,0.085099999999999995,12.845000000000001,13.9,15.077,16.393999999999998,17.875,19.545000000000002,21.436 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1708,-0.36990000000000001,16.395199999999999,0.085110000000000005,12.846,13.9,15.077,16.395,17.876000000000001,19.547000000000001,21.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1709,-0.37019999999999997,16.3963,0.085120000000000001,12.846,13.901,15.077999999999999,16.396000000000001,17.878,19.547999999999998,21.440999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1710,-0.37040000000000001,16.397300000000001,0.085129999999999997,12.847,13.901999999999999,15.079000000000001,16.396999999999998,17.879000000000001,19.55,21.443000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1711,-0.37069999999999997,16.398299999999999,0.085139999999999993,12.847,13.901999999999999,15.08,16.398,17.88,19.552,21.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1712,-0.37090000000000001,16.3994,0.085150000000000003,12.848000000000001,13.903,15.081,16.399000000000001,17.882000000000001,19.553999999999998,21.448 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1713,-0.37119999999999997,16.400400000000001,0.08516,12.848000000000001,13.904,15.081,16.399999999999999,17.882999999999999,19.555,21.45 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1714,-0.37140000000000001,16.401499999999999,0.085169999999999996,12.849,13.904,15.082000000000001,16.402000000000001,17.884,19.556999999999999,21.452000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1715,-0.37169999999999997,16.4025,0.085180000000000006,12.85,13.904999999999999,15.083,16.402000000000001,17.885999999999999,19.559000000000001,21.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1716,-0.37190000000000001,16.403500000000001,0.085190000000000002,12.85,13.906000000000001,15.084,16.404,17.887,19.559999999999999,21.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1717,-0.37209999999999999,16.404599999999999,0.085199999999999998,12.851000000000001,13.906000000000001,15.085000000000001,16.405000000000001,17.888000000000002,19.562000000000001,21.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1718,-0.37240000000000001,16.4056,0.085209999999999994,12.851000000000001,13.907,15.086,16.405999999999999,17.89,19.564,21.460999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1719,-0.37259999999999999,16.406700000000001,0.085220000000000004,12.852,13.907999999999999,15.086,16.407,17.890999999999998,19.565999999999999,21.463999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1720,-0.37290000000000001,16.407699999999998,0.08523,12.852,13.907999999999999,15.087,16.408000000000001,17.891999999999999,19.567,21.466000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1721,-0.37309999999999999,16.408799999999999,0.085239999999999996,12.853,13.909000000000001,15.087999999999999,16.408999999999999,17.893999999999998,19.568999999999999,21.468 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1722,-0.37330000000000002,16.409800000000001,0.085239999999999996,12.853999999999999,13.91,15.089,16.41,17.895,19.571000000000002,21.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1723,-0.37359999999999999,16.410799999999998,0.085250000000000006,12.853999999999999,13.911,15.09,16.411000000000001,17.896000000000001,19.571999999999999,21.472000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1724,-0.37380000000000002,16.411899999999999,0.085260000000000002,12.855,13.911,15.090999999999999,16.411999999999999,17.896999999999998,19.574000000000002,21.474 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1725,-0.37409999999999999,16.4129,0.085269999999999999,12.855,13.912000000000001,15.090999999999999,16.413,17.899000000000001,19.576000000000001,21.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1726,-0.37430000000000002,16.414000000000001,0.085279999999999995,12.856,13.913,15.092000000000001,16.414000000000001,17.899999999999999,19.577999999999999,21.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1727,-0.37459999999999999,16.414999999999999,0.085290000000000005,12.856999999999999,13.913,15.093,16.414999999999999,17.901,19.579000000000001,21.481000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1728,-0.37480000000000002,16.4161,0.085300000000000001,12.856999999999999,13.914,15.093999999999999,16.416,17.902999999999999,19.581,21.483000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1729,-0.375,16.417100000000001,0.085309999999999997,12.858000000000001,13.914999999999999,15.095000000000001,16.417000000000002,17.904,19.582999999999998,21.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1730,-0.37530000000000002,16.418099999999999,0.085319999999999993,12.858000000000001,13.914999999999999,15.096,16.417999999999999,17.905000000000001,19.584,21.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1731,-0.3755,16.4192,0.085330000000000003,12.859,13.916,15.096,16.419,17.907,19.585999999999999,21.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1732,-0.37580000000000002,16.420200000000001,0.085339999999999999,12.859,13.917,15.097,16.420000000000002,17.908000000000001,19.588000000000001,21.492000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1733,-0.376,16.421299999999999,0.085349999999999995,12.86,13.917,15.098000000000001,16.420999999999999,17.908999999999999,19.59,21.495000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1734,-0.37619999999999998,16.4223,0.085360000000000005,12.86,13.917999999999999,15.099,16.422000000000001,17.911000000000001,19.591000000000001,21.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1735,-0.3765,16.423400000000001,0.085370000000000001,12.861000000000001,13.919,15.1,16.422999999999998,17.911999999999999,19.593,21.498999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1736,-0.37669999999999998,16.424399999999999,0.085379999999999998,12.862,13.919,15.101000000000001,16.423999999999999,17.913,19.594999999999999,21.501000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1737,-0.377,16.4254,0.085389999999999994,12.862,13.92,15.101000000000001,16.425000000000001,17.914999999999999,19.597000000000001,21.504000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1738,-0.37719999999999998,16.426500000000001,0.085400000000000004,12.863,13.920999999999999,15.102,16.425999999999998,17.916,19.597999999999999,21.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1739,-0.3775,16.427499999999998,0.08541,12.863,13.920999999999999,15.103,16.428000000000001,17.917000000000002,19.600000000000001,21.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1740,-0.37769999999999998,16.428599999999999,0.085419999999999996,12.864000000000001,13.922000000000001,15.103999999999999,16.428999999999998,17.919,19.602,21.510999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1741,-0.37790000000000001,16.429600000000001,0.085430000000000006,12.864000000000001,13.923,15.105,16.43,17.920000000000002,19.603999999999999,21.513000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1742,-0.37819999999999998,16.430700000000002,0.085440000000000002,12.865,13.923,15.106,16.431000000000001,17.922000000000001,19.605,21.515000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1743,-0.37840000000000001,16.431699999999999,0.085449999999999998,12.865,13.923999999999999,15.106,16.431999999999999,17.922999999999998,19.606999999999999,21.516999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1744,-0.37869999999999998,16.4328,0.085459999999999994,12.866,13.925000000000001,15.106999999999999,16.433,17.923999999999999,19.609000000000002,21.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1745,-0.37890000000000001,16.433800000000002,0.085459999999999994,12.867000000000001,13.926,15.108000000000001,16.434000000000001,17.925000000000001,19.61,21.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1746,-0.37909999999999999,16.434799999999999,0.085470000000000004,12.867000000000001,13.926,15.109,16.434999999999999,17.927,19.611999999999998,21.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1747,-0.37940000000000002,16.4359,0.08548,12.868,13.927,15.11,16.436,17.928000000000001,19.614000000000001,21.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1748,-0.37959999999999999,16.436900000000001,0.085489999999999997,12.869,13.928000000000001,15.111000000000001,16.437000000000001,17.928999999999998,19.614999999999998,21.527999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1749,-0.37990000000000002,16.437999999999999,0.085500000000000007,12.869,13.928000000000001,15.111000000000001,16.437999999999999,17.931000000000001,19.617000000000001,21.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1750,-0.38009999999999999,16.439,0.085510000000000003,12.87,13.929,15.112,16.439,17.931999999999999,19.619,21.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1751,-0.38030000000000003,16.440100000000001,0.085519999999999999,12.87,13.93,15.113,16.440000000000001,17.933,19.620999999999999,21.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1752,-0.38059999999999999,16.441099999999999,0.085529999999999995,12.871,13.93,15.114000000000001,16.440999999999999,17.934999999999999,19.622,21.536999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1753,-0.38080000000000003,16.4422,0.085540000000000005,12.871,13.930999999999999,15.115,16.442,17.936,19.623999999999999,21.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1754,-0.38109999999999999,16.443200000000001,0.085550000000000001,12.872,13.932,15.116,16.443000000000001,17.937000000000001,19.626000000000001,21.542000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1755,-0.38129999999999997,16.444199999999999,0.085559999999999997,12.872,13.932,15.116,16.443999999999999,17.939,19.626999999999999,21.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1756,-0.38150000000000001,16.4453,0.085569999999999993,12.872999999999999,13.933,15.117000000000001,16.445,17.940000000000001,19.629000000000001,21.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1757,-0.38179999999999997,16.446300000000001,0.085580000000000003,12.874000000000001,13.933999999999999,15.118,16.446000000000002,17.940999999999999,19.631,21.548999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1758,-0.38200000000000001,16.447399999999998,0.085589999999999999,12.874000000000001,13.933999999999999,15.119,16.446999999999999,17.943000000000001,19.632999999999999,21.550999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1759,-0.38219999999999998,16.448399999999999,0.085599999999999996,12.875,13.935,15.12,16.448,17.943999999999999,19.634,21.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1760,-0.38250000000000001,16.4495,0.085610000000000006,12.875,13.936,15.121,16.45,17.945,19.635999999999999,21.556000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1761,-0.38269999999999998,16.450500000000002,0.085620000000000002,12.875999999999999,13.936,15.121,16.45,17.946999999999999,19.638000000000002,21.558 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1762,-0.38300000000000001,16.451599999999999,0.085629999999999998,12.875999999999999,13.936999999999999,15.122,16.452000000000002,17.948,19.64,21.56 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1763,-0.38319999999999999,16.4526,0.085639999999999994,12.877000000000001,13.938000000000001,15.122999999999999,16.452999999999999,17.949000000000002,19.640999999999998,21.562000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1764,-0.38340000000000002,16.453700000000001,0.085650000000000004,12.878,13.938000000000001,15.124000000000001,16.454000000000001,17.951000000000001,19.643000000000001,21.565000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1765,-0.38369999999999999,16.454699999999999,0.08566,12.878,13.939,15.125,16.454999999999998,17.952000000000002,19.645,21.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1766,-0.38390000000000002,16.4558,0.085669999999999996,12.879,13.94,15.125999999999999,16.456,17.954000000000001,19.646999999999998,21.568999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1767,-0.38419999999999999,16.456800000000001,0.085669999999999996,12.88,13.941000000000001,15.127000000000001,16.457000000000001,17.954999999999998,19.648,21.571000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1768,-0.38440000000000002,16.457899999999999,0.085680000000000006,12.88,13.941000000000001,15.127000000000001,16.457999999999998,17.956,19.649999999999999,21.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1769,-0.3846,16.4589,0.085690000000000002,12.881,13.942,15.128,16.459,17.957000000000001,19.652000000000001,21.574999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1770,-0.38490000000000002,16.46,0.085699999999999998,12.881,13.943,15.129,16.46,17.959,19.652999999999999,21.577999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1771,-0.3851,16.460999999999999,0.085709999999999995,12.882,13.943,15.13,16.460999999999999,17.96,19.655000000000001,21.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1772,-0.38529999999999998,16.4621,0.085720000000000005,12.882,13.944000000000001,15.131,16.462,17.960999999999999,19.657,21.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1773,-0.3856,16.463100000000001,0.085730000000000001,12.882999999999999,13.945,15.131,16.463000000000001,17.963000000000001,19.658999999999999,21.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1774,-0.38579999999999998,16.464099999999998,0.085739999999999997,12.882999999999999,13.945,15.132,16.463999999999999,17.963999999999999,19.66,21.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1775,-0.3861,16.465199999999999,0.085750000000000007,12.884,13.946,15.132999999999999,16.465,17.965,19.661999999999999,21.588999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1776,-0.38629999999999998,16.466200000000001,0.085760000000000003,12.885,13.946999999999999,15.134,16.466000000000001,17.966999999999999,19.664000000000001,21.591000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1777,-0.38650000000000001,16.467300000000002,0.085769999999999999,12.885,13.946999999999999,15.135,16.466999999999999,17.968,19.666,21.594000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1778,-0.38679999999999998,16.468299999999999,0.085779999999999995,12.885999999999999,13.948,15.135999999999999,16.468,17.969000000000001,19.667000000000002,21.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1779,-0.38700000000000001,16.4694,0.085790000000000005,12.885999999999999,13.949,15.135999999999999,16.469000000000001,17.971,19.669,21.597999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1780,-0.38719999999999999,16.470400000000001,0.085800000000000001,12.887,13.949,15.137,16.47,17.972000000000001,19.670999999999999,21.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1781,-0.38750000000000001,16.471499999999999,0.085809999999999997,12.887,13.95,15.138,16.472000000000001,17.974,19.672999999999998,21.603000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1782,-0.38769999999999999,16.4725,0.085819999999999994,12.888,13.951000000000001,15.138999999999999,16.472000000000001,17.975000000000001,19.673999999999999,21.605 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1783,-0.38800000000000001,16.473600000000001,0.085830000000000004,12.888,13.951000000000001,15.14,16.474,17.975999999999999,19.675999999999998,21.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1784,-0.38819999999999999,16.474599999999999,0.08584,12.888999999999999,13.952,15.141,16.475000000000001,17.978000000000002,19.678000000000001,21.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1785,-0.38840000000000002,16.4757,0.085849999999999996,12.89,13.952999999999999,15.141,16.475999999999999,17.978999999999999,19.68,21.611999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1786,-0.38869999999999999,16.476700000000001,0.085860000000000006,12.89,13.952999999999999,15.141999999999999,16.477,17.98,19.681000000000001,21.614000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1787,-0.38890000000000002,16.477799999999998,0.085870000000000002,12.891,13.954000000000001,15.143000000000001,16.478000000000002,17.981999999999999,19.683,21.617000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1788,-0.3891,16.4788,0.085879999999999998,12.891,13.955,15.144,16.478999999999999,17.983000000000001,19.684999999999999,21.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1789,-0.38940000000000002,16.479900000000001,0.085889999999999994,12.891999999999999,13.955,15.145,16.48,17.984000000000002,19.687000000000001,21.620999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1790,-0.3896,16.480899999999998,0.085889999999999994,12.893000000000001,13.956,15.146000000000001,16.481000000000002,17.984999999999999,19.687999999999999,21.623000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1791,-0.38979999999999998,16.481999999999999,0.085900000000000004,12.893000000000001,13.957000000000001,15.147,16.481999999999999,17.986999999999998,19.690000000000001,21.625 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1792,-0.3901,16.483000000000001,0.08591,12.894,13.958,15.147,16.483000000000001,17.988,19.690999999999999,21.626999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1793,-0.39029999999999998,16.484100000000002,0.085919999999999996,12.894,13.958,15.148,16.484000000000002,17.989999999999998,19.693000000000001,21.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1794,-0.3906,16.485099999999999,0.085930000000000006,12.895,13.959,15.148999999999999,16.484999999999999,17.991,19.695,21.632000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1795,-0.39079999999999998,16.4862,0.085940000000000003,12.896000000000001,13.96,15.15,16.486000000000001,17.992000000000001,19.696999999999999,21.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1796,-0.39100000000000001,16.487300000000001,0.085949999999999999,12.896000000000001,13.96,15.151,16.486999999999998,17.994,19.698,21.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1797,-0.39129999999999998,16.488299999999999,0.085959999999999995,12.897,13.961,15.151999999999999,16.488,17.995000000000001,19.7,21.638999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1798,-0.39150000000000001,16.4894,0.085970000000000005,12.897,13.962,15.151999999999999,16.489000000000001,17.995999999999999,19.702000000000002,21.640999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1799,-0.39169999999999999,16.490400000000001,0.085980000000000001,12.898,13.962,15.153,16.489999999999998,17.998000000000001,19.704000000000001,21.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1800,-0.39200000000000002,16.491499999999998,0.085989999999999997,12.898,13.962999999999999,15.154,16.492000000000001,17.998999999999999,19.704999999999998,21.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1801,-0.39219999999999999,16.4925,0.085999999999999993,12.898999999999999,13.964,15.154999999999999,16.492000000000001,18,19.707000000000001,21.648 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1802,-0.39240000000000003,16.493600000000001,0.086010000000000003,12.898999999999999,13.964,15.156000000000001,16.494,18.001999999999999,19.709,21.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1803,-0.39269999999999999,16.494599999999998,0.086019999999999999,12.9,13.965,15.157,16.495000000000001,18.003,19.710999999999999,21.652999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1804,-0.39290000000000003,16.495699999999999,0.086029999999999995,12.901,13.965999999999999,15.157,16.495999999999999,18.004000000000001,19.712,21.655000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1805,-0.3931,16.496700000000001,0.086040000000000005,12.901,13.965999999999999,15.157999999999999,16.497,18.006,19.713999999999999,21.657 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1806,-0.39340000000000003,16.497800000000002,0.086050000000000001,12.901999999999999,13.967000000000001,15.159000000000001,16.498000000000001,18.007000000000001,19.716000000000001,21.66 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1807,-0.39360000000000001,16.498799999999999,0.086059999999999998,12.901999999999999,13.968,15.16,16.498999999999999,18.007999999999999,19.718,21.661999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1808,-0.39379999999999998,16.4999,0.086069999999999994,12.903,13.968,15.161,16.5,18.010000000000002,19.719000000000001,21.664000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1809,-0.39410000000000001,16.500900000000001,0.086080000000000004,12.903,13.968999999999999,15.162000000000001,16.501000000000001,18.010999999999999,19.721,21.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1810,-0.39429999999999998,16.501999999999999,0.08609,12.904,13.97,15.162000000000001,16.501999999999999,18.013000000000002,19.722999999999999,21.669 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1811,-0.39460000000000001,16.503,0.086099999999999996,12.904,13.97,15.163,16.503,18.013999999999999,19.725000000000001,21.670999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1812,-0.39479999999999998,16.504100000000001,0.086099999999999996,12.904999999999999,13.971,15.164,16.504000000000001,18.015000000000001,19.725999999999999,21.672999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1813,-0.39500000000000002,16.505099999999999,0.086110000000000006,12.906000000000001,13.972,15.164999999999999,16.504999999999999,18.015999999999998,19.728000000000002,21.675000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1814,-0.39529999999999998,16.5062,0.086120000000000002,12.907,13.973000000000001,15.166,16.506,18.018000000000001,19.73,21.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1815,-0.39550000000000002,16.507300000000001,0.086129999999999998,12.907,13.973000000000001,15.167,16.507000000000001,18.018999999999998,19.731000000000002,21.68 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1816,-0.3957,16.508299999999998,0.086139999999999994,12.907999999999999,13.974,15.167999999999999,16.507999999999999,18.02,19.733000000000001,21.681999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1817,-0.39600000000000002,16.509399999999999,0.086150000000000004,12.907999999999999,13.975,15.167999999999999,16.509,18.021999999999998,19.734999999999999,21.684000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1818,-0.3962,16.510400000000001,0.08616,12.909000000000001,13.975,15.169,16.510000000000002,18.023,19.736999999999998,21.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1819,-0.39639999999999997,16.511500000000002,0.086169999999999997,12.909000000000001,13.976000000000001,15.17,16.512,18.024999999999999,19.738,21.689 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1820,-0.3967,16.512499999999999,0.086180000000000007,12.91,13.977,15.170999999999999,16.512,18.026,19.739999999999998,21.690999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1821,-0.39689999999999998,16.5136,0.086190000000000003,12.91,13.977,15.172000000000001,16.513999999999999,18.027000000000001,19.742000000000001,21.693000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1822,-0.39710000000000001,16.514600000000002,0.086199999999999999,12.911,13.978,15.173,16.515000000000001,18.029,19.744,21.696000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1823,-0.39739999999999998,16.515699999999999,0.086209999999999995,12.912000000000001,13.978999999999999,15.173,16.515999999999998,18.03,19.745000000000001,21.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1824,-0.39760000000000001,16.5167,0.086220000000000005,12.912000000000001,13.978999999999999,15.173999999999999,16.516999999999999,18.030999999999999,19.747,21.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1825,-0.39779999999999999,16.517800000000001,0.086230000000000001,12.913,13.98,15.175000000000001,16.518000000000001,18.033000000000001,19.748999999999999,21.702999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1826,-0.39810000000000001,16.518899999999999,0.086239999999999997,12.913,13.981,15.176,16.518999999999998,18.033999999999999,19.751000000000001,21.704999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1827,-0.39829999999999999,16.5199,0.086249999999999993,12.914,13.981,15.177,16.52,18.035,19.751999999999999,21.707000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1828,-0.39850000000000002,16.521000000000001,0.086260000000000003,12.914,13.981999999999999,15.178000000000001,16.521000000000001,18.036999999999999,19.754000000000001,21.71 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1829,-0.39879999999999999,16.521999999999998,0.086269999999999999,12.914999999999999,13.983000000000001,15.178000000000001,16.521999999999998,18.038,19.756,21.712 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1830,-0.39900000000000002,16.523099999999999,0.086279999999999996,12.916,13.984,15.179,16.523,18.039000000000001,19.757999999999999,21.713999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1831,-0.3992,16.524100000000001,0.086290000000000006,12.916,13.984,15.18,16.524000000000001,18.041,19.759,21.716000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1832,-0.39950000000000002,16.525200000000002,0.086300000000000002,12.917,13.984999999999999,15.180999999999999,16.524999999999999,18.042000000000002,19.760999999999999,21.719000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1833,-0.3997,16.526199999999999,0.086309999999999998,12.917,13.986000000000001,15.182,16.526,18.042999999999999,19.763000000000002,21.721 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1834,-0.39989999999999998,16.5273,0.086309999999999998,12.917999999999999,13.986000000000001,15.183,16.527000000000001,18.045000000000002,19.763999999999999,21.722999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1835,-0.4002,16.528400000000001,0.086319999999999994,12.919,13.987,15.183999999999999,16.527999999999999,18.045999999999999,19.765999999999998,21.725000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1836,-0.40039999999999998,16.529399999999999,0.086330000000000004,12.919,13.988,15.183999999999999,16.529,18.047000000000001,19.768000000000001,21.727 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1837,-0.40060000000000001,16.5305,0.08634,12.92,13.989000000000001,15.185,16.53,18.048999999999999,19.77,21.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1838,-0.40089999999999998,16.531500000000001,0.086349999999999996,12.92,13.989000000000001,15.186,16.532,18.05,19.771000000000001,21.731999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1839,-0.40110000000000001,16.532599999999999,0.086360000000000006,12.920999999999999,13.99,15.186999999999999,16.533000000000001,18.050999999999998,19.773,21.734000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1840,-0.40129999999999999,16.5336,0.086370000000000002,12.920999999999999,13.991,15.188000000000001,16.533999999999999,18.053000000000001,19.774999999999999,21.736000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1841,-0.40150000000000002,16.534700000000001,0.086379999999999998,12.922000000000001,13.991,15.189,16.535,18.053999999999998,19.777000000000001,21.739000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1842,-0.40179999999999999,16.535799999999998,0.086389999999999995,12.923,13.992000000000001,15.189,16.536000000000001,18.056000000000001,19.779,21.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1843,-0.40200000000000002,16.536799999999999,0.086400000000000005,12.923,13.993,15.19,16.536999999999999,18.056999999999999,19.78,21.742999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1844,-0.4022,16.5379,0.086410000000000001,12.923999999999999,13.993,15.191000000000001,16.538,18.058,19.782,21.745999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1845,-0.40250000000000002,16.538900000000002,0.086419999999999997,12.923999999999999,13.994,15.192,16.539000000000001,18.059999999999999,19.783999999999999,21.748000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1846,-0.4027,16.54,0.086430000000000007,12.925000000000001,13.994999999999999,15.193,16.54,18.061,19.786000000000001,21.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1847,-0.40289999999999998,16.541,0.086440000000000003,12.925000000000001,13.994999999999999,15.194000000000001,16.541,18.062000000000001,19.786999999999999,21.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1848,-0.4032,16.542100000000001,0.086449999999999999,12.926,13.996,15.194000000000001,16.542000000000002,18.064,19.789000000000001,21.754999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1849,-0.40339999999999998,16.543199999999999,0.086459999999999995,12.927,13.997,15.195,16.542999999999999,18.065000000000001,19.791,21.757000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1850,-0.40360000000000001,16.5442,0.086470000000000005,12.927,13.997,15.196,16.544,18.065999999999999,19.792999999999999,21.76 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1851,-0.40389999999999998,16.545300000000001,0.086480000000000001,12.928000000000001,13.997999999999999,15.196999999999999,16.545000000000002,18.068000000000001,19.794,21.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1852,-0.40410000000000001,16.546299999999999,0.086489999999999997,12.928000000000001,13.999000000000001,15.198,16.545999999999999,18.068999999999999,19.795999999999999,21.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1853,-0.40429999999999999,16.5474,0.086499999999999994,12.929,13.999000000000001,15.199,16.547000000000001,18.07,19.797999999999998,21.766999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1854,-0.40460000000000002,16.548400000000001,0.086510000000000004,12.929,14,15.199,16.547999999999998,18.071999999999999,19.8,21.768999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1855,-0.40479999999999999,16.549499999999998,0.086510000000000004,12.93,14.000999999999999,15.2,16.55,18.073,19.800999999999998,21.77 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/arm-circumference-for-age/expanded-tables/acfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1856,-0.40500000000000003,16.550599999999999,0.08652,12.930999999999999,14.002000000000001,15.201000000000001,16.550999999999998,18.074000000000002,19.803000000000001,21.773 diff --git a/priv/growth/indicators/bmi_for_age.csv b/priv/growth/indicators/bmi_for_age.csv new file mode 100644 index 0000000..3b2c5b4 --- /dev/null +++ b/priv/growth/indicators/bmi_for_age.csv @@ -0,0 +1,4539 @@ +source,category,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-13-weeks_zscores.xlsx,age,female,week,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-13-weeks_zscores.xlsx,age,female,week,1,0.63190000000000002,13.2113,0.09887,9.5,10.7,11.9,13.2,14.5,15.9,17.3 +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,age,female,week,2,0.50819999999999999,13.450100000000001,0.097409999999999997,9.8000000000000007,11,12.2,13.5,14.8,16.2,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-13-weeks_zscores.xlsx,age,female,week,3,0.42630000000000001,13.9505,0.09647,10.199999999999999,11.4,12.6,14,15.3,16.8,18.3 +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,age,female,week,4,0.36370000000000002,14.4208,0.095769999999999994,10.6,11.8,13.1,14.4,15.8,17.399999999999999,19 +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,age,female,week,5,0.31240000000000001,14.8157,0.095200000000000007,11,12.2,13.5,14.8,16.3,17.8,19.5 +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,age,female,week,6,0.26879999999999998,15.138,0.094719999999999999,11.3,12.5,13.8,15.1,16.600000000000001,18.2,19.899999999999999 +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,age,female,week,7,0.2306,15.4063,0.094310000000000005,11.5,12.7,14,15.4,16.899999999999999,18.5,20.3 +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,age,female,week,8,0.1966,15.6311,0.093939999999999996,11.7,12.9,14.2,15.6,17.2,18.8,20.6 +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,age,female,week,9,0.1658,15.8232,0.093609999999999999,11.9,13.1,14.4,15.8,17.399999999999999,19,20.8 +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,age,female,week,10,0.13769999999999999,15.987399999999999,0.09332,12,13.2,14.6,16,17.5,19.2,21 +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,age,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,age,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,age,female,week,13,0.065199999999999994,16.353100000000001,0.092549999999999993,12.4,13.6,14.9,16.399999999999999,17.899999999999999,19.7,21.5 +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,age,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,age,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,age,female,month,2,0.1749,15.767899999999999,0.093710000000000002,11.8,13,14.3,15.8,17.3,19,20.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,age,female,month,3,0.064299999999999996,16.357399999999998,0.092539999999999997,12.4,13.6,14.9,16.399999999999999,17.899999999999999,19.7,21.5 +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,age,female,month,4,-0.019099999999999999,16.670300000000001,0.091660000000000005,12.7,13.9,15.2,16.7,18.3,20,22 +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,age,female,month,5,-0.086400000000000005,16.8386,0.090959999999999999,12.9,14.1,15.4,16.8,18.399999999999999,20.2,22.2 +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,age,female,month,6,-0.1429,16.908300000000001,0.090359999999999996,13,14.1,15.5,16.899999999999999,18.5,20.3,22.3 +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,age,female,month,7,-0.19159999999999999,16.902000000000001,0.089840000000000003,13,14.2,15.5,16.899999999999999,18.5,20.3,22.3 +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,age,female,month,8,-0.2344,16.840399999999999,0.089389999999999997,13,14.1,15.4,16.8,18.399999999999999,20.2,22.2 +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,age,female,month,9,-0.27250000000000002,16.740600000000001,0.088980000000000004,12.9,14.1,15.3,16.7,18.3,20.100000000000001,22.1 +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,age,female,month,10,-0.30680000000000002,16.618400000000001,0.088609999999999994,12.9,14,15.2,16.600000000000001,18.2,19.899999999999999,21.9 +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,age,female,month,11,-0.33810000000000001,16.487500000000001,0.088279999999999997,12.8,13.9,15.1,16.5,18,19.8,21.8 +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,age,female,month,12,-0.36670000000000003,16.3568,0.087970000000000007,12.7,13.8,15,16.399999999999999,17.899999999999999,19.600000000000001,21.6 +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,age,female,month,13,-0.39319999999999999,16.231100000000001,0.087679999999999994,12.6,13.7,14.9,16.2,17.7,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-2-years_zscores.xlsx,age,female,month,14,-0.41770000000000002,16.1128,0.087410000000000002,12.6,13.6,14.8,16.100000000000001,17.600000000000001,19.3,21.3 +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,age,female,month,15,-0.44069999999999998,16.002800000000001,0.087160000000000001,12.5,13.5,14.7,16,17.5,19.2,21.1 +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,age,female,month,16,-0.46229999999999999,15.9017,0.086929999999999993,12.4,13.5,14.6,15.9,17.399999999999999,19.100000000000001,21 +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,age,female,month,17,-0.48249999999999998,15.8096,0.086709999999999995,12.4,13.4,14.5,15.8,17.3,18.899999999999999,20.9 +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,age,female,month,18,-0.50170000000000003,15.7263,0.086499999999999994,12.3,13.3,14.4,15.7,17.2,18.8,20.8 +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,age,female,month,19,-0.51990000000000003,15.6517,0.086300000000000002,12.3,13.3,14.4,15.7,17.100000000000001,18.8,20.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,age,female,month,20,-0.53720000000000001,15.5855,0.086120000000000002,12.2,13.2,14.3,15.6,17,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_0-to-2-years_zscores.xlsx,age,female,month,21,-0.55369999999999997,15.527799999999999,0.085940000000000003,12.2,13.2,14.3,15.5,17,18.600000000000001,20.5 +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,age,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,age,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,age,female,month,24,-0.59889999999999999,15.405200000000001,0.085449999999999998,12.1,13.1,14.2,15.4,16.8,18.399999999999999,20.3 +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,age,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,age,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,age,female,month,26,-0.56840000000000002,15.630800000000001,0.084489999999999996,12.3,13.3,14.4,15.6,17,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,age,female,month,27,-0.56840000000000002,15.6037,0.084459999999999993,12.3,13.3,14.4,15.6,17,18.600000000000001,20.5 +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,age,female,month,28,-0.56840000000000002,15.5777,0.084440000000000001,12.3,13.3,14.3,15.6,17,18.600000000000001,20.5 +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,age,female,month,29,-0.56840000000000002,15.552300000000001,0.084430000000000005,12.3,13.2,14.3,15.6,17,18.600000000000001,20.399999999999999 +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,age,female,month,30,-0.56840000000000002,15.5276,0.084440000000000001,12.3,13.2,14.3,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_2-to-5-years_zscores.xlsx,age,female,month,31,-0.56840000000000002,15.503399999999999,0.08448,12.2,13.2,14.3,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_2-to-5-years_zscores.xlsx,age,female,month,32,-0.56840000000000002,15.479799999999999,0.08455,12.2,13.2,14.3,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_2-to-5-years_zscores.xlsx,age,female,month,33,-0.56840000000000002,15.4572,0.084669999999999995,12.2,13.1,14.2,15.5,16.899999999999999,18.5,20.3 +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,age,female,month,34,-0.56840000000000002,15.435600000000001,0.084839999999999999,12.2,13.1,14.2,15.4,16.8,18.5,20.3 +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,age,female,month,35,-0.56840000000000002,15.4155,0.085059999999999997,12.1,13.1,14.2,15.4,16.8,18.399999999999999,20.3 +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,age,female,month,36,-0.56840000000000002,15.396800000000001,0.085349999999999995,12.1,13.1,14.2,15.4,16.8,18.399999999999999,20.3 +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,age,female,month,37,-0.56840000000000002,15.3796,0.085690000000000002,12.1,13.1,14.1,15.4,16.8,18.399999999999999,20.3 +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,age,female,month,38,-0.56840000000000002,15.363799999999999,0.08609,12.1,13,14.1,15.4,16.8,18.399999999999999,20.3 +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,age,female,month,39,-0.56840000000000002,15.349299999999999,0.086540000000000006,12,13,14.1,15.3,16.8,18.399999999999999,20.3 +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,age,female,month,40,-0.56840000000000002,15.335800000000001,0.087040000000000006,12,13,14.1,15.3,16.8,18.399999999999999,20.3 +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,age,female,month,41,-0.56840000000000002,15.3233,0.087569999999999995,12,13,14.1,15.3,16.8,18.399999999999999,20.399999999999999 +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,age,female,month,42,-0.56840000000000002,15.3116,0.08813,12,12.9,14,15.3,16.8,18.399999999999999,20.399999999999999 +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,age,female,month,43,-0.56840000000000002,15.300700000000001,0.088719999999999993,11.9,12.9,14,15.3,16.8,18.399999999999999,20.399999999999999 +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,age,female,month,44,-0.56840000000000002,15.2905,0.08931,11.9,12.9,14,15.3,16.8,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_2-to-5-years_zscores.xlsx,age,female,month,45,-0.56840000000000002,15.2814,0.089910000000000004,11.9,12.9,14,15.3,16.8,18.5,20.5 +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,age,female,month,46,-0.56840000000000002,15.273199999999999,0.090509999999999993,11.9,12.9,14,15.3,16.8,18.5,20.5 +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,age,female,month,47,-0.56840000000000002,15.2661,0.0911,11.8,12.8,14,15.3,16.8,18.5,20.5 +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,age,female,month,48,-0.56840000000000002,15.260199999999999,0.091679999999999998,11.8,12.8,14,15.3,16.8,18.5,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,age,female,month,49,-0.56840000000000002,15.255599999999999,0.092270000000000005,11.8,12.8,13.9,15.3,16.8,18.5,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,age,female,month,50,-0.56840000000000002,15.2523,0.092859999999999998,11.8,12.8,13.9,15.3,16.8,18.600000000000001,20.7 +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,age,female,month,51,-0.56840000000000002,15.250299999999999,0.093450000000000005,11.8,12.8,13.9,15.3,16.8,18.600000000000001,20.7 +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,age,female,month,52,-0.56840000000000002,15.249599999999999,0.094030000000000002,11.7,12.8,13.9,15.2,16.8,18.600000000000001,20.7 +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,age,female,month,53,-0.56840000000000002,15.2502,0.094600000000000004,11.7,12.7,13.9,15.3,16.8,18.600000000000001,20.8 +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,age,female,month,54,-0.56840000000000002,15.251899999999999,0.095149999999999998,11.7,12.7,13.9,15.3,16.8,18.7,20.8 +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,age,female,month,55,-0.56840000000000002,15.2544,0.095680000000000001,11.7,12.7,13.9,15.3,16.8,18.7,20.9 +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,age,female,month,56,-0.56840000000000002,15.2575,0.096180000000000002,11.7,12.7,13.9,15.3,16.8,18.7,20.9 +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,age,female,month,57,-0.56840000000000002,15.261200000000001,0.09665,11.7,12.7,13.9,15.3,16.899999999999999,18.7,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,age,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,age,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,age,female,month,60,-0.56840000000000002,15.274699999999999,0.097890000000000005,11.6,12.7,13.9,15.3,16.899999999999999,18.8,21.1 +https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,male,week,2,0.41770000000000002,13.637700000000001,0.094539999999999999,10.1,11.2,12.4,13.6,15,16.399999999999999,17.8 +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,age,male,week,3,0.34489999999999998,14.2241,0.092299999999999993,10.6,11.8,13,14.2,15.6,17,18.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,age,male,week,4,0.28810000000000002,14.7714,0.090719999999999995,11.1,12.3,13.5,14.8,16.2,17.600000000000001,19.2 +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,age,male,week,5,0.2409,15.2355,0.089529999999999998,11.5,12.7,13.9,15.2,16.600000000000001,18.2,19.8 +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,age,male,week,6,0.20030000000000001,15.6107,0.088590000000000002,11.9,13,14.3,15.6,17,18.600000000000001,20.2 +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,age,male,week,7,0.16450000000000001,15.9169,0.087819999999999995,12.2,13.3,14.6,15.9,17.399999999999999,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_0-to-13-weeks_zscores.xlsx,age,male,week,8,0.13239999999999999,16.169799999999999,0.087169999999999997,12.4,13.6,14.8,16.2,17.600000000000001,19.2,20.9 +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,age,male,week,9,0.1032,16.378699999999998,0.086610000000000006,12.6,13.8,15,16.399999999999999,17.899999999999999,19.399999999999999,21.2 +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,age,male,week,10,0.076600000000000001,16.549399999999999,0.086120000000000002,12.7,13.9,15.2,16.5,18,19.600000000000001,21.4 +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,age,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,age,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,age,male,week,13,0.0077000000000000002,16.895,0.084959999999999994,13.1,14.3,15.5,16.899999999999999,18.399999999999999,20,21.8 +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,age,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,age,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,age,male,month,2,0.1118,16.319500000000001,0.08677,12.5,13.7,15,16.3,17.8,19.399999999999999,21.1 +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,age,male,month,3,0.0067999999999999996,16.898700000000002,0.084949999999999998,13.1,14.3,15.5,16.899999999999999,18.399999999999999,20,21.8 +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,age,male,month,4,-0.072700000000000001,17.157900000000001,0.083779999999999993,13.4,14.5,15.8,17.2,18.7,20.3,22.1 +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,age,male,month,5,-0.13700000000000001,17.291899999999998,0.082960000000000006,13.5,14.7,15.9,17.3,18.8,20.5,22.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,age,male,month,6,-0.1913,17.342199999999998,0.082339999999999997,13.6,14.7,16,17.3,18.8,20.5,22.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,age,male,month,7,-0.23849999999999999,17.328800000000001,0.08183,13.7,14.8,16,17.3,18.8,20.5,22.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,age,male,month,8,-0.2802,17.264700000000001,0.0814,13.6,14.7,15.9,17.3,18.7,20.399999999999999,22.2 +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,age,male,month,9,-0.31759999999999999,17.1662,0.081019999999999995,13.6,14.7,15.8,17.2,18.600000000000001,20.3,22.1 +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,age,male,month,10,-0.35160000000000002,17.0488,0.080680000000000002,13.5,14.6,15.7,17,18.5,20.100000000000001,22 +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,age,male,month,11,-0.38279999999999997,16.9239,0.080369999999999997,13.4,14.5,15.6,16.899999999999999,18.399999999999999,20,21.8 +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,age,male,month,12,-0.41149999999999998,16.798100000000002,0.080089999999999995,13.4,14.4,15.5,16.8,18.2,19.8,21.6 +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,age,male,month,13,-0.43819999999999998,16.674299999999999,0.079820000000000002,13.3,14.3,15.4,16.7,18.100000000000001,19.7,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-2-years_zcores.xlsx,age,male,month,14,-0.46300000000000002,16.5548,0.079579999999999998,13.2,14.2,15.3,16.600000000000001,18,19.5,21.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,age,male,month,15,-0.48630000000000001,16.440899999999999,0.079350000000000004,13.1,14.1,15.2,16.399999999999999,17.8,19.399999999999999,21.2 +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,age,male,month,16,-0.50819999999999999,16.333500000000001,0.079130000000000006,13.1,14,15.1,16.3,17.7,19.3,21 +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,age,male,month,17,-0.52890000000000004,16.232900000000001,0.078920000000000004,13,13.9,15,16.2,17.600000000000001,19.100000000000001,20.9 +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,age,male,month,18,-0.5484,16.139199999999999,0.078729999999999994,12.9,13.9,14.9,16.100000000000001,17.5,19,20.8 +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,age,male,month,19,-0.56689999999999996,16.052800000000001,0.078539999999999999,12.9,13.8,14.9,16.100000000000001,17.399999999999999,18.899999999999999,20.7 +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,age,male,month,20,-0.58460000000000001,15.974299999999999,0.078359999999999999,12.8,13.7,14.8,16,17.3,18.8,20.6 +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,age,male,month,21,-0.60140000000000005,15.9039,0.078179999999999999,12.8,13.7,14.7,15.9,17.2,18.7,20.5 +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,age,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,age,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,age,male,month,24,-0.64729999999999999,15.7356,0.077710000000000001,12.7,13.6,14.6,15.7,17,18.5,20.3 +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,age,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,age,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,age,male,month,26,-0.54969999999999997,15.9414,0.078,12.8,13.7,14.8,15.9,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,age,male,month,27,-0.51659999999999995,15.903600000000001,0.078079999999999997,12.7,13.7,14.7,15.9,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_2-to-5-years_zscores.xlsx,age,male,month,28,-0.48499999999999999,15.8667,0.078179999999999999,12.7,13.6,14.7,15.9,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_2-to-5-years_zscores.xlsx,age,male,month,29,-0.45519999999999999,15.8306,0.078289999999999998,12.7,13.6,14.7,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_2-to-5-years_zscores.xlsx,age,male,month,30,-0.4274,15.795299999999999,0.078409999999999994,12.6,13.6,14.6,15.8,17.100000000000001,18.600000000000001,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,age,male,month,31,-0.40160000000000001,15.7606,0.078539999999999999,12.6,13.5,14.6,15.8,17.100000000000001,18.5,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,age,male,month,32,-0.37819999999999998,15.726699999999999,0.078670000000000004,12.5,13.5,14.6,15.7,17,18.5,20.100000000000001 +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,age,male,month,33,-0.35720000000000002,15.6934,0.078820000000000001,12.5,13.5,14.5,15.7,17,18.5,20.100000000000001 +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,age,male,month,34,-0.33879999999999999,15.661,0.078969999999999999,12.5,13.4,14.5,15.7,17,18.399999999999999,20 +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,age,male,month,35,-0.3231,15.6294,0.079140000000000002,12.4,13.4,14.5,15.6,16.899999999999999,18.399999999999999,20 +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,age,male,month,36,-0.31009999999999999,15.598800000000001,0.079310000000000005,12.4,13.4,14.4,15.6,16.899999999999999,18.399999999999999,20 +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,age,male,month,37,-0.3,15.5693,0.079500000000000001,12.4,13.3,14.4,15.6,16.899999999999999,18.3,19.899999999999999 +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,age,male,month,38,-0.29270000000000002,15.541,0.079689999999999997,12.3,13.3,14.4,15.5,16.8,18.3,19.899999999999999 +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,age,male,month,39,-0.28839999999999999,15.513999999999999,0.079899999999999999,12.3,13.3,14.3,15.5,16.8,18.3,19.899999999999999 +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,age,male,month,40,-0.28689999999999999,15.4885,0.080119999999999997,12.3,13.2,14.3,15.5,16.8,18.2,19.899999999999999 +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,age,male,month,41,-0.28810000000000002,15.464499999999999,0.080360000000000001,12.2,13.2,14.3,15.5,16.8,18.2,19.899999999999999 +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,age,male,month,42,-0.29189999999999999,15.442,0.080610000000000001,12.2,13.2,14.3,15.4,16.8,18.2,19.8 +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,age,male,month,43,-0.29809999999999998,15.420999999999999,0.080869999999999997,12.2,13.2,14.2,15.4,16.7,18.2,19.8 +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,age,male,month,44,-0.30669999999999997,15.401300000000001,0.08115,12.2,13.1,14.2,15.4,16.7,18.2,19.8 +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,age,male,month,45,-0.31740000000000002,15.3827,0.081439999999999999,12.2,13.1,14.2,15.4,16.7,18.2,19.8 +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,age,male,month,46,-0.33029999999999998,15.3652,0.081739999999999993,12.1,13.1,14.2,15.4,16.7,18.2,19.8 +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,age,male,month,47,-0.34520000000000001,15.3485,0.082049999999999998,12.1,13.1,14.2,15.3,16.7,18.2,19.899999999999999 +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,age,male,month,48,-0.36220000000000002,15.332599999999999,0.082379999999999995,12.1,13.1,14.1,15.3,16.7,18.2,19.899999999999999 +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,age,male,month,49,-0.38109999999999999,15.317399999999999,0.082720000000000002,12.1,13,14.1,15.3,16.7,18.2,19.899999999999999 +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,age,male,month,50,-0.40189999999999998,15.302899999999999,0.083070000000000005,12.1,13,14.1,15.3,16.7,18.2,19.899999999999999 +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,age,male,month,51,-0.42449999999999999,15.289099999999999,0.083430000000000004,12.1,13,14.1,15.3,16.600000000000001,18.2,19.899999999999999 +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,age,male,month,52,-0.44879999999999998,15.2759,0.083799999999999999,12,13,14.1,15.3,16.600000000000001,18.2,19.899999999999999 +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,age,male,month,53,-0.47470000000000001,15.263299999999999,0.084180000000000005,12,13,14.1,15.3,16.600000000000001,18.2,20 +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,age,male,month,54,-0.50190000000000001,15.2514,0.084570000000000006,12,13,14,15.3,16.600000000000001,18.2,20 +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,age,male,month,55,-0.53029999999999999,15.24,0.084959999999999994,12,13,14,15.2,16.600000000000001,18.2,20 +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,age,male,month,56,-0.55989999999999995,15.229100000000001,0.085360000000000005,12,12.9,14,15.2,16.600000000000001,18.2,20.100000000000001 +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,age,male,month,57,-0.59050000000000002,15.2188,0.085769999999999999,12,12.9,14,15.2,16.600000000000001,18.2,20.100000000000001 +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,age,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,age,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,age,male,month,60,-0.68920000000000003,15.191599999999999,0.086999999999999994,12,12.9,14,15.2,16.600000000000001,18.3,20.3 +https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,male,month,228,-0.84189999999999998,22.188300000000002,0.12948000000000001,15.855,17.553999999999998,19.622,22.187999999999999,25.449000000000002,29.716000000000001,35.515999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,0,-0.063100000000000003,13.3363,0.092719999999999997,10.122,11.090999999999999,12.159000000000001,13.336,14.635999999999999,16.071000000000002,17.657 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1,0.036200000000000003,13.3185,0.093600000000000003,10.042999999999999,11.038,12.127000000000001,13.318,14.622999999999999,16.05,17.611000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,2,0.13550000000000001,13.300599999999999,0.094479999999999995,9.9619999999999997,10.983000000000001,12.093999999999999,13.301,14.61,16.029,17.565999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,3,0.23469999999999999,13.2828,0.095350000000000004,9.8789999999999996,10.928000000000001,12.061999999999999,13.282999999999999,14.596,16.007000000000001,17.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,4,0.33400000000000002,13.264900000000001,0.096229999999999996,9.7919999999999998,10.872,12.029,13.265000000000001,14.583,15.984999999999999,17.474 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,5,0.43330000000000002,13.247,0.097110000000000002,9.702,10.815,11.996,13.247,14.569000000000001,15.962999999999999,17.428999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,6,0.53259999999999996,13.229200000000001,0.097989999999999994,9.609,10.756,11.962999999999999,13.228999999999999,14.555,15.94,17.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,7,0.63190000000000002,13.2113,0.09887,9.5129999999999999,10.696,11.929,13.211,14.541,15.917,17.338999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,8,0.61419999999999997,13.2455,0.098659999999999998,9.5540000000000003,10.733000000000001,11.964,13.246,14.577,15.957000000000001,17.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,9,0.59650000000000003,13.2796,0.098449999999999996,9.5960000000000001,10.77,11.997999999999999,13.28,14.613,15.997,17.431000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,10,0.57889999999999997,13.313700000000001,0.098239999999999994,9.6370000000000005,10.807,12.032999999999999,13.314,14.648999999999999,16.036999999999999,17.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,11,0.56120000000000003,13.347799999999999,0.098040000000000002,9.6780000000000008,10.843999999999999,12.067,13.348000000000001,14.683999999999999,16.077000000000002,17.524000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,12,0.54349999999999998,13.3819,0.09783,9.7200000000000006,10.881,12.102,13.382,14.72,16.116,17.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,13,0.52580000000000005,13.416,0.097619999999999998,9.7609999999999992,10.917999999999999,12.137,13.416,14.756,16.155999999999999,17.617000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,14,0.50819999999999999,13.450100000000001,0.097409999999999997,9.8019999999999996,10.955,12.170999999999999,13.45,14.792,16.196000000000002,17.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,15,0.49469999999999997,13.5169,0.097259999999999999,9.8629999999999995,11.016999999999999,12.234999999999999,13.516999999999999,14.864000000000001,16.276,17.751999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,16,0.48199999999999998,13.587300000000001,0.097110000000000002,9.9269999999999996,11.081,12.301,13.587,14.94,16.359000000000002,17.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,17,0.46989999999999998,13.6595,0.096970000000000001,9.99,11.146000000000001,12.369,13.66,15.018000000000001,16.445,17.940999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,18,0.45829999999999999,13.7325,0.096839999999999996,10.054,11.212,12.436999999999999,13.731999999999999,15.097,16.532,18.038 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,19,0.44719999999999999,13.8056,0.096710000000000004,10.118,11.276999999999999,12.506,13.805999999999999,15.177,16.62,18.135000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,20,0.4365,13.878399999999999,0.096589999999999995,10.180999999999999,11.342000000000001,12.574,13.878,15.256,16.707000000000001,18.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,21,0.42630000000000001,13.9505,0.09647,10.243,11.406000000000001,12.641999999999999,13.95,15.334,16.792000000000002,18.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,22,0.41639999999999999,14.021599999999999,0.096360000000000001,10.305,11.47,12.708,14.022,15.411,16.876999999999999,18.422000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,23,0.40689999999999998,14.0916,0.096250000000000002,10.365,11.532,12.773999999999999,14.092000000000001,15.487,16.960999999999999,18.515000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,24,0.3977,14.160299999999999,0.096149999999999999,10.423,11.593,12.837999999999999,14.16,15.561,17.042999999999999,18.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,25,0.38879999999999998,14.227600000000001,0.096049999999999996,10.481,11.653,12.901,14.228,15.635,17.123000000000001,18.696000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,26,0.38019999999999998,14.2935,0.095949999999999994,10.538,11.711,12.962999999999999,14.294,15.706,17.202000000000002,18.783000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,27,0.37180000000000002,14.357900000000001,0.095860000000000001,10.593,11.768000000000001,13.023,14.358000000000001,15.776,17.279,18.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,28,0.36370000000000002,14.4208,0.095769999999999994,10.646000000000001,11.824,13.081,14.420999999999999,15.843999999999999,17.353999999999999,18.952999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,29,0.35580000000000001,14.4824,0.095680000000000001,10.699,11.879,13.138999999999999,14.481999999999999,15.911,17.428000000000001,19.033999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,30,0.34810000000000002,14.542199999999999,0.095589999999999994,10.75,11.932,13.195,14.542,15.976000000000001,17.498999999999999,19.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,31,0.34060000000000001,14.600300000000001,0.095509999999999998,10.8,11.983000000000001,13.249000000000001,14.6,16.039000000000001,17.568000000000001,19.190999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,32,0.33329999999999999,14.656599999999999,0.095430000000000001,10.848000000000001,12.032999999999999,13.302,14.657,16.100000000000001,17.635999999999999,19.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,33,0.32619999999999999,14.7112,0.095350000000000004,10.895,12.082000000000001,13.353,14.711,16.158999999999999,17.701000000000001,19.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,34,0.31919999999999998,14.764200000000001,0.095269999999999994,10.941000000000001,12.129,13.403,14.763999999999999,16.216999999999999,17.763999999999999,19.408999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,35,0.31240000000000001,14.8157,0.095200000000000007,10.984999999999999,12.175000000000001,13.451000000000001,14.816000000000001,16.273,17.826000000000001,19.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,36,0.30580000000000002,14.8657,0.095130000000000006,11.028,12.22,13.497999999999999,14.866,16.327000000000002,17.885000000000002,19.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,37,0.29930000000000001,14.914199999999999,0.095060000000000006,11.07,12.263,13.542999999999999,14.914,16.38,17.943000000000001,19.609000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,38,0.29289999999999999,14.961399999999999,0.094990000000000005,11.111000000000001,12.305,13.587,14.961,16.431000000000001,18,19.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,39,0.28670000000000001,15.007300000000001,0.094920000000000004,11.15,12.346,13.63,15.007,16.481000000000002,18.053999999999998,19.733000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,40,0.28060000000000002,15.052,0.094850000000000004,11.189,12.385999999999999,13.672000000000001,15.052,16.529,18.108000000000001,19.792000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,41,0.2747,15.095499999999999,0.094789999999999999,11.227,12.425000000000001,13.712999999999999,15.096,16.576000000000001,18.16,19.850000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,42,0.26879999999999998,15.138,0.094719999999999999,11.263999999999999,12.462999999999999,13.753,15.138,16.622,18.21,19.905999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,43,0.26300000000000001,15.179399999999999,0.094659999999999994,11.3,12.5,13.792,15.179,16.667000000000002,18.260000000000002,19.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,44,0.25740000000000002,15.219799999999999,0.094600000000000004,11.335000000000001,12.536,13.83,15.22,16.710999999999999,18.308,20.015999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,45,0.25190000000000001,15.2591,0.094539999999999999,11.369,12.571999999999999,13.867000000000001,15.259,16.754000000000001,18.355,20.068000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,46,0.24640000000000001,15.2974,0.094479999999999995,11.403,12.606,13.903,15.297000000000001,16.795000000000002,18.399999999999999,20.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,47,0.24110000000000001,15.3347,0.094420000000000004,11.435,12.64,13.938000000000001,15.335000000000001,16.835000000000001,18.445,20.169 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,48,0.23580000000000001,15.370900000000001,0.094359999999999999,11.467000000000001,12.672000000000001,13.972,15.371,16.873999999999999,18.488,20.216999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,49,0.2306,15.4063,0.094310000000000005,11.497999999999999,12.704000000000001,14.005000000000001,15.406000000000001,16.913,18.53,20.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,50,0.22550000000000001,15.440799999999999,0.09425,11.529,12.734999999999999,14.038,15.441000000000001,16.95,18.571000000000002,20.309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,51,0.2205,15.474399999999999,0.094200000000000006,11.558,12.766,14.069000000000001,15.474,16.986999999999998,18.611000000000001,20.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,52,0.21560000000000001,15.507199999999999,0.094149999999999998,11.587,12.795,14.1,15.507,17.021999999999998,18.651,20.399000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,53,0.2107,15.539300000000001,0.094100000000000003,11.615,12.824,14.13,15.539,17.056999999999999,18.689,20.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,54,0.2059,15.570600000000001,0.094039999999999999,11.643000000000001,12.853,14.16,15.571,17.091000000000001,18.725999999999999,20.483000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,55,0.20119999999999999,15.6012,0.093990000000000004,11.67,12.881,14.189,15.601000000000001,17.123999999999999,18.762,20.524000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,56,0.1966,15.6311,0.093939999999999996,11.696999999999999,12.907999999999999,14.217000000000001,15.631,17.155999999999999,18.797999999999998,20.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,57,0.192,15.660399999999999,0.093890000000000001,11.723000000000001,12.933999999999999,14.244999999999999,15.66,17.187999999999999,18.832999999999998,20.603000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,58,0.1875,15.689,0.093850000000000003,11.747999999999999,12.96,14.272,15.689,17.219000000000001,18.867000000000001,20.641999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,59,0.183,15.717000000000001,0.093799999999999994,11.773,12.986000000000001,14.298,15.717000000000001,17.248999999999999,18.901,20.678999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,60,0.1787,15.744400000000001,0.09375,11.798,13.010999999999999,14.324,15.744,17.277999999999999,18.933,20.716000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,61,0.17430000000000001,15.7713,0.093710000000000002,11.821999999999999,13.035,14.349,15.771000000000001,17.308,18.965,20.751999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,62,0.17,15.797499999999999,0.093659999999999993,11.845000000000001,13.058999999999999,14.374000000000001,15.798,17.335999999999999,18.995999999999999,20.786999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,63,0.1658,15.8232,0.093609999999999999,11.869,13.083,14.398999999999999,15.823,17.363,19.027000000000001,20.821000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,64,0.16170000000000001,15.8483,0.09357,11.891,13.106,14.422000000000001,15.848000000000001,17.390999999999998,19.056999999999999,20.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,65,0.1575,15.8729,0.093530000000000002,11.913,13.128,14.446,15.872999999999999,17.417000000000002,19.085999999999999,20.888000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,66,0.1535,15.896800000000001,0.093479999999999994,11.935,13.15,14.468,15.897,17.443000000000001,19.114000000000001,20.92 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,67,0.14949999999999999,15.920199999999999,0.093439999999999995,11.956,13.170999999999999,14.49,15.92,17.468,19.141999999999999,20.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,68,0.14549999999999999,15.943099999999999,0.093399999999999997,11.977,13.192,14.512,15.943,17.492999999999999,19.170000000000002,20.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,69,0.1416,15.9655,0.093359999999999999,11.997,13.212999999999999,14.532999999999999,15.965999999999999,17.516999999999999,19.196000000000002,21.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,70,0.13769999999999999,15.987399999999999,0.09332,12.016999999999999,13.233000000000001,14.554,15.987,17.541,19.222999999999999,21.042000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,71,0.13389999999999999,16.008700000000001,0.093280000000000002,12.036,13.253,14.574,16.009,17.564,19.248000000000001,21.07 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,72,0.13009999999999999,16.029699999999998,0.093240000000000003,12.055,13.272,14.593999999999999,16.03,17.585999999999999,19.273,21.097999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,73,0.1263,16.0501,0.093200000000000005,12.074,13.291,14.614000000000001,16.05,17.608000000000001,19.297000000000001,21.126000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,74,0.1226,16.0702,0.093160000000000007,12.093,13.31,14.632999999999999,16.07,17.63,19.321000000000002,21.152999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,75,0.11899999999999999,16.089700000000001,0.093119999999999994,12.11,13.327999999999999,14.651,16.09,17.651,19.344000000000001,21.178999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,76,0.1154,16.108899999999998,0.093079999999999996,12.128,13.346,14.67,16.109000000000002,17.672000000000001,19.367000000000001,21.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,77,0.1118,16.127700000000001,0.093039999999999998,12.146000000000001,13.363,14.688000000000001,16.128,17.692,19.388999999999999,21.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,78,0.1082,16.146100000000001,0.092999999999999999,12.163,13.38,14.705,16.146000000000001,17.710999999999999,19.411000000000001,21.254000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,79,0.1047,16.164000000000001,0.092969999999999997,12.179,13.397,14.722,16.164000000000001,17.731000000000002,19.431999999999999,21.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,80,0.1013,16.181699999999999,0.092929999999999999,12.196,13.413,14.739000000000001,16.181999999999999,17.75,19.452999999999999,21.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,81,0.097799999999999998,16.198899999999998,0.09289,12.212,13.43,14.756,16.199000000000002,17.768000000000001,19.474,21.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,82,0.094399999999999998,16.215800000000002,0.092859999999999998,12.227,13.445,14.772,16.216000000000001,17.786999999999999,19.494,21.347999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,83,0.0911,16.232299999999999,0.09282,12.243,13.461,14.788,16.231999999999999,17.803999999999998,19.513000000000002,21.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,84,0.0877,16.2485,0.092789999999999997,12.257999999999999,13.476000000000001,14.803000000000001,16.248000000000001,17.821999999999999,19.533000000000001,21.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,85,0.084400000000000003,16.264399999999998,0.092749999999999999,12.273,13.491,14.818,16.263999999999999,17.838999999999999,19.550999999999998,21.413 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,86,0.081100000000000005,16.28,0.092719999999999997,12.288,13.505000000000001,14.833,16.28,17.855,19.57,21.434999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,87,0.077899999999999997,16.295200000000001,0.092679999999999998,12.302,13.52,14.848000000000001,16.295000000000002,17.872,19.588000000000001,21.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,88,0.074700000000000003,16.310099999999998,0.092649999999999996,12.316000000000001,13.534000000000001,14.862,16.309999999999999,17.888000000000002,19.606000000000002,21.475000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,89,0.071499999999999994,16.3247,0.092619999999999994,12.33,13.547000000000001,14.875999999999999,16.324999999999999,17.902999999999999,19.623000000000001,21.495000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,90,0.068400000000000002,16.338999999999999,0.092579999999999996,12.343999999999999,13.561,14.89,16.338999999999999,17.919,19.64,21.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,91,0.065199999999999994,16.353100000000001,0.092549999999999993,12.356999999999999,13.574,14.903,16.353000000000002,17.934000000000001,19.657,21.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,92,0.062100000000000002,16.366800000000001,0.092520000000000005,12.37,13.587,14.917,16.367000000000001,17.949000000000002,19.672999999999998,21.552 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,93,0.0591,16.380299999999998,0.092490000000000003,12.382999999999999,13.6,14.929,16.38,17.963000000000001,19.689,21.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,94,0.056000000000000001,16.3935,0.092450000000000004,12.396000000000001,13.613,14.942,16.393999999999998,17.977,19.704000000000001,21.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,95,0.052999999999999999,16.406500000000001,0.092420000000000002,12.407999999999999,13.625,14.955,16.405999999999999,17.991,19.72,21.605 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,96,0.05,16.4192,0.09239,12.42,13.637,14.967000000000001,16.419,18.004999999999999,19.734999999999999,21.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,97,0.047100000000000003,16.4316,0.092359999999999998,12.432,13.648999999999999,14.978999999999999,16.431999999999999,18.018000000000001,19.748999999999999,21.638999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,98,0.044200000000000003,16.4438,0.092329999999999995,12.444000000000001,13.661,14.991,16.443999999999999,18.030999999999999,19.763999999999999,21.655000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,99,0.041200000000000001,16.4557,0.092299999999999993,12.456,13.672000000000001,15.002000000000001,16.456,18.044,19.777999999999999,21.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,100,0.038399999999999997,16.467300000000002,0.092270000000000005,12.467000000000001,13.683,15.013,16.466999999999999,18.056000000000001,19.792000000000002,21.687000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,101,0.035499999999999997,16.4788,0.092240000000000003,12.478,13.694000000000001,15.025,16.478999999999999,18.068000000000001,19.805,21.702999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,102,0.0327,16.489999999999998,0.09221,12.489000000000001,13.705,15.035,16.489999999999998,18.079999999999998,19.818999999999999,21.718 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,103,0.0298,16.500900000000001,0.092179999999999998,12.5,13.715999999999999,15.045999999999999,16.501000000000001,18.091999999999999,19.831,21.733000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,104,0.027,16.511700000000001,0.092149999999999996,12.510999999999999,13.726000000000001,15.055999999999999,16.512,18.103000000000002,19.844000000000001,21.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,105,0.024299999999999999,16.522200000000002,0.092119999999999994,12.521000000000001,13.736000000000001,15.067,16.521999999999998,18.114999999999998,19.856999999999999,21.760999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,106,0.021499999999999998,16.532499999999999,0.092090000000000005,12.531000000000001,13.746,15.077,16.532,18.126000000000001,19.869,21.774999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,107,0.018800000000000001,16.5426,0.092060000000000003,12.541,13.756,15.086,16.542999999999999,18.135999999999999,19.881,21.789000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,108,0.0161,16.552499999999998,0.092030000000000001,12.551,13.766,15.096,16.552,18.146999999999998,19.891999999999999,21.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,109,0.0134,16.562200000000001,0.092009999999999995,12.561,13.775,15.105,16.562000000000001,18.157,19.904,21.815999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,110,0.010699999999999999,16.5717,0.091980000000000006,12.57,13.785,15.115,16.571999999999999,18.167000000000002,19.914999999999999,21.829000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,111,0.0080999999999999996,16.581,0.091950000000000004,12.58,13.794,15.124000000000001,16.581,18.177,19.925999999999998,21.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,112,0.0054999999999999997,16.5901,0.091920000000000002,12.589,13.803000000000001,15.132999999999999,16.59,18.187000000000001,19.937000000000001,21.853000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,113,0.0028999999999999998,16.5991,0.091889999999999999,12.598000000000001,13.811999999999999,15.141999999999999,16.599,18.196000000000002,19.946999999999999,21.864999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,114,0.00029999999999999997,16.607800000000001,0.091869999999999993,12.606999999999999,13.82,15.15,16.608000000000001,18.206,19.957999999999998,21.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,115,-0.0023,16.616399999999999,0.091840000000000005,12.616,13.829000000000001,15.157999999999999,16.616,18.215,19.968,21.888999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,116,-0.0047999999999999996,16.6249,0.091810000000000003,12.625,13.837,15.167,16.625,18.224,19.977,21.901 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,117,-0.0074000000000000003,16.633099999999999,0.091789999999999997,12.632999999999999,13.845000000000001,15.175000000000001,16.632999999999999,18.233000000000001,19.986999999999998,21.911999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,118,-0.0099000000000000008,16.641200000000001,0.091759999999999994,12.641,13.853,15.183,16.640999999999998,18.241,19.997,21.922999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,119,-0.0124,16.6492,0.091730000000000006,12.65,13.861000000000001,15.191000000000001,16.649000000000001,18.25,20.006,21.934000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,120,-0.014800000000000001,16.657,0.09171,12.657999999999999,13.869,15.198,16.657,18.257999999999999,20.015000000000001,21.945 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,121,-0.017299999999999999,16.6647,0.091679999999999998,12.666,13.877000000000001,15.206,16.664999999999999,18.265999999999998,20.024000000000001,21.954999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,122,-0.019699999999999999,16.6722,0.091660000000000005,12.673,13.884,15.212999999999999,16.672000000000001,18.274000000000001,20.033000000000001,21.965 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,123,-0.022200000000000001,16.679500000000001,0.091630000000000003,12.680999999999999,13.891999999999999,15.221,16.68,18.282,20.042000000000002,21.975000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,124,-0.0246,16.686800000000002,0.091609999999999997,12.689,13.898999999999999,15.228,16.687000000000001,18.29,20.05,21.984999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,125,-0.027,16.693899999999999,0.091579999999999995,12.696,13.906000000000001,15.234999999999999,16.693999999999999,18.297000000000001,20.059000000000001,21.995000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,126,-0.0293,16.700900000000001,0.091560000000000002,12.704000000000001,13.913,15.242000000000001,16.701000000000001,18.303999999999998,20.067,22.004999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,127,-0.031699999999999999,16.707699999999999,0.09153,12.711,13.92,15.247999999999999,16.707999999999998,18.312000000000001,20.074999999999999,22.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,128,-0.034000000000000002,16.714400000000001,0.091509999999999994,12.718,13.927,15.255000000000001,16.713999999999999,18.318999999999999,20.082999999999998,22.023 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,129,-0.036400000000000002,16.721,0.091480000000000006,12.725,13.933999999999999,15.262,16.721,18.326000000000001,20.09,22.032 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,130,-0.038699999999999998,16.727399999999999,0.09146,12.731999999999999,13.94,15.268000000000001,16.727,18.332000000000001,20.097999999999999,22.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,131,-0.041000000000000002,16.733699999999999,0.091429999999999997,12.739000000000001,13.946999999999999,15.273999999999999,16.734000000000002,18.338999999999999,20.105,22.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,132,-0.043299999999999998,16.739899999999999,0.091410000000000005,12.746,13.952999999999999,15.28,16.739999999999998,18.346,20.113,22.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,133,-0.045499999999999999,16.745999999999999,0.091389999999999999,12.752000000000001,13.959,15.286,16.745999999999999,18.352,20.12,22.065999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,134,-0.047800000000000002,16.751899999999999,0.091359999999999997,12.759,13.965,15.292,16.751999999999999,18.358000000000001,20.126000000000001,22.074000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,135,-0.05,16.7577,0.091340000000000005,12.765000000000001,13.971,15.298,16.757999999999999,18.364000000000001,20.132999999999999,22.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,136,-0.052200000000000003,16.763400000000001,0.091310000000000002,12.771000000000001,13.977,15.304,16.763000000000002,18.37,20.14,22.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,137,-0.0545,16.768899999999999,0.091289999999999996,12.776999999999999,13.983000000000001,15.308999999999999,16.768999999999998,18.376000000000001,20.146000000000001,22.097000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,138,-0.056599999999999998,16.7743,0.091270000000000004,12.782999999999999,13.989000000000001,15.315,16.774000000000001,18.382000000000001,20.152999999999999,22.105 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,139,-0.058799999999999998,16.779699999999998,0.091249999999999998,12.789,13.994,15.32,16.78,18.387,20.158999999999999,22.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,140,-0.060999999999999999,16.784800000000001,0.091219999999999996,12.795,14,15.324999999999999,16.785,18.393000000000001,20.164999999999999,22.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,141,-0.063200000000000006,16.789899999999999,0.091200000000000003,12.801,14.005000000000001,15.33,16.79,18.398,20.170999999999999,22.126000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,142,-0.065299999999999997,16.794799999999999,0.091179999999999997,12.805999999999999,14.01,15.335000000000001,16.795000000000002,18.402999999999999,20.177,22.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,143,-0.067400000000000002,16.799700000000001,0.091160000000000005,12.811999999999999,14.015000000000001,15.34,16.8,18.408000000000001,20.181999999999999,22.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,144,-0.069599999999999995,16.804400000000001,0.091130000000000003,12.818,14.021000000000001,15.345000000000001,16.803999999999998,18.413,20.187999999999999,22.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,145,-0.0717,16.809000000000001,0.091109999999999997,12.823,14.025,15.35,16.809000000000001,18.417999999999999,20.193000000000001,22.152999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,146,-0.073700000000000002,16.813400000000001,0.091090000000000004,12.827999999999999,14.03,15.353999999999999,16.812999999999999,18.422999999999998,20.198,22.158999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,147,-0.075800000000000006,16.817799999999998,0.091069999999999998,12.833,14.035,15.359,16.818000000000001,18.427,20.202999999999999,22.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,148,-0.077899999999999997,16.821999999999999,0.091039999999999996,12.837999999999999,14.04,15.363,16.821999999999999,18.431000000000001,20.207999999999998,22.17 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,149,-0.08,16.8262,0.091020000000000004,12.843,14.044,15.367000000000001,16.826000000000001,18.436,20.213000000000001,22.175999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,150,-0.082000000000000003,16.830200000000001,0.090999999999999998,12.848000000000001,14.048999999999999,15.371,16.829999999999998,18.440000000000001,20.216999999999999,22.181999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,151,-0.084000000000000005,16.834099999999999,0.090980000000000005,12.853,14.053000000000001,15.375,16.834,18.443999999999999,20.222000000000001,22.187000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,152,-0.085999999999999993,16.837900000000001,0.090959999999999999,12.856999999999999,14.057,15.379,16.838000000000001,18.448,20.225999999999999,22.193000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,153,-0.088099999999999998,16.8416,0.090939999999999993,12.862,14.061,15.382999999999999,16.841999999999999,18.452000000000002,20.231000000000002,22.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,154,-0.0901,16.845199999999998,0.090920000000000001,12.866,14.065,15.387,16.844999999999999,18.454999999999998,20.234999999999999,22.202999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,155,-0.091999999999999998,16.848700000000001,0.090899999999999995,12.871,14.069000000000001,15.391,16.849,18.459,20.239000000000001,22.207999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,156,-0.094,16.8521,0.090880000000000002,12.875,14.073,15.394,16.852,18.463000000000001,20.242999999999999,22.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,157,-0.096000000000000002,16.855399999999999,0.09085,12.879,14.077,15.398,16.855,18.466000000000001,20.245999999999999,22.216999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,158,-0.097900000000000001,16.858599999999999,0.090829999999999994,12.882999999999999,14.081,15.401,16.859000000000002,18.469000000000001,20.25,22.221 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,159,-0.099900000000000003,16.861699999999999,0.090810000000000002,12.887,14.084,15.404,16.861999999999998,18.472000000000001,20.254000000000001,22.225999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,160,-0.1018,16.864799999999999,0.090789999999999996,12.891,14.087999999999999,15.407999999999999,16.864999999999998,18.475000000000001,20.257000000000001,22.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,161,-0.1037,16.867699999999999,0.090770000000000003,12.895,14.090999999999999,15.411,16.867999999999999,18.478000000000002,20.260000000000002,22.234000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,162,-0.1056,16.8705,0.090749999999999997,12.898999999999999,14.093999999999999,15.414,16.87,18.481000000000002,20.263999999999999,22.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,163,-0.1075,16.873200000000001,0.090730000000000005,12.903,14.098000000000001,15.416,16.873000000000001,18.484000000000002,20.266999999999999,22.242000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,164,-0.1094,16.875900000000001,0.090709999999999999,12.906000000000001,14.101000000000001,15.419,16.876000000000001,18.486999999999998,20.27,22.245999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,165,-0.1113,16.878399999999999,0.090690000000000007,12.91,14.103999999999999,15.422000000000001,16.878,18.489000000000001,20.273,22.248999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,166,-0.1132,16.880800000000001,0.090670000000000001,12.913,14.106999999999999,15.425000000000001,16.881,18.492000000000001,20.274999999999999,22.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,167,-0.115,16.883199999999999,0.090649999999999994,12.917,14.11,15.427,16.882999999999999,18.494,20.277999999999999,22.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,168,-0.1169,16.885400000000001,0.090630000000000002,12.92,14.113,15.43,16.885000000000002,18.495999999999999,20.28,22.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,169,-0.1187,16.887599999999999,0.090609999999999996,12.923,14.116,15.432,16.888000000000002,18.498000000000001,20.283000000000001,22.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,170,-0.1206,16.889700000000001,0.090590000000000004,12.927,14.118,15.433999999999999,16.89,18.5,20.285,22.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,171,-0.12239999999999999,16.8917,0.090579999999999994,12.929,14.121,15.436999999999999,16.891999999999999,18.503,20.288,22.268999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,172,-0.1242,16.893599999999999,0.090560000000000002,12.932,14.122999999999999,15.439,16.893999999999998,18.504000000000001,20.29,22.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,173,-0.126,16.895399999999999,0.090539999999999995,12.935,14.125999999999999,15.441000000000001,16.895,18.506,20.292000000000002,22.274000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,174,-0.1278,16.897099999999998,0.090520000000000003,12.938000000000001,14.128,15.443,16.896999999999998,18.507999999999999,20.294,22.276 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,175,-0.12959999999999999,16.898700000000002,0.090499999999999997,12.941000000000001,14.13,15.445,16.899000000000001,18.509,20.295000000000002,22.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,176,-0.13139999999999999,16.900200000000002,0.090480000000000005,12.944000000000001,14.132999999999999,15.446,16.899999999999999,18.510999999999999,20.297000000000001,22.280999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,177,-0.1331,16.901700000000002,0.090459999999999999,12.946,14.135,15.448,16.902000000000001,18.512,20.298999999999999,22.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,178,-0.13489999999999999,16.903099999999998,0.090440000000000006,12.949,14.137,15.45,16.902999999999999,18.513000000000002,20.3,22.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,179,-0.1366,16.904299999999999,0.090429999999999996,12.951000000000001,14.138999999999999,15.451000000000001,16.904,18.515000000000001,20.302,22.286999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,180,-0.1384,16.9055,0.090410000000000004,12.954000000000001,14.141,15.452999999999999,16.905999999999999,18.515999999999998,20.303000000000001,22.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,181,-0.1401,16.906600000000001,0.090389999999999998,12.956,14.141999999999999,15.454000000000001,16.907,18.516999999999999,20.303999999999998,22.29 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,182,-0.14180000000000001,16.907699999999998,0.090370000000000006,12.958,14.144,15.456,16.908000000000001,18.518000000000001,20.305,22.292000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,183,-0.14360000000000001,16.9086,0.09035,12.961,14.146000000000001,15.457000000000001,16.908999999999999,18.518000000000001,20.306000000000001,22.292999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,184,-0.14530000000000001,16.909500000000001,0.090329999999999994,12.962999999999999,14.148,15.458,16.91,18.518999999999998,20.306999999999999,22.295000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,185,-0.14699999999999999,16.9102,0.090319999999999998,12.964,14.148999999999999,15.459,16.91,18.52,20.308,22.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,186,-0.1487,16.910900000000002,0.090300000000000005,12.967000000000001,14.15,15.46,16.911000000000001,18.52,20.308,22.297000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,187,-0.15029999999999999,16.9116,0.090279999999999999,12.968999999999999,14.151999999999999,15.461,16.911999999999999,18.521000000000001,20.309000000000001,22.297999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,188,-0.152,16.912099999999999,0.090260000000000007,12.97,14.153,15.462,16.911999999999999,18.521000000000001,20.309000000000001,22.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,189,-0.1537,16.912500000000001,0.090240000000000001,12.972,14.154,15.462999999999999,16.911999999999999,18.521000000000001,20.309000000000001,22.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,190,-0.15540000000000001,16.9129,0.090230000000000005,12.974,14.154999999999999,15.462999999999999,16.913,18.521999999999998,20.309999999999999,22.300999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,191,-0.157,16.9132,0.090209999999999999,12.975,14.157,15.464,16.913,18.521999999999998,20.309999999999999,22.300999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,192,-0.15870000000000001,16.913499999999999,0.090190000000000006,12.977,14.157999999999999,15.465,16.914000000000001,18.521999999999998,20.309999999999999,22.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,193,-0.1603,16.913599999999999,0.09017,12.978999999999999,14.159000000000001,15.465,16.914000000000001,18.521999999999998,20.309999999999999,22.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,194,-0.16189999999999999,16.913699999999999,0.090160000000000004,12.98,14.16,15.465999999999999,16.914000000000001,18.521999999999998,20.309999999999999,22.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,195,-0.16350000000000001,16.913699999999999,0.090139999999999998,12.981,14.16,15.465999999999999,16.914000000000001,18.521999999999998,20.309999999999999,22.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,196,-0.16520000000000001,16.913599999999999,0.090120000000000006,12.983000000000001,14.161,15.465999999999999,16.914000000000001,18.521000000000001,20.309999999999999,22.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,197,-0.1668,16.913499999999999,0.090109999999999996,12.984,14.162000000000001,15.465999999999999,16.914000000000001,18.521000000000001,20.309999999999999,22.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,198,-0.16839999999999999,16.9133,0.090090000000000003,12.984999999999999,14.163,15.467000000000001,16.913,18.521000000000001,20.309000000000001,22.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,199,-0.17,16.913,0.090069999999999997,12.986000000000001,14.163,15.467000000000001,16.913,18.52,20.308,22.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,200,-0.17150000000000001,16.912700000000001,0.090060000000000001,12.987,14.164,15.467000000000001,16.913,18.52,20.308,22.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,201,-0.1731,16.912199999999999,0.090039999999999995,12.988,14.164,15.467000000000001,16.911999999999999,18.518999999999998,20.306999999999999,22.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,202,-0.17469999999999999,16.911799999999999,0.090020000000000003,12.989000000000001,14.164999999999999,15.467000000000001,16.911999999999999,18.518000000000001,20.306999999999999,22.300999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,203,-0.17630000000000001,16.911200000000001,0.090010000000000007,12.99,14.164999999999999,15.465999999999999,16.911000000000001,18.516999999999999,20.306000000000001,22.300999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,204,-0.17780000000000001,16.910599999999999,0.089990000000000001,12.991,14.164999999999999,15.465999999999999,16.911000000000001,18.515999999999998,20.305,22.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,205,-0.1794,16.9099,0.089969999999999994,12.992000000000001,14.164999999999999,15.465999999999999,16.91,18.515000000000001,20.303999999999998,22.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,206,-0.18090000000000001,16.909099999999999,0.089959999999999998,12.992000000000001,14.164999999999999,15.465999999999999,16.908999999999999,18.513999999999999,20.303000000000001,22.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,207,-0.18240000000000001,16.908300000000001,0.089940000000000006,12.993,14.166,15.465,16.908000000000001,18.513000000000002,20.302,22.297999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,208,-0.184,16.907399999999999,0.08992,12.994,14.166,15.465,16.907,18.512,20.3,22.297000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,209,-0.1855,16.906500000000001,0.089910000000000004,12.994,14.166,15.464,16.905999999999999,18.510999999999999,20.298999999999999,22.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,210,-0.187,16.9055,0.089889999999999998,12.994999999999999,14.166,15.464,16.905999999999999,18.510000000000002,20.297999999999998,22.295000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,211,-0.1885,16.904399999999999,0.089880000000000002,12.994999999999999,14.164999999999999,15.462999999999999,16.904,18.507999999999999,20.297000000000001,22.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,212,-0.19,16.903300000000002,0.089859999999999995,12.996,14.164999999999999,15.462,16.902999999999999,18.507000000000001,20.295000000000002,22.292000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,213,-0.1915,16.902100000000001,0.089840000000000003,12.996,14.164999999999999,15.462,16.902000000000001,18.504999999999999,20.292999999999999,22.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,214,-0.193,16.9008,0.089829999999999993,12.996,14.164999999999999,15.461,16.901,18.504000000000001,20.292000000000002,22.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,215,-0.19450000000000001,16.8995,0.089810000000000001,12.996,14.164,15.46,16.899999999999999,18.501999999999999,20.29,22.288 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,216,-0.19600000000000001,16.898099999999999,0.089800000000000005,12.996,14.164,15.459,16.898,18.501000000000001,20.288,22.286000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,217,-0.19750000000000001,16.896699999999999,0.089779999999999999,12.997,14.164,15.458,16.896999999999998,18.498999999999999,20.286000000000001,22.283999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,218,-0.19889999999999999,16.895199999999999,0.089760000000000006,12.997,14.163,15.457000000000001,16.895,18.497,20.283999999999999,22.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,219,-0.20039999999999999,16.893699999999999,0.089749999999999996,12.997,14.162000000000001,15.456,16.893999999999998,18.495000000000001,20.282,22.280999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,220,-0.20180000000000001,16.892099999999999,0.089730000000000004,12.997,14.162000000000001,15.455,16.891999999999999,18.492999999999999,20.28,22.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,221,-0.20330000000000001,16.890499999999999,0.089719999999999994,12.997,14.161,15.454000000000001,16.89,18.491,20.277999999999999,22.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,222,-0.20469999999999999,16.8888,0.089700000000000002,12.997,14.161,15.452,16.888999999999999,18.489000000000001,20.276,22.274999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,223,-0.20619999999999999,16.887,0.089690000000000006,12.996,14.16,15.451000000000001,16.887,18.486999999999998,20.274000000000001,22.273 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,224,-0.20760000000000001,16.885200000000001,0.08967,12.996,14.159000000000001,15.45,16.885000000000002,18.484999999999999,20.271000000000001,22.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,225,-0.20899999999999999,16.883400000000002,0.089660000000000004,12.996,14.157999999999999,15.448,16.882999999999999,18.483000000000001,20.268999999999998,22.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,226,-0.2104,16.881399999999999,0.089639999999999997,12.996,14.157,15.446999999999999,16.881,18.48,20.265999999999998,22.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,227,-0.21190000000000001,16.8795,0.089630000000000001,12.994999999999999,14.156000000000001,15.445,16.88,18.478000000000002,20.263999999999999,22.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,228,-0.21329999999999999,16.877500000000001,0.089609999999999995,12.994999999999999,14.154999999999999,15.444000000000001,16.878,18.475999999999999,20.260999999999999,22.260999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,229,-0.2147,16.875399999999999,0.089599999999999999,12.994999999999999,14.154,15.442,16.875,18.472999999999999,20.259,22.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,230,-0.21609999999999999,16.8733,0.089580000000000007,12.994,14.153,15.441000000000001,16.873000000000001,18.471,20.256,22.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,231,-0.2175,16.871200000000002,0.089569999999999997,12.994,14.151999999999999,15.439,16.870999999999999,18.468,20.254000000000001,22.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,232,-0.21879999999999999,16.869,0.089550000000000005,12.993,14.151,15.436999999999999,16.869,18.466000000000001,20.251000000000001,22.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,233,-0.22020000000000001,16.866700000000002,0.089539999999999995,12.992000000000001,14.15,15.436,16.867000000000001,18.463000000000001,20.248000000000001,22.248000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,234,-0.22159999999999999,16.8644,0.089520000000000002,12.992000000000001,14.148999999999999,15.433999999999999,16.864000000000001,18.46,20.245000000000001,22.244 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,235,-0.223,16.862100000000002,0.089510000000000006,12.991,14.147,15.432,16.861999999999998,18.457999999999998,20.242000000000001,22.242000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,236,-0.2243,16.8597,0.08949,12.991,14.146000000000001,15.43,16.86,18.454999999999998,20.239000000000001,22.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,237,-0.22570000000000001,16.857199999999999,0.089480000000000004,12.99,14.145,15.428000000000001,16.856999999999999,18.452000000000002,20.236000000000001,22.236000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,238,-0.22700000000000001,16.854800000000001,0.089469999999999994,12.989000000000001,14.143000000000001,15.426,16.855,18.449000000000002,20.233000000000001,22.233000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,239,-0.22839999999999999,16.8522,0.089450000000000002,12.988,14.141999999999999,15.423999999999999,16.852,18.446000000000002,20.228999999999999,22.228999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,240,-0.22969999999999999,16.849699999999999,0.089440000000000006,12.987,14.14,15.422000000000001,16.850000000000001,18.443000000000001,20.225999999999999,22.225999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,241,-0.2311,16.847100000000001,0.089419999999999999,12.986000000000001,14.138999999999999,15.42,16.847000000000001,18.440000000000001,20.222999999999999,22.222999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,242,-0.2324,16.8444,0.089410000000000003,12.984999999999999,14.137,15.417999999999999,16.844000000000001,18.437000000000001,20.22,22.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,243,-0.23369999999999999,16.841699999999999,0.089389999999999997,12.984,14.135999999999999,15.416,16.841999999999999,18.434000000000001,20.216000000000001,22.216000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,244,-0.2351,16.838999999999999,0.089380000000000001,12.983000000000001,14.134,15.414,16.838999999999999,18.431000000000001,20.213000000000001,22.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,245,-0.2364,16.836200000000002,0.089370000000000005,12.981999999999999,14.132,15.411,16.835999999999999,18.428000000000001,20.21,22.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,246,-0.23769999999999999,16.833400000000001,0.089349999999999999,12.981,14.131,15.409000000000001,16.832999999999998,18.423999999999999,20.206,22.204999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,247,-0.23899999999999999,16.830500000000001,0.089340000000000003,12.98,14.129,15.407,16.829999999999998,18.420999999999999,20.202000000000002,22.202000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,248,-0.24030000000000001,16.8276,0.089319999999999997,12.978999999999999,14.127000000000001,15.404,16.827999999999999,18.417999999999999,20.198,22.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,249,-0.24160000000000001,16.8247,0.08931,12.978,14.125,15.401999999999999,16.824999999999999,18.414000000000001,20.195,22.193999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,250,-0.2429,16.8217,0.089300000000000004,12.976000000000001,14.122999999999999,15.398999999999999,16.821999999999999,18.411000000000001,20.190999999999999,22.190999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,251,-0.2442,16.8187,0.089279999999999998,12.975,14.122,15.397,16.818999999999999,18.408000000000001,20.187000000000001,22.187000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,252,-0.2455,16.8157,0.089270000000000002,12.974,14.12,15.394,16.815999999999999,18.404,20.184000000000001,22.183 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,253,-0.2467,16.8126,0.089260000000000006,12.972,14.118,15.391999999999999,16.812999999999999,18.401,20.18,22.178999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,254,-0.248,16.8095,0.08924,12.971,14.116,15.388999999999999,16.809999999999999,18.396999999999998,20.175999999999998,22.175000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,255,-0.24929999999999999,16.8063,0.089230000000000004,12.97,14.114000000000001,15.387,16.806000000000001,18.393000000000001,20.172000000000001,22.170999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,256,-0.2505,16.803100000000001,0.089209999999999998,12.968,14.112,15.384,16.803000000000001,18.39,20.167999999999999,22.167000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,257,-0.25180000000000002,16.799900000000001,0.089200000000000002,12.967000000000001,14.11,15.381,16.8,18.385999999999999,20.164000000000001,22.163 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,258,-0.25309999999999999,16.796700000000001,0.089190000000000005,12.965,14.108000000000001,15.379,16.797000000000001,18.382000000000001,20.16,22.158999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,259,-0.25430000000000003,16.793399999999998,0.089169999999999999,12.964,14.106,15.375999999999999,16.792999999999999,18.379000000000001,20.155999999999999,22.154 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,260,-0.25559999999999999,16.79,0.089160000000000003,12.962,14.103,15.372999999999999,16.79,18.375,20.152000000000001,22.15 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,261,-0.25679999999999997,16.7867,0.089149999999999993,12.961,14.101000000000001,15.37,16.786999999999999,18.370999999999999,20.148,22.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,262,-0.25800000000000001,16.783300000000001,0.089130000000000001,12.959,14.099,15.368,16.783000000000001,18.367000000000001,20.143000000000001,22.140999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,263,-0.25929999999999997,16.779900000000001,0.089120000000000005,12.958,14.097,15.365,16.78,18.363,20.138999999999999,22.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,264,-0.26050000000000001,16.776399999999999,0.089109999999999995,12.956,14.093999999999999,15.362,16.776,18.359000000000002,20.135000000000002,22.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,265,-0.26169999999999999,16.773,0.089090000000000003,12.954000000000001,14.092000000000001,15.359,16.773,18.355,20.131,22.128 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,266,-0.26300000000000001,16.769500000000001,0.089080000000000006,12.952999999999999,14.09,15.356,16.77,18.350999999999999,20.126000000000001,22.123999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,267,-0.26419999999999999,16.765899999999998,0.089069999999999996,12.951000000000001,14.087,15.353,16.765999999999998,18.347000000000001,20.122,22.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,268,-0.26540000000000002,16.7624,0.08906,12.949,14.085000000000001,15.35,16.762,18.343,20.117999999999999,22.114999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,269,-0.2666,16.758800000000001,0.089039999999999994,12.946999999999999,14.083,15.347,16.759,18.338999999999999,20.113,22.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,270,-0.26779999999999998,16.755099999999999,0.089029999999999998,12.945,14.08,15.343999999999999,16.754999999999999,18.335000000000001,20.109000000000002,22.105 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,271,-0.26900000000000002,16.7515,0.089020000000000002,12.943,14.077999999999999,15.340999999999999,16.751999999999999,18.331,20.103999999999999,22.100999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,272,-0.2702,16.747800000000002,0.088999999999999996,12.942,14.074999999999999,15.337999999999999,16.748000000000001,18.327000000000002,20.099,22.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,273,-0.27139999999999997,16.7441,0.08899,12.94,14.073,15.335000000000001,16.744,18.321999999999999,20.094999999999999,22.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,274,-0.27260000000000001,16.740400000000001,0.088980000000000004,12.938000000000001,14.07,15.331,16.739999999999998,18.318000000000001,20.09,22.087 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,275,-0.2737,16.736699999999999,0.088969999999999994,12.936,14.067,15.327999999999999,16.736999999999998,18.314,20.085999999999999,22.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,276,-0.27489999999999998,16.732900000000001,0.088950000000000001,12.933999999999999,14.065,15.324999999999999,16.733000000000001,18.309999999999999,20.081,22.077000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,277,-0.27610000000000001,16.729099999999999,0.088940000000000005,12.932,14.061999999999999,15.321999999999999,16.728999999999999,18.305,20.076000000000001,22.071999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,278,-0.27729999999999999,16.725300000000001,0.088929999999999995,12.93,14.06,15.319000000000001,16.725000000000001,18.300999999999998,20.071999999999999,22.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,279,-0.27839999999999998,16.721399999999999,0.088919999999999999,12.928000000000001,14.057,15.315,16.721,18.297000000000001,20.067,22.062000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,280,-0.27960000000000002,16.717600000000001,0.088900000000000007,12.926,14.054,15.311999999999999,16.718,18.292000000000002,20.062000000000001,22.056999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,281,-0.28079999999999999,16.713699999999999,0.088889999999999997,12.923999999999999,14.052,15.308999999999999,16.713999999999999,18.288,20.056999999999999,22.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,282,-0.28189999999999998,16.709800000000001,0.088880000000000001,12.922000000000001,14.048999999999999,15.305,16.71,18.283999999999999,20.053000000000001,22.047000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,283,-0.28310000000000002,16.7059,0.088870000000000005,12.919,14.045999999999999,15.302,16.706,18.279,20.047999999999998,22.042000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,284,-0.28420000000000001,16.701899999999998,0.088849999999999998,12.917999999999999,14.044,15.298999999999999,16.702000000000002,18.274999999999999,20.042999999999999,22.036999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,285,-0.28539999999999999,16.698,0.088840000000000002,12.914999999999999,14.041,15.295,16.698,18.27,20.038,22.032 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,286,-0.28649999999999998,16.693999999999999,0.088830000000000006,12.913,14.038,15.292,16.693999999999999,18.265999999999998,20.033000000000001,22.027000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,287,-0.28760000000000002,16.690000000000001,0.088819999999999996,12.911,14.035,15.289,16.690000000000001,18.260999999999999,20.027999999999999,22.021999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,288,-0.2888,16.686,0.08881,12.909000000000001,14.032,15.285,16.686,18.257000000000001,20.024000000000001,22.016999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,289,-0.28989999999999999,16.681999999999999,0.088789999999999994,12.907,14.03,15.282,16.681999999999999,18.251999999999999,20.018000000000001,22.010999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,290,-0.29099999999999998,16.677900000000001,0.088779999999999998,12.904,14.026999999999999,15.278,16.678000000000001,18.248000000000001,20.013000000000002,22.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,291,-0.29220000000000002,16.6739,0.088770000000000002,12.901999999999999,14.023999999999999,15.275,16.673999999999999,18.242999999999999,20.007999999999999,22.001000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,292,-0.29330000000000001,16.669799999999999,0.088760000000000006,12.9,14.021000000000001,15.271000000000001,16.670000000000002,18.238,20.003,21.995999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,293,-0.2944,16.665700000000001,0.088739999999999999,12.898,14.018000000000001,15.268000000000001,16.666,18.234000000000002,19.998000000000001,21.99 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,294,-0.29549999999999998,16.6616,0.088730000000000003,12.895,14.015000000000001,15.263999999999999,16.661999999999999,18.228999999999999,19.992999999999999,21.984999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,295,-0.29659999999999997,16.657499999999999,0.088719999999999993,12.893000000000001,14.012,15.260999999999999,16.658000000000001,18.225000000000001,19.988,21.98 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,296,-0.29770000000000002,16.653400000000001,0.088709999999999997,12.891,14.009,15.257,16.652999999999999,18.22,19.983000000000001,21.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,297,-0.29880000000000001,16.6492,0.088700000000000001,12.888,14.006,15.254,16.649000000000001,18.215,19.978000000000002,21.969000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,298,-0.2999,16.645099999999999,0.088690000000000005,12.885999999999999,14.003,15.25,16.645,18.210999999999999,19.972999999999999,21.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,299,-0.30099999999999999,16.640899999999998,0.088669999999999999,12.884,14.000999999999999,15.247,16.640999999999998,18.206,19.968,21.957999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,300,-0.30209999999999998,16.636700000000001,0.088660000000000003,12.881,13.997,15.243,16.637,18.201000000000001,19.963000000000001,21.952999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,301,-0.30320000000000003,16.6326,0.088650000000000007,12.879,13.994999999999999,15.239000000000001,16.632999999999999,18.196000000000002,19.957999999999998,21.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,302,-0.30430000000000001,16.628399999999999,0.088639999999999997,12.875999999999999,13.991,15.236000000000001,16.628,18.192,19.952000000000002,21.942 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,303,-0.30530000000000002,16.624199999999998,0.08863,12.874000000000001,13.988,15.231999999999999,16.623999999999999,18.187000000000001,19.946999999999999,21.937000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,304,-0.30640000000000001,16.62,0.088620000000000004,12.872,13.984999999999999,15.228,16.62,18.181999999999999,19.942,21.931000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,305,-0.3075,16.6157,0.088599999999999998,12.869,13.983000000000001,15.225,16.616,18.177,19.937000000000001,21.925000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,306,-0.30859999999999999,16.611499999999999,0.088590000000000002,12.867000000000001,13.978999999999999,15.221,16.611999999999998,18.172999999999998,19.931999999999999,21.92 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,307,-0.30959999999999999,16.607299999999999,0.088580000000000006,12.864000000000001,13.976000000000001,15.218,16.606999999999999,18.167999999999999,19.925999999999998,21.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,308,-0.31069999999999998,16.603000000000002,0.088569999999999996,12.862,13.973000000000001,15.214,16.603000000000002,18.163,19.920999999999999,21.908999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,309,-0.31180000000000002,16.598800000000001,0.08856,12.859,13.97,15.21,16.599,18.158000000000001,19.916,21.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,310,-0.31280000000000002,16.5945,0.088550000000000004,12.856999999999999,13.967000000000001,15.207000000000001,16.594000000000001,18.154,19.911000000000001,21.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,311,-0.31390000000000001,16.590299999999999,0.088539999999999994,12.853999999999999,13.964,15.202999999999999,16.59,18.149000000000001,19.905999999999999,21.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,312,-0.31490000000000001,16.585999999999999,0.088520000000000001,12.852,13.961,15.199,16.585999999999999,18.143999999999998,19.899999999999999,21.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,313,-0.316,16.581700000000001,0.088510000000000005,12.85,13.958,15.196,16.582000000000001,18.138999999999999,19.895,21.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,314,-0.317,16.577400000000001,0.088499999999999995,12.847,13.955,15.192,16.577000000000002,18.134,19.89,21.876000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,315,-0.31809999999999999,16.5731,0.088489999999999999,12.845000000000001,13.952,15.188000000000001,16.573,18.129000000000001,19.884,21.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,316,-0.31909999999999999,16.5688,0.088480000000000003,12.842000000000001,13.949,15.183999999999999,16.568999999999999,18.125,19.879000000000001,21.864999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,317,-0.3201,16.564499999999999,0.088469999999999993,12.839,13.945,15.180999999999999,16.564,18.12,19.873999999999999,21.859000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,318,-0.32119999999999999,16.560199999999998,0.088459999999999997,12.837,13.942,15.177,16.559999999999999,18.114999999999998,19.869,21.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,319,-0.32219999999999999,16.555900000000001,0.088450000000000001,12.834,13.939,15.173,16.556000000000001,18.11,19.864000000000001,21.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,320,-0.32319999999999999,16.551600000000001,0.088429999999999995,12.832000000000001,13.936,15.17,16.552,18.105,19.858000000000001,21.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,321,-0.32419999999999999,16.5473,0.088419999999999999,12.83,13.933,15.166,16.547000000000001,18.100000000000001,19.853000000000002,21.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,322,-0.32529999999999998,16.542999999999999,0.088410000000000002,12.827,13.93,15.162000000000001,16.542999999999999,18.096,19.847000000000001,21.831 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,323,-0.32629999999999998,16.538699999999999,0.088400000000000006,12.824,13.927,15.157999999999999,16.539000000000001,18.091000000000001,19.841999999999999,21.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,324,-0.32729999999999998,16.534300000000002,0.088389999999999996,12.821999999999999,13.923999999999999,15.154999999999999,16.533999999999999,18.085999999999999,19.837,21.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,325,-0.32829999999999998,16.53,0.08838,12.819000000000001,13.92,15.151,16.53,18.081,19.832000000000001,21.814 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,326,-0.32929999999999998,16.525700000000001,0.088370000000000004,12.817,13.917,15.147,16.526,18.076000000000001,19.826000000000001,21.809000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,327,-0.33029999999999998,16.5213,0.088359999999999994,12.814,13.914,15.143000000000001,16.521000000000001,18.071000000000002,19.821000000000002,21.803000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,328,-0.33129999999999998,16.516999999999999,0.088349999999999998,12.811,13.911,15.14,16.516999999999999,18.065999999999999,19.815999999999999,21.797999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,329,-0.33229999999999998,16.512699999999999,0.088340000000000002,12.808999999999999,13.907999999999999,15.135999999999999,16.513000000000002,18.062000000000001,19.809999999999999,21.792000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,330,-0.33329999999999999,16.508299999999998,0.088330000000000006,12.805999999999999,13.904,15.132,16.507999999999999,18.056999999999999,19.805,21.786999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,331,-0.33429999999999999,16.504000000000001,0.088319999999999996,12.804,13.901,15.128,16.504000000000001,18.052,19.8,21.780999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,332,-0.33529999999999999,16.499700000000001,0.088300000000000003,12.801,13.898,15.125,16.5,18.047000000000001,19.794,21.774999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,333,-0.33629999999999999,16.4953,0.088289999999999993,12.798999999999999,13.895,15.121,16.495000000000001,18.042000000000002,19.789000000000001,21.768999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,334,-0.33729999999999999,16.491,0.088279999999999997,12.795999999999999,13.891999999999999,15.117000000000001,16.491,18.036999999999999,19.783999999999999,21.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,335,-0.3382,16.486699999999999,0.088270000000000001,12.794,13.888999999999999,15.113,16.486999999999998,18.032,19.777999999999999,21.757999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,336,-0.3392,16.482299999999999,0.088260000000000005,12.791,13.885999999999999,15.109,16.481999999999999,18.027000000000001,19.773,21.751999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,337,-0.3402,16.478000000000002,0.088249999999999995,12.788,13.882,15.106,16.478000000000002,18.023,19.768000000000001,21.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,338,-0.3412,16.473700000000001,0.088239999999999999,12.786,13.879,15.102,16.474,18.018000000000001,19.762,21.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,339,-0.34210000000000002,16.4693,0.088230000000000003,12.782999999999999,13.875999999999999,15.098000000000001,16.469000000000001,18.013000000000002,19.757000000000001,21.736000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,340,-0.34310000000000002,16.465,0.088220000000000007,12.78,13.872999999999999,15.093999999999999,16.465,18.007999999999999,19.751999999999999,21.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,341,-0.34410000000000002,16.460699999999999,0.088209999999999997,12.778,13.87,15.090999999999999,16.460999999999999,18.003,19.747,21.724 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,342,-0.34499999999999997,16.456299999999999,0.088200000000000001,12.775,13.866,15.087,16.456,17.998000000000001,19.741,21.719000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,343,-0.34599999999999997,16.452000000000002,0.088190000000000004,12.773,13.863,15.083,16.452000000000002,17.992999999999999,19.736000000000001,21.713000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,344,-0.34699999999999998,16.447700000000001,0.088179999999999994,12.77,13.86,15.079000000000001,16.448,17.989000000000001,19.731000000000002,21.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,345,-0.34789999999999999,16.4434,0.088169999999999998,12.766999999999999,13.856999999999999,15.076000000000001,16.443000000000001,17.984000000000002,19.725000000000001,21.702000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,346,-0.34889999999999999,16.4391,0.088160000000000002,12.765000000000001,13.853999999999999,15.071999999999999,16.439,17.978999999999999,19.72,21.696999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,347,-0.3498,16.434699999999999,0.088150000000000006,12.762,13.85,15.068,16.434999999999999,17.974,19.715,21.690999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,348,-0.3508,16.430399999999999,0.088139999999999996,12.759,13.847,15.064,16.43,17.969000000000001,19.709,21.684999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,349,-0.35170000000000001,16.426100000000002,0.08813,12.757,13.843999999999999,15.061,16.425999999999998,17.963999999999999,19.704000000000001,21.68 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,350,-0.35260000000000002,16.421800000000001,0.088120000000000004,12.754,13.840999999999999,15.057,16.422000000000001,17.96,19.699000000000002,21.673999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,351,-0.35360000000000003,16.4175,0.088109999999999994,12.752000000000001,13.837999999999999,15.053000000000001,16.417999999999999,17.954999999999998,19.693999999999999,21.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,352,-0.35449999999999998,16.4132,0.088099999999999998,12.749000000000001,13.835000000000001,15.048999999999999,16.413,17.95,19.687999999999999,21.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,353,-0.35549999999999998,16.408899999999999,0.088090000000000002,12.746,13.831,15.045999999999999,16.408999999999999,17.945,19.683,21.657 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,354,-0.35639999999999999,16.404599999999999,0.088080000000000006,12.744,13.827999999999999,15.042,16.405000000000001,17.940000000000001,19.678000000000001,21.652000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,355,-0.35730000000000001,16.400400000000001,0.088069999999999996,12.741,13.824999999999999,15.038,16.399999999999999,17.936,19.672999999999998,21.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,356,-0.35820000000000002,16.396100000000001,0.088059999999999999,12.738,13.821999999999999,15.034000000000001,16.396000000000001,17.931000000000001,19.667000000000002,21.640999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,357,-0.35920000000000002,16.3918,0.088050000000000003,12.736000000000001,13.819000000000001,15.031000000000001,16.391999999999999,17.925999999999998,19.661999999999999,21.635000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,358,-0.36009999999999998,16.387499999999999,0.088039999999999993,12.733000000000001,13.816000000000001,15.026999999999999,16.388000000000002,17.920999999999999,19.657,21.629000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,359,-0.36099999999999999,16.383299999999998,0.088029999999999997,12.731,13.811999999999999,15.023,16.382999999999999,17.916,19.652000000000001,21.623999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,360,-0.3619,16.379000000000001,0.088020000000000001,12.728,13.808999999999999,15.02,16.379000000000001,17.911999999999999,19.646000000000001,21.617999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,361,-0.36280000000000001,16.3748,0.088010000000000005,12.725,13.805999999999999,15.016,16.375,17.907,19.640999999999998,21.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,362,-0.36380000000000001,16.3705,0.087999999999999995,12.723000000000001,13.803000000000001,15.012,16.37,17.902000000000001,19.635999999999999,21.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,363,-0.36470000000000002,16.366299999999999,0.087989999999999999,12.72,13.8,15.007999999999999,16.366,17.896999999999998,19.631,21.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,364,-0.36559999999999998,16.362100000000002,0.087980000000000003,12.718,13.797000000000001,15.005000000000001,16.361999999999998,17.893000000000001,19.626000000000001,21.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,365,-0.36649999999999999,16.357800000000001,0.087970000000000007,12.715,13.794,15.000999999999999,16.358000000000001,17.888000000000002,19.62,21.591000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,366,-0.3674,16.3536,0.087959999999999997,12.712999999999999,13.79,14.997,16.353999999999999,17.882999999999999,19.614999999999998,21.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,367,-0.36830000000000002,16.349399999999999,0.08795,12.71,13.787000000000001,14.994,16.349,17.878,19.61,21.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,368,-0.36919999999999997,16.345199999999998,0.087940000000000004,12.707000000000001,13.784000000000001,14.99,16.344999999999999,17.873999999999999,19.605,21.574000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,369,-0.37009999999999998,16.341000000000001,0.087929999999999994,12.705,13.781000000000001,14.986000000000001,16.341000000000001,17.869,19.600000000000001,21.568999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,370,-0.371,16.3368,0.087919999999999998,12.702,13.778,14.983000000000001,16.337,17.864000000000001,19.594999999999999,21.562999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,371,-0.37190000000000001,16.332599999999999,0.087910000000000002,12.7,13.775,14.978999999999999,16.332999999999998,17.86,19.59,21.558 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,372,-0.37269999999999998,16.328399999999998,0.087900000000000006,12.696999999999999,13.772,14.975,16.327999999999999,17.855,19.584,21.552 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,373,-0.37359999999999999,16.324200000000001,0.087889999999999996,12.695,13.769,14.972,16.324000000000002,17.850000000000001,19.579000000000001,21.547000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,374,-0.3745,16.32,0.08788,12.692,13.766,14.968,16.32,17.844999999999999,19.574000000000002,21.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,375,-0.37540000000000001,16.315799999999999,0.087870000000000004,12.689,13.763,14.965,16.315999999999999,17.841000000000001,19.568999999999999,21.536000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,376,-0.37630000000000002,16.311699999999998,0.087859999999999994,12.686999999999999,13.759,14.961,16.312000000000001,17.835999999999999,19.564,21.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,377,-0.37719999999999998,16.307500000000001,0.087849999999999998,12.683999999999999,13.756,14.957000000000001,16.308,17.831,19.559000000000001,21.524999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,378,-0.378,16.3034,0.087840000000000001,12.682,13.753,14.954000000000001,16.303000000000001,17.827000000000002,19.553999999999998,21.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,379,-0.37890000000000001,16.299199999999999,0.087830000000000005,12.679,13.75,14.95,16.298999999999999,17.821999999999999,19.547999999999998,21.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,380,-0.37980000000000003,16.295100000000001,0.087819999999999995,12.677,13.747,14.946999999999999,16.295000000000002,17.818000000000001,19.542999999999999,21.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,381,-0.38059999999999999,16.291,0.087819999999999995,12.673999999999999,13.744,14.943,16.291,17.812999999999999,19.539000000000001,21.504000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,382,-0.38150000000000001,16.286799999999999,0.087809999999999999,12.670999999999999,13.741,14.939,16.286999999999999,17.808,19.533999999999999,21.498000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,383,-0.38240000000000002,16.282699999999998,0.087800000000000003,12.669,13.738,14.936,16.283000000000001,17.803999999999998,19.529,21.492999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,384,-0.38319999999999999,16.278600000000001,0.087790000000000007,12.666,13.734999999999999,14.932,16.279,17.798999999999999,19.523,21.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,385,-0.3841,16.2745,0.087779999999999997,12.664,13.731999999999999,14.928000000000001,16.274000000000001,17.795000000000002,19.518000000000001,21.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,386,-0.38500000000000001,16.270399999999999,0.087770000000000001,12.661,13.728999999999999,14.925000000000001,16.27,17.79,19.513000000000002,21.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,387,-0.38579999999999998,16.266300000000001,0.087760000000000005,12.659000000000001,13.726000000000001,14.920999999999999,16.265999999999998,17.785,19.507999999999999,21.472000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,388,-0.38669999999999999,16.2622,0.087749999999999995,12.656000000000001,13.723000000000001,14.917999999999999,16.262,17.780999999999999,19.503,21.466000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,389,-0.38750000000000001,16.258199999999999,0.087739999999999999,12.654,13.72,14.914,16.257999999999999,17.776,19.498000000000001,21.460999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,390,-0.38840000000000002,16.254100000000001,0.087730000000000002,12.651,13.717000000000001,14.911,16.254000000000001,17.771999999999998,19.492999999999999,21.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,391,-0.38919999999999999,16.25,0.087720000000000006,12.648999999999999,13.714,14.907,16.25,17.766999999999999,19.488,21.45 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,392,-0.3901,16.245999999999999,0.087709999999999996,12.646000000000001,13.711,14.904,16.245999999999999,17.763000000000002,19.483000000000001,21.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,393,-0.39090000000000003,16.241900000000001,0.0877,12.644,13.708,14.9,16.242000000000001,17.757999999999999,19.478000000000002,21.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,394,-0.39169999999999999,16.2379,0.087690000000000004,12.641,13.705,14.897,16.238,17.753,19.472999999999999,21.434000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,395,-0.3926,16.233899999999998,0.087690000000000004,12.638999999999999,13.701000000000001,14.893000000000001,16.234000000000002,17.748999999999999,19.469000000000001,21.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,396,-0.39340000000000003,16.229800000000001,0.087679999999999994,12.635999999999999,13.698,14.888999999999999,16.23,17.745000000000001,19.463999999999999,21.423999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,397,-0.39429999999999998,16.2258,0.087669999999999998,12.634,13.695,14.885999999999999,16.225999999999999,17.739999999999998,19.459,21.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,398,-0.39510000000000001,16.221800000000002,0.087660000000000002,12.631,13.692,14.882,16.222000000000001,17.736000000000001,19.454000000000001,21.414000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,399,-0.39589999999999997,16.2178,0.087650000000000006,12.629,13.689,14.879,16.218,17.731000000000002,19.449000000000002,21.408000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,400,-0.39679999999999999,16.213799999999999,0.087639999999999996,12.625999999999999,13.686,14.875,16.213999999999999,17.727,19.443999999999999,21.402999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,401,-0.39760000000000001,16.209900000000001,0.08763,12.624000000000001,13.683999999999999,14.872,16.21,17.722000000000001,19.439,21.398 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,402,-0.39839999999999998,16.2059,0.087620000000000003,12.621,13.680999999999999,14.869,16.206,17.718,19.434000000000001,21.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,403,-0.3992,16.201899999999998,0.087609999999999993,12.619,13.678000000000001,14.865,16.202000000000002,17.713000000000001,19.428999999999998,21.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,404,-0.40010000000000001,16.198,0.087609999999999993,12.616,13.675000000000001,14.862,16.198,17.709,19.425000000000001,21.382999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,405,-0.40089999999999998,16.193999999999999,0.087599999999999997,12.614000000000001,13.672000000000001,14.858000000000001,16.193999999999999,17.704000000000001,19.420000000000002,21.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,406,-0.4017,16.190100000000001,0.087590000000000001,12.611000000000001,13.669,14.855,16.190000000000001,17.7,19.414999999999999,21.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,407,-0.40250000000000002,16.186199999999999,0.087580000000000005,12.609,13.666,14.851000000000001,16.186,17.696000000000002,19.41,21.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,408,-0.40329999999999999,16.182200000000002,0.087569999999999995,12.606,13.663,14.848000000000001,16.181999999999999,17.690999999999999,19.405000000000001,21.361999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,409,-0.40410000000000001,16.1783,0.087559999999999999,12.603999999999999,13.66,14.843999999999999,16.178000000000001,17.687000000000001,19.399999999999999,21.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,410,-0.40489999999999998,16.174399999999999,0.087550000000000003,12.602,13.657,14.840999999999999,16.173999999999999,17.681999999999999,19.396000000000001,21.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,411,-0.40570000000000001,16.170500000000001,0.087540000000000007,12.599,13.654,14.837999999999999,16.170000000000002,17.678000000000001,19.390999999999998,21.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,412,-0.40660000000000002,16.166699999999999,0.087529999999999997,12.597,13.651,14.834,16.167000000000002,17.673999999999999,19.385999999999999,21.341000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,413,-0.40739999999999998,16.162800000000001,0.087529999999999997,12.593999999999999,13.648,14.831,16.163,17.670000000000002,19.382000000000001,21.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,414,-0.40820000000000001,16.158899999999999,0.087520000000000001,12.592000000000001,13.645,14.827,16.158999999999999,17.664999999999999,19.376999999999999,21.332000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,415,-0.40899999999999997,16.155100000000001,0.087510000000000004,12.59,13.643000000000001,14.824,16.155000000000001,17.661000000000001,19.372,21.327000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,416,-0.4098,16.151199999999999,0.087499999999999994,12.587,13.64,14.821,16.151,17.655999999999999,19.367000000000001,21.321000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,417,-0.41060000000000002,16.147400000000001,0.087489999999999998,12.585000000000001,13.637,14.817,16.146999999999998,17.652000000000001,19.363,21.315999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,418,-0.41139999999999999,16.1435,0.087480000000000002,12.582000000000001,13.634,14.814,16.143999999999998,17.648,19.358000000000001,21.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,419,-0.41210000000000002,16.139700000000001,0.087470000000000006,12.58,13.631,14.811,16.14,17.643999999999998,19.353000000000002,21.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,420,-0.41289999999999999,16.135899999999999,0.087470000000000006,12.577,13.628,14.807,16.135999999999999,17.638999999999999,19.349,21.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,421,-0.41370000000000001,16.132100000000001,0.087459999999999996,12.574999999999999,13.625,14.804,16.132000000000001,17.635000000000002,19.344000000000001,21.297000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,422,-0.41449999999999998,16.128299999999999,0.08745,12.573,13.622999999999999,14.801,16.128,17.631,19.338999999999999,21.292000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,423,-0.4153,16.124500000000001,0.087440000000000004,12.57,13.62,14.797000000000001,16.125,17.626999999999999,19.335000000000001,21.286999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,424,-0.41610000000000003,16.120699999999999,0.087429999999999994,12.568,13.617000000000001,14.794,16.120999999999999,17.622,19.329999999999998,21.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,425,-0.41689999999999999,16.117000000000001,0.087419999999999998,12.566000000000001,13.614000000000001,14.791,16.117000000000001,17.617999999999999,19.324999999999999,21.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,426,-0.41760000000000003,16.113199999999999,0.087410000000000002,12.564,13.611000000000001,14.788,16.113,17.614000000000001,19.321000000000002,21.271999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,427,-0.41839999999999999,16.109500000000001,0.087410000000000002,12.561,13.608000000000001,14.784000000000001,16.11,17.61,19.315999999999999,21.266999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,428,-0.41920000000000002,16.105699999999999,0.087400000000000005,12.558999999999999,13.606,14.781000000000001,16.106000000000002,17.606000000000002,19.312000000000001,21.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,429,-0.42,16.102,0.087389999999999995,12.555999999999999,13.603,14.778,16.102,17.600999999999999,19.306999999999999,21.257000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,430,-0.42080000000000001,16.098299999999998,0.087379999999999999,12.554,13.6,14.773999999999999,16.097999999999999,17.597000000000001,19.302,21.251999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,431,-0.42149999999999999,16.0946,0.087370000000000003,12.552,13.597,14.771000000000001,16.094999999999999,17.593,19.297999999999998,21.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,432,-0.42230000000000001,16.090900000000001,0.087359999999999993,12.55,13.595000000000001,14.768000000000001,16.091000000000001,17.588999999999999,19.292999999999999,21.242999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,433,-0.42309999999999998,16.087199999999999,0.087359999999999993,12.547000000000001,13.592000000000001,14.765000000000001,16.087,17.585000000000001,19.289000000000001,21.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,434,-0.42380000000000001,16.083500000000001,0.087349999999999997,12.545,13.589,14.760999999999999,16.084,17.581,19.283999999999999,21.233000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,435,-0.42459999999999998,16.079799999999999,0.087340000000000001,12.542,13.586,14.757999999999999,16.079999999999998,17.577000000000002,19.28,21.228000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,436,-0.4254,16.0762,0.087330000000000005,12.54,13.584,14.755000000000001,16.076000000000001,17.571999999999999,19.274999999999999,21.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,437,-0.42609999999999998,16.072500000000002,0.087319999999999995,12.538,13.581,14.752000000000001,16.073,17.568000000000001,19.271000000000001,21.219000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,438,-0.4269,16.068899999999999,0.087309999999999999,12.536,13.577999999999999,14.749000000000001,16.068999999999999,17.564,19.265999999999998,21.213999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,439,-0.42759999999999998,16.065200000000001,0.087309999999999999,12.532999999999999,13.574999999999999,14.744999999999999,16.065000000000001,17.559999999999999,19.262,21.21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,440,-0.4284,16.061599999999999,0.087300000000000003,12.531000000000001,13.573,14.742000000000001,16.062000000000001,17.556000000000001,19.257999999999999,21.204999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,441,-0.42920000000000003,16.058,0.087290000000000006,12.529,13.57,14.739000000000001,16.058,17.552,19.253,21.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,442,-0.4299,16.054400000000001,0.087279999999999996,12.526999999999999,13.567,14.736000000000001,16.053999999999998,17.547999999999998,19.248999999999999,21.195 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,443,-0.43070000000000003,16.050799999999999,0.08727,12.523999999999999,13.565,14.733000000000001,16.050999999999998,17.544,19.244,21.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,444,-0.43140000000000001,16.0472,0.08727,12.522,13.561999999999999,14.73,16.047000000000001,17.54,19.239999999999998,21.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,445,-0.43219999999999997,16.043600000000001,0.087260000000000004,12.52,13.558999999999999,14.727,16.044,17.536000000000001,19.236000000000001,21.181000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,446,-0.43290000000000001,16.04,0.087249999999999994,12.518000000000001,13.555999999999999,14.723000000000001,16.04,17.532,19.231000000000002,21.175999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,447,-0.43369999999999997,16.0365,0.087239999999999998,12.515000000000001,13.554,14.72,16.036000000000001,17.527999999999999,19.227,21.172000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,448,-0.43440000000000001,16.032900000000001,0.087230000000000002,12.513,13.551,14.717000000000001,16.033000000000001,17.524000000000001,19.222000000000001,21.167000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,449,-0.43509999999999999,16.029399999999999,0.087220000000000006,12.510999999999999,13.548999999999999,14.714,16.029,17.52,19.218,21.161999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,450,-0.43590000000000001,16.0258,0.087220000000000006,12.509,13.545999999999999,14.711,16.026,17.515999999999998,19.213999999999999,21.158000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,451,-0.43659999999999999,16.022300000000001,0.087209999999999996,12.506,13.542999999999999,14.708,16.021999999999998,17.512,19.209,21.152999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,452,-0.43740000000000001,16.018799999999999,0.0872,12.504,13.541,14.705,16.018999999999998,17.507999999999999,19.204999999999998,21.149000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,453,-0.43809999999999999,16.0153,0.087190000000000004,12.502000000000001,13.538,14.702,16.015000000000001,17.504000000000001,19.201000000000001,21.143999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,454,-0.43880000000000002,16.011800000000001,0.087179999999999994,12.5,13.535,14.699,16.012,17.5,19.196000000000002,21.138999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,455,-0.43959999999999999,16.008299999999998,0.087179999999999994,12.497999999999999,13.532999999999999,14.696,16.007999999999999,17.497,19.192,21.135000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,456,-0.44030000000000002,16.004799999999999,0.087169999999999997,12.496,13.53,14.693,16.004999999999999,17.492999999999999,19.187999999999999,21.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,457,-0.441,16.001300000000001,0.087160000000000001,12.493,13.528,14.69,16.001000000000001,17.489000000000001,19.184000000000001,21.126000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,458,-0.44180000000000003,15.9979,0.087150000000000005,12.491,13.525,14.686999999999999,15.997999999999999,17.484999999999999,19.178999999999998,21.120999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,459,-0.4425,15.994400000000001,0.087139999999999995,12.489000000000001,13.522,14.683999999999999,15.994,17.481000000000002,19.175000000000001,21.117000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,460,-0.44319999999999998,15.991,0.087139999999999995,12.487,13.52,14.680999999999999,15.991,17.477,19.170999999999999,21.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,461,-0.44390000000000002,15.987500000000001,0.087129999999999999,12.484999999999999,13.516999999999999,14.678000000000001,15.988,17.472999999999999,19.167000000000002,21.108000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,462,-0.44469999999999998,15.9841,0.087120000000000003,12.483000000000001,13.515000000000001,14.675000000000001,15.984,17.469000000000001,19.161999999999999,21.103000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,463,-0.44540000000000002,15.980700000000001,0.087110000000000007,12.481,13.512,14.672000000000001,15.981,17.465,19.158000000000001,21.099 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,464,-0.4461,15.9773,0.087110000000000007,12.478,13.509,14.669,15.977,17.462,19.154,21.094999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,465,-0.44679999999999997,15.9739,0.087099999999999997,12.476000000000001,13.507,14.666,15.974,17.457999999999998,19.149999999999999,21.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,466,-0.44750000000000001,15.970499999999999,0.087090000000000001,12.474,13.504,14.663,15.97,17.454000000000001,19.146000000000001,21.085999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,467,-0.44819999999999999,15.9671,0.087080000000000005,12.472,13.502000000000001,14.66,15.967000000000001,17.45,19.141999999999999,21.081 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,468,-0.44900000000000001,15.963800000000001,0.087069999999999995,12.47,13.5,14.657,15.964,17.446999999999999,19.137,21.077000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,469,-0.44969999999999999,15.9604,0.087069999999999995,12.468,13.497,14.654,15.96,17.443000000000001,19.134,21.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,470,-0.45040000000000002,15.957100000000001,0.087059999999999998,12.465999999999999,13.494,14.651,15.957000000000001,17.439,19.129000000000001,21.068000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,471,-0.4511,15.9537,0.087050000000000002,12.464,13.492000000000001,14.648,15.954000000000001,17.434999999999999,19.125,21.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,472,-0.45179999999999998,15.9504,0.087040000000000006,12.462,13.489000000000001,14.645,15.95,17.431999999999999,19.120999999999999,21.059000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,473,-0.45250000000000001,15.947100000000001,0.087040000000000006,12.459,13.487,14.641999999999999,15.946999999999999,17.428000000000001,19.117000000000001,21.055 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,474,-0.45319999999999999,15.9438,0.087029999999999996,12.457000000000001,13.484,14.638999999999999,15.944000000000001,17.423999999999999,19.113,21.050999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,475,-0.45390000000000003,15.9405,0.08702,12.455,13.481999999999999,14.635999999999999,15.94,17.420999999999999,19.109000000000002,21.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,476,-0.4546,15.937200000000001,0.087010000000000004,12.452999999999999,13.48,14.634,15.936999999999999,17.417000000000002,19.105,21.042000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,477,-0.45529999999999998,15.9339,0.087010000000000004,12.451000000000001,13.477,14.631,15.933999999999999,17.413,19.100999999999999,21.038 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,478,-0.45600000000000002,15.9307,0.086999999999999994,12.449,13.475,14.628,15.930999999999999,17.41,19.097000000000001,21.033999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,479,-0.45669999999999999,15.9274,0.086989999999999998,12.446999999999999,13.472,14.625,15.927,17.405999999999999,19.093,21.029 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,480,-0.45739999999999997,15.924099999999999,0.086980000000000002,12.445,13.47,14.622,15.923999999999999,17.402000000000001,19.088999999999999,21.024999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,481,-0.45810000000000001,15.9209,0.086980000000000002,12.443,13.467000000000001,14.619,15.920999999999999,17.399000000000001,19.085000000000001,21.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,482,-0.45879999999999999,15.9177,0.086970000000000006,12.441000000000001,13.465,14.617000000000001,15.917999999999999,17.395,19.081,21.016999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,483,-0.45950000000000002,15.9145,0.086959999999999996,12.439,13.462999999999999,14.614000000000001,15.914,17.390999999999998,19.077000000000002,21.013000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,484,-0.4602,15.911199999999999,0.08695,12.436999999999999,13.46,14.611000000000001,15.911,17.388000000000002,19.073,21.007999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,485,-0.46089999999999998,15.907999999999999,0.08695,12.435,13.458,14.608000000000001,15.907999999999999,17.384,19.068999999999999,21.004000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,486,-0.46160000000000001,15.9049,0.086940000000000003,12.433,13.455,14.605,15.904999999999999,17.381,19.065999999999999,21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,487,-0.46229999999999999,15.9017,0.086929999999999993,12.430999999999999,13.452999999999999,14.603,15.901999999999999,17.376999999999999,19.062000000000001,20.995999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,488,-0.46289999999999998,15.8985,0.086919999999999997,12.429,13.451000000000001,14.6,15.898,17.373000000000001,19.056999999999999,20.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,489,-0.46360000000000001,15.895300000000001,0.086919999999999997,12.427,13.448,14.597,15.895,17.37,19.053999999999998,20.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,490,-0.46429999999999999,15.892200000000001,0.086910000000000001,12.425000000000001,13.446,14.593999999999999,15.891999999999999,17.366,19.05,20.984000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,491,-0.46500000000000002,15.889099999999999,0.086900000000000005,12.423,13.444000000000001,14.592000000000001,15.888999999999999,17.363,19.045999999999999,20.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,492,-0.4657,15.885899999999999,0.086889999999999995,12.420999999999999,13.441000000000001,14.589,15.885999999999999,17.359000000000002,19.042000000000002,20.975000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,493,-0.46629999999999999,15.8828,0.086889999999999995,12.419,13.439,14.586,15.882999999999999,17.356000000000002,19.038,20.971 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,494,-0.46700000000000003,15.8797,0.086879999999999999,12.417,13.436,14.583,15.88,17.352,19.035,20.966999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,495,-0.4677,15.8766,0.086870000000000003,12.414999999999999,13.433999999999999,14.581,15.877000000000001,17.349,19.030999999999999,20.963000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,496,-0.46839999999999998,15.8735,0.086860000000000007,12.414,13.432,14.577999999999999,15.874000000000001,17.344999999999999,19.027000000000001,20.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,497,-0.46899999999999997,15.8704,0.086860000000000007,12.411,13.429,14.574999999999999,15.87,17.341999999999999,19.023,20.954999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,498,-0.46970000000000001,15.8673,0.086849999999999997,12.409000000000001,13.427,14.571999999999999,15.867000000000001,17.338999999999999,19.018999999999998,20.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,499,-0.47039999999999998,15.8643,0.086840000000000001,12.407999999999999,13.425000000000001,14.57,15.864000000000001,17.335000000000001,19.015999999999998,20.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,500,-0.47110000000000002,15.8612,0.086830000000000004,12.406000000000001,13.423,14.567,15.861000000000001,17.332000000000001,19.012,20.943000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,501,-0.47170000000000001,15.8582,0.086830000000000004,12.404,13.42,14.565,15.858000000000001,17.327999999999999,19.007999999999999,20.939 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,502,-0.47239999999999999,15.8552,0.086819999999999994,12.401999999999999,13.417999999999999,14.561999999999999,15.855,17.324999999999999,19.004000000000001,20.934999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,503,-0.47310000000000002,15.8521,0.086809999999999998,12.4,13.416,14.558999999999999,15.852,17.321000000000002,19.001000000000001,20.931000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,504,-0.47370000000000001,15.8491,0.086809999999999998,12.398,13.414,14.557,15.849,17.318000000000001,18.997,20.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,505,-0.47439999999999999,15.8461,0.086800000000000002,12.396000000000001,13.411,14.554,15.846,17.315000000000001,18.992999999999999,20.922999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,506,-0.47510000000000002,15.8431,0.086790000000000006,12.394,13.409000000000001,14.551,15.843,17.311,18.989999999999998,20.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,507,-0.47570000000000001,15.8401,0.086779999999999996,12.393000000000001,13.407,14.548999999999999,15.84,17.308,18.986000000000001,20.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,508,-0.47639999999999999,15.837199999999999,0.086779999999999996,12.391,13.404999999999999,14.545999999999999,15.837,17.305,18.983000000000001,20.911999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,509,-0.47699999999999998,15.834199999999999,0.08677,12.388999999999999,13.403,14.544,15.834,17.300999999999998,18.978999999999999,20.908000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,510,-0.47770000000000001,15.831300000000001,0.086760000000000004,12.387,13.4,14.541,15.831,17.297999999999998,18.975000000000001,20.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,511,-0.4783,15.8283,0.086760000000000004,12.385,13.398,14.538,15.827999999999999,17.295000000000002,18.972000000000001,20.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,512,-0.47899999999999998,15.8254,0.086749999999999994,12.382999999999999,13.396000000000001,14.536,15.824999999999999,17.292000000000002,18.968,20.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,513,-0.47970000000000002,15.8224,0.086739999999999998,12.382,13.394,14.532999999999999,15.821999999999999,17.288,18.963999999999999,20.891999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,514,-0.4803,15.8195,0.086730000000000002,12.38,13.391999999999999,14.531000000000001,15.82,17.285,18.96,20.888000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,515,-0.48099999999999998,15.816599999999999,0.086730000000000002,12.378,13.388999999999999,14.528,15.817,17.282,18.957000000000001,20.885000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,516,-0.48159999999999997,15.813700000000001,0.086720000000000005,12.375999999999999,13.387,14.526,15.814,17.277999999999999,18.954000000000001,20.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,517,-0.48230000000000001,15.8108,0.086709999999999995,12.374000000000001,13.385,14.523,15.811,17.274999999999999,18.95,20.876999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,518,-0.4829,15.808,0.086709999999999995,12.372,13.382999999999999,14.521000000000001,15.808,17.271999999999998,18.946999999999999,20.873999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,519,-0.48359999999999997,15.805099999999999,0.086699999999999999,12.371,13.381,14.518000000000001,15.805,17.268999999999998,18.943000000000001,20.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,520,-0.48420000000000002,15.802199999999999,0.086690000000000003,12.369,13.379,14.516,15.802,17.265999999999998,18.939,20.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,521,-0.48480000000000001,15.7994,0.086679999999999993,12.367000000000001,13.377000000000001,14.513,15.798999999999999,17.262,18.936,20.861999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,522,-0.48549999999999999,15.7965,0.086679999999999993,12.365,13.374000000000001,14.510999999999999,15.795999999999999,17.259,18.933,20.859000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,523,-0.48609999999999998,15.793699999999999,0.086669999999999997,12.364000000000001,13.372,14.507999999999999,15.794,17.256,18.928999999999998,20.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,524,-0.48680000000000001,15.790900000000001,0.086660000000000001,12.362,13.37,14.506,15.791,17.253,18.925000000000001,20.850999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,525,-0.4874,15.7881,0.086660000000000001,12.36,13.368,14.503,15.788,17.25,18.922000000000001,20.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,526,-0.48799999999999999,15.785299999999999,0.086650000000000005,12.358000000000001,13.366,14.500999999999999,15.785,17.247,18.919,20.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,527,-0.48870000000000002,15.782500000000001,0.086639999999999995,12.356999999999999,13.364000000000001,14.499000000000001,15.782,17.242999999999999,18.914999999999999,20.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,528,-0.48930000000000001,15.7797,0.086639999999999995,12.355,13.362,14.496,15.78,17.239999999999998,18.911999999999999,20.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,529,-0.49,15.776899999999999,0.086629999999999999,12.353,13.36,14.494,15.776999999999999,17.236999999999998,18.908000000000001,20.832999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,530,-0.49059999999999998,15.7742,0.086620000000000003,12.352,13.358000000000001,14.491,15.773999999999999,17.234000000000002,18.905000000000001,20.829000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,531,-0.49120000000000003,15.7714,0.086620000000000003,12.35,13.356,14.489000000000001,15.771000000000001,17.231000000000002,18.902000000000001,20.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,532,-0.4919,15.768700000000001,0.086610000000000006,12.348000000000001,13.353999999999999,14.486000000000001,15.769,17.228000000000002,18.898,20.821999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,533,-0.49249999999999999,15.7659,0.086599999999999996,12.347,13.352,14.484,15.766,17.225000000000001,18.895,20.818000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,534,-0.49309999999999998,15.763199999999999,0.086599999999999996,12.345000000000001,13.349,14.481999999999999,15.763,17.222000000000001,18.891999999999999,20.815000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,535,-0.49370000000000003,15.7605,0.08659,12.343,13.348000000000001,14.478999999999999,15.76,17.219000000000001,18.888000000000002,20.812000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,536,-0.49440000000000001,15.7578,0.086580000000000004,12.342000000000001,13.346,14.477,15.757999999999999,17.216000000000001,18.885000000000002,20.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,537,-0.495,15.755100000000001,0.086569999999999994,12.34,13.343999999999999,14.475,15.755000000000001,17.213000000000001,18.881,20.803999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,538,-0.49559999999999998,15.7524,0.086569999999999994,12.337999999999999,13.342000000000001,14.472,15.752000000000001,17.21,18.878,20.800999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,539,-0.49619999999999997,15.749700000000001,0.086559999999999998,12.336,13.34,14.47,15.75,17.207000000000001,18.875,20.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,540,-0.49690000000000001,15.747,0.086550000000000002,12.335000000000001,13.337999999999999,14.468,15.747,17.204000000000001,18.870999999999999,20.794 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,541,-0.4975,15.744400000000001,0.086550000000000002,12.333,13.336,14.465,15.744,17.201000000000001,18.869,20.791 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,542,-0.49809999999999999,15.7417,0.086540000000000006,12.332000000000001,13.334,14.462999999999999,15.742000000000001,17.198,18.864999999999998,20.786999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,543,-0.49869999999999998,15.739100000000001,0.086529999999999996,12.33,13.332000000000001,14.461,15.739000000000001,17.195,18.861999999999998,20.783000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,544,-0.49930000000000002,15.7364,0.086529999999999996,12.327999999999999,13.33,14.458,15.736000000000001,17.192,18.859000000000002,20.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,545,-0.5,15.7338,0.08652,12.327,13.327999999999999,14.456,15.734,17.189,18.855,20.777000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,546,-0.50060000000000004,15.731199999999999,0.086510000000000004,12.324999999999999,13.326000000000001,14.454000000000001,15.731,17.186,18.852,20.773 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,547,-0.50119999999999998,15.7286,0.086510000000000004,12.323,13.324,14.451000000000001,15.728999999999999,17.183,18.849,20.77 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,548,-0.50180000000000002,15.726000000000001,0.086499999999999994,12.321999999999999,13.321999999999999,14.449,15.726000000000001,17.18,18.846,20.765999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,549,-0.50239999999999996,15.7234,0.086489999999999997,12.32,13.32,14.446999999999999,15.723000000000001,17.177,18.841999999999999,20.763000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,550,-0.503,15.720800000000001,0.086489999999999997,12.319000000000001,13.318,14.445,15.721,17.173999999999999,18.84,20.76 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,551,-0.50360000000000005,15.718299999999999,0.086480000000000001,12.317,13.316000000000001,14.443,15.718,17.170999999999999,18.835999999999999,20.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,552,-0.50429999999999997,15.7157,0.086470000000000005,12.316000000000001,13.314,14.44,15.715999999999999,17.167999999999999,18.832999999999998,20.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,553,-0.50490000000000002,15.713200000000001,0.086470000000000005,12.314,13.311999999999999,14.438000000000001,15.712999999999999,17.166,18.829999999999998,20.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,554,-0.50549999999999995,15.710599999999999,0.086459999999999995,12.311999999999999,13.311,14.436,15.711,17.163,18.827000000000002,20.745999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,555,-0.50609999999999999,15.7081,0.086449999999999999,12.311,13.308999999999999,14.433999999999999,15.708,17.16,18.824000000000002,20.742999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,556,-0.50670000000000004,15.7056,0.086449999999999999,12.308999999999999,13.307,14.430999999999999,15.706,17.157,18.821000000000002,20.74 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,557,-0.50729999999999997,15.702999999999999,0.086440000000000003,12.308,13.305,14.429,15.702999999999999,17.154,18.818000000000001,20.736000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,558,-0.50790000000000002,15.7005,0.086430000000000007,12.305999999999999,13.303000000000001,14.427,15.7,17.151,18.814,20.733000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,559,-0.50849999999999995,15.698,0.086430000000000007,12.305,13.301,14.425000000000001,15.698,17.149000000000001,18.811,20.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,560,-0.5091,15.695600000000001,0.086419999999999997,12.303000000000001,13.298999999999999,14.423,15.696,17.146000000000001,18.808,20.727 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,561,-0.50970000000000004,15.693099999999999,0.086419999999999997,12.301,13.297000000000001,14.42,15.693,17.143000000000001,18.806000000000001,20.724 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,562,-0.51029999999999998,15.6906,0.086410000000000001,12.3,13.295999999999999,14.417999999999999,15.691000000000001,17.14,18.802,20.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,563,-0.51090000000000002,15.6882,0.086400000000000005,12.298999999999999,13.294,14.416,15.688000000000001,17.138000000000002,18.798999999999999,20.716999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,564,-0.51149999999999995,15.685700000000001,0.086400000000000005,12.297000000000001,13.292,14.414,15.686,17.135000000000002,18.795999999999999,20.713999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,565,-0.5121,15.683299999999999,0.086389999999999995,12.295999999999999,13.29,14.412000000000001,15.683,17.132000000000001,18.792999999999999,20.710999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,566,-0.51270000000000004,15.6808,0.086379999999999998,12.294,13.289,14.41,15.680999999999999,17.129000000000001,18.79,20.707000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,567,-0.51329999999999998,15.6784,0.086379999999999998,12.292,13.287000000000001,14.407999999999999,15.678000000000001,17.126999999999999,18.786999999999999,20.704999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,568,-0.51390000000000002,15.676,0.086370000000000002,12.291,13.285,14.406000000000001,15.676,17.123999999999999,18.783999999999999,20.701000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,569,-0.51449999999999996,15.6736,0.086360000000000006,12.29,13.282999999999999,14.404,15.673999999999999,17.120999999999999,18.780999999999999,20.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,570,-0.5151,15.671200000000001,0.086360000000000006,12.288,13.281000000000001,14.401,15.670999999999999,17.119,18.779,20.695 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,571,-0.51559999999999995,15.668799999999999,0.086349999999999996,12.287000000000001,13.28,14.398999999999999,15.669,17.116,18.774999999999999,20.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,572,-0.51619999999999999,15.666499999999999,0.08634,12.285,13.278,14.397,15.666,17.113,18.771999999999998,20.687999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,573,-0.51680000000000004,15.664099999999999,0.08634,12.284000000000001,13.276,14.395,15.664,17.111000000000001,18.77,20.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,574,-0.51739999999999997,15.6617,0.086330000000000004,12.282,13.273999999999999,14.393000000000001,15.662000000000001,17.108000000000001,18.766999999999999,20.681999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,575,-0.51800000000000002,15.6594,0.086319999999999994,12.281000000000001,13.273,14.391,15.659000000000001,17.105,18.763999999999999,20.678999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,576,-0.51859999999999995,15.6571,0.086319999999999994,12.28,13.271000000000001,14.388999999999999,15.657,17.103000000000002,18.760999999999999,20.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,577,-0.51919999999999999,15.6547,0.086309999999999998,12.278,13.269,14.387,15.654999999999999,17.100000000000001,18.757999999999999,20.672999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,578,-0.51970000000000005,15.6524,0.086309999999999998,12.276999999999999,13.266999999999999,14.385,15.651999999999999,17.097000000000001,18.754999999999999,20.670999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,579,-0.52029999999999998,15.6501,0.086300000000000002,12.275,13.266,14.382999999999999,15.65,17.094999999999999,18.751999999999999,20.667000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,580,-0.52090000000000003,15.6478,0.086290000000000006,12.273999999999999,13.263999999999999,14.381,15.648,17.091999999999999,18.748999999999999,20.664000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,581,-0.52149999999999996,15.6455,0.086290000000000006,12.272,13.262,14.379,15.646000000000001,17.09,18.747,20.661999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,582,-0.52210000000000001,15.6432,0.086279999999999996,12.271000000000001,13.260999999999999,14.377000000000001,15.643000000000001,17.087,18.744,20.658000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,583,-0.52259999999999995,15.6409,0.086269999999999999,12.27,13.259,14.375,15.641,17.084,18.741,20.655000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,584,-0.5232,15.6387,0.086269999999999999,12.268000000000001,13.257,14.372999999999999,15.638999999999999,17.082000000000001,18.738,20.652999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,585,-0.52380000000000004,15.6364,0.086260000000000003,12.266999999999999,13.256,14.371,15.635999999999999,17.079000000000001,18.736000000000001,20.649000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,586,-0.52439999999999998,15.6342,0.086260000000000003,12.266,13.254,14.369,15.634,17.077000000000002,18.733000000000001,20.646999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,587,-0.52500000000000002,15.6319,0.086249999999999993,12.263999999999999,13.252000000000001,14.367000000000001,15.632,17.074000000000002,18.73,20.643999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,588,-0.52549999999999997,15.6297,0.086239999999999997,12.263,13.250999999999999,14.366,15.63,17.071999999999999,18.727,20.640999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,589,-0.52610000000000001,15.6275,0.086239999999999997,12.262,13.249000000000001,14.364000000000001,15.628,17.068999999999999,18.725000000000001,20.638000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,590,-0.52669999999999995,15.625299999999999,0.086230000000000001,12.26,13.247999999999999,14.362,15.625,17.067,18.722000000000001,20.635000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,591,-0.5272,15.623100000000001,0.086220000000000005,12.259,13.246,14.36,15.622999999999999,17.064,18.719000000000001,20.632000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,592,-0.52780000000000005,15.620900000000001,0.086220000000000005,12.257999999999999,13.244,14.358000000000001,15.621,17.062000000000001,18.716999999999999,20.629000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,593,-0.52839999999999998,15.6187,0.086209999999999995,12.256,13.243,14.356,15.619,17.059000000000001,18.713999999999999,20.626000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,594,-0.52900000000000003,15.6165,0.086209999999999995,12.255000000000001,13.241,14.353999999999999,15.616,17.056999999999999,18.710999999999999,20.623999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,595,-0.52949999999999997,15.6144,0.086199999999999999,12.254,13.24,14.352,15.614000000000001,17.055,18.707999999999998,20.620999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,596,-0.53010000000000002,15.6122,0.086190000000000003,12.253,13.238,14.35,15.612,17.052,18.706,20.617999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,597,-0.53069999999999995,15.61,0.086190000000000003,12.250999999999999,13.236000000000001,14.348000000000001,15.61,17.05,18.702999999999999,20.614999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,598,-0.53120000000000001,15.607900000000001,0.086180000000000007,12.25,13.234999999999999,14.347,15.608000000000001,17.047000000000001,18.7,20.611999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,599,-0.53180000000000005,15.6058,0.086180000000000007,12.247999999999999,13.233000000000001,14.345000000000001,15.606,17.045000000000002,18.698,20.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,600,-0.5323,15.6037,0.086169999999999997,12.247,13.231999999999999,14.343,15.603999999999999,17.042999999999999,18.695,20.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,601,-0.53290000000000004,15.6015,0.08616,12.246,13.23,14.340999999999999,15.602,17.04,18.692,20.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,602,-0.53349999999999997,15.599399999999999,0.08616,12.244999999999999,13.228999999999999,14.339,15.599,17.038,18.690000000000001,20.600999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,603,-0.53400000000000003,15.597300000000001,0.086150000000000004,12.243,13.227,14.337,15.597,17.035,18.687000000000001,20.597999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,604,-0.53459999999999996,15.5953,0.086139999999999994,12.242000000000001,13.226000000000001,14.336,15.595000000000001,17.033000000000001,18.684999999999999,20.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,605,-0.53510000000000002,15.5932,0.086139999999999994,12.241,13.224,14.334,15.593,17.030999999999999,18.681999999999999,20.593 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,606,-0.53569999999999995,15.591100000000001,0.086129999999999998,12.24,13.223000000000001,14.332000000000001,15.590999999999999,17.027999999999999,18.68,20.59 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,607,-0.5363,15.589,0.086129999999999998,12.238,13.221,14.33,15.589,17.026,18.677,20.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,608,-0.53680000000000005,15.587,0.086120000000000002,12.237,13.22,14.327999999999999,15.587,17.024000000000001,18.675000000000001,20.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,609,-0.53739999999999999,15.585000000000001,0.086110000000000006,12.236000000000001,13.218,14.327,15.585000000000001,17.021000000000001,18.672000000000001,20.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,610,-0.53790000000000004,15.5829,0.086110000000000006,12.234999999999999,13.217000000000001,14.324999999999999,15.583,17.018999999999998,18.670000000000002,20.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,611,-0.53849999999999998,15.5809,0.086099999999999996,12.234,13.215,14.323,15.581,17.016999999999999,18.667000000000002,20.577000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,612,-0.53900000000000003,15.578900000000001,0.086099999999999996,12.231999999999999,13.214,14.321,15.579000000000001,17.015000000000001,18.664999999999999,20.574999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,613,-0.53959999999999997,15.5769,0.08609,12.231,13.212,14.32,15.577,17.012,18.661999999999999,20.571999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,614,-0.54010000000000002,15.5749,0.086080000000000004,12.23,13.211,14.318,15.574999999999999,17.010000000000002,18.66,20.568999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,615,-0.54069999999999996,15.572900000000001,0.086080000000000004,12.228999999999999,13.209,14.316000000000001,15.573,17.007999999999999,18.657,20.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,616,-0.54120000000000001,15.5709,0.086069999999999994,12.228,13.208,14.315,15.571,17.006,18.655000000000001,20.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,617,-0.54179999999999995,15.569000000000001,0.086069999999999994,12.227,13.206,14.313000000000001,15.569000000000001,17.004000000000001,18.652999999999999,20.562000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,618,-0.5423,15.567,0.086059999999999998,12.225,13.205,14.311,15.567,17.001000000000001,18.649999999999999,20.559000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,619,-0.54290000000000005,15.565099999999999,0.086050000000000001,12.224,13.204000000000001,14.31,15.565,16.998999999999999,18.646999999999998,20.556000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,620,-0.54339999999999999,15.5631,0.086050000000000001,12.223000000000001,13.202,14.308,15.563000000000001,16.997,18.645,20.553999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,621,-0.54400000000000004,15.561199999999999,0.086040000000000005,12.222,13.201000000000001,14.305999999999999,15.561,16.995000000000001,18.643000000000001,20.550999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,622,-0.54449999999999998,15.5593,0.086040000000000005,12.221,13.199,14.304,15.558999999999999,16.992999999999999,18.640999999999998,20.548999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,623,-0.54510000000000003,15.557399999999999,0.086029999999999995,12.22,13.198,14.303000000000001,15.557,16.989999999999998,18.638000000000002,20.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,624,-0.54559999999999997,15.5555,0.086029999999999995,12.218999999999999,13.196999999999999,14.301,15.555999999999999,16.988,18.635999999999999,20.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,625,-0.54610000000000003,15.553599999999999,0.086019999999999999,12.218,13.195,14.3,15.554,16.986000000000001,18.632999999999999,20.542000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,626,-0.54669999999999996,15.5517,0.086010000000000003,12.217000000000001,13.194000000000001,14.298,15.552,16.984000000000002,18.631,20.539000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,627,-0.54720000000000002,15.549799999999999,0.086010000000000003,12.215,13.193,14.295999999999999,15.55,16.981999999999999,18.629000000000001,20.536999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,628,-0.54779999999999995,15.548,0.085999999999999993,12.214,13.191000000000001,14.295,15.548,16.98,18.626000000000001,20.533999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,629,-0.54830000000000001,15.546099999999999,0.085999999999999993,12.212999999999999,13.19,14.292999999999999,15.545999999999999,16.978000000000002,18.623999999999999,20.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,630,-0.54879999999999995,15.5443,0.085989999999999997,12.212,13.189,14.292,15.544,16.975999999999999,18.622,20.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,631,-0.5494,15.542400000000001,0.085980000000000001,12.211,13.186999999999999,14.29,15.542,16.972999999999999,18.619,20.527000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,632,-0.54990000000000006,15.5406,0.085980000000000001,12.21,13.186,14.288,15.541,16.971,18.617000000000001,20.524999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,633,-0.5504,15.5388,0.085970000000000005,12.209,13.185,14.287000000000001,15.539,16.969000000000001,18.614999999999998,20.521999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,634,-0.55100000000000005,15.537000000000001,0.085970000000000005,12.208,13.183,14.285,15.537000000000001,16.966999999999999,18.613,20.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,635,-0.55149999999999999,15.5352,0.085959999999999995,12.207000000000001,13.182,14.284000000000001,15.535,16.965,18.611000000000001,20.516999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,636,-0.55200000000000005,15.5334,0.085959999999999995,12.206,13.180999999999999,14.282,15.532999999999999,16.963000000000001,18.609000000000002,20.515000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,637,-0.55259999999999998,15.531599999999999,0.085949999999999999,12.205,13.179,14.281000000000001,15.532,16.960999999999999,18.606000000000002,20.513000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,638,-0.55310000000000004,15.5299,0.085940000000000003,12.204000000000001,13.178000000000001,14.279,15.53,16.959,18.603999999999999,20.51 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,639,-0.55359999999999998,15.5281,0.085940000000000003,12.202999999999999,13.177,14.278,15.528,16.957000000000001,18.602,20.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,640,-0.55420000000000003,15.526300000000001,0.085930000000000006,12.202,13.176,14.276,15.526,16.954999999999998,18.600000000000001,20.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,641,-0.55469999999999997,15.5246,0.085930000000000006,12.201000000000001,13.173999999999999,14.275,15.525,16.952999999999999,18.597999999999999,20.504000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,642,-0.55520000000000003,15.5229,0.085919999999999996,12.2,13.173,14.273,15.523,16.951000000000001,18.594999999999999,20.501000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,643,-0.55569999999999997,15.5212,0.08591,12.199,13.172000000000001,14.272,15.521000000000001,16.949000000000002,18.593,20.498999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,644,-0.55630000000000002,15.519399999999999,0.08591,12.198,13.170999999999999,14.27,15.519,16.948,18.591000000000001,20.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,645,-0.55679999999999996,15.5177,0.085900000000000004,12.196999999999999,13.17,14.269,15.518000000000001,16.946000000000002,18.588999999999999,20.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,646,-0.55730000000000002,15.5161,0.085900000000000004,12.196,13.167999999999999,14.266999999999999,15.516,16.943999999999999,18.587,20.492999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,647,-0.55779999999999996,15.5144,0.085889999999999994,12.195,13.167,14.266,15.513999999999999,16.942,18.585000000000001,20.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,648,-0.55840000000000001,15.512700000000001,0.085889999999999994,12.194000000000001,13.166,14.263999999999999,15.513,16.940000000000001,18.582999999999998,20.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,649,-0.55889999999999995,15.510999999999999,0.085879999999999998,12.193,13.164999999999999,14.263,15.510999999999999,16.937999999999999,18.581,20.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,650,-0.55940000000000001,15.509399999999999,0.085870000000000002,12.192,13.164,14.262,15.509,16.936,18.579000000000001,20.483000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,651,-0.55989999999999995,15.5077,0.085870000000000002,12.191000000000001,13.162000000000001,14.26,15.507999999999999,16.934000000000001,18.577000000000002,20.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,652,-0.5605,15.5061,0.085860000000000006,12.19,13.161,14.259,15.506,16.931999999999999,18.574000000000002,20.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,653,-0.56100000000000005,15.5045,0.085860000000000006,12.189,13.16,14.257,15.504,16.931000000000001,18.573,20.478000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,654,-0.5615,15.502800000000001,0.085849999999999996,12.188000000000001,13.159000000000001,14.256,15.503,16.928999999999998,18.57,20.475000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,655,-0.56200000000000006,15.501200000000001,0.085849999999999996,12.186999999999999,13.157999999999999,14.255000000000001,15.500999999999999,16.927,18.568999999999999,20.472999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,656,-0.5625,15.499599999999999,0.08584,12.186,13.157,14.253,15.5,16.925000000000001,18.567,20.471 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,657,-0.56299999999999994,15.497999999999999,0.08584,12.185,13.154999999999999,14.252000000000001,15.497999999999999,16.922999999999998,18.565000000000001,20.469000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,658,-0.56359999999999999,15.496499999999999,0.085830000000000004,12.185,13.154,14.250999999999999,15.496,16.922000000000001,18.562999999999999,20.466999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,659,-0.56410000000000005,15.494899999999999,0.085819999999999994,12.183999999999999,13.153,14.249000000000001,15.494999999999999,16.920000000000002,18.561,20.465 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,660,-0.56459999999999999,15.4933,0.085819999999999994,12.183,13.151999999999999,14.247999999999999,15.493,16.917999999999999,18.559000000000001,20.463000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,661,-0.56510000000000005,15.4918,0.085809999999999997,12.182,13.151,14.247,15.492000000000001,16.916,18.556999999999999,20.460999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,662,-0.56559999999999999,15.4902,0.085809999999999997,12.180999999999999,13.15,14.244999999999999,15.49,16.914000000000001,18.555,20.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,663,-0.56610000000000005,15.4887,0.085800000000000001,12.18,13.148999999999999,14.244,15.489000000000001,16.913,18.553000000000001,20.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,664,-0.56659999999999999,15.4872,0.085800000000000001,12.179,13.148,14.243,15.487,16.911000000000001,18.550999999999998,20.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,665,-0.56720000000000004,15.4856,0.085790000000000005,12.179,13.147,14.241,15.486000000000001,16.908999999999999,18.548999999999999,20.452999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,666,-0.56769999999999998,15.4841,0.085790000000000005,12.178000000000001,13.146000000000001,14.24,15.484,16.908000000000001,18.547999999999998,20.451000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,667,-0.56820000000000004,15.4826,0.085779999999999995,12.177,13.145,14.239000000000001,15.483000000000001,16.905999999999999,18.545000000000002,20.449000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,668,-0.56869999999999998,15.4811,0.085769999999999999,12.176,13.144,14.237,15.481,16.904,18.542999999999999,20.446999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,669,-0.56920000000000004,15.479699999999999,0.085769999999999999,12.175000000000001,13.143000000000001,14.236000000000001,15.48,16.902999999999999,18.542000000000002,20.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,670,-0.56969999999999998,15.478199999999999,0.085760000000000003,12.175000000000001,13.141999999999999,14.234999999999999,15.478,16.901,18.54,20.443000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,671,-0.57020000000000004,15.476699999999999,0.085760000000000003,12.173999999999999,13.14,14.234,15.477,16.899000000000001,18.538,20.440999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,672,-0.57069999999999999,15.475300000000001,0.085750000000000007,12.173,13.14,14.231999999999999,15.475,16.896999999999998,18.536000000000001,20.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,673,-0.57120000000000004,15.473800000000001,0.085750000000000007,12.172000000000001,13.138,14.231,15.474,16.896000000000001,18.535,20.437999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,674,-0.57169999999999999,15.4724,0.085739999999999997,12.170999999999999,13.138,14.23,15.472,16.893999999999998,18.533000000000001,20.436 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,675,-0.57220000000000004,15.471,0.085739999999999997,12.17,13.135999999999999,14.228999999999999,15.471,16.893000000000001,18.530999999999999,20.434000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,676,-0.57269999999999999,15.4695,0.085730000000000001,12.17,13.135,14.228,15.47,16.890999999999998,18.529,20.431999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,677,-0.57320000000000004,15.4681,0.085730000000000001,12.169,13.134,14.226000000000001,15.468,16.888999999999999,18.527999999999999,20.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,678,-0.57369999999999999,15.466699999999999,0.085720000000000005,12.167999999999999,13.132999999999999,14.225,15.467000000000001,16.888000000000002,18.526,20.428000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,679,-0.57420000000000004,15.465299999999999,0.085709999999999995,12.167,13.132999999999999,14.224,15.465,16.885999999999999,18.524000000000001,20.425999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,680,-0.57469999999999999,15.463900000000001,0.085709999999999995,12.167,13.132,14.223000000000001,15.464,16.885000000000002,18.521999999999998,20.425000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,681,-0.57520000000000004,15.4626,0.085699999999999998,12.166,13.131,14.222,15.462999999999999,16.882999999999999,18.52,20.422999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,682,-0.57569999999999999,15.4612,0.085699999999999998,12.164999999999999,13.13,14.22,15.461,16.882000000000001,18.518999999999998,20.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,683,-0.57620000000000005,15.4598,0.085690000000000002,12.164,13.129,14.218999999999999,15.46,16.88,18.516999999999999,20.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,684,-0.57669999999999999,15.458500000000001,0.085690000000000002,12.164,13.128,14.218,15.458,16.878,18.515999999999998,20.417999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,685,-0.57720000000000005,15.4572,0.085680000000000006,12.163,13.127000000000001,14.217000000000001,15.457000000000001,16.876999999999999,18.513999999999999,20.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,686,-0.57769999999999999,15.4558,0.085680000000000006,12.162000000000001,13.125999999999999,14.215999999999999,15.456,16.875,18.512,20.414000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,687,-0.57820000000000005,15.454499999999999,0.085669999999999996,12.162000000000001,13.125,14.215,15.454000000000001,16.873999999999999,18.510000000000002,20.411999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,688,-0.57869999999999999,15.453200000000001,0.085669999999999996,12.161,13.124000000000001,14.214,15.452999999999999,16.872,18.509,20.411000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,689,-0.57920000000000005,15.4519,0.08566,12.16,13.122999999999999,14.212999999999999,15.452,16.870999999999999,18.507000000000001,20.408999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,690,-0.57969999999999999,15.4506,0.085650000000000004,12.16,13.122999999999999,14.212,15.451000000000001,16.869,18.504999999999999,20.407 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,691,-0.58020000000000005,15.449299999999999,0.085650000000000004,12.159000000000001,13.121,14.21,15.449,16.867999999999999,18.504000000000001,20.405999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,692,-0.58069999999999999,15.448,0.085639999999999994,12.157999999999999,13.121,14.209,15.448,16.866,18.501999999999999,20.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,693,-0.58120000000000005,15.4467,0.085639999999999994,12.157,13.12,14.208,15.446999999999999,16.864999999999998,18.501000000000001,20.402000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,694,-0.58169999999999999,15.445499999999999,0.085629999999999998,12.157,13.119,14.207000000000001,15.446,16.864000000000001,18.498999999999999,20.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,695,-0.58209999999999995,15.4442,0.085629999999999998,12.156000000000001,13.118,14.206,15.444000000000001,16.861999999999998,18.498000000000001,20.399000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,696,-0.58260000000000001,15.443,0.085620000000000002,12.156000000000001,13.117000000000001,14.205,15.443,16.861000000000001,18.495999999999999,20.396999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,697,-0.58309999999999995,15.441700000000001,0.085620000000000002,12.154999999999999,13.116,14.204000000000001,15.442,16.859000000000002,18.495000000000001,20.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,698,-0.58360000000000001,15.4405,0.085610000000000006,12.154,13.116,14.202999999999999,15.44,16.858000000000001,18.492999999999999,20.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,699,-0.58409999999999995,15.439299999999999,0.085610000000000006,12.154,13.115,14.202,15.439,16.856999999999999,18.492000000000001,20.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,700,-0.58460000000000001,15.4381,0.085599999999999996,12.153,13.114000000000001,14.201000000000001,15.438000000000001,16.855,18.489999999999998,20.390999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,701,-0.58509999999999995,15.4368,0.085599999999999996,12.151999999999999,13.113,14.2,15.436999999999999,16.853999999999999,18.488,20.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,702,-0.58550000000000002,15.435600000000001,0.085589999999999999,12.151999999999999,13.112,14.199,15.436,16.852,18.486999999999998,20.388000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,703,-0.58599999999999997,15.4345,0.085589999999999999,12.151,13.111000000000001,14.198,15.433999999999999,16.850999999999999,18.486000000000001,20.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,704,-0.58650000000000002,15.433299999999999,0.085580000000000003,12.151,13.111000000000001,14.196999999999999,15.433,16.850000000000001,18.484000000000002,20.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,705,-0.58699999999999997,15.4321,0.085580000000000003,12.15,13.11,14.196,15.432,16.847999999999999,18.483000000000001,20.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,706,-0.58750000000000002,15.430899999999999,0.085569999999999993,12.148999999999999,13.109,14.195,15.430999999999999,16.847000000000001,18.481000000000002,20.382000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,707,-0.58799999999999997,15.4298,0.085559999999999997,12.148999999999999,13.108000000000001,14.194000000000001,15.43,16.846,18.478999999999999,20.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,708,-0.58840000000000003,15.428599999999999,0.085559999999999997,12.148,13.106999999999999,14.193,15.429,16.844000000000001,18.478000000000002,20.379000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,709,-0.58889999999999998,15.4275,0.085550000000000001,12.148,13.106999999999999,14.192,15.428000000000001,16.843,18.475999999999999,20.376999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,710,-0.58940000000000003,15.426299999999999,0.085550000000000001,12.147,13.106,14.191000000000001,15.426,16.841999999999999,18.475000000000001,20.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,711,-0.58989999999999998,15.4252,0.085540000000000005,12.147,13.105,14.19,15.425000000000001,16.84,18.474,20.373999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,712,-0.59040000000000004,15.424099999999999,0.085540000000000005,12.146000000000001,13.103999999999999,14.189,15.423999999999999,16.838999999999999,18.472000000000001,20.373000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,713,-0.59079999999999999,15.423,0.085529999999999995,12.145,13.103999999999999,14.188000000000001,15.423,16.838000000000001,18.471,20.370999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,714,-0.59130000000000005,15.421900000000001,0.085529999999999995,12.145,13.103,14.186999999999999,15.422000000000001,16.837,18.47,20.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,715,-0.59179999999999999,15.4208,0.085519999999999999,12.144,13.102,14.186999999999999,15.420999999999999,16.835000000000001,18.468,20.367999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,716,-0.59230000000000005,15.419700000000001,0.085519999999999999,12.144,13.101000000000001,14.186,15.42,16.834,18.466999999999999,20.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,717,-0.5927,15.4186,0.085510000000000003,12.143000000000001,13.101000000000001,14.185,15.419,16.832999999999998,18.465,20.364999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,718,-0.59319999999999995,15.4175,0.085510000000000003,12.143000000000001,13.1,14.183999999999999,15.417999999999999,16.832000000000001,18.463999999999999,20.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,719,-0.59370000000000001,15.416399999999999,0.085500000000000007,12.141999999999999,13.099,14.183,15.416,16.829999999999998,18.463000000000001,20.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,720,-0.59419999999999995,15.4154,0.085500000000000007,12.141999999999999,13.099,14.182,15.414999999999999,16.829000000000001,18.462,20.361999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,721,-0.59460000000000002,15.414300000000001,0.085489999999999997,12.141,13.098000000000001,14.180999999999999,15.414,16.827999999999999,18.46,20.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,722,-0.59509999999999996,15.4133,0.085489999999999997,12.14,13.097,14.18,15.413,16.827000000000002,18.459,20.359000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,723,-0.59560000000000002,15.4122,0.08548,12.14,13.097,14.179,15.412000000000001,16.824999999999999,18.457000000000001,20.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,724,-0.59609999999999996,15.411199999999999,0.08548,12.138999999999999,13.096,14.178000000000001,15.411,16.824000000000002,18.456,20.356000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,725,-0.59650000000000003,15.4102,0.085470000000000004,12.138999999999999,13.095000000000001,14.178000000000001,15.41,16.823,18.454999999999998,20.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,726,-0.59699999999999998,15.4092,0.085470000000000004,12.138,13.095000000000001,14.177,15.409000000000001,16.821999999999999,18.454000000000001,20.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,727,-0.59750000000000003,15.408200000000001,0.085459999999999994,12.138,13.093999999999999,14.176,15.407999999999999,16.821000000000002,18.452000000000002,20.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,728,-0.59789999999999999,15.4072,0.085459999999999994,12.138,13.093,14.175000000000001,15.407,16.82,18.451000000000001,20.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,729,-0.59840000000000004,15.4062,0.085449999999999998,12.137,13.093,14.173999999999999,15.406000000000001,16.818999999999999,18.45,20.350000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,730,-0.59889999999999999,15.405200000000001,0.085449999999999998,12.137,13.092000000000001,14.173,15.404999999999999,16.817,18.449000000000002,20.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,731,-0.56840000000000002,15.6881,0.084540000000000004,12.379,13.349,14.445,15.688000000000001,17.108000000000001,18.739999999999998,20.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,732,-0.56840000000000002,15.687099999999999,0.084540000000000004,12.378,13.348000000000001,14.444000000000001,15.686999999999999,17.106999999999999,18.739000000000001,20.629000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,733,-0.56840000000000002,15.6861,0.084540000000000004,12.377000000000001,13.348000000000001,14.443,15.686,17.106000000000002,18.738,20.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,734,-0.56840000000000002,15.6851,0.084540000000000004,12.375999999999999,13.347,14.442,15.685,17.105,18.736999999999998,20.626999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,735,-0.56840000000000002,15.684100000000001,0.084540000000000004,12.375999999999999,13.346,14.441000000000001,15.683999999999999,17.103999999999999,18.734999999999999,20.625 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,736,-0.56840000000000002,15.6831,0.084540000000000004,12.375,13.345000000000001,14.44,15.683,17.102,18.734000000000002,20.623999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,737,-0.56840000000000002,15.6822,0.084540000000000004,12.374000000000001,13.343999999999999,14.439,15.682,17.100999999999999,18.733000000000001,20.623000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,738,-0.56840000000000002,15.6812,0.084540000000000004,12.372999999999999,13.343,14.438000000000001,15.680999999999999,17.100000000000001,18.731999999999999,20.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,739,-0.56840000000000002,15.680199999999999,0.084540000000000004,12.372,13.343,14.436999999999999,15.68,17.099,18.731000000000002,20.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,740,-0.56840000000000002,15.6792,0.084540000000000004,12.372,13.342000000000001,14.436999999999999,15.679,17.097999999999999,18.73,20.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,741,-0.56840000000000002,15.6782,0.084540000000000004,12.371,13.340999999999999,14.436,15.678000000000001,17.097000000000001,18.728000000000002,20.617999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,742,-0.56840000000000002,15.677199999999999,0.084540000000000004,12.37,13.34,14.435,15.677,17.096,18.727,20.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,743,-0.56840000000000002,15.676299999999999,0.084540000000000004,12.369,13.339,14.433999999999999,15.676,17.094999999999999,18.725999999999999,20.614999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,744,-0.56840000000000002,15.6753,0.084540000000000004,12.369,13.337999999999999,14.433,15.675000000000001,17.094000000000001,18.725000000000001,20.614000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,745,-0.56840000000000002,15.674300000000001,0.084529999999999994,12.368,13.337999999999999,14.432,15.673999999999999,17.093,18.722999999999999,20.611999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,746,-0.56840000000000002,15.673299999999999,0.084529999999999994,12.367000000000001,13.337,14.430999999999999,15.673,17.091999999999999,18.722000000000001,20.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,747,-0.56840000000000002,15.6724,0.084529999999999994,12.367000000000001,13.336,14.43,15.672000000000001,17.091000000000001,18.721,20.609000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,748,-0.56840000000000002,15.6714,0.084529999999999994,12.366,13.335000000000001,14.43,15.670999999999999,17.09,18.72,20.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,749,-0.56840000000000002,15.670400000000001,0.084529999999999994,12.365,13.334,14.429,15.67,17.088000000000001,18.719000000000001,20.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,750,-0.56840000000000002,15.669499999999999,0.084529999999999994,12.364000000000001,13.334,14.428000000000001,15.67,17.087,18.718,20.605 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,751,-0.56840000000000002,15.6685,0.084529999999999994,12.364000000000001,13.333,14.427,15.667999999999999,17.085999999999999,18.716000000000001,20.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,752,-0.56840000000000002,15.6675,0.084529999999999994,12.363,13.332000000000001,14.426,15.667999999999999,17.085000000000001,18.715,20.603000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,753,-0.56840000000000002,15.666600000000001,0.084529999999999994,12.362,13.331,14.425000000000001,15.667,17.084,18.713999999999999,20.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,754,-0.56840000000000002,15.6656,0.084529999999999994,12.361000000000001,13.33,14.423999999999999,15.666,17.082999999999998,18.713000000000001,20.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,755,-0.56840000000000002,15.6646,0.084529999999999994,12.36,13.33,14.423,15.664999999999999,17.082000000000001,18.712,20.599 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,756,-0.56840000000000002,15.6637,0.084529999999999994,12.36,13.329000000000001,14.422000000000001,15.664,17.081,18.710999999999999,20.597999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,757,-0.56840000000000002,15.662699999999999,0.084519999999999998,12.359,13.327999999999999,14.422000000000001,15.663,17.079999999999998,18.709,20.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,758,-0.56840000000000002,15.661799999999999,0.084519999999999998,12.359,13.327,14.420999999999999,15.662000000000001,17.079000000000001,18.707999999999998,20.594999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,759,-0.56840000000000002,15.6608,0.084519999999999998,12.358000000000001,13.327,14.42,15.661,17.077999999999999,18.707000000000001,20.593 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,760,-0.56840000000000002,15.6599,0.084519999999999998,12.356999999999999,13.326000000000001,14.419,15.66,17.077000000000002,18.706,20.591999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,761,-0.56840000000000002,15.658899999999999,0.084519999999999998,12.356,13.324999999999999,14.417999999999999,15.659000000000001,17.076000000000001,18.704000000000001,20.591000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,762,-0.56840000000000002,15.657999999999999,0.084519999999999998,12.356,13.324,14.417,15.657999999999999,17.074999999999999,18.702999999999999,20.59 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,763,-0.56840000000000002,15.657,0.084519999999999998,12.355,13.323,14.416,15.657,17.074000000000002,18.702000000000002,20.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,764,-0.56840000000000002,15.6561,0.084519999999999998,12.353999999999999,13.323,14.416,15.656000000000001,17.073,18.701000000000001,20.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,765,-0.56840000000000002,15.655099999999999,0.084519999999999998,12.353,13.321999999999999,14.414999999999999,15.654999999999999,17.071999999999999,18.7,20.585999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,766,-0.56840000000000002,15.654199999999999,0.084519999999999998,12.353,13.321,14.414,15.654,17.071000000000002,18.699000000000002,20.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,767,-0.56840000000000002,15.6532,0.084510000000000002,12.352,13.32,14.413,15.653,17.068999999999999,18.696999999999999,20.582999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,768,-0.56840000000000002,15.6523,0.084510000000000002,12.351000000000001,13.32,14.412000000000001,15.651999999999999,17.068000000000001,18.696000000000002,20.581 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,769,-0.56840000000000002,15.651400000000001,0.084510000000000002,12.351000000000001,13.319000000000001,14.411,15.651,17.067,18.695,20.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,770,-0.56840000000000002,15.650399999999999,0.084510000000000002,12.35,13.318,14.41,15.65,17.065999999999999,18.693999999999999,20.579000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,771,-0.56840000000000002,15.6495,0.084510000000000002,12.349,13.317,14.41,15.65,17.065000000000001,18.693000000000001,20.577999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,772,-0.56840000000000002,15.6486,0.084510000000000002,12.348000000000001,13.316000000000001,14.409000000000001,15.648999999999999,17.064,18.692,20.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,773,-0.56840000000000002,15.647600000000001,0.084510000000000002,12.348000000000001,13.316000000000001,14.407999999999999,15.648,17.062999999999999,18.690999999999999,20.574999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,774,-0.56840000000000002,15.646699999999999,0.084510000000000002,12.347,13.315,14.407,15.647,17.062000000000001,18.689,20.574000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,775,-0.56840000000000002,15.645799999999999,0.084510000000000002,12.346,13.314,14.406000000000001,15.646000000000001,17.061,18.687999999999999,20.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,776,-0.56840000000000002,15.6448,0.084510000000000002,12.345000000000001,13.313000000000001,14.404999999999999,15.645,17.059999999999999,18.687000000000001,20.571000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,777,-0.56840000000000002,15.6439,0.084510000000000002,12.345000000000001,13.311999999999999,14.404,15.644,17.059000000000001,18.686,20.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,778,-0.56840000000000002,15.643000000000001,0.084500000000000006,12.343999999999999,13.311999999999999,14.404,15.643000000000001,17.058,18.684999999999999,20.568000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,779,-0.56840000000000002,15.642099999999999,0.084500000000000006,12.343999999999999,13.311,14.403,15.641999999999999,17.056999999999999,18.684000000000001,20.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,780,-0.56840000000000002,15.6411,0.084500000000000006,12.343,13.31,14.401999999999999,15.641,17.056000000000001,18.681999999999999,20.565999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,781,-0.56840000000000002,15.6402,0.084500000000000006,12.342000000000001,13.308999999999999,14.401,15.64,17.055,18.681000000000001,20.565000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,782,-0.56840000000000002,15.6393,0.084500000000000006,12.340999999999999,13.308999999999999,14.4,15.638999999999999,17.053999999999998,18.68,20.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,783,-0.56840000000000002,15.638400000000001,0.084500000000000006,12.340999999999999,13.308,14.4,15.638,17.053000000000001,18.678999999999998,20.562000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,784,-0.56840000000000002,15.637499999999999,0.084500000000000006,12.34,13.307,14.398999999999999,15.638,17.052,18.678000000000001,20.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,785,-0.56840000000000002,15.6366,0.084500000000000006,12.339,13.305999999999999,14.398,15.637,17.050999999999998,18.677,20.56 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,786,-0.56840000000000002,15.6356,0.084500000000000006,12.339,13.305999999999999,14.397,15.635999999999999,17.05,18.675999999999998,20.559000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,787,-0.56840000000000002,15.6347,0.084500000000000006,12.337999999999999,13.305,14.396000000000001,15.635,17.048999999999999,18.675000000000001,20.556999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,788,-0.56840000000000002,15.633800000000001,0.084489999999999996,12.337,13.304,14.395,15.634,17.047999999999998,18.672999999999998,20.556000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,789,-0.56840000000000002,15.632899999999999,0.084489999999999996,12.337,13.304,14.395,15.632999999999999,17.047000000000001,18.672000000000001,20.553999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,790,-0.56840000000000002,15.632,0.084489999999999996,12.336,13.303000000000001,14.394,15.632,17.045999999999999,18.670999999999999,20.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,791,-0.56840000000000002,15.6311,0.084489999999999996,12.335000000000001,13.302,14.393000000000001,15.631,17.045000000000002,18.670000000000002,20.552 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,792,-0.56840000000000002,15.6302,0.084489999999999996,12.335000000000001,13.301,14.391999999999999,15.63,17.044,18.669,20.550999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,793,-0.56840000000000002,15.629300000000001,0.084489999999999996,12.334,13.3,14.391,15.629,17.042999999999999,18.667999999999999,20.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,794,-0.56840000000000002,15.628399999999999,0.084489999999999996,12.333,13.3,14.39,15.628,17.042000000000002,18.667000000000002,20.547999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,795,-0.56840000000000002,15.6275,0.084489999999999996,12.332000000000001,13.298999999999999,14.39,15.628,17.041,18.666,20.547000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,796,-0.56840000000000002,15.6266,0.084489999999999996,12.332000000000001,13.298,14.388999999999999,15.627000000000001,17.04,18.664999999999999,20.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,797,-0.56840000000000002,15.6257,0.084489999999999996,12.331,13.297000000000001,14.388,15.625999999999999,17.039000000000001,18.664000000000001,20.545000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,798,-0.56840000000000002,15.6248,0.08448,12.331,13.297000000000001,14.387,15.625,17.038,18.661999999999999,20.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,799,-0.56840000000000002,15.623900000000001,0.08448,12.33,13.295999999999999,14.385999999999999,15.624000000000001,17.036999999999999,18.661000000000001,20.542000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,800,-0.56840000000000002,15.622999999999999,0.08448,12.329000000000001,13.295,14.385999999999999,15.622999999999999,17.036000000000001,18.66,20.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,801,-0.56840000000000002,15.6221,0.08448,12.329000000000001,13.295,14.385,15.622,17.035,18.658999999999999,20.539000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,802,-0.56840000000000002,15.6212,0.08448,12.327999999999999,13.294,14.384,15.621,17.033999999999999,18.658000000000001,20.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,803,-0.56840000000000002,15.6203,0.08448,12.327,13.292999999999999,14.382999999999999,15.62,17.033000000000001,18.657,20.536999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,804,-0.56840000000000002,15.619400000000001,0.08448,12.326000000000001,13.292,14.382,15.619,17.032,18.655999999999999,20.536000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,805,-0.56840000000000002,15.618499999999999,0.08448,12.326000000000001,13.291,14.381,15.618,17.030999999999999,18.655000000000001,20.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,806,-0.56840000000000002,15.617599999999999,0.08448,12.324999999999999,13.291,14.381,15.618,17.03,18.652999999999999,20.533999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,807,-0.56840000000000002,15.6168,0.08448,12.324,13.29,14.38,15.617000000000001,17.029,18.652999999999999,20.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,808,-0.56840000000000002,15.6159,0.084470000000000003,12.324,13.29,14.379,15.616,17.027999999999999,18.651,20.530999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,809,-0.56840000000000002,15.615,0.084470000000000003,12.323,13.289,14.378,15.615,17.027000000000001,18.649999999999999,20.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,810,-0.56840000000000002,15.614100000000001,0.084470000000000003,12.323,13.288,14.378,15.614000000000001,17.026,18.649000000000001,20.527999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,811,-0.56840000000000002,15.613200000000001,0.084470000000000003,12.321999999999999,13.287000000000001,14.377000000000001,15.613,17.024999999999999,18.648,20.527000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,812,-0.56840000000000002,15.612299999999999,0.084470000000000003,12.321,13.286,14.375999999999999,15.612,17.024000000000001,18.646999999999998,20.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,813,-0.56840000000000002,15.611499999999999,0.084470000000000003,12.321,13.286,14.375,15.612,17.023,18.646000000000001,20.524999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,814,-0.56840000000000002,15.6106,0.084470000000000003,12.32,13.285,14.374000000000001,15.611000000000001,17.021999999999998,18.645,20.524000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,815,-0.56840000000000002,15.6097,0.084470000000000003,12.319000000000001,13.284000000000001,14.374000000000001,15.61,17.021000000000001,18.643999999999998,20.521999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,816,-0.56840000000000002,15.6088,0.084470000000000003,12.318,13.282999999999999,14.372999999999999,15.609,17.02,18.643000000000001,20.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,817,-0.56840000000000002,15.607900000000001,0.084470000000000003,12.318,13.282999999999999,14.372,15.608000000000001,17.018999999999998,18.640999999999998,20.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,818,-0.56840000000000002,15.607100000000001,0.084470000000000003,12.317,13.282,14.371,15.606999999999999,17.018000000000001,18.640999999999998,20.518999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,819,-0.56840000000000002,15.606199999999999,0.084470000000000003,12.316000000000001,13.281000000000001,14.37,15.606,17.016999999999999,18.638999999999999,20.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,820,-0.56840000000000002,15.6053,0.084459999999999993,12.316000000000001,13.281000000000001,14.37,15.605,17.015999999999998,18.638000000000002,20.515999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,821,-0.56840000000000002,15.6044,0.084459999999999993,12.315,13.28,14.369,15.603999999999999,17.015000000000001,18.637,20.515000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,822,-0.56840000000000002,15.6036,0.084459999999999993,12.315,13.279,14.368,15.603999999999999,17.013999999999999,18.635999999999999,20.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,823,-0.56840000000000002,15.6027,0.084459999999999993,12.314,13.279,14.367000000000001,15.603,17.013000000000002,18.635000000000002,20.513000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,824,-0.56840000000000002,15.601800000000001,0.084459999999999993,12.313000000000001,13.278,14.366,15.602,17.012,18.634,20.510999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,825,-0.56840000000000002,15.601000000000001,0.084459999999999993,12.313000000000001,13.276999999999999,14.366,15.601000000000001,17.012,18.632999999999999,20.51 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,826,-0.56840000000000002,15.600099999999999,0.084459999999999993,12.311999999999999,13.276,14.365,15.6,17.010999999999999,18.632000000000001,20.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,827,-0.56840000000000002,15.5992,0.084459999999999993,12.311,13.276,14.364000000000001,15.599,17.010000000000002,18.631,20.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,828,-0.56840000000000002,15.5984,0.084459999999999993,12.31,13.275,14.363,15.598000000000001,17.009,18.63,20.507000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,829,-0.56840000000000002,15.5975,0.084459999999999993,12.31,13.273999999999999,14.362,15.598000000000001,17.007999999999999,18.629000000000001,20.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,830,-0.56840000000000002,15.5966,0.084459999999999993,12.308999999999999,13.273,14.362,15.597,17.007000000000001,18.628,20.504999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,831,-0.56840000000000002,15.595800000000001,0.084459999999999993,12.308,13.273,14.361000000000001,15.596,17.006,18.626999999999999,20.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,832,-0.56840000000000002,15.594900000000001,0.084449999999999997,12.308,13.272,14.36,15.595000000000001,17.004999999999999,18.625,20.501999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,833,-0.56840000000000002,15.594099999999999,0.084449999999999997,12.307,13.271000000000001,14.359,15.593999999999999,17.004000000000001,18.623999999999999,20.501000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,834,-0.56840000000000002,15.5932,0.084449999999999997,12.307,13.271000000000001,14.359,15.593,17.003,18.623000000000001,20.498999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,835,-0.56840000000000002,15.5923,0.084449999999999997,12.305999999999999,13.27,14.358000000000001,15.592000000000001,17.001999999999999,18.622,20.498000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,836,-0.56840000000000002,15.5915,0.084449999999999997,12.305,13.269,14.356999999999999,15.592000000000001,17.001000000000001,18.620999999999999,20.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,837,-0.56840000000000002,15.5906,0.084449999999999997,12.305,13.268000000000001,14.356,15.590999999999999,17,18.62,20.495999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,838,-0.56840000000000002,15.5898,0.084449999999999997,12.304,13.268000000000001,14.355,15.59,16.998999999999999,18.619,20.495000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,839,-0.56840000000000002,15.588900000000001,0.084449999999999997,12.303000000000001,13.266999999999999,14.355,15.589,16.998000000000001,18.617999999999999,20.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,840,-0.56840000000000002,15.588100000000001,0.084449999999999997,12.303000000000001,13.266,14.353999999999999,15.587999999999999,16.997,18.617000000000001,20.492999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,841,-0.56840000000000002,15.587199999999999,0.084449999999999997,12.302,13.266,14.353,15.587,16.995999999999999,18.616,20.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,842,-0.56840000000000002,15.5863,0.084449999999999997,12.301,13.265000000000001,14.352,15.586,16.995000000000001,18.614999999999998,20.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,843,-0.56840000000000002,15.5855,0.084449999999999997,12.301,13.263999999999999,14.352,15.586,16.994,18.614000000000001,20.489000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,844,-0.56840000000000002,15.5846,0.084449999999999997,12.3,13.263,14.351000000000001,15.585000000000001,16.992999999999999,18.613,20.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,845,-0.56840000000000002,15.5838,0.084449999999999997,12.298999999999999,13.263,14.35,15.584,16.992999999999999,18.611999999999998,20.486999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,846,-0.56840000000000002,15.5829,0.084440000000000001,12.298999999999999,13.262,14.349,15.583,16.991,18.61,20.484999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,847,-0.56840000000000002,15.582100000000001,0.084440000000000001,12.298,13.260999999999999,14.349,15.582000000000001,16.991,18.609000000000002,20.484000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,848,-0.56840000000000002,15.581200000000001,0.084440000000000001,12.298,13.260999999999999,14.348000000000001,15.581,16.989999999999998,18.608000000000001,20.483000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,849,-0.56840000000000002,15.580399999999999,0.084440000000000001,12.297000000000001,13.26,14.347,15.58,16.989000000000001,18.606999999999999,20.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,850,-0.56840000000000002,15.579599999999999,0.084440000000000001,12.295999999999999,13.259,14.346,15.58,16.988,18.606000000000002,20.481000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,851,-0.56840000000000002,15.5787,0.084440000000000001,12.295999999999999,13.259,14.345000000000001,15.579000000000001,16.986999999999998,18.605,20.48 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,852,-0.56840000000000002,15.5779,0.084440000000000001,12.295,13.257999999999999,14.345000000000001,15.577999999999999,16.986000000000001,18.603999999999999,20.478000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,853,-0.56840000000000002,15.577,0.084440000000000001,12.294,13.257,14.343999999999999,15.577,16.984999999999999,18.603000000000002,20.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,854,-0.56840000000000002,15.5762,0.084440000000000001,12.294,13.256,14.343,15.576000000000001,16.984000000000002,18.602,20.475999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,855,-0.56840000000000002,15.5753,0.084440000000000001,12.292999999999999,13.256,14.342000000000001,15.574999999999999,16.983000000000001,18.600999999999999,20.475000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,856,-0.56840000000000002,15.5745,0.084440000000000001,12.292,13.255000000000001,14.342000000000001,15.574,16.981999999999999,18.600000000000001,20.474 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,857,-0.56840000000000002,15.573700000000001,0.084440000000000001,12.292,13.254,14.340999999999999,15.574,16.981000000000002,18.599,20.472999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,858,-0.56840000000000002,15.572800000000001,0.084440000000000001,12.291,13.254,14.34,15.573,16.98,18.597999999999999,20.472000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,859,-0.56840000000000002,15.571999999999999,0.084440000000000001,12.29,13.253,14.339,15.571999999999999,16.98,18.597000000000001,20.471 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,860,-0.56840000000000002,15.571099999999999,0.084440000000000001,12.29,13.252000000000001,14.337999999999999,15.571,16.978999999999999,18.596,20.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,861,-0.56840000000000002,15.5703,0.084440000000000001,12.289,13.250999999999999,14.337999999999999,15.57,16.978000000000002,18.594999999999999,20.468 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,862,-0.56840000000000002,15.5695,0.084440000000000001,12.288,13.250999999999999,14.337,15.57,16.977,18.594000000000001,20.466999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,863,-0.56840000000000002,15.5686,0.084440000000000001,12.288,13.25,14.336,15.569000000000001,16.975999999999999,18.593,20.466000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,864,-0.56840000000000002,15.5678,0.084430000000000005,12.287000000000001,13.25,14.335000000000001,15.568,16.975000000000001,18.591999999999999,20.463999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,865,-0.56840000000000002,15.567,0.084430000000000005,12.287000000000001,13.249000000000001,14.335000000000001,15.567,16.974,18.591000000000001,20.463000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,866,-0.56840000000000002,15.5661,0.084430000000000005,12.286,13.247999999999999,14.334,15.566000000000001,16.972999999999999,18.59,20.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,867,-0.56840000000000002,15.565300000000001,0.084430000000000005,12.285,13.247,14.333,15.565,16.972000000000001,18.588999999999999,20.460999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,868,-0.56840000000000002,15.564500000000001,0.084430000000000005,12.285,13.247,14.332000000000001,15.564,16.971,18.588000000000001,20.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,869,-0.56840000000000002,15.563599999999999,0.084430000000000005,12.284000000000001,13.246,14.332000000000001,15.564,16.97,18.587,20.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,870,-0.56840000000000002,15.562799999999999,0.084430000000000005,12.282999999999999,13.244999999999999,14.331,15.563000000000001,16.969000000000001,18.585999999999999,20.457999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,871,-0.56840000000000002,15.561999999999999,0.084430000000000005,12.282999999999999,13.244999999999999,14.33,15.561999999999999,16.968,18.585000000000001,20.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,872,-0.56840000000000002,15.5611,0.084430000000000005,12.282,13.244,14.329000000000001,15.561,16.966999999999999,18.584,20.456 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,873,-0.56840000000000002,15.5603,0.084430000000000005,12.281000000000001,13.243,14.329000000000001,15.56,16.966999999999999,18.582999999999998,20.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,874,-0.56840000000000002,15.5595,0.084430000000000005,12.281000000000001,13.242000000000001,14.327999999999999,15.56,16.966000000000001,18.582000000000001,20.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,875,-0.56840000000000002,15.5587,0.084430000000000005,12.28,13.242000000000001,14.327,15.558999999999999,16.965,18.581,20.452999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,876,-0.56840000000000002,15.5578,0.084430000000000005,12.279,13.241,14.326000000000001,15.558,16.963999999999999,18.579999999999998,20.451000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,877,-0.56840000000000002,15.557,0.084430000000000005,12.279,13.24,14.326000000000001,15.557,16.963000000000001,18.579000000000001,20.45 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,878,-0.56840000000000002,15.5562,0.084430000000000005,12.278,13.24,14.324999999999999,15.555999999999999,16.962,18.577999999999999,20.449000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,879,-0.56840000000000002,15.555400000000001,0.084430000000000005,12.278,13.239000000000001,14.324,15.555,16.960999999999999,18.577000000000002,20.448 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,880,-0.56840000000000002,15.554500000000001,0.084430000000000005,12.276999999999999,13.238,14.323,15.554,16.96,18.576000000000001,20.446999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,881,-0.56840000000000002,15.553699999999999,0.084430000000000005,12.276,13.238,14.323,15.554,16.959,18.574999999999999,20.446000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,882,-0.56840000000000002,15.552899999999999,0.084430000000000005,12.276,13.237,14.321999999999999,15.553000000000001,16.959,18.574000000000002,20.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,883,-0.56840000000000002,15.552099999999999,0.084430000000000005,12.275,13.236000000000001,14.321,15.552,16.957999999999998,18.573,20.443999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,884,-0.56840000000000002,15.551299999999999,0.084430000000000005,12.273999999999999,13.236000000000001,14.32,15.551,16.957000000000001,18.571999999999999,20.443000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,885,-0.56840000000000002,15.5504,0.084430000000000005,12.273999999999999,13.234999999999999,14.319000000000001,15.55,16.956,18.571000000000002,20.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,886,-0.56840000000000002,15.5496,0.084430000000000005,12.273,13.234,14.319000000000001,15.55,16.954999999999998,18.57,20.440999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,887,-0.56840000000000002,15.5488,0.084430000000000005,12.272,13.233000000000001,14.318,15.548999999999999,16.954000000000001,18.568999999999999,20.440000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,888,-0.56840000000000002,15.548,0.084430000000000005,12.272,13.233000000000001,14.317,15.548,16.952999999999999,18.568000000000001,20.437999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,889,-0.56840000000000002,15.5472,0.084430000000000005,12.271000000000001,13.231999999999999,14.317,15.547000000000001,16.952000000000002,18.567,20.437000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,890,-0.56840000000000002,15.5463,0.084430000000000005,12.27,13.231,14.316000000000001,15.545999999999999,16.951000000000001,18.565999999999999,20.436 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,891,-0.56840000000000002,15.545500000000001,0.084430000000000005,12.27,13.231,14.315,15.545999999999999,16.95,18.565000000000001,20.434999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,892,-0.56840000000000002,15.544700000000001,0.084430000000000005,12.269,13.23,14.314,15.545,16.95,18.564,20.434000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,893,-0.56840000000000002,15.543900000000001,0.084430000000000005,12.268000000000001,13.228999999999999,14.313000000000001,15.544,16.949000000000002,18.562999999999999,20.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,894,-0.56840000000000002,15.543100000000001,0.084430000000000005,12.268000000000001,13.228999999999999,14.313000000000001,15.542999999999999,16.948,18.562000000000001,20.431999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,895,-0.56840000000000002,15.542299999999999,0.084430000000000005,12.266999999999999,13.228,14.311999999999999,15.542,16.946999999999999,18.561,20.431000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,896,-0.56840000000000002,15.541399999999999,0.084430000000000005,12.266,13.227,14.311,15.541,16.946000000000002,18.559999999999999,20.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,897,-0.56840000000000002,15.5406,0.084430000000000005,12.266,13.226000000000001,14.31,15.541,16.945,18.559000000000001,20.428999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,898,-0.56840000000000002,15.5398,0.084430000000000005,12.265000000000001,13.226000000000001,14.31,15.54,16.943999999999999,18.558,20.428000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,899,-0.56840000000000002,15.539,0.084430000000000005,12.265000000000001,13.225,14.308999999999999,15.539,16.943000000000001,18.558,20.427 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,900,-0.56840000000000002,15.5382,0.084430000000000005,12.263999999999999,13.224,14.308,15.538,16.942,18.556999999999999,20.425999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,901,-0.56840000000000002,15.5374,0.084430000000000005,12.263,13.224,14.307,15.537000000000001,16.942,18.556000000000001,20.425000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,902,-0.56840000000000002,15.5366,0.084430000000000005,12.263,13.223000000000001,14.307,15.537000000000001,16.940999999999999,18.555,20.422999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,903,-0.56840000000000002,15.5358,0.084430000000000005,12.262,13.222,14.305999999999999,15.536,16.940000000000001,18.553999999999998,20.422000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,904,-0.56840000000000002,15.535,0.084430000000000005,12.260999999999999,13.222,14.305,15.535,16.939,18.553000000000001,20.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,905,-0.56840000000000002,15.5341,0.084430000000000005,12.260999999999999,13.221,14.304,15.534000000000001,16.937999999999999,18.552,20.420000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,906,-0.56840000000000002,15.533300000000001,0.084430000000000005,12.26,13.22,14.304,15.532999999999999,16.937000000000001,18.550999999999998,20.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,907,-0.56840000000000002,15.532500000000001,0.084430000000000005,12.259,13.22,14.303000000000001,15.532,16.936,18.55,20.417999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,908,-0.56840000000000002,15.531700000000001,0.084440000000000001,12.257999999999999,13.218999999999999,14.302,15.532,16.936,18.548999999999999,20.417999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,909,-0.56840000000000002,15.530900000000001,0.084440000000000001,12.257999999999999,13.218,14.301,15.531000000000001,16.934999999999999,18.547999999999998,20.417000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,910,-0.56840000000000002,15.530099999999999,0.084440000000000001,12.257,13.217000000000001,14.301,15.53,16.934000000000001,18.547000000000001,20.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,911,-0.56840000000000002,15.529299999999999,0.084440000000000001,12.257,13.217000000000001,14.3,15.529,16.933,18.545999999999999,20.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,912,-0.56840000000000002,15.528499999999999,0.084440000000000001,12.256,13.215999999999999,14.298999999999999,15.528,16.931999999999999,18.545000000000002,20.414000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,913,-0.56840000000000002,15.527699999999999,0.084440000000000001,12.255000000000001,13.215,14.298,15.528,16.931000000000001,18.544,20.411999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,914,-0.56840000000000002,15.526899999999999,0.084440000000000001,12.255000000000001,13.215,14.298,15.526999999999999,16.93,18.542999999999999,20.411000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,915,-0.56840000000000002,15.5261,0.084440000000000001,12.254,13.214,14.297000000000001,15.526,16.928999999999998,18.542999999999999,20.41 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,916,-0.56840000000000002,15.5253,0.084440000000000001,12.253,13.212999999999999,14.295999999999999,15.525,16.928999999999998,18.542000000000002,20.408999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,917,-0.56840000000000002,15.5245,0.084440000000000001,12.253,13.212,14.295,15.523999999999999,16.928000000000001,18.541,20.408000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,918,-0.56840000000000002,15.5237,0.084440000000000001,12.252000000000001,13.212,14.295,15.523999999999999,16.927,18.54,20.407 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,919,-0.56840000000000002,15.5229,0.084440000000000001,12.252000000000001,13.211,14.294,15.523,16.925999999999998,18.539000000000001,20.405999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,920,-0.56840000000000002,15.5221,0.084440000000000001,12.250999999999999,13.21,14.292999999999999,15.522,16.925000000000001,18.538,20.405000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,921,-0.56840000000000002,15.5213,0.084449999999999997,12.25,13.21,14.292,15.521000000000001,16.923999999999999,18.536999999999999,20.405000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,922,-0.56840000000000002,15.5205,0.084449999999999997,12.249000000000001,13.209,14.292,15.52,16.923999999999999,18.536000000000001,20.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,923,-0.56840000000000002,15.5197,0.084449999999999997,12.249000000000001,13.208,14.291,15.52,16.922999999999998,18.535,20.402999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,924,-0.56840000000000002,15.5189,0.084449999999999997,12.247999999999999,13.207000000000001,14.29,15.519,16.922000000000001,18.533999999999999,20.402000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,925,-0.56840000000000002,15.5181,0.084449999999999997,12.247,13.207000000000001,14.289,15.518000000000001,16.920999999999999,18.533000000000001,20.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,926,-0.56840000000000002,15.517300000000001,0.084449999999999997,12.247,13.206,14.289,15.516999999999999,16.920000000000002,18.532,20.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,927,-0.56840000000000002,15.516500000000001,0.084449999999999997,12.246,13.205,14.288,15.516,16.919,18.530999999999999,20.398 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,928,-0.56840000000000002,15.515700000000001,0.084449999999999997,12.246,13.205,14.287000000000001,15.516,16.917999999999999,18.530999999999999,20.396999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,929,-0.56840000000000002,15.514900000000001,0.084449999999999997,12.244999999999999,13.204000000000001,14.287000000000001,15.515000000000001,16.917000000000002,18.53,20.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,930,-0.56840000000000002,15.514099999999999,0.084459999999999993,12.244,13.202999999999999,14.286,15.513999999999999,16.917000000000002,18.529,20.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,931,-0.56840000000000002,15.513299999999999,0.084459999999999993,12.243,13.202,14.285,15.513,16.916,18.527999999999999,20.395 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,932,-0.56840000000000002,15.512499999999999,0.084459999999999993,12.243,13.202,14.284000000000001,15.512,16.914999999999999,18.527000000000001,20.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,933,-0.56840000000000002,15.511699999999999,0.084459999999999993,12.242000000000001,13.201000000000001,14.282999999999999,15.512,16.914000000000001,18.526,20.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,934,-0.56840000000000002,15.510899999999999,0.084459999999999993,12.241,13.2,14.282999999999999,15.510999999999999,16.913,18.524999999999999,20.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,935,-0.56840000000000002,15.5101,0.084459999999999993,12.241,13.2,14.282,15.51,16.911999999999999,18.524000000000001,20.390999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,936,-0.56840000000000002,15.5093,0.084459999999999993,12.24,13.199,14.281000000000001,15.509,16.911999999999999,18.523,20.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,937,-0.56840000000000002,15.508599999999999,0.084470000000000003,12.239000000000001,13.198,14.28,15.509,16.911000000000001,18.523,20.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,938,-0.56840000000000002,15.5078,0.084470000000000003,12.239000000000001,13.198,14.28,15.507999999999999,16.91,18.521999999999998,20.388000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,939,-0.56840000000000002,15.507,0.084470000000000003,12.238,13.196999999999999,14.279,15.507,16.908999999999999,18.521000000000001,20.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,940,-0.56840000000000002,15.5062,0.084470000000000003,12.237,13.196,14.278,15.506,16.908000000000001,18.52,20.385999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,941,-0.56840000000000002,15.5054,0.084470000000000003,12.237,13.195,14.276999999999999,15.505000000000001,16.907,18.518999999999998,20.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,942,-0.56840000000000002,15.5046,0.084470000000000003,12.236000000000001,13.195,14.276999999999999,15.505000000000001,16.907,18.518000000000001,20.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,943,-0.56840000000000002,15.5038,0.08448,12.234999999999999,13.194000000000001,14.276,15.504,16.905999999999999,18.518000000000001,20.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,944,-0.56840000000000002,15.503,0.08448,12.234999999999999,13.193,14.275,15.503,16.905000000000001,18.516999999999999,20.382999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,945,-0.56840000000000002,15.5023,0.08448,12.234,13.193,14.273999999999999,15.502000000000001,16.904,18.515999999999998,20.382000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,946,-0.56840000000000002,15.5015,0.08448,12.233000000000001,13.192,14.273999999999999,15.502000000000001,16.902999999999999,18.515000000000001,20.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,947,-0.56840000000000002,15.5007,0.08448,12.233000000000001,13.191000000000001,14.273,15.500999999999999,16.902000000000001,18.513999999999999,20.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,948,-0.56840000000000002,15.4999,0.08448,12.231999999999999,13.191000000000001,14.272,15.5,16.902000000000001,18.513000000000002,20.379000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,949,-0.56840000000000002,15.4991,0.084489999999999996,12.231,13.19,14.271000000000001,15.499000000000001,16.901,18.512,20.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,950,-0.56840000000000002,15.4983,0.084489999999999996,12.231,13.189,14.271000000000001,15.497999999999999,16.899999999999999,18.510999999999999,20.376999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,951,-0.56840000000000002,15.4976,0.084489999999999996,12.23,13.188000000000001,14.27,15.497999999999999,16.899000000000001,18.510999999999999,20.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,952,-0.56840000000000002,15.4968,0.084489999999999996,12.228999999999999,13.188000000000001,14.269,15.497,16.898,18.510000000000002,20.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,953,-0.56840000000000002,15.496,0.084500000000000006,12.228,13.186999999999999,14.268000000000001,15.496,16.898,18.509,20.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,954,-0.56840000000000002,15.495200000000001,0.084500000000000006,12.228,13.186,14.268000000000001,15.494999999999999,16.896999999999998,18.507999999999999,20.373999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,955,-0.56840000000000002,15.494400000000001,0.084500000000000006,12.227,13.185,14.266999999999999,15.494,16.896000000000001,18.507000000000001,20.373000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,956,-0.56840000000000002,15.4937,0.084500000000000006,12.227,13.185,14.266,15.494,16.895,18.506,20.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,957,-0.56840000000000002,15.492900000000001,0.084500000000000006,12.226000000000001,13.183999999999999,14.266,15.493,16.893999999999998,18.504999999999999,20.370999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,958,-0.56840000000000002,15.492100000000001,0.084510000000000002,12.225,13.183,14.265000000000001,15.492000000000001,16.893999999999998,18.504999999999999,20.370999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,959,-0.56840000000000002,15.491300000000001,0.084510000000000002,12.224,13.183,14.263999999999999,15.491,16.893000000000001,18.504000000000001,20.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,960,-0.56840000000000002,15.490600000000001,0.084510000000000002,12.224,13.182,14.263,15.491,16.891999999999999,18.503,20.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,961,-0.56840000000000002,15.489800000000001,0.084510000000000002,12.223000000000001,13.180999999999999,14.263,15.49,16.890999999999998,18.501999999999999,20.367999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,962,-0.56840000000000002,15.489000000000001,0.084519999999999998,12.222,13.18,14.262,15.489000000000001,16.89,18.501000000000001,20.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,963,-0.56840000000000002,15.488300000000001,0.084519999999999998,12.222,13.18,14.260999999999999,15.488,16.89,18.501000000000001,20.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,964,-0.56840000000000002,15.487500000000001,0.084519999999999998,12.221,13.179,14.26,15.488,16.888999999999999,18.5,20.364999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,965,-0.56840000000000002,15.486700000000001,0.084519999999999998,12.22,13.178000000000001,14.26,15.487,16.888000000000002,18.498999999999999,20.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,966,-0.56840000000000002,15.485900000000001,0.084529999999999994,12.218999999999999,13.177,14.259,15.486000000000001,16.887,18.498000000000001,20.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,967,-0.56840000000000002,15.485200000000001,0.084529999999999994,12.218999999999999,13.177,14.257999999999999,15.484999999999999,16.885999999999999,18.497,20.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,968,-0.56840000000000002,15.484400000000001,0.084529999999999994,12.218,13.176,14.257,15.484,16.885999999999999,18.495999999999999,20.361999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,969,-0.56840000000000002,15.483599999999999,0.084540000000000004,12.217000000000001,13.175000000000001,14.256,15.484,16.885000000000002,18.495999999999999,20.361999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,970,-0.56840000000000002,15.482900000000001,0.084540000000000004,12.217000000000001,13.175000000000001,14.256,15.483000000000001,16.884,18.495000000000001,20.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,971,-0.56840000000000002,15.482100000000001,0.084540000000000004,12.215999999999999,13.173999999999999,14.255000000000001,15.481999999999999,16.882999999999999,18.494,20.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,972,-0.56840000000000002,15.481400000000001,0.08455,12.215,13.173,14.254,15.481,16.882999999999999,18.494,20.359000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,973,-0.56840000000000002,15.480600000000001,0.08455,12.215,13.172000000000001,14.254,15.481,16.882000000000001,18.492999999999999,20.358000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,974,-0.56840000000000002,15.479799999999999,0.08455,12.214,13.172000000000001,14.253,15.48,16.881,18.492000000000001,20.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,975,-0.56840000000000002,15.479100000000001,0.08455,12.212999999999999,13.170999999999999,14.252000000000001,15.478999999999999,16.88,18.491,20.356000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,976,-0.56840000000000002,15.478300000000001,0.084559999999999996,12.212999999999999,13.17,14.250999999999999,15.478,16.879000000000001,18.489999999999998,20.356000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,977,-0.56840000000000002,15.477600000000001,0.084559999999999996,12.212,13.17,14.250999999999999,15.478,16.879000000000001,18.489999999999998,20.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,978,-0.56840000000000002,15.476800000000001,0.084559999999999996,12.211,13.169,14.25,15.477,16.878,18.489000000000001,20.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,979,-0.56840000000000002,15.476000000000001,0.084570000000000006,12.21,13.167999999999999,14.249000000000001,15.476000000000001,16.876999999999999,18.488,20.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,980,-0.56840000000000002,15.475300000000001,0.084570000000000006,12.21,13.167,14.247999999999999,15.475,16.876000000000001,18.486999999999998,20.353000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,981,-0.56840000000000002,15.474500000000001,0.084570000000000006,12.209,13.167,14.247999999999999,15.474,16.876000000000001,18.486000000000001,20.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,982,-0.56840000000000002,15.473800000000001,0.084580000000000002,12.208,13.166,14.247,15.474,16.875,18.486000000000001,20.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,983,-0.56840000000000002,15.473000000000001,0.084580000000000002,12.208,13.164999999999999,14.246,15.473000000000001,16.873999999999999,18.484999999999999,20.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,984,-0.56840000000000002,15.472300000000001,0.084589999999999999,12.207000000000001,13.164,14.244999999999999,15.472,16.873000000000001,18.484000000000002,20.350000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,985,-0.56840000000000002,15.471500000000001,0.084589999999999999,12.206,13.164,14.244999999999999,15.472,16.873000000000001,18.483000000000001,20.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,986,-0.56840000000000002,15.470800000000001,0.084589999999999999,12.206,13.163,14.244,15.471,16.872,18.483000000000001,20.347999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,987,-0.56840000000000002,15.47,0.084599999999999995,12.205,13.162000000000001,14.243,15.47,16.870999999999999,18.481999999999999,20.347999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,988,-0.56840000000000002,15.4693,0.084599999999999995,12.204000000000001,13.162000000000001,14.242000000000001,15.468999999999999,16.87,18.481000000000002,20.347000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,989,-0.56840000000000002,15.468500000000001,0.084599999999999995,12.202999999999999,13.161,14.242000000000001,15.468,16.87,18.48,20.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,990,-0.56840000000000002,15.4678,0.084610000000000005,12.202999999999999,13.16,14.241,15.468,16.869,18.48,20.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,991,-0.56840000000000002,15.467000000000001,0.084610000000000005,12.202,13.159000000000001,14.24,15.467000000000001,16.867999999999999,18.478999999999999,20.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,992,-0.56840000000000002,15.4663,0.084620000000000001,12.201000000000001,13.159000000000001,14.239000000000001,15.465999999999999,16.867000000000001,18.478000000000002,20.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,993,-0.56840000000000002,15.4656,0.084620000000000001,12.201000000000001,13.157999999999999,14.239000000000001,15.465999999999999,16.867000000000001,18.478000000000002,20.344000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,994,-0.56840000000000002,15.4648,0.084620000000000001,12.2,13.157,14.238,15.465,16.866,18.477,20.343 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,995,-0.56840000000000002,15.4641,0.084629999999999997,12.199,13.157,14.237,15.464,16.864999999999998,18.475999999999999,20.341999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,996,-0.56840000000000002,15.4633,0.084629999999999997,12.198,13.156000000000001,14.237,15.462999999999999,16.864000000000001,18.475000000000001,20.341000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,997,-0.56840000000000002,15.4626,0.084640000000000007,12.198,13.154999999999999,14.236000000000001,15.462999999999999,16.864000000000001,18.475000000000001,20.341000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,998,-0.56840000000000002,15.4619,0.084640000000000007,12.196999999999999,13.154,14.234999999999999,15.462,16.863,18.474,20.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,999,-0.56840000000000002,15.4611,0.084650000000000003,12.196,13.153,14.234,15.461,16.861999999999998,18.472999999999999,20.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1000,-0.56840000000000002,15.4604,0.084650000000000003,12.196,13.153,14.234,15.46,16.861999999999998,18.472999999999999,20.338999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1001,-0.56840000000000002,15.4597,0.084650000000000003,12.195,13.151999999999999,14.233000000000001,15.46,16.861000000000001,18.472000000000001,20.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1002,-0.56840000000000002,15.4589,0.084659999999999999,12.194000000000001,13.151,14.231999999999999,15.459,16.86,18.471,20.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1003,-0.56840000000000002,15.4582,0.084659999999999999,12.193,13.151,14.231,15.458,16.859000000000002,18.47,20.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1004,-0.56840000000000002,15.4575,0.084669999999999995,12.193,13.15,14.231,15.458,16.859000000000002,18.47,20.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1005,-0.56840000000000002,15.456799999999999,0.084669999999999995,12.192,13.148999999999999,14.23,15.457000000000001,16.858000000000001,18.469000000000001,20.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1006,-0.56840000000000002,15.456,0.084680000000000005,12.191000000000001,13.148,14.228999999999999,15.456,16.856999999999999,18.469000000000001,20.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1007,-0.56840000000000002,15.455299999999999,0.084680000000000005,12.191000000000001,13.148,14.228,15.455,16.856999999999999,18.468,20.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1008,-0.56840000000000002,15.454599999999999,0.084690000000000001,12.19,13.147,14.228,15.455,16.856000000000002,18.466999999999999,20.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1009,-0.56840000000000002,15.453900000000001,0.084690000000000001,12.189,13.146000000000001,14.227,15.454000000000001,16.855,18.466999999999999,20.332999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1010,-0.56840000000000002,15.453099999999999,0.084699999999999998,12.188000000000001,13.145,14.226000000000001,15.452999999999999,16.853999999999999,18.466000000000001,20.332999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1011,-0.56840000000000002,15.452400000000001,0.084699999999999998,12.188000000000001,13.145,14.226000000000001,15.452,16.853999999999999,18.465,20.332000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1012,-0.56840000000000002,15.451700000000001,0.084709999999999994,12.186999999999999,13.144,14.225,15.452,16.853000000000002,18.465,20.332000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1013,-0.56840000000000002,15.451000000000001,0.084709999999999994,12.186,13.143000000000001,14.224,15.451000000000001,16.852,18.463999999999999,20.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1014,-0.56840000000000002,15.4503,0.084720000000000004,12.185,13.143000000000001,14.223000000000001,15.45,16.852,18.463000000000001,20.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1015,-0.56840000000000002,15.4495,0.084720000000000004,12.185,13.141999999999999,14.223000000000001,15.45,16.850999999999999,18.462,20.329999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1016,-0.56840000000000002,15.4488,0.08473,12.183999999999999,13.141,14.222,15.449,16.850000000000001,18.462,20.329000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1017,-0.56840000000000002,15.4481,0.08473,12.183,13.14,14.221,15.448,16.850000000000001,18.460999999999999,20.329000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1018,-0.56840000000000002,15.4474,0.084739999999999996,12.182,13.14,14.22,15.446999999999999,16.849,18.460999999999999,20.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1019,-0.56840000000000002,15.4467,0.084739999999999996,12.182,13.138999999999999,14.22,15.446999999999999,16.847999999999999,18.46,20.327000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1020,-0.56840000000000002,15.446,0.084750000000000006,12.180999999999999,13.138,14.218999999999999,15.446,16.847999999999999,18.46,20.327000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1021,-0.56840000000000002,15.4453,0.084760000000000002,12.18,13.137,14.218,15.445,16.847000000000001,18.459,20.327000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1022,-0.56840000000000002,15.444599999999999,0.084760000000000002,12.18,13.137,14.218,15.445,16.846,18.457999999999998,20.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1023,-0.56840000000000002,15.443899999999999,0.084769999999999998,12.179,13.135999999999999,14.217000000000001,15.444000000000001,16.846,18.457999999999998,20.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1024,-0.56840000000000002,15.443199999999999,0.084769999999999998,12.178000000000001,13.135,14.215999999999999,15.443,16.844999999999999,18.457000000000001,20.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1025,-0.56840000000000002,15.442500000000001,0.084779999999999994,12.177,13.135,14.215,15.442,16.844000000000001,18.457000000000001,20.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1026,-0.56840000000000002,15.441800000000001,0.084779999999999994,12.177,13.134,14.215,15.442,16.844000000000001,18.456,20.324000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1027,-0.56840000000000002,15.4411,0.084790000000000004,12.176,13.132999999999999,14.214,15.441000000000001,16.843,18.454999999999998,20.324000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1028,-0.56840000000000002,15.4404,0.0848,12.175000000000001,13.132,14.212999999999999,15.44,16.841999999999999,18.454999999999998,20.323 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1029,-0.56840000000000002,15.4397,0.0848,12.173999999999999,13.132,14.212999999999999,15.44,16.841999999999999,18.454000000000001,20.321999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1030,-0.56840000000000002,15.439,0.084809999999999997,12.173999999999999,13.131,14.212,15.439,16.841000000000001,18.454000000000001,20.321999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1031,-0.56840000000000002,15.4383,0.084820000000000007,12.173,13.13,14.211,15.438000000000001,16.84,18.452999999999999,20.321999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1032,-0.56840000000000002,15.4376,0.084820000000000007,12.172000000000001,13.129,14.21,15.438000000000001,16.84,18.452000000000002,20.321000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1033,-0.56840000000000002,15.4369,0.084830000000000003,12.170999999999999,13.129,14.21,15.436999999999999,16.838999999999999,18.452000000000002,20.321000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1034,-0.56840000000000002,15.436199999999999,0.084830000000000003,12.170999999999999,13.128,14.209,15.436,16.838000000000001,18.451000000000001,20.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1035,-0.56840000000000002,15.435499999999999,0.084839999999999999,12.17,13.127000000000001,14.208,15.436,16.838000000000001,18.451000000000001,20.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1036,-0.56840000000000002,15.434900000000001,0.084849999999999995,12.169,13.125999999999999,14.207000000000001,15.435,16.837,18.45,20.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1037,-0.56840000000000002,15.434200000000001,0.084849999999999995,12.167999999999999,13.125999999999999,14.207000000000001,15.433999999999999,16.837,18.45,20.318999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1038,-0.56840000000000002,15.4335,0.084860000000000005,12.167999999999999,13.125,14.206,15.433999999999999,16.835999999999999,18.449000000000002,20.318999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1039,-0.56840000000000002,15.4328,0.084870000000000001,12.167,13.124000000000001,14.205,15.433,16.835000000000001,18.449000000000002,20.318000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1040,-0.56840000000000002,15.4321,0.084870000000000001,12.166,13.124000000000001,14.205,15.432,16.835000000000001,18.448,20.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1041,-0.56840000000000002,15.4315,0.084879999999999997,12.164999999999999,13.122999999999999,14.204000000000001,15.432,16.834,18.448,20.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1042,-0.56840000000000002,15.4308,0.084889999999999993,12.164999999999999,13.122,14.202999999999999,15.430999999999999,16.834,18.446999999999999,20.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1043,-0.56840000000000002,15.430099999999999,0.084889999999999993,12.164,13.121,14.202,15.43,16.832999999999998,18.446000000000002,20.315999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1044,-0.56840000000000002,15.429399999999999,0.084900000000000003,12.163,13.121,14.202,15.429,16.832000000000001,18.446000000000002,20.315999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1045,-0.56840000000000002,15.428800000000001,0.084909999999999999,12.162000000000001,13.12,14.201000000000001,15.429,16.832000000000001,18.446000000000002,20.315999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1046,-0.56840000000000002,15.428100000000001,0.084919999999999995,12.161,13.119,14.2,15.428000000000001,16.831,18.445,20.315999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1047,-0.56840000000000002,15.4274,0.084919999999999995,12.161,13.118,14.2,15.427,16.829999999999998,18.443999999999999,20.315000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1048,-0.56840000000000002,15.4268,0.084930000000000005,12.16,13.118,14.199,15.427,16.829999999999998,18.443999999999999,20.315000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1049,-0.56840000000000002,15.4261,0.084940000000000002,12.159000000000001,13.117000000000001,14.198,15.426,16.829000000000001,18.443999999999999,20.315000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1050,-0.56840000000000002,15.4254,0.084940000000000002,12.159000000000001,13.116,14.196999999999999,15.425000000000001,16.829000000000001,18.443000000000001,20.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1051,-0.56840000000000002,15.424799999999999,0.084949999999999998,12.157999999999999,13.115,14.196999999999999,15.425000000000001,16.827999999999999,18.442,20.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1052,-0.56840000000000002,15.424099999999999,0.084959999999999994,12.157,13.115,14.196,15.423999999999999,16.827000000000002,18.442,20.312999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1053,-0.56840000000000002,15.423400000000001,0.084970000000000004,12.156000000000001,13.114000000000001,14.195,15.423,16.827000000000002,18.440999999999999,20.312999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1054,-0.56840000000000002,15.422800000000001,0.084970000000000004,12.156000000000001,13.113,14.195,15.423,16.826000000000001,18.440999999999999,20.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1055,-0.56840000000000002,15.4221,0.08498,12.154999999999999,13.112,14.194000000000001,15.422000000000001,16.826000000000001,18.440000000000001,20.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1056,-0.56840000000000002,15.4215,0.084989999999999996,12.154,13.112,14.193,15.422000000000001,16.824999999999999,18.440000000000001,20.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1057,-0.56840000000000002,15.4208,0.085000000000000006,12.153,13.111000000000001,14.192,15.420999999999999,16.824999999999999,18.440000000000001,20.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1058,-0.56840000000000002,15.420199999999999,0.085010000000000002,12.151999999999999,13.11,14.192,15.42,16.824000000000002,18.439,20.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1059,-0.56840000000000002,15.419499999999999,0.085010000000000002,12.151999999999999,13.109,14.191000000000001,15.42,16.823,18.437999999999999,20.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1060,-0.56840000000000002,15.418900000000001,0.085019999999999998,12.151,13.109,14.19,15.419,16.823,18.437999999999999,20.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1061,-0.56840000000000002,15.418200000000001,0.085029999999999994,12.15,13.108000000000001,14.19,15.417999999999999,16.821999999999999,18.437999999999999,20.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1062,-0.56840000000000002,15.4176,0.085040000000000004,12.148999999999999,13.106999999999999,14.189,15.417999999999999,16.821999999999999,18.437000000000001,20.309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1063,-0.56840000000000002,15.4169,0.085050000000000001,12.148,13.106,14.188000000000001,15.417,16.821000000000002,18.437000000000001,20.309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1064,-0.56840000000000002,15.4163,0.085050000000000001,12.148,13.106,14.188000000000001,15.416,16.821000000000002,18.436,20.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1065,-0.56840000000000002,15.415699999999999,0.085059999999999997,12.147,13.105,14.186999999999999,15.416,16.82,18.436,20.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1066,-0.56840000000000002,15.414999999999999,0.085070000000000007,12.146000000000001,13.103999999999999,14.186,15.414999999999999,16.818999999999999,18.436,20.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1067,-0.56840000000000002,15.414400000000001,0.085080000000000003,12.146000000000001,13.103,14.185,15.414,16.818999999999999,18.434999999999999,20.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1068,-0.56840000000000002,15.4137,0.085089999999999999,12.145,13.103,14.185,15.414,16.818000000000001,18.434999999999999,20.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1069,-0.56840000000000002,15.4131,0.085099999999999995,12.144,13.102,14.183999999999999,15.413,16.818000000000001,18.434000000000001,20.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1070,-0.56840000000000002,15.4125,0.085099999999999995,12.143000000000001,13.101000000000001,14.183,15.412000000000001,16.817,18.434000000000001,20.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1071,-0.56840000000000002,15.411899999999999,0.085110000000000005,12.143000000000001,13.101000000000001,14.183,15.412000000000001,16.817,18.433,20.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1072,-0.56840000000000002,15.411199999999999,0.085120000000000001,12.141999999999999,13.1,14.182,15.411,16.815999999999999,18.433,20.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1073,-0.56840000000000002,15.410600000000001,0.085129999999999997,12.141,13.099,14.180999999999999,15.411,16.815999999999999,18.433,20.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1074,-0.56840000000000002,15.41,0.085139999999999993,12.14,13.098000000000001,14.180999999999999,15.41,16.815000000000001,18.431999999999999,20.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1075,-0.56840000000000002,15.4093,0.085150000000000003,12.138999999999999,13.097,14.18,15.409000000000001,16.815000000000001,18.431999999999999,20.306999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1076,-0.56840000000000002,15.4087,0.08516,12.138,13.097,14.179,15.409000000000001,16.814,18.431999999999999,20.306999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1077,-0.56840000000000002,15.408099999999999,0.085169999999999996,12.138,13.096,14.178000000000001,15.407999999999999,16.814,18.431000000000001,20.306999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1078,-0.56840000000000002,15.407500000000001,0.085169999999999996,12.137,13.095000000000001,14.178000000000001,15.407999999999999,16.812999999999999,18.431000000000001,20.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1079,-0.56840000000000002,15.4069,0.085180000000000006,12.135999999999999,13.095000000000001,14.177,15.407,16.812999999999999,18.43,20.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1080,-0.56840000000000002,15.4063,0.085190000000000002,12.135999999999999,13.093999999999999,14.176,15.406000000000001,16.812000000000001,18.43,20.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1081,-0.56840000000000002,15.4056,0.085199999999999998,12.135,13.093,14.176,15.406000000000001,16.812000000000001,18.43,20.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1082,-0.56840000000000002,15.404999999999999,0.085209999999999994,12.134,13.092000000000001,14.175000000000001,15.404999999999999,16.811,18.428999999999998,20.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1083,-0.56840000000000002,15.404400000000001,0.085220000000000004,12.132999999999999,13.092000000000001,14.173999999999999,15.404,16.811,18.428999999999998,20.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1084,-0.56840000000000002,15.4038,0.08523,12.132,13.090999999999999,14.173999999999999,15.404,16.809999999999999,18.428999999999998,20.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1085,-0.56840000000000002,15.4032,0.085239999999999996,12.132,13.09,14.173,15.403,16.809999999999999,18.428000000000001,20.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1086,-0.56840000000000002,15.4026,0.085250000000000006,12.131,13.089,14.172000000000001,15.403,16.809000000000001,18.428000000000001,20.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1087,-0.56840000000000002,15.401999999999999,0.085260000000000002,12.13,13.089,14.172000000000001,15.401999999999999,16.809000000000001,18.428000000000001,20.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1088,-0.56840000000000002,15.401400000000001,0.085269999999999999,12.129,13.087999999999999,14.170999999999999,15.401,16.808,18.427,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1089,-0.56840000000000002,15.4008,0.085279999999999995,12.128,13.087,14.17,15.401,16.808,18.427,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1090,-0.56840000000000002,15.4002,0.085290000000000005,12.128,13.086,14.17,15.4,16.806999999999999,18.427,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1091,-0.56840000000000002,15.3996,0.085300000000000001,12.127000000000001,13.086,14.169,15.4,16.806999999999999,18.427,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1092,-0.56840000000000002,15.398999999999999,0.085309999999999997,12.125999999999999,13.085000000000001,14.167999999999999,15.398999999999999,16.806000000000001,18.425999999999998,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1093,-0.56840000000000002,15.398400000000001,0.085319999999999993,12.125,13.084,14.167,15.398,16.806000000000001,18.425999999999998,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1094,-0.56840000000000002,15.3978,0.085330000000000003,12.125,13.083,14.167,15.398,16.805,18.425999999999998,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1095,-0.56840000000000002,15.3972,0.085339999999999999,12.124000000000001,13.083,14.166,15.397,16.805,18.425000000000001,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1096,-0.56840000000000002,15.396599999999999,0.085349999999999995,12.122999999999999,13.082000000000001,14.164999999999999,15.397,16.803999999999998,18.425000000000001,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1097,-0.56840000000000002,15.396000000000001,0.085360000000000005,12.122,13.081,14.164999999999999,15.396000000000001,16.803999999999998,18.425000000000001,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1098,-0.56840000000000002,15.3954,0.085370000000000001,12.121,13.08,14.164,15.395,16.803000000000001,18.423999999999999,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1099,-0.56840000000000002,15.3949,0.085379999999999998,12.121,13.08,14.163,15.395,16.803000000000001,18.423999999999999,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1100,-0.56840000000000002,15.394299999999999,0.085389999999999994,12.12,13.079000000000001,14.163,15.394,16.803000000000001,18.423999999999999,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1101,-0.56840000000000002,15.393700000000001,0.085400000000000004,12.119,13.077999999999999,14.162000000000001,15.394,16.802,18.423999999999999,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1102,-0.56840000000000002,15.3931,0.08541,12.118,13.077,14.161,15.393000000000001,16.802,18.422999999999998,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1103,-0.56840000000000002,15.3925,0.085419999999999996,12.117000000000001,13.077,14.161,15.391999999999999,16.800999999999998,18.422999999999998,20.303999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1104,-0.56840000000000002,15.391999999999999,0.085430000000000006,12.117000000000001,13.076000000000001,14.16,15.391999999999999,16.800999999999998,18.422999999999998,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1105,-0.56840000000000002,15.391400000000001,0.085440000000000002,12.116,13.074999999999999,14.159000000000001,15.391,16.8,18.422000000000001,20.303999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1106,-0.56840000000000002,15.3908,0.085449999999999998,12.115,13.074999999999999,14.159000000000001,15.391,16.8,18.422000000000001,20.303999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1107,-0.56840000000000002,15.3902,0.085470000000000004,12.114000000000001,13.074,14.157999999999999,15.39,16.798999999999999,18.422000000000001,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1108,-0.56840000000000002,15.389699999999999,0.08548,12.113,13.073,14.157,15.39,16.798999999999999,18.422000000000001,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1109,-0.56840000000000002,15.389099999999999,0.085489999999999997,12.113,13.071999999999999,14.157,15.388999999999999,16.798999999999999,18.422000000000001,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1110,-0.56840000000000002,15.388500000000001,0.085500000000000007,12.112,13.071,14.156000000000001,15.388,16.797999999999998,18.420999999999999,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1111,-0.56840000000000002,15.388,0.085510000000000003,12.111000000000001,13.071,14.154999999999999,15.388,16.797999999999998,18.420999999999999,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1112,-0.56840000000000002,15.3874,0.085519999999999999,12.11,13.07,14.154999999999999,15.387,16.797000000000001,18.420999999999999,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1113,-0.56840000000000002,15.386799999999999,0.085529999999999995,12.109,13.069000000000001,14.154,15.387,16.797000000000001,18.420999999999999,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1114,-0.56840000000000002,15.3863,0.085540000000000005,12.109,13.069000000000001,14.153,15.385999999999999,16.795999999999999,18.420000000000002,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1115,-0.56840000000000002,15.3857,0.085559999999999997,12.108000000000001,13.068,14.153,15.385999999999999,16.795999999999999,18.420000000000002,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1116,-0.56840000000000002,15.385199999999999,0.085569999999999993,12.106999999999999,13.067,14.151999999999999,15.385,16.795999999999999,18.420000000000002,20.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1117,-0.56840000000000002,15.384600000000001,0.085580000000000003,12.106,13.066000000000001,14.151,15.385,16.795000000000002,18.420000000000002,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1118,-0.56840000000000002,15.384,0.085589999999999999,12.105,13.065,14.151,15.384,16.795000000000002,18.420000000000002,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1119,-0.56840000000000002,15.3835,0.085599999999999996,12.105,13.065,14.15,15.384,16.794,18.419,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1120,-0.56840000000000002,15.382899999999999,0.085610000000000006,12.103999999999999,13.064,14.148999999999999,15.382999999999999,16.794,18.419,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1121,-0.56840000000000002,15.382400000000001,0.085629999999999998,12.103,13.063000000000001,14.148999999999999,15.382,16.794,18.419,20.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1122,-0.56840000000000002,15.3818,0.085639999999999994,12.102,13.061999999999999,14.148,15.382,16.792999999999999,18.419,20.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1123,-0.56840000000000002,15.3813,0.085650000000000004,12.101000000000001,13.061999999999999,14.147,15.381,16.792999999999999,18.419,20.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1124,-0.56840000000000002,15.380800000000001,0.08566,12.101000000000001,13.061,14.147,15.381,16.792999999999999,18.419,20.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1125,-0.56840000000000002,15.3802,0.085669999999999996,12.1,13.06,14.146000000000001,15.38,16.792000000000002,18.417999999999999,20.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1126,-0.56840000000000002,15.3797,0.085690000000000002,12.099,13.058999999999999,14.145,15.38,16.792000000000002,18.419,20.306999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1127,-0.56840000000000002,15.379099999999999,0.085699999999999998,12.098000000000001,13.058999999999999,14.145,15.379,16.791,18.417999999999999,20.306999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1128,-0.56840000000000002,15.3786,0.085709999999999995,12.097,13.058,14.144,15.379,16.791,18.417999999999999,20.306999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1129,-0.56840000000000002,15.378,0.085720000000000005,12.097,13.057,14.143000000000001,15.378,16.791,18.417999999999999,20.306999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1130,-0.56840000000000002,15.3775,0.085739999999999997,12.096,13.055999999999999,14.143000000000001,15.378,16.79,18.417999999999999,20.306999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1131,-0.56840000000000002,15.377000000000001,0.085750000000000007,12.095000000000001,13.055999999999999,14.141999999999999,15.377000000000001,16.79,18.417999999999999,20.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1132,-0.56840000000000002,15.3764,0.085760000000000003,12.093999999999999,13.055,14.141,15.375999999999999,16.79,18.417999999999999,20.306999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1133,-0.56840000000000002,15.3759,0.085769999999999999,12.093,13.054,14.141,15.375999999999999,16.789000000000001,18.417000000000002,20.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1134,-0.56840000000000002,15.375400000000001,0.085790000000000005,12.092000000000001,13.053000000000001,14.14,15.375,16.789000000000001,18.417999999999999,20.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1135,-0.56840000000000002,15.3748,0.085800000000000001,12.092000000000001,13.053000000000001,14.138999999999999,15.375,16.788,18.417000000000002,20.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1136,-0.56840000000000002,15.3743,0.085809999999999997,12.090999999999999,13.052,14.138999999999999,15.374000000000001,16.788,18.417000000000002,20.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1137,-0.56840000000000002,15.373799999999999,0.085819999999999994,12.09,13.051,14.138,15.374000000000001,16.788,18.417000000000002,20.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1138,-0.56840000000000002,15.3733,0.08584,12.089,13.05,14.137,15.372999999999999,16.788,18.417000000000002,20.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1139,-0.56840000000000002,15.3727,0.085849999999999996,12.087999999999999,13.05,14.137,15.372999999999999,16.786999999999999,18.417000000000002,20.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1140,-0.56840000000000002,15.372199999999999,0.085860000000000006,12.087999999999999,13.048999999999999,14.135999999999999,15.372,16.786999999999999,18.417000000000002,20.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1141,-0.56840000000000002,15.371700000000001,0.085879999999999998,12.087,13.048,14.135,15.372,16.786999999999999,18.417000000000002,20.309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1142,-0.56840000000000002,15.3712,0.085889999999999994,12.086,13.047000000000001,14.135,15.371,16.786000000000001,18.417000000000002,20.309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1143,-0.56840000000000002,15.370699999999999,0.085900000000000004,12.085000000000001,13.047000000000001,14.134,15.371,16.786000000000001,18.416,20.309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1144,-0.56840000000000002,15.370200000000001,0.085919999999999996,12.084,13.045999999999999,14.132999999999999,15.37,16.786000000000001,18.417000000000002,20.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1145,-0.56840000000000002,15.3696,0.085930000000000006,12.083,13.045,14.132999999999999,15.37,16.785,18.416,20.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1146,-0.56840000000000002,15.3691,0.085940000000000003,12.083,13.044,14.132,15.369,16.785,18.416,20.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1147,-0.56840000000000002,15.368600000000001,0.085959999999999995,12.082000000000001,13.044,14.131,15.369,16.785,18.416,20.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1148,-0.56840000000000002,15.3681,0.085970000000000005,12.081,13.042999999999999,14.131,15.368,16.783999999999999,18.416,20.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1149,-0.56840000000000002,15.367599999999999,0.085980000000000001,12.08,13.042,14.13,15.368,16.783999999999999,18.416,20.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1150,-0.56840000000000002,15.367100000000001,0.085999999999999993,12.079000000000001,13.041,14.129,15.367000000000001,16.783999999999999,18.416,20.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1151,-0.56840000000000002,15.3666,0.086010000000000003,12.077999999999999,13.041,14.129,15.367000000000001,16.783000000000001,18.416,20.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1152,-0.56840000000000002,15.366099999999999,0.086019999999999999,12.077999999999999,13.04,14.128,15.366,16.783000000000001,18.416,20.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1153,-0.56840000000000002,15.365600000000001,0.086040000000000005,12.077,13.039,14.128,15.366,16.783000000000001,18.416,20.312999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1154,-0.56840000000000002,15.3651,0.086050000000000001,12.076000000000001,13.038,14.127000000000001,15.365,16.782,18.416,20.312999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1155,-0.56840000000000002,15.364599999999999,0.086059999999999998,12.074999999999999,13.038,14.125999999999999,15.365,16.782,18.416,20.312999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1156,-0.56840000000000002,15.364100000000001,0.086080000000000004,12.074,13.037000000000001,14.125999999999999,15.364000000000001,16.782,18.416,20.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1157,-0.56840000000000002,15.3636,0.08609,12.074,13.036,14.125,15.364000000000001,16.780999999999999,18.416,20.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1158,-0.56840000000000002,15.363099999999999,0.086110000000000006,12.073,13.035,14.124000000000001,15.363,16.780999999999999,18.416,20.315000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1159,-0.56840000000000002,15.3626,0.086120000000000002,12.071999999999999,13.035,14.124000000000001,15.363,16.780999999999999,18.416,20.315000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1160,-0.56840000000000002,15.3621,0.086139999999999994,12.071,13.034000000000001,14.122999999999999,15.362,16.780999999999999,18.416,20.315999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1161,-0.56840000000000002,15.361599999999999,0.086150000000000004,12.07,13.032999999999999,14.122,15.362,16.78,18.416,20.315999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1162,-0.56840000000000002,15.3611,0.08616,12.069000000000001,13.032,14.122,15.361000000000001,16.78,18.414999999999999,20.315999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1163,-0.56840000000000002,15.3606,0.086180000000000007,12.068,13.032,14.121,15.361000000000001,16.78,18.416,20.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1164,-0.56840000000000002,15.360099999999999,0.086190000000000003,12.068,13.031000000000001,14.121,15.36,16.779,18.416,20.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1165,-0.56840000000000002,15.3597,0.086209999999999995,12.067,13.03,14.12,15.36,16.779,18.416,20.318000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1166,-0.56840000000000002,15.3592,0.086220000000000005,12.066000000000001,13.029,14.119,15.359,16.779,18.416,20.318000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1167,-0.56840000000000002,15.358700000000001,0.086239999999999997,12.065,13.029,14.119,15.359,16.779,18.416,20.318000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1168,-0.56840000000000002,15.3582,0.086249999999999993,12.064,13.028,14.118,15.358000000000001,16.777999999999999,18.416,20.318000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1169,-0.56840000000000002,15.357699999999999,0.086269999999999999,12.063000000000001,13.026999999999999,14.117000000000001,15.358000000000001,16.777999999999999,18.416,20.318999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1170,-0.56840000000000002,15.357200000000001,0.086279999999999996,12.063000000000001,13.026,14.117000000000001,15.356999999999999,16.777999999999999,18.416,20.318999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1171,-0.56840000000000002,15.3568,0.086290000000000006,12.061999999999999,13.026,14.116,15.356999999999999,16.777000000000001,18.416,20.318999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1172,-0.56840000000000002,15.356299999999999,0.086309999999999998,12.061,13.025,14.115,15.356,16.777000000000001,18.416,20.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1173,-0.56840000000000002,15.3558,0.086319999999999994,12.06,13.023999999999999,14.115,15.356,16.777000000000001,18.416,20.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1174,-0.56840000000000002,15.3553,0.08634,12.058999999999999,13.023,14.114000000000001,15.355,16.777000000000001,18.416,20.321000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1175,-0.56840000000000002,15.354900000000001,0.086349999999999996,12.058,13.023,14.114000000000001,15.355,16.776,18.416,20.321000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1176,-0.56840000000000002,15.3544,0.086370000000000002,12.057,13.022,14.113,15.353999999999999,16.776,18.416,20.321999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1177,-0.56840000000000002,15.353899999999999,0.086379999999999998,12.057,13.021000000000001,14.112,15.353999999999999,16.776,18.416,20.321999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1178,-0.56840000000000002,15.3535,0.086400000000000005,12.055999999999999,13.02,14.112,15.353999999999999,16.776,18.416,20.323 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1179,-0.56840000000000002,15.353,0.086410000000000001,12.055,13.02,14.111000000000001,15.353,16.774999999999999,18.416,20.323 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1180,-0.56840000000000002,15.352499999999999,0.086430000000000007,12.054,13.019,14.11,15.352,16.774999999999999,18.416,20.324000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1181,-0.56840000000000002,15.3521,0.086449999999999999,12.053000000000001,13.018000000000001,14.11,15.352,16.774999999999999,18.417000000000002,20.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1182,-0.56840000000000002,15.351599999999999,0.086459999999999995,12.052,13.016999999999999,14.109,15.352,16.774999999999999,18.416,20.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1183,-0.56840000000000002,15.351100000000001,0.086480000000000001,12.051,13.016,14.108000000000001,15.351000000000001,16.774999999999999,18.417000000000002,20.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1184,-0.56840000000000002,15.3507,0.086489999999999997,12.051,13.016,14.108000000000001,15.351000000000001,16.774000000000001,18.416,20.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1185,-0.56840000000000002,15.350199999999999,0.086510000000000004,12.05,13.015000000000001,14.106999999999999,15.35,16.774000000000001,18.417000000000002,20.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1186,-0.56840000000000002,15.3497,0.08652,12.048999999999999,13.013999999999999,14.106999999999999,15.35,16.774000000000001,18.417000000000002,20.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1187,-0.56840000000000002,15.349299999999999,0.086540000000000006,12.048,13.013,14.106,15.349,16.774000000000001,18.417000000000002,20.327000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1188,-0.56840000000000002,15.348800000000001,0.086550000000000002,12.047000000000001,13.013,14.105,15.349,16.773,18.417000000000002,20.327000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1189,-0.56840000000000002,15.3484,0.086569999999999994,12.045999999999999,13.012,14.105,15.348000000000001,16.773,18.417000000000002,20.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1190,-0.56840000000000002,15.347899999999999,0.08659,12.045,13.010999999999999,14.103999999999999,15.348000000000001,16.773,18.417000000000002,20.329000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1191,-0.56840000000000002,15.3475,0.086599999999999996,12.045,13.010999999999999,14.103,15.348000000000001,16.773,18.417000000000002,20.329000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1192,-0.56840000000000002,15.347,0.086620000000000003,12.044,13.01,14.103,15.347,16.773,18.417000000000002,20.329999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1193,-0.56840000000000002,15.346500000000001,0.086629999999999999,12.042999999999999,13.009,14.102,15.346,16.771999999999998,18.417000000000002,20.329999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1194,-0.56840000000000002,15.3461,0.086650000000000005,12.042,13.007999999999999,14.101000000000001,15.346,16.771999999999998,18.417999999999999,20.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1195,-0.56840000000000002,15.345599999999999,0.086660000000000001,12.041,13.007,14.101000000000001,15.346,16.771999999999998,18.417000000000002,20.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1196,-0.56840000000000002,15.3452,0.086679999999999993,12.04,13.007,14.1,15.345000000000001,16.771999999999998,18.417999999999999,20.332000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1197,-0.56840000000000002,15.344799999999999,0.086699999999999999,12.04,13.006,14.1,15.345000000000001,16.771999999999998,18.417999999999999,20.332999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1198,-0.56840000000000002,15.3443,0.086709999999999995,12.039,13.005000000000001,14.099,15.343999999999999,16.771000000000001,18.417999999999999,20.332999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1199,-0.56840000000000002,15.3439,0.086730000000000002,12.038,13.004,14.098000000000001,15.343999999999999,16.771000000000001,18.417999999999999,20.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1200,-0.56840000000000002,15.343400000000001,0.086749999999999994,12.037000000000001,13.003,14.098000000000001,15.343,16.771000000000001,18.417999999999999,20.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1201,-0.56840000000000002,15.343,0.086760000000000004,12.036,13.003,14.097,15.343,16.771000000000001,18.417999999999999,20.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1202,-0.56840000000000002,15.342499999999999,0.086779999999999996,12.035,13.002000000000001,14.096,15.342000000000001,16.77,18.419,20.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1203,-0.56840000000000002,15.3421,0.086790000000000006,12.035,13.000999999999999,14.096,15.342000000000001,16.77,18.417999999999999,20.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1204,-0.56840000000000002,15.3416,0.086809999999999998,12.034000000000001,13.000999999999999,14.095000000000001,15.342000000000001,16.77,18.419,20.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1205,-0.56840000000000002,15.341200000000001,0.086830000000000004,12.032999999999999,13,14.095000000000001,15.340999999999999,16.77,18.419,20.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1206,-0.56840000000000002,15.3408,0.086840000000000001,12.032,12.999000000000001,14.093999999999999,15.340999999999999,16.77,18.419,20.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1207,-0.56840000000000002,15.340299999999999,0.086860000000000007,12.031000000000001,12.997999999999999,14.093,15.34,16.768999999999998,18.419,20.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1208,-0.56840000000000002,15.3399,0.086879999999999999,12.03,12.997,14.093,15.34,16.768999999999998,18.419,20.338999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1209,-0.56840000000000002,15.339499999999999,0.086889999999999995,12.029,12.997,14.092000000000001,15.34,16.768999999999998,18.419,20.338999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1210,-0.56840000000000002,15.339,0.086910000000000001,12.028,12.996,14.090999999999999,15.339,16.768999999999998,18.420000000000002,20.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1211,-0.56840000000000002,15.3386,0.086929999999999993,12.026999999999999,12.994999999999999,14.090999999999999,15.339,16.768999999999998,18.420000000000002,20.341000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1212,-0.56840000000000002,15.338200000000001,0.086940000000000003,12.026999999999999,12.994999999999999,14.09,15.337999999999999,16.768999999999998,18.420000000000002,20.341000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1213,-0.56840000000000002,15.3377,0.086959999999999996,12.026,12.994,14.09,15.337999999999999,16.768000000000001,18.420000000000002,20.341999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1214,-0.56840000000000002,15.337300000000001,0.086980000000000002,12.025,12.993,14.089,15.337,16.768000000000001,18.420000000000002,20.343 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1215,-0.56840000000000002,15.3369,0.086989999999999998,12.023999999999999,12.992000000000001,14.087999999999999,15.337,16.768000000000001,18.420000000000002,20.343 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1216,-0.56840000000000002,15.336399999999999,0.087010000000000004,12.023,12.991,14.087999999999999,15.336,16.768000000000001,18.420999999999999,20.344000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1217,-0.56840000000000002,15.336,0.087029999999999996,12.022,12.991,14.087,15.336,16.768000000000001,18.420999999999999,20.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1218,-0.56840000000000002,15.335599999999999,0.087040000000000006,12.022,12.99,14.087,15.336,16.768000000000001,18.420999999999999,20.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1219,-0.56840000000000002,15.3352,0.087059999999999998,12.021000000000001,12.989000000000001,14.086,15.335000000000001,16.766999999999999,18.420999999999999,20.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1220,-0.56840000000000002,15.3347,0.087080000000000005,12.02,12.988,14.085000000000001,15.335000000000001,16.766999999999999,18.420999999999999,20.347000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1221,-0.56840000000000002,15.334300000000001,0.087099999999999997,12.019,12.987,14.085000000000001,15.334,16.766999999999999,18.422000000000001,20.347999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1222,-0.56840000000000002,15.3339,0.087110000000000007,12.018000000000001,12.987,14.084,15.334,16.766999999999999,18.422000000000001,20.347999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1223,-0.56840000000000002,15.333500000000001,0.087129999999999999,12.016999999999999,12.986000000000001,14.083,15.334,16.766999999999999,18.422000000000001,20.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1224,-0.56840000000000002,15.3331,0.087150000000000005,12.016,12.984999999999999,14.083,15.333,16.766999999999999,18.422000000000001,20.350000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1225,-0.56840000000000002,15.332599999999999,0.087160000000000001,12.016,12.984999999999999,14.082000000000001,15.333,16.765999999999998,18.422000000000001,20.350000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1226,-0.56840000000000002,15.3322,0.087179999999999994,12.015000000000001,12.984,14.082000000000001,15.332000000000001,16.765999999999998,18.422000000000001,20.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1227,-0.56840000000000002,15.331799999999999,0.0872,12.013999999999999,12.983000000000001,14.081,15.332000000000001,16.765999999999998,18.422999999999998,20.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1228,-0.56840000000000002,15.3314,0.087220000000000006,12.013,12.981999999999999,14.08,15.331,16.765999999999998,18.422999999999998,20.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1229,-0.56840000000000002,15.331,0.087230000000000002,12.012,12.981999999999999,14.08,15.331,16.765999999999998,18.422999999999998,20.353000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1230,-0.56840000000000002,15.3306,0.087249999999999994,12.010999999999999,12.981,14.079000000000001,15.331,16.765999999999998,18.422999999999998,20.353000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1231,-0.56840000000000002,15.3301,0.08727,12.01,12.98,14.077999999999999,15.33,16.765999999999998,18.423999999999999,20.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1232,-0.56840000000000002,15.329700000000001,0.087290000000000006,12.009,12.978999999999999,14.077999999999999,15.33,16.765000000000001,18.423999999999999,20.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1233,-0.56840000000000002,15.3293,0.087300000000000003,12.009,12.978999999999999,14.077,15.329000000000001,16.765000000000001,18.423999999999999,20.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1234,-0.56840000000000002,15.328900000000001,0.087319999999999995,12.007999999999999,12.978,14.077,15.329000000000001,16.765000000000001,18.423999999999999,20.356000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1235,-0.56840000000000002,15.3285,0.087340000000000001,12.007,12.977,14.076000000000001,15.327999999999999,16.765000000000001,18.425000000000001,20.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1236,-0.56840000000000002,15.328099999999999,0.087359999999999993,12.006,12.976000000000001,14.074999999999999,15.327999999999999,16.765000000000001,18.425000000000001,20.358000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1237,-0.56840000000000002,15.3277,0.087370000000000003,12.005000000000001,12.976000000000001,14.074999999999999,15.327999999999999,16.765000000000001,18.425000000000001,20.358000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1238,-0.56840000000000002,15.327299999999999,0.087389999999999995,12.004,12.975,14.074,15.327,16.765000000000001,18.425000000000001,20.359000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1239,-0.56840000000000002,15.3269,0.087410000000000002,12.003,12.974,14.074,15.327,16.765000000000001,18.425999999999998,20.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1240,-0.56840000000000002,15.326499999999999,0.087429999999999994,12.002000000000001,12.973000000000001,14.073,15.326000000000001,16.763999999999999,18.425999999999998,20.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1241,-0.56840000000000002,15.3261,0.08745,12.000999999999999,12.972,14.071999999999999,15.326000000000001,16.763999999999999,18.425999999999998,20.361999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1242,-0.56840000000000002,15.325699999999999,0.087459999999999996,12.000999999999999,12.972,14.071999999999999,15.326000000000001,16.763999999999999,18.425999999999998,20.361999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1243,-0.56840000000000002,15.325200000000001,0.087480000000000002,12,12.971,14.071,15.324999999999999,16.763999999999999,18.425999999999998,20.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1244,-0.56840000000000002,15.3248,0.087499999999999994,11.999000000000001,12.97,14.07,15.324999999999999,16.763999999999999,18.427,20.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1245,-0.56840000000000002,15.324400000000001,0.087520000000000001,11.997999999999999,12.968999999999999,14.07,15.324,16.763999999999999,18.427,20.364999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1246,-0.56840000000000002,15.324,0.087529999999999997,11.997,12.968999999999999,14.069000000000001,15.324,16.763000000000002,18.427,20.364999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1247,-0.56840000000000002,15.323600000000001,0.087550000000000003,11.996,12.968,14.069000000000001,15.324,16.763000000000002,18.427,20.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1248,-0.56840000000000002,15.3233,0.087569999999999995,11.994999999999999,12.967000000000001,14.068,15.323,16.763000000000002,18.428000000000001,20.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1249,-0.56840000000000002,15.322900000000001,0.087590000000000001,11.994,12.965999999999999,14.068,15.323,16.763000000000002,18.428000000000001,20.367999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1250,-0.56840000000000002,15.3225,0.087609999999999993,11.994,12.965,14.067,15.321999999999999,16.763000000000002,18.428000000000001,20.367999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1251,-0.56840000000000002,15.322100000000001,0.08763,11.993,12.965,14.066000000000001,15.321999999999999,16.763000000000002,18.428999999999998,20.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1252,-0.56840000000000002,15.3217,0.087639999999999996,11.992000000000001,12.964,14.066000000000001,15.321999999999999,16.763000000000002,18.428999999999998,20.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1253,-0.56840000000000002,15.321300000000001,0.087660000000000002,11.991,12.962999999999999,14.065,15.321,16.763000000000002,18.428999999999998,20.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1254,-0.56840000000000002,15.3209,0.087679999999999994,11.99,12.962,14.064,15.321,16.763000000000002,18.428999999999998,20.370999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1255,-0.56840000000000002,15.320499999999999,0.0877,11.989000000000001,12.962,14.064,15.32,16.763000000000002,18.43,20.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1256,-0.56840000000000002,15.3201,0.087720000000000006,11.988,12.961,14.063000000000001,15.32,16.763000000000002,18.43,20.373000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1257,-0.56840000000000002,15.319699999999999,0.087730000000000002,11.988,12.96,14.063000000000001,15.32,16.762,18.43,20.373000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1258,-0.56840000000000002,15.3193,0.087749999999999995,11.987,12.959,14.061999999999999,15.319000000000001,16.762,18.43,20.373999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1259,-0.56840000000000002,15.318899999999999,0.087770000000000001,11.986000000000001,12.959,14.061,15.319000000000001,16.762,18.431000000000001,20.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1260,-0.56840000000000002,15.3185,0.087790000000000007,11.984999999999999,12.958,14.061,15.318,16.762,18.431000000000001,20.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1261,-0.56840000000000002,15.318199999999999,0.087809999999999999,11.984,12.957000000000001,14.06,15.318,16.762,18.431000000000001,20.376999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1262,-0.56840000000000002,15.3178,0.087830000000000005,11.983000000000001,12.956,14.06,15.318,16.762,18.431999999999999,20.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1263,-0.56840000000000002,15.317399999999999,0.087849999999999998,11.981999999999999,12.955,14.058999999999999,15.317,16.762,18.431999999999999,20.379000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1264,-0.56840000000000002,15.317,0.087859999999999994,11.981,12.955,14.058,15.317,16.762,18.431999999999999,20.379000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1265,-0.56840000000000002,15.316599999999999,0.08788,11.98,12.954000000000001,14.058,15.317,16.762,18.431999999999999,20.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1266,-0.56840000000000002,15.3162,0.087900000000000006,11.98,12.952999999999999,14.057,15.316000000000001,16.760999999999999,18.433,20.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1267,-0.56840000000000002,15.315899999999999,0.087919999999999998,11.978999999999999,12.952999999999999,14.057,15.316000000000001,16.760999999999999,18.433,20.382000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1268,-0.56840000000000002,15.3155,0.087940000000000004,11.978,12.952,14.055999999999999,15.316000000000001,16.760999999999999,18.434000000000001,20.382999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1269,-0.56840000000000002,15.315099999999999,0.087959999999999997,11.977,12.951000000000001,14.055,15.315,16.760999999999999,18.434000000000001,20.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1270,-0.56840000000000002,15.3147,0.087980000000000003,11.976000000000001,12.95,14.055,15.315,16.760999999999999,18.434000000000001,20.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1271,-0.56840000000000002,15.314299999999999,0.087989999999999999,11.975,12.95,14.054,15.314,16.760999999999999,18.434000000000001,20.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1272,-0.56840000000000002,15.314,0.088010000000000005,11.974,12.949,14.054,15.314,16.760999999999999,18.434999999999999,20.385999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1273,-0.56840000000000002,15.313599999999999,0.088029999999999997,11.973000000000001,12.948,14.053000000000001,15.314,16.760999999999999,18.434999999999999,20.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1274,-0.56840000000000002,15.3132,0.088050000000000003,11.972,12.946999999999999,14.052,15.313000000000001,16.760999999999999,18.434999999999999,20.388000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1275,-0.56840000000000002,15.312799999999999,0.088069999999999996,11.972,12.946,14.052,15.313000000000001,16.760999999999999,18.436,20.388999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1276,-0.56840000000000002,15.3125,0.088090000000000002,11.971,12.946,14.051,15.311999999999999,16.760999999999999,18.436,20.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1277,-0.56840000000000002,15.312099999999999,0.088109999999999994,11.97,12.945,14.051,15.311999999999999,16.760999999999999,18.436,20.390999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1278,-0.56840000000000002,15.3117,0.08813,11.968999999999999,12.944000000000001,14.05,15.311999999999999,16.760999999999999,18.437000000000001,20.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1279,-0.56840000000000002,15.311400000000001,0.088139999999999996,11.968,12.944000000000001,14.05,15.311,16.760000000000002,18.437000000000001,20.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1280,-0.56840000000000002,15.311,0.088160000000000002,11.967000000000001,12.943,14.048999999999999,15.311,16.760000000000002,18.437000000000001,20.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1281,-0.56840000000000002,15.310600000000001,0.088179999999999994,11.965999999999999,12.942,14.048,15.311,16.760000000000002,18.437000000000001,20.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1282,-0.56840000000000002,15.3102,0.088200000000000001,11.965,12.941000000000001,14.048,15.31,16.760000000000002,18.437999999999999,20.395 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1283,-0.56840000000000002,15.309900000000001,0.088220000000000007,11.965,12.94,14.047000000000001,15.31,16.760000000000002,18.437999999999999,20.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1284,-0.56840000000000002,15.3095,0.088239999999999999,11.964,12.94,14.047000000000001,15.31,16.760000000000002,18.439,20.396999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1285,-0.56840000000000002,15.309100000000001,0.088260000000000005,11.962999999999999,12.939,14.045999999999999,15.308999999999999,16.760000000000002,18.439,20.396999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1286,-0.56840000000000002,15.3088,0.088279999999999997,11.962,12.938000000000001,14.045,15.308999999999999,16.760000000000002,18.439,20.398 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1287,-0.56840000000000002,15.308400000000001,0.088300000000000003,11.961,12.936999999999999,14.045,15.308,16.760000000000002,18.440000000000001,20.399000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1288,-0.56840000000000002,15.308,0.088319999999999996,11.96,12.936,14.044,15.308,16.760000000000002,18.440000000000001,20.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1289,-0.56840000000000002,15.307700000000001,0.088330000000000006,11.959,12.936,14.044,15.308,16.760000000000002,18.440000000000001,20.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1290,-0.56840000000000002,15.3073,0.088349999999999998,11.959,12.935,14.042999999999999,15.307,16.760000000000002,18.440000000000001,20.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1291,-0.56840000000000002,15.307,0.088370000000000004,11.958,12.933999999999999,14.042,15.307,16.760000000000002,18.440999999999999,20.402999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1292,-0.56840000000000002,15.3066,0.088389999999999996,11.957000000000001,12.933999999999999,14.042,15.307,16.760000000000002,18.440999999999999,20.402999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1293,-0.56840000000000002,15.3062,0.088410000000000002,11.956,12.933,14.041,15.305999999999999,16.760000000000002,18.442,20.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1294,-0.56840000000000002,15.305899999999999,0.088429999999999995,11.955,12.932,14.041,15.305999999999999,16.760000000000002,18.442,20.405000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1295,-0.56840000000000002,15.3055,0.088450000000000001,11.954000000000001,12.930999999999999,14.04,15.305999999999999,16.759,18.442,20.405999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1296,-0.56840000000000002,15.305199999999999,0.088469999999999993,11.952999999999999,12.930999999999999,14.04,15.305,16.759,18.443000000000001,20.407 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1297,-0.56840000000000002,15.3048,0.088489999999999999,11.952,12.93,14.039,15.305,16.759,18.443000000000001,20.408000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1298,-0.56840000000000002,15.304399999999999,0.088510000000000005,11.951000000000001,12.929,14.038,15.304,16.759,18.443999999999999,20.408999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1299,-0.56840000000000002,15.3041,0.088529999999999998,11.95,12.928000000000001,14.038,15.304,16.759,18.443999999999999,20.41 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1300,-0.56840000000000002,15.303699999999999,0.088550000000000004,11.949,12.927,14.037000000000001,15.304,16.759,18.443999999999999,20.411000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1301,-0.56840000000000002,15.3034,0.088569999999999996,11.949,12.927,14.037000000000001,15.303000000000001,16.759,18.445,20.411999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1302,-0.56840000000000002,15.303000000000001,0.088590000000000002,11.948,12.926,14.036,15.303000000000001,16.759,18.445,20.413 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1303,-0.56840000000000002,15.3027,0.088599999999999998,11.946999999999999,12.925000000000001,14.035,15.303000000000001,16.759,18.445,20.413 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1304,-0.56840000000000002,15.302300000000001,0.088620000000000004,11.946,12.925000000000001,14.035,15.302,16.759,18.445,20.414000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1305,-0.56840000000000002,15.302,0.088639999999999997,11.945,12.923999999999999,14.034000000000001,15.302,16.759,18.446000000000002,20.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1306,-0.56840000000000002,15.301600000000001,0.088660000000000003,11.944000000000001,12.923,14.034000000000001,15.302,16.759,18.446000000000002,20.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1307,-0.56840000000000002,15.301299999999999,0.088679999999999995,11.944000000000001,12.922000000000001,14.032999999999999,15.301,16.759,18.446999999999999,20.417000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1308,-0.56840000000000002,15.3009,0.088700000000000001,11.943,12.922000000000001,14.032,15.301,16.759,18.446999999999999,20.417999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1309,-0.56840000000000002,15.300599999999999,0.088719999999999993,11.942,12.920999999999999,14.032,15.301,16.759,18.448,20.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1310,-0.56840000000000002,15.3002,0.088739999999999999,11.941000000000001,12.92,14.031000000000001,15.3,16.759,18.448,20.420000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1311,-0.56840000000000002,15.299899999999999,0.088760000000000006,11.94,12.919,14.031000000000001,15.3,16.759,18.448,20.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1312,-0.56840000000000002,15.2996,0.088779999999999998,11.939,12.919,14.03,15.3,16.759,18.449000000000002,20.422000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1313,-0.56840000000000002,15.299200000000001,0.088800000000000004,11.938000000000001,12.917999999999999,14.03,15.298999999999999,16.759,18.449000000000002,20.422999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1314,-0.56840000000000002,15.2989,0.088819999999999996,11.936999999999999,12.917,14.029,15.298999999999999,16.759,18.45,20.423999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1315,-0.56840000000000002,15.298500000000001,0.088840000000000002,11.936,12.916,14.028,15.298,16.759,18.45,20.425000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1316,-0.56840000000000002,15.2982,0.088859999999999995,11.936,12.916,14.028,15.298,16.759,18.45,20.425999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1317,-0.56840000000000002,15.297800000000001,0.088880000000000001,11.935,12.914999999999999,14.026999999999999,15.298,16.759,18.451000000000001,20.427 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1318,-0.56840000000000002,15.297499999999999,0.088900000000000007,11.933999999999999,12.914,14.026999999999999,15.298,16.759,18.451000000000001,20.428000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1319,-0.56840000000000002,15.2972,0.088919999999999999,11.933,12.913,14.026,15.297000000000001,16.759,18.452000000000002,20.428999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1320,-0.56840000000000002,15.296799999999999,0.088940000000000005,11.932,12.912000000000001,14.026,15.297000000000001,16.759,18.452000000000002,20.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1321,-0.56840000000000002,15.2965,0.088959999999999997,11.930999999999999,12.912000000000001,14.025,15.295999999999999,16.759,18.452000000000002,20.431000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1322,-0.56840000000000002,15.296200000000001,0.088980000000000004,11.93,12.911,14.023999999999999,15.295999999999999,16.759,18.452999999999999,20.431999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1323,-0.56840000000000002,15.2958,0.088999999999999996,11.929,12.91,14.023999999999999,15.295999999999999,16.759,18.452999999999999,20.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1324,-0.56840000000000002,15.295500000000001,0.089010000000000006,11.929,12.91,14.023,15.295999999999999,16.757999999999999,18.452999999999999,20.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1325,-0.56840000000000002,15.295199999999999,0.089029999999999998,11.928000000000001,12.909000000000001,14.023,15.295,16.757999999999999,18.454000000000001,20.434000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1326,-0.56840000000000002,15.2948,0.089050000000000004,11.927,12.907999999999999,14.022,15.295,16.757999999999999,18.454000000000001,20.434999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1327,-0.56840000000000002,15.294499999999999,0.089069999999999996,11.926,12.907,14.022,15.294,16.757999999999999,18.454999999999998,20.436 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1328,-0.56840000000000002,15.2942,0.089090000000000003,11.925000000000001,12.907,14.021000000000001,15.294,16.757999999999999,18.454999999999998,20.437000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1329,-0.56840000000000002,15.293799999999999,0.089109999999999995,11.923999999999999,12.906000000000001,14.021000000000001,15.294,16.757999999999999,18.454999999999998,20.437999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1330,-0.56840000000000002,15.2935,0.089130000000000001,11.923,12.904999999999999,14.02,15.294,16.757999999999999,18.456,20.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1331,-0.56840000000000002,15.293200000000001,0.089149999999999993,11.923,12.904,14.019,15.292999999999999,16.757999999999999,18.456,20.440000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1332,-0.56840000000000002,15.292899999999999,0.089169999999999999,11.922000000000001,12.904,14.019,15.292999999999999,16.757999999999999,18.457000000000001,20.440999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1333,-0.56840000000000002,15.2925,0.089190000000000005,11.920999999999999,12.903,14.018000000000001,15.292,16.757999999999999,18.457000000000001,20.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1334,-0.56840000000000002,15.292199999999999,0.089209999999999998,11.92,12.901999999999999,14.018000000000001,15.292,16.757999999999999,18.457999999999998,20.443000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1335,-0.56840000000000002,15.2919,0.089230000000000004,11.919,12.901999999999999,14.016999999999999,15.292,16.757999999999999,18.457999999999998,20.443999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1336,-0.56840000000000002,15.291600000000001,0.089249999999999996,11.917999999999999,12.901,14.016999999999999,15.292,16.757999999999999,18.457999999999998,20.446000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1337,-0.56840000000000002,15.2913,0.089270000000000002,11.917,12.9,14.016,15.291,16.757999999999999,18.459,20.446999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1338,-0.56840000000000002,15.290900000000001,0.089289999999999994,11.916,12.898999999999999,14.015000000000001,15.291,16.757999999999999,18.459,20.446999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1339,-0.56840000000000002,15.2906,0.08931,11.916,12.898999999999999,14.015000000000001,15.291,16.757999999999999,18.46,20.449000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1340,-0.56840000000000002,15.2903,0.089330000000000007,11.914999999999999,12.898,14.013999999999999,15.29,16.757999999999999,18.46,20.45 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1341,-0.56840000000000002,15.29,0.089349999999999999,11.914,12.897,14.013999999999999,15.29,16.757999999999999,18.460999999999999,20.451000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1342,-0.56840000000000002,15.2897,0.089370000000000005,11.913,12.896000000000001,14.013,15.29,16.757999999999999,18.460999999999999,20.452000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1343,-0.56840000000000002,15.289400000000001,0.089389999999999997,11.912000000000001,12.896000000000001,14.013,15.289,16.757999999999999,18.462,20.452999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1344,-0.56840000000000002,15.289,0.089410000000000003,11.911,12.895,14.012,15.289,16.757999999999999,18.462,20.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1345,-0.56840000000000002,15.2887,0.089429999999999996,11.91,12.894,14.012,15.289,16.757999999999999,18.462,20.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1346,-0.56840000000000002,15.288399999999999,0.089450000000000002,11.91,12.893000000000001,14.010999999999999,15.288,16.757999999999999,18.463000000000001,20.456 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1347,-0.56840000000000002,15.2881,0.089469999999999994,11.909000000000001,12.893000000000001,14.01,15.288,16.757999999999999,18.463000000000001,20.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1348,-0.56840000000000002,15.287800000000001,0.08949,11.907999999999999,12.891999999999999,14.01,15.288,16.757999999999999,18.463999999999999,20.457999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1349,-0.56840000000000002,15.2875,0.089510000000000006,11.907,12.891,14.009,15.288,16.757999999999999,18.463999999999999,20.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1350,-0.56840000000000002,15.2872,0.089529999999999998,11.906000000000001,12.891,14.009,15.287000000000001,16.757999999999999,18.465,20.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1351,-0.56840000000000002,15.286899999999999,0.089550000000000005,11.904999999999999,12.89,14.007999999999999,15.287000000000001,16.759,18.465,20.460999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1352,-0.56840000000000002,15.2866,0.089569999999999997,11.904,12.888999999999999,14.007999999999999,15.287000000000001,16.759,18.466000000000001,20.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1353,-0.56840000000000002,15.286300000000001,0.089590000000000003,11.904,12.888,14.007,15.286,16.759,18.466000000000001,20.463000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1354,-0.56840000000000002,15.286,0.089609999999999995,11.903,12.888,14.007,15.286,16.759,18.466000000000001,20.463999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1355,-0.56840000000000002,15.2857,0.089630000000000001,11.901999999999999,12.887,14.006,15.286,16.759,18.466999999999999,20.465 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1356,-0.56840000000000002,15.285399999999999,0.089639999999999997,11.901,12.885999999999999,14.006,15.285,16.757999999999999,18.466999999999999,20.465 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1357,-0.56840000000000002,15.2851,0.089660000000000004,11.9,12.885999999999999,14.005000000000001,15.285,16.757999999999999,18.466999999999999,20.466999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1358,-0.56840000000000002,15.284800000000001,0.089679999999999996,11.9,12.885,14.005000000000001,15.285,16.757999999999999,18.468,20.468 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1359,-0.56840000000000002,15.2845,0.089700000000000002,11.898999999999999,12.884,14.004,15.284000000000001,16.759,18.468,20.469000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1360,-0.56840000000000002,15.2842,0.089719999999999994,11.898,12.884,14.004,15.284000000000001,16.759,18.469000000000001,20.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1361,-0.56840000000000002,15.283899999999999,0.08974,11.897,12.882999999999999,14.003,15.284000000000001,16.759,18.469000000000001,20.471 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1362,-0.56840000000000002,15.2836,0.089760000000000006,11.896000000000001,12.882,14.002000000000001,15.284000000000001,16.759,18.47,20.472000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1363,-0.56840000000000002,15.283300000000001,0.089779999999999999,11.895,12.881,14.002000000000001,15.282999999999999,16.759,18.47,20.472999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1364,-0.56840000000000002,15.282999999999999,0.089800000000000005,11.895,12.881,14.000999999999999,15.282999999999999,16.759,18.471,20.474 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1365,-0.56840000000000002,15.2827,0.089819999999999997,11.894,12.88,14.000999999999999,15.282999999999999,16.759,18.471,20.475000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1366,-0.56840000000000002,15.282400000000001,0.089840000000000003,11.893000000000001,12.879,14,15.282,16.759,18.472000000000001,20.475999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1367,-0.56840000000000002,15.2821,0.089859999999999995,11.891999999999999,12.879,14,15.282,16.759,18.472000000000001,20.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1368,-0.56840000000000002,15.2818,0.089880000000000002,11.891,12.878,13.999000000000001,15.282,16.759,18.472999999999999,20.478000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1369,-0.56840000000000002,15.281599999999999,0.089899999999999994,11.89,12.877000000000001,13.999000000000001,15.282,16.759,18.472999999999999,20.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1370,-0.56840000000000002,15.2813,0.08992,11.888999999999999,12.875999999999999,13.997999999999999,15.281000000000001,16.759,18.474,20.48 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1371,-0.56840000000000002,15.281000000000001,0.089940000000000006,11.888999999999999,12.875999999999999,13.997999999999999,15.281000000000001,16.759,18.474,20.481000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1372,-0.56840000000000002,15.2807,0.089959999999999998,11.888,12.875,13.997,15.281000000000001,16.759,18.474,20.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1373,-0.56840000000000002,15.2804,0.089980000000000004,11.887,12.874000000000001,13.997,15.28,16.759,18.475000000000001,20.483000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1374,-0.56840000000000002,15.280099999999999,0.09,11.885999999999999,12.874000000000001,13.996,15.28,16.759,18.475000000000001,20.484000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1375,-0.56840000000000002,15.2799,0.090020000000000003,11.885,12.872999999999999,13.996,15.28,16.759,18.475999999999999,20.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1376,-0.56840000000000002,15.2796,0.090039999999999995,11.884,12.872,13.994999999999999,15.28,16.759,18.475999999999999,20.486999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1377,-0.56840000000000002,15.279299999999999,0.090060000000000001,11.884,12.871,13.994999999999999,15.279,16.759,18.477,20.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1378,-0.56840000000000002,15.279,0.090079999999999993,11.882999999999999,12.871,13.994,15.279,16.759,18.477,20.489000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1379,-0.56840000000000002,15.2788,0.0901,11.882,12.87,13.994,15.279,16.759,18.478000000000002,20.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1380,-0.56840000000000002,15.278499999999999,0.090120000000000006,11.881,12.869,13.993,15.278,16.759,18.478000000000002,20.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1381,-0.56840000000000002,15.2782,0.090130000000000002,11.881,12.869,13.993,15.278,16.759,18.478000000000002,20.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1382,-0.56840000000000002,15.277900000000001,0.090149999999999994,11.88,12.868,13.992000000000001,15.278,16.759,18.478999999999999,20.492000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1383,-0.56840000000000002,15.277699999999999,0.09017,11.879,12.868,13.992000000000001,15.278,16.759,18.478999999999999,20.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1384,-0.56840000000000002,15.2774,0.090190000000000006,11.878,12.867000000000001,13.991,15.276999999999999,16.759,18.48,20.495000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1385,-0.56840000000000002,15.277100000000001,0.090209999999999999,11.877000000000001,12.866,13.991,15.276999999999999,16.759,18.48,20.495999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1386,-0.56840000000000002,15.276899999999999,0.090230000000000005,11.875999999999999,12.865,13.99,15.276999999999999,16.760000000000002,18.481000000000002,20.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1387,-0.56840000000000002,15.2766,0.090249999999999997,11.875999999999999,12.865,13.99,15.276999999999999,16.760000000000002,18.481000000000002,20.498000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1388,-0.56840000000000002,15.276300000000001,0.090270000000000003,11.875,12.864000000000001,13.989000000000001,15.276,16.760000000000002,18.481999999999999,20.498999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1389,-0.56840000000000002,15.2761,0.090289999999999995,11.874000000000001,12.863,13.989000000000001,15.276,16.760000000000002,18.483000000000001,20.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1390,-0.56840000000000002,15.2758,0.090310000000000001,11.872999999999999,12.863,13.988,15.276,16.760000000000002,18.483000000000001,20.501000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1391,-0.56840000000000002,15.275499999999999,0.090329999999999994,11.872,12.862,13.987,15.276,16.760000000000002,18.483000000000001,20.501999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1392,-0.56840000000000002,15.2753,0.09035,11.872,12.861000000000001,13.987,15.275,16.760000000000002,18.484000000000002,20.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1393,-0.56840000000000002,15.275,0.090370000000000006,11.871,12.861000000000001,13.986000000000001,15.275,16.760000000000002,18.484000000000002,20.504999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1394,-0.56840000000000002,15.274800000000001,0.090389999999999998,11.87,12.86,13.986000000000001,15.275,16.760000000000002,18.484999999999999,20.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1395,-0.56840000000000002,15.2745,0.090410000000000004,11.869,12.859,13.986000000000001,15.273999999999999,16.760000000000002,18.486000000000001,20.507000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1396,-0.56840000000000002,15.2742,0.090429999999999996,11.868,12.859,13.984999999999999,15.273999999999999,16.760000000000002,18.486000000000001,20.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1397,-0.56840000000000002,15.273999999999999,0.090450000000000003,11.867000000000001,12.858000000000001,13.984999999999999,15.273999999999999,16.760000000000002,18.486999999999998,20.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1398,-0.56840000000000002,15.2737,0.090469999999999995,11.867000000000001,12.856999999999999,13.984,15.273999999999999,16.760000000000002,18.486999999999998,20.51 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1399,-0.56840000000000002,15.2735,0.090490000000000001,11.866,12.856999999999999,13.984,15.273999999999999,16.760000000000002,18.488,20.510999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1400,-0.56840000000000002,15.273199999999999,0.090499999999999997,11.865,12.856,13.983000000000001,15.273,16.760000000000002,18.488,20.512 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1401,-0.56840000000000002,15.273,0.090520000000000003,11.864000000000001,12.855,13.983000000000001,15.273,16.760000000000002,18.488,20.513000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1402,-0.56840000000000002,15.2727,0.090539999999999995,11.864000000000001,12.855,13.981999999999999,15.273,16.760000000000002,18.489000000000001,20.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1403,-0.56840000000000002,15.272500000000001,0.090560000000000002,11.863,12.853999999999999,13.981999999999999,15.272,16.760999999999999,18.489000000000001,20.515000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1404,-0.56840000000000002,15.2722,0.090579999999999994,11.862,12.853,13.981,15.272,16.760999999999999,18.489999999999998,20.515999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1405,-0.56840000000000002,15.272,0.0906,11.861000000000001,12.853,13.981,15.272,16.760999999999999,18.489999999999998,20.516999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1406,-0.56840000000000002,15.271699999999999,0.090620000000000006,11.86,12.852,13.98,15.272,16.760999999999999,18.491,20.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1407,-0.56840000000000002,15.2715,0.090639999999999998,11.86,12.851000000000001,13.98,15.272,16.760999999999999,18.491,20.518999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1408,-0.56840000000000002,15.2713,0.090660000000000004,11.859,12.851000000000001,13.978999999999999,15.271000000000001,16.760999999999999,18.492000000000001,20.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1409,-0.56840000000000002,15.271000000000001,0.090679999999999997,11.858000000000001,12.85,13.978999999999999,15.271000000000001,16.760999999999999,18.492000000000001,20.521999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1410,-0.56840000000000002,15.270799999999999,0.090700000000000003,11.856999999999999,12.849,13.978,15.271000000000001,16.760999999999999,18.492999999999999,20.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1411,-0.56840000000000002,15.2705,0.090719999999999995,11.856,12.849,13.978,15.27,16.760999999999999,18.492999999999999,20.524000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1412,-0.56840000000000002,15.270300000000001,0.090740000000000001,11.856,12.848000000000001,13.977,15.27,16.760999999999999,18.494,20.524999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1413,-0.56840000000000002,15.270099999999999,0.090759999999999993,11.855,12.847,13.977,15.27,16.760999999999999,18.495000000000001,20.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1414,-0.56840000000000002,15.2698,0.09078,11.853999999999999,12.847,13.976000000000001,15.27,16.760999999999999,18.495000000000001,20.527000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1415,-0.56840000000000002,15.269600000000001,0.090800000000000006,11.853,12.846,13.976000000000001,15.27,16.762,18.495999999999999,20.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1416,-0.56840000000000002,15.269399999999999,0.090810000000000002,11.853,12.846,13.976000000000001,15.269,16.762,18.495999999999999,20.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1417,-0.56840000000000002,15.2691,0.090829999999999994,11.852,12.845000000000001,13.975,15.269,16.762,18.495999999999999,20.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1418,-0.56840000000000002,15.2689,0.09085,11.851000000000001,12.843999999999999,13.975,15.269,16.762,18.497,20.530999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1419,-0.56840000000000002,15.268700000000001,0.090870000000000006,11.85,12.843999999999999,13.974,15.269,16.762,18.497,20.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1420,-0.56840000000000002,15.2685,0.090889999999999999,11.85,12.843,13.974,15.268000000000001,16.762,18.498000000000001,20.533999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1421,-0.56840000000000002,15.2682,0.090910000000000005,11.849,12.842000000000001,13.973000000000001,15.268000000000001,16.762,18.498000000000001,20.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1422,-0.56840000000000002,15.268000000000001,0.090929999999999997,11.848000000000001,12.842000000000001,13.973000000000001,15.268000000000001,16.762,18.498999999999999,20.536000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1423,-0.56840000000000002,15.267799999999999,0.090950000000000003,11.847,12.840999999999999,13.972,15.268000000000001,16.762,18.5,20.536999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1424,-0.56840000000000002,15.2676,0.090969999999999995,11.846,12.84,13.972,15.268000000000001,16.762,18.5,20.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1425,-0.56840000000000002,15.267300000000001,0.090990000000000001,11.846,12.84,13.971,15.266999999999999,16.762,18.501000000000001,20.539000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1426,-0.56840000000000002,15.267099999999999,0.091009999999999994,11.845000000000001,12.839,13.971,15.266999999999999,16.763000000000002,18.501000000000001,20.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1427,-0.56840000000000002,15.2669,0.09103,11.843999999999999,12.837999999999999,13.97,15.266999999999999,16.763000000000002,18.501999999999999,20.542000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1428,-0.56840000000000002,15.2667,0.091050000000000006,11.843,12.837999999999999,13.97,15.266999999999999,16.763000000000002,18.501999999999999,20.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1429,-0.56840000000000002,15.266500000000001,0.091069999999999998,11.843,12.837,13.968999999999999,15.266,16.763000000000002,18.503,20.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1430,-0.56840000000000002,15.2662,0.091090000000000004,11.842000000000001,12.836,13.968999999999999,15.266,16.763000000000002,18.504000000000001,20.545000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1431,-0.56840000000000002,15.266,0.0911,11.840999999999999,12.836,13.968999999999999,15.266,16.763000000000002,18.504000000000001,20.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1432,-0.56840000000000002,15.2658,0.091120000000000007,11.84,12.835000000000001,13.968,15.266,16.763000000000002,18.504000000000001,20.547000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1433,-0.56840000000000002,15.265599999999999,0.091139999999999999,11.84,12.835000000000001,13.968,15.266,16.763000000000002,18.504999999999999,20.547999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1434,-0.56840000000000002,15.2654,0.091160000000000005,11.839,12.834,13.967000000000001,15.265000000000001,16.763000000000002,18.504999999999999,20.548999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1435,-0.56840000000000002,15.2652,0.091179999999999997,11.837999999999999,12.834,13.967000000000001,15.265000000000001,16.763000000000002,18.506,20.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1436,-0.56840000000000002,15.265000000000001,0.091200000000000003,11.837,12.833,13.965999999999999,15.265000000000001,16.763999999999999,18.507000000000001,20.552 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1437,-0.56840000000000002,15.264799999999999,0.091219999999999996,11.837,12.832000000000001,13.965999999999999,15.265000000000001,16.763999999999999,18.507000000000001,20.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1438,-0.56840000000000002,15.2646,0.091240000000000002,11.836,12.832000000000001,13.965,15.265000000000001,16.763999999999999,18.507999999999999,20.553999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1439,-0.56840000000000002,15.2644,0.091259999999999994,11.835000000000001,12.831,13.965,15.263999999999999,16.763999999999999,18.507999999999999,20.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1440,-0.56840000000000002,15.264200000000001,0.09128,11.834,12.83,13.965,15.263999999999999,16.763999999999999,18.509,20.556000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1441,-0.56840000000000002,15.263999999999999,0.091300000000000006,11.834,12.83,13.964,15.263999999999999,16.763999999999999,18.510000000000002,20.558 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1442,-0.56840000000000002,15.2638,0.091319999999999998,11.833,12.829000000000001,13.964,15.263999999999999,16.763999999999999,18.510000000000002,20.559000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1443,-0.56840000000000002,15.2636,0.091340000000000005,11.832000000000001,12.827999999999999,13.962999999999999,15.263999999999999,16.765000000000001,18.510999999999999,20.56 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1444,-0.56840000000000002,15.263400000000001,0.091359999999999997,11.831,12.827999999999999,13.962999999999999,15.263,16.765000000000001,18.510999999999999,20.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1445,-0.56840000000000002,15.263199999999999,0.091380000000000003,11.83,12.827,13.962,15.263,16.765000000000001,18.512,20.562000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1446,-0.56840000000000002,15.263,0.091389999999999999,11.83,12.827,13.962,15.263,16.765000000000001,18.512,20.562999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1447,-0.56840000000000002,15.2628,0.091410000000000005,11.829000000000001,12.826000000000001,13.962,15.263,16.765000000000001,18.513000000000002,20.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1448,-0.56840000000000002,15.262600000000001,0.091429999999999997,11.827999999999999,12.826000000000001,13.961,15.263,16.765000000000001,18.513000000000002,20.565000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1449,-0.56840000000000002,15.2624,0.091450000000000004,11.827999999999999,12.824999999999999,13.961,15.262,16.765000000000001,18.513999999999999,20.565999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1450,-0.56840000000000002,15.2622,0.091469999999999996,11.827,12.824,13.96,15.262,16.765000000000001,18.513999999999999,20.568000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1451,-0.56840000000000002,15.262,0.091490000000000002,11.826000000000001,12.824,13.96,15.262,16.765000000000001,18.515000000000001,20.568999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1452,-0.56840000000000002,15.261900000000001,0.091509999999999994,11.824999999999999,12.823,13.959,15.262,16.765999999999998,18.515999999999998,20.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1453,-0.56840000000000002,15.261699999999999,0.09153,11.824999999999999,12.821999999999999,13.959,15.262,16.765999999999998,18.515999999999998,20.571000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1454,-0.56840000000000002,15.2615,0.091550000000000006,11.824,12.821999999999999,13.958,15.262,16.765999999999998,18.516999999999999,20.571999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1455,-0.56840000000000002,15.2613,0.091569999999999999,11.823,12.821,13.958,15.260999999999999,16.765999999999998,18.516999999999999,20.574000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1456,-0.56840000000000002,15.261100000000001,0.091590000000000005,11.821999999999999,12.821,13.958,15.260999999999999,16.765999999999998,18.518000000000001,20.574999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1457,-0.56840000000000002,15.260899999999999,0.091609999999999997,11.821999999999999,12.82,13.957000000000001,15.260999999999999,16.765999999999998,18.518999999999998,20.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1458,-0.56840000000000002,15.2608,0.091630000000000003,11.821,12.819000000000001,13.957000000000001,15.260999999999999,16.766999999999999,18.518999999999998,20.577000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1459,-0.56840000000000002,15.2606,0.091649999999999995,11.82,12.819000000000001,13.956,15.260999999999999,16.766999999999999,18.52,20.579000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1460,-0.56840000000000002,15.260400000000001,0.091670000000000001,11.819000000000001,12.818,13.956,15.26,16.766999999999999,18.52,20.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1461,-0.56840000000000002,15.260199999999999,0.091679999999999998,11.819000000000001,12.818,13.956,15.26,16.766999999999999,18.521000000000001,20.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1462,-0.56840000000000002,15.2601,0.091700000000000004,11.818,12.817,13.955,15.26,16.766999999999999,18.521000000000001,20.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1463,-0.56840000000000002,15.2599,0.091719999999999996,11.817,12.817,13.955,15.26,16.766999999999999,18.521999999999998,20.582999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1464,-0.56840000000000002,15.2597,0.091740000000000002,11.817,12.816000000000001,13.954000000000001,15.26,16.766999999999999,18.521999999999998,20.584 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1465,-0.56840000000000002,15.259600000000001,0.091759999999999994,11.816000000000001,12.815,13.954000000000001,15.26,16.768000000000001,18.523,20.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1466,-0.56840000000000002,15.259399999999999,0.09178,11.815,12.815,13.952999999999999,15.259,16.768000000000001,18.524000000000001,20.585999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1467,-0.56840000000000002,15.2592,0.091800000000000007,11.814,12.814,13.952999999999999,15.259,16.768000000000001,18.524000000000001,20.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1468,-0.56840000000000002,15.2591,0.091819999999999999,11.814,12.814,13.952999999999999,15.259,16.768000000000001,18.524999999999999,20.588999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1469,-0.56840000000000002,15.258900000000001,0.091840000000000005,11.813000000000001,12.813000000000001,13.952,15.259,16.768000000000001,18.526,20.59 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1470,-0.56840000000000002,15.258699999999999,0.091859999999999997,11.811999999999999,12.811999999999999,13.952,15.259,16.768000000000001,18.526,20.591000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1471,-0.56840000000000002,15.258599999999999,0.091880000000000003,11.811999999999999,12.811999999999999,13.951000000000001,15.259,16.768999999999998,18.527000000000001,20.593 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1472,-0.56840000000000002,15.2584,0.091899999999999996,11.811,12.811,13.951000000000001,15.257999999999999,16.768999999999998,18.527999999999999,20.594000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1473,-0.56840000000000002,15.2583,0.091920000000000002,11.81,12.811,13.951000000000001,15.257999999999999,16.768999999999998,18.527999999999999,20.594999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1474,-0.56840000000000002,15.258100000000001,0.091939999999999994,11.808999999999999,12.81,13.95,15.257999999999999,16.768999999999998,18.529,20.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1475,-0.56840000000000002,15.257899999999999,0.09196,11.808999999999999,12.808999999999999,13.95,15.257999999999999,16.768999999999998,18.529,20.597999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1476,-0.56840000000000002,15.2578,0.091980000000000006,11.808,12.808999999999999,13.949,15.257999999999999,16.77,18.53,20.599 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1477,-0.56840000000000002,15.2576,0.091999999999999998,11.807,12.808,13.949,15.257999999999999,16.77,18.530999999999999,20.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1478,-0.56840000000000002,15.2575,0.092009999999999995,11.807,12.808,13.949,15.257999999999999,16.77,18.530999999999999,20.600999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1479,-0.56840000000000002,15.257300000000001,0.092030000000000001,11.805999999999999,12.807,13.948,15.257,16.77,18.532,20.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1480,-0.56840000000000002,15.257199999999999,0.092050000000000007,11.805,12.807,13.948,15.257,16.77,18.532,20.603000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1481,-0.56840000000000002,15.257,0.092069999999999999,11.804,12.805999999999999,13.946999999999999,15.257,16.77,18.533000000000001,20.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1482,-0.56840000000000002,15.2569,0.092090000000000005,11.804,12.805,13.946999999999999,15.257,16.77,18.533999999999999,20.606000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1483,-0.56840000000000002,15.2568,0.092109999999999997,11.803000000000001,12.805,13.946999999999999,15.257,16.771000000000001,18.533999999999999,20.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1484,-0.56840000000000002,15.256600000000001,0.092130000000000004,11.802,12.804,13.946,15.257,16.771000000000001,18.535,20.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1485,-0.56840000000000002,15.256500000000001,0.092149999999999996,11.802,12.804,13.946,15.256,16.771000000000001,18.536000000000001,20.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1486,-0.56840000000000002,15.2563,0.092170000000000002,11.801,12.803000000000001,13.945,15.256,16.771000000000001,18.536000000000001,20.611000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1487,-0.56840000000000002,15.2562,0.092189999999999994,11.8,12.803000000000001,13.945,15.256,16.771000000000001,18.536999999999999,20.611999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1488,-0.56840000000000002,15.2561,0.09221,11.798999999999999,12.802,13.945,15.256,16.771999999999998,18.538,20.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1489,-0.56840000000000002,15.2559,0.092230000000000006,11.798999999999999,12.801,13.944000000000001,15.256,16.771999999999998,18.538,20.614999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1490,-0.56840000000000002,15.255800000000001,0.092249999999999999,11.798,12.801,13.944000000000001,15.256,16.771999999999998,18.539000000000001,20.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1491,-0.56840000000000002,15.255699999999999,0.092270000000000005,11.797000000000001,12.8,13.944000000000001,15.256,16.771999999999998,18.54,20.617000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1492,-0.56840000000000002,15.2555,0.092289999999999997,11.797000000000001,12.8,13.943,15.256,16.771999999999998,18.54,20.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1493,-0.56840000000000002,15.2554,0.092310000000000003,11.795999999999999,12.798999999999999,13.943,15.255000000000001,16.773,18.541,20.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1494,-0.56840000000000002,15.2553,0.092319999999999999,11.795999999999999,12.798999999999999,13.943,15.255000000000001,16.773,18.541,20.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1495,-0.56840000000000002,15.255100000000001,0.092340000000000005,11.795,12.798,13.942,15.255000000000001,16.773,18.542000000000002,20.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1496,-0.56840000000000002,15.255000000000001,0.092359999999999998,11.794,12.798,13.942,15.255000000000001,16.773,18.542000000000002,20.623000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1497,-0.56840000000000002,15.254899999999999,0.092380000000000004,11.792999999999999,12.797000000000001,13.941000000000001,15.255000000000001,16.773,18.542999999999999,20.623999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1498,-0.56840000000000002,15.254799999999999,0.092399999999999996,11.792999999999999,12.795999999999999,13.941000000000001,15.255000000000001,16.774000000000001,18.544,20.626000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1499,-0.56840000000000002,15.2547,0.092420000000000002,11.792,12.795999999999999,13.941000000000001,15.255000000000001,16.774000000000001,18.545000000000002,20.626999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1500,-0.56840000000000002,15.2545,0.092439999999999994,11.791,12.795,13.94,15.254,16.774000000000001,18.545000000000002,20.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1501,-0.56840000000000002,15.2544,0.092460000000000001,11.791,12.795,13.94,15.254,16.774000000000001,18.545999999999999,20.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1502,-0.56840000000000002,15.254300000000001,0.092480000000000007,11.79,12.794,13.94,15.254,16.774999999999999,18.547000000000001,20.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1503,-0.56840000000000002,15.254200000000001,0.092499999999999999,11.789,12.794,13.939,15.254,16.774999999999999,18.547000000000001,20.632000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1504,-0.56840000000000002,15.254099999999999,0.092520000000000005,11.788,12.792999999999999,13.939,15.254,16.774999999999999,18.547999999999998,20.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1505,-0.56840000000000002,15.254,0.092539999999999997,11.788,12.792999999999999,13.938000000000001,15.254,16.774999999999999,18.548999999999999,20.635000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1506,-0.56840000000000002,15.2538,0.092560000000000003,11.787000000000001,12.792,13.938000000000001,15.254,16.774999999999999,18.548999999999999,20.635999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1507,-0.56840000000000002,15.2537,0.092579999999999996,11.786,12.791,13.938000000000001,15.254,16.776,18.55,20.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1508,-0.56840000000000002,15.2536,0.092600000000000002,11.786,12.791,13.936999999999999,15.254,16.776,18.550999999999998,20.638999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1509,-0.56840000000000002,15.253500000000001,0.092619999999999994,11.785,12.79,13.936999999999999,15.254,16.776,18.550999999999998,20.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1510,-0.56840000000000002,15.253399999999999,0.092630000000000004,11.785,12.79,13.936999999999999,15.253,16.776,18.552,20.640999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1511,-0.56840000000000002,15.253299999999999,0.092649999999999996,11.784000000000001,12.789,13.936,15.253,16.776,18.552,20.641999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1512,-0.56840000000000002,15.2532,0.092670000000000002,11.782999999999999,12.789,13.936,15.253,16.777000000000001,18.553000000000001,20.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1513,-0.56840000000000002,15.2531,0.092689999999999995,11.782999999999999,12.788,13.936,15.253,16.777000000000001,18.553999999999998,20.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1514,-0.56840000000000002,15.253,0.092710000000000001,11.782,12.788,13.935,15.253,16.777000000000001,18.555,20.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1515,-0.56840000000000002,15.2529,0.092730000000000007,11.781000000000001,12.787000000000001,13.935,15.253,16.777000000000001,18.555,20.646999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1516,-0.56840000000000002,15.252800000000001,0.092749999999999999,11.78,12.787000000000001,13.935,15.253,16.777999999999999,18.556000000000001,20.649000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1517,-0.56840000000000002,15.252700000000001,0.092770000000000005,11.78,12.786,13.933999999999999,15.253,16.777999999999999,18.556999999999999,20.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1518,-0.56840000000000002,15.252599999999999,0.092789999999999997,11.779,12.786,13.933999999999999,15.253,16.777999999999999,18.556999999999999,20.651 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1519,-0.56840000000000002,15.2525,0.092810000000000004,11.778,12.785,13.933999999999999,15.252000000000001,16.777999999999999,18.558,20.652999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1520,-0.56840000000000002,15.2525,0.092829999999999996,11.778,12.785,13.933,15.252000000000001,16.779,18.559000000000001,20.654 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1521,-0.56840000000000002,15.2524,0.092850000000000002,11.776999999999999,12.784000000000001,13.933,15.252000000000001,16.779,18.559999999999999,20.655999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1522,-0.56840000000000002,15.2523,0.092869999999999994,11.776,12.784000000000001,13.933,15.252000000000001,16.779,18.559999999999999,20.657 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1523,-0.56840000000000002,15.2522,0.09289,11.776,12.782999999999999,13.932,15.252000000000001,16.779,18.561,20.658000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1524,-0.56840000000000002,15.2521,0.092910000000000006,11.775,12.782,13.932,15.252000000000001,16.78,18.562000000000001,20.66 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1525,-0.56840000000000002,15.252000000000001,0.092920000000000003,11.775,12.782,13.932,15.252000000000001,16.78,18.562000000000001,20.66 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1526,-0.56840000000000002,15.251899999999999,0.092939999999999995,11.773999999999999,12.782,13.930999999999999,15.252000000000001,16.78,18.562999999999999,20.661000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1527,-0.56840000000000002,15.251899999999999,0.092960000000000001,11.773,12.781000000000001,13.930999999999999,15.252000000000001,16.78,18.564,20.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1528,-0.56840000000000002,15.251799999999999,0.092979999999999993,11.773,12.781000000000001,13.930999999999999,15.252000000000001,16.780999999999999,18.564,20.664000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1529,-0.56840000000000002,15.2517,0.092999999999999999,11.772,12.78,13.93,15.252000000000001,16.780999999999999,18.565000000000001,20.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1530,-0.56840000000000002,15.2516,0.093020000000000005,11.771000000000001,12.779,13.93,15.252000000000001,16.780999999999999,18.565999999999999,20.667000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1531,-0.56840000000000002,15.2515,0.093039999999999998,11.771000000000001,12.779,13.93,15.252000000000001,16.780999999999999,18.565999999999999,20.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1532,-0.56840000000000002,15.2515,0.093060000000000004,11.77,12.778,13.929,15.252000000000001,16.782,18.567,20.67 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1533,-0.56840000000000002,15.2514,0.093079999999999996,11.769,12.778,13.929,15.250999999999999,16.782,18.568000000000001,20.670999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1534,-0.56840000000000002,15.251300000000001,0.093100000000000002,11.769,12.776999999999999,13.929,15.250999999999999,16.782,18.568999999999999,20.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1535,-0.56840000000000002,15.251300000000001,0.093119999999999994,11.768000000000001,12.776999999999999,13.928000000000001,15.250999999999999,16.783000000000001,18.568999999999999,20.673999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1536,-0.56840000000000002,15.251200000000001,0.093140000000000001,11.766999999999999,12.776,13.928000000000001,15.250999999999999,16.783000000000001,18.57,20.675000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1537,-0.56840000000000002,15.251099999999999,0.093160000000000007,11.766999999999999,12.776,13.928000000000001,15.250999999999999,16.783000000000001,18.571000000000002,20.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1538,-0.56840000000000002,15.251099999999999,0.093179999999999999,11.766,12.775,13.927,15.250999999999999,16.783000000000001,18.571999999999999,20.678000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1539,-0.56840000000000002,15.250999999999999,0.093200000000000005,11.765000000000001,12.775,13.927,15.250999999999999,16.783999999999999,18.571999999999999,20.678999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1540,-0.56840000000000002,15.2509,0.093210000000000001,11.765000000000001,12.773999999999999,13.927,15.250999999999999,16.783999999999999,18.573,20.68 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1541,-0.56840000000000002,15.2509,0.093229999999999993,11.763999999999999,12.773999999999999,13.927,15.250999999999999,16.783999999999999,18.574000000000002,20.681000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1542,-0.56840000000000002,15.2508,0.09325,11.763999999999999,12.773,13.926,15.250999999999999,16.783999999999999,18.574000000000002,20.683 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1543,-0.56840000000000002,15.2508,0.093270000000000006,11.763,12.773,13.926,15.250999999999999,16.785,18.574999999999999,20.684000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1544,-0.56840000000000002,15.2507,0.093289999999999998,11.762,12.772,13.926,15.250999999999999,16.785,18.576000000000001,20.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1545,-0.56840000000000002,15.2507,0.093310000000000004,11.762,12.772,13.925000000000001,15.250999999999999,16.785,18.577000000000002,20.687000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1546,-0.56840000000000002,15.2506,0.093329999999999996,11.760999999999999,12.771000000000001,13.925000000000001,15.250999999999999,16.786000000000001,18.577000000000002,20.687999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1547,-0.56840000000000002,15.2506,0.093350000000000002,11.76,12.771000000000001,13.925000000000001,15.250999999999999,16.786000000000001,18.577999999999999,20.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1548,-0.56840000000000002,15.250500000000001,0.093369999999999995,11.76,12.77,13.923999999999999,15.25,16.786000000000001,18.579000000000001,20.690999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1549,-0.56840000000000002,15.250500000000001,0.093390000000000001,11.759,12.77,13.923999999999999,15.25,16.786000000000001,18.579999999999998,20.693000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1550,-0.56840000000000002,15.250400000000001,0.093410000000000007,11.757999999999999,12.769,13.923999999999999,15.25,16.786999999999999,18.579999999999998,20.693999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1551,-0.56840000000000002,15.250400000000001,0.093429999999999999,11.757999999999999,12.769,13.923,15.25,16.786999999999999,18.581,20.696000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1552,-0.56840000000000002,15.250299999999999,0.093450000000000005,11.757,12.768000000000001,13.923,15.25,16.786999999999999,18.582000000000001,20.696999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1553,-0.56840000000000002,15.250299999999999,0.093460000000000001,11.757,12.768000000000001,13.923,15.25,16.786999999999999,18.582000000000001,20.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1554,-0.56840000000000002,15.2502,0.093479999999999994,11.756,12.768000000000001,13.923,15.25,16.788,18.582999999999998,20.699000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1555,-0.56840000000000002,15.2502,0.0935,11.756,12.766999999999999,13.922000000000001,15.25,16.788,18.584,20.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1556,-0.56840000000000002,15.2502,0.093520000000000006,11.755000000000001,12.766999999999999,13.922000000000001,15.25,16.788,18.585000000000001,20.702000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1557,-0.56840000000000002,15.2501,0.093539999999999998,11.754,12.766,13.922000000000001,15.25,16.789000000000001,18.585000000000001,20.702999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1558,-0.56840000000000002,15.2501,0.093560000000000004,11.754,12.766,13.920999999999999,15.25,16.789000000000001,18.585999999999999,20.704999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1559,-0.56840000000000002,15.25,0.093579999999999997,11.753,12.765000000000001,13.920999999999999,15.25,16.789000000000001,18.587,20.706 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1560,-0.56840000000000002,15.25,0.093600000000000003,11.752000000000001,12.765000000000001,13.920999999999999,15.25,16.79,18.588000000000001,20.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1561,-0.56840000000000002,15.25,0.093619999999999995,11.752000000000001,12.763999999999999,13.920999999999999,15.25,16.79,18.588999999999999,20.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1562,-0.56840000000000002,15.25,0.093640000000000001,11.750999999999999,12.763999999999999,13.92,15.25,16.79,18.588999999999999,20.710999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1563,-0.56840000000000002,15.2499,0.093659999999999993,11.75,12.763,13.92,15.25,16.791,18.59,20.712 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1564,-0.56840000000000002,15.2499,0.093679999999999999,11.75,12.763,13.92,15.25,16.791,18.591000000000001,20.713000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1565,-0.56840000000000002,15.2499,0.093689999999999996,11.75,12.763,13.92,15.25,16.791,18.591000000000001,20.713999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1566,-0.56840000000000002,15.2498,0.093710000000000002,11.749000000000001,12.762,13.919,15.25,16.791,18.591999999999999,20.715 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1567,-0.56840000000000002,15.2498,0.093729999999999994,11.747999999999999,12.762,13.919,15.25,16.792000000000002,18.593,20.716999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1568,-0.56840000000000002,15.2498,0.09375,11.747999999999999,12.760999999999999,13.919,15.25,16.792000000000002,18.594000000000001,20.718 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1569,-0.56840000000000002,15.2498,0.093770000000000006,11.747,12.760999999999999,13.917999999999999,15.25,16.792000000000002,18.594999999999999,20.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1570,-0.56840000000000002,15.2498,0.093789999999999998,11.746,12.76,13.917999999999999,15.25,16.792999999999999,18.594999999999999,20.721 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1571,-0.56840000000000002,15.249700000000001,0.093810000000000004,11.746,12.76,13.917999999999999,15.25,16.792999999999999,18.596,20.722999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1572,-0.56840000000000002,15.249700000000001,0.093829999999999997,11.744999999999999,12.759,13.917,15.25,16.792999999999999,18.597000000000001,20.724 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1573,-0.56840000000000002,15.249700000000001,0.093850000000000003,11.744999999999999,12.759,13.917,15.25,16.794,18.597999999999999,20.725999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1574,-0.56840000000000002,15.249700000000001,0.093869999999999995,11.744,12.757999999999999,13.917,15.25,16.794,18.599,20.727 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1575,-0.56840000000000002,15.249700000000001,0.093880000000000005,11.744,12.757999999999999,13.917,15.25,16.794,18.599,20.728000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1576,-0.56840000000000002,15.249700000000001,0.093899999999999997,11.743,12.757999999999999,13.917,15.25,16.795000000000002,18.600000000000001,20.728999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1577,-0.56840000000000002,15.249700000000001,0.093920000000000003,11.742000000000001,12.757,13.916,15.25,16.795000000000002,18.600999999999999,20.731000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1578,-0.56840000000000002,15.249700000000001,0.093939999999999996,11.742000000000001,12.757,13.916,15.25,16.795000000000002,18.602,20.731999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1579,-0.56840000000000002,15.249700000000001,0.093960000000000002,11.741,12.756,13.916,15.25,16.795999999999999,18.602,20.734000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1580,-0.56840000000000002,15.249700000000001,0.093979999999999994,11.741,12.756,13.916,15.25,16.795999999999999,18.603000000000002,20.734999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1581,-0.56840000000000002,15.249599999999999,0.094,11.74,12.755000000000001,13.914999999999999,15.25,16.795999999999999,18.603999999999999,20.736999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1582,-0.56840000000000002,15.249599999999999,0.094020000000000006,11.739000000000001,12.755000000000001,13.914999999999999,15.25,16.797000000000001,18.605,20.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1583,-0.56840000000000002,15.249599999999999,0.094039999999999999,11.739000000000001,12.754,13.914999999999999,15.25,16.797000000000001,18.606000000000002,20.74 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1584,-0.56840000000000002,15.249599999999999,0.094060000000000005,11.738,12.754,13.914,15.25,16.797000000000001,18.606000000000002,20.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1585,-0.56840000000000002,15.249599999999999,0.094070000000000001,11.738,12.754,13.914,15.25,16.797999999999998,18.606999999999999,20.742000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1586,-0.56840000000000002,15.249700000000001,0.094089999999999993,11.737,12.753,13.914,15.25,16.797999999999998,18.608000000000001,20.742999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1587,-0.56840000000000002,15.249700000000001,0.094109999999999999,11.737,12.753,13.914,15.25,16.797999999999998,18.609000000000002,20.745000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1588,-0.56840000000000002,15.249700000000001,0.094130000000000005,11.736000000000001,12.752000000000001,13.914,15.25,16.798999999999999,18.61,20.745999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1589,-0.56840000000000002,15.249700000000001,0.094149999999999998,11.734999999999999,12.752000000000001,13.913,15.25,16.798999999999999,18.61,20.748000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1590,-0.56840000000000002,15.249700000000001,0.094170000000000004,11.734999999999999,12.750999999999999,13.913,15.25,16.798999999999999,18.611000000000001,20.748999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1591,-0.56840000000000002,15.249700000000001,0.094189999999999996,11.734,12.750999999999999,13.913,15.25,16.8,18.611999999999998,20.751000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1592,-0.56840000000000002,15.249700000000001,0.094210000000000002,11.734,12.75,13.912000000000001,15.25,16.8,18.613,20.751999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1593,-0.56840000000000002,15.249700000000001,0.094219999999999998,11.733000000000001,12.75,13.912000000000001,15.25,16.8,18.613,20.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1594,-0.56840000000000002,15.249700000000001,0.094240000000000004,11.733000000000001,12.75,13.912000000000001,15.25,16.800999999999998,18.614000000000001,20.754999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1595,-0.56840000000000002,15.249700000000001,0.094259999999999997,11.731999999999999,12.749000000000001,13.912000000000001,15.25,16.800999999999998,18.614999999999998,20.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1596,-0.56840000000000002,15.2498,0.094280000000000003,11.731999999999999,12.749000000000001,13.912000000000001,15.25,16.800999999999998,18.616,20.757999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1597,-0.56840000000000002,15.2498,0.094299999999999995,11.731,12.747999999999999,13.911,15.25,16.802,18.617000000000001,20.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1598,-0.56840000000000002,15.2498,0.094320000000000001,11.73,12.747999999999999,13.911,15.25,16.802,18.617999999999999,20.760999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1599,-0.56840000000000002,15.2498,0.094339999999999993,11.73,12.747,13.911,15.25,16.803000000000001,18.617999999999999,20.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1600,-0.56840000000000002,15.2498,0.094359999999999999,11.728999999999999,12.747,13.911,15.25,16.803000000000001,18.619,20.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1601,-0.56840000000000002,15.2499,0.094369999999999996,11.728999999999999,12.747,13.911,15.25,16.803000000000001,18.62,20.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1602,-0.56840000000000002,15.2499,0.094390000000000002,11.728,12.746,13.91,15.25,16.803999999999998,18.620999999999999,20.765999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1603,-0.56840000000000002,15.2499,0.094409999999999994,11.728,12.746,13.91,15.25,16.803999999999998,18.620999999999999,20.766999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1604,-0.56840000000000002,15.2499,0.09443,11.727,12.744999999999999,13.91,15.25,16.803999999999998,18.622,20.768999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1605,-0.56840000000000002,15.25,0.094450000000000006,11.727,12.744999999999999,13.91,15.25,16.805,18.623000000000001,20.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1606,-0.56840000000000002,15.25,0.094469999999999998,11.726000000000001,12.744999999999999,13.909000000000001,15.25,16.805,18.623999999999999,20.771999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1607,-0.56840000000000002,15.25,0.094490000000000005,11.725,12.744,13.909000000000001,15.25,16.805,18.625,20.774000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1608,-0.56840000000000002,15.25,0.094500000000000001,11.725,12.744,13.909000000000001,15.25,16.806000000000001,18.625,20.774000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1609,-0.56840000000000002,15.2501,0.094520000000000007,11.725,12.744,13.909000000000001,15.25,16.806000000000001,18.626000000000001,20.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1610,-0.56840000000000002,15.2501,0.094539999999999999,11.724,12.743,13.907999999999999,15.25,16.806000000000001,18.626999999999999,20.777000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1611,-0.56840000000000002,15.2501,0.094560000000000005,11.723000000000001,12.743,13.907999999999999,15.25,16.806999999999999,18.628,20.779 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1612,-0.56840000000000002,15.2502,0.094579999999999997,11.723000000000001,12.742000000000001,13.907999999999999,15.25,16.806999999999999,18.629000000000001,20.780999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1613,-0.56840000000000002,15.2502,0.094600000000000004,11.722,12.742000000000001,13.907999999999999,15.25,16.808,18.63,20.782 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1614,-0.56840000000000002,15.2502,0.09461,11.722,12.742000000000001,13.907999999999999,15.25,16.808,18.63,20.783000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1615,-0.56840000000000002,15.250299999999999,0.094630000000000006,11.721,12.741,13.907,15.25,16.808,18.631,20.783999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1616,-0.56840000000000002,15.250299999999999,0.094649999999999998,11.721,12.741,13.907,15.25,16.809000000000001,18.632000000000001,20.786000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1617,-0.56840000000000002,15.250400000000001,0.094670000000000004,11.72,12.74,13.907,15.25,16.809000000000001,18.632999999999999,20.786999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1618,-0.56840000000000002,15.250400000000001,0.094689999999999996,11.72,12.74,13.907,15.25,16.809000000000001,18.634,20.789000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1619,-0.56840000000000002,15.250500000000001,0.094710000000000003,11.718999999999999,12.74,13.907,15.25,16.809999999999999,18.635000000000002,20.791 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1620,-0.56840000000000002,15.250500000000001,0.094719999999999999,11.718999999999999,12.739000000000001,13.906000000000001,15.25,16.809999999999999,18.635000000000002,20.791 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1621,-0.56840000000000002,15.250500000000001,0.094740000000000005,11.718,12.739000000000001,13.906000000000001,15.25,16.809999999999999,18.635999999999999,20.792999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1622,-0.56840000000000002,15.2506,0.094759999999999997,11.718,12.738,13.906000000000001,15.250999999999999,16.811,18.637,20.794 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1623,-0.56840000000000002,15.2506,0.094780000000000003,11.717000000000001,12.738,13.906000000000001,15.250999999999999,16.811,18.638000000000002,20.795999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1624,-0.56840000000000002,15.2507,0.094799999999999995,11.717000000000001,12.738,13.906000000000001,15.250999999999999,16.812000000000001,18.638999999999999,20.797999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1625,-0.56840000000000002,15.2507,0.094810000000000005,11.715999999999999,12.737,13.904999999999999,15.250999999999999,16.812000000000001,18.638999999999999,20.797999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1626,-0.56840000000000002,15.2508,0.094829999999999998,11.715999999999999,12.737,13.904999999999999,15.250999999999999,16.812000000000001,18.64,20.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1627,-0.56840000000000002,15.2508,0.094850000000000004,11.715,12.737,13.904999999999999,15.250999999999999,16.812999999999999,18.640999999999998,20.800999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1628,-0.56840000000000002,15.2509,0.094869999999999996,11.715,12.736000000000001,13.904999999999999,15.250999999999999,16.812999999999999,18.641999999999999,20.803000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1629,-0.56840000000000002,15.2509,0.094890000000000002,11.714,12.736000000000001,13.904999999999999,15.250999999999999,16.814,18.643000000000001,20.805 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1630,-0.56840000000000002,15.250999999999999,0.094909999999999994,11.712999999999999,12.734999999999999,13.904,15.250999999999999,16.814,18.643999999999998,20.806000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1631,-0.56840000000000002,15.251099999999999,0.094920000000000004,11.712999999999999,12.734999999999999,13.904,15.250999999999999,16.814,18.643999999999998,20.806999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1632,-0.56840000000000002,15.251099999999999,0.094939999999999997,11.712999999999999,12.734999999999999,13.904,15.250999999999999,16.815000000000001,18.645,20.809000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1633,-0.56840000000000002,15.251200000000001,0.094960000000000003,11.712,12.734,13.904,15.250999999999999,16.815000000000001,18.646000000000001,20.81 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1634,-0.56840000000000002,15.251200000000001,0.094979999999999995,11.711,12.734,13.904,15.250999999999999,16.815000000000001,18.646999999999998,20.812000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1635,-0.56840000000000002,15.251300000000001,0.095000000000000001,11.711,12.734,13.904,15.250999999999999,16.815999999999999,18.648,20.812999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1636,-0.56840000000000002,15.2514,0.095009999999999997,11.711,12.733000000000001,13.903,15.250999999999999,16.815999999999999,18.648,20.814 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1637,-0.56840000000000002,15.2514,0.095030000000000003,11.71,12.733000000000001,13.903,15.250999999999999,16.817,18.649000000000001,20.815999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1638,-0.56840000000000002,15.2515,0.095049999999999996,11.71,12.733000000000001,13.903,15.252000000000001,16.817,18.649999999999999,20.817 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1639,-0.56840000000000002,15.2515,0.095070000000000002,11.709,12.731999999999999,13.903,15.252000000000001,16.817,18.651,20.818999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1640,-0.56840000000000002,15.2516,0.095079999999999998,11.709,12.731999999999999,13.903,15.252000000000001,16.818000000000001,18.652000000000001,20.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1641,-0.56840000000000002,15.2517,0.095100000000000004,11.708,12.731999999999999,13.903,15.252000000000001,16.818000000000001,18.652000000000001,20.821000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1642,-0.56840000000000002,15.2517,0.095119999999999996,11.708,12.731,13.901999999999999,15.252000000000001,16.818000000000001,18.652999999999999,20.823 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1643,-0.56840000000000002,15.251799999999999,0.095140000000000002,11.707000000000001,12.731,13.901999999999999,15.252000000000001,16.818999999999999,18.654,20.824000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1644,-0.56840000000000002,15.251899999999999,0.095159999999999995,11.707000000000001,12.73,13.901999999999999,15.252000000000001,16.818999999999999,18.655000000000001,20.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1645,-0.56840000000000002,15.251899999999999,0.095170000000000005,11.706,12.73,13.901999999999999,15.252000000000001,16.82,18.655999999999999,20.827000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1646,-0.56840000000000002,15.252000000000001,0.095189999999999997,11.706,12.73,13.901999999999999,15.252000000000001,16.82,18.657,20.827999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1647,-0.56840000000000002,15.2521,0.095210000000000003,11.705,12.728999999999999,13.901,15.252000000000001,16.821000000000002,18.658000000000001,20.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1648,-0.56840000000000002,15.2522,0.095229999999999995,11.705,12.728999999999999,13.901,15.252000000000001,16.821000000000002,18.658999999999999,20.832000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1649,-0.56840000000000002,15.2522,0.095240000000000005,11.704000000000001,12.728999999999999,13.901,15.252000000000001,16.821000000000002,18.658999999999999,20.832000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1650,-0.56840000000000002,15.2523,0.095259999999999997,11.704000000000001,12.728,13.901,15.252000000000001,16.821999999999999,18.66,20.834 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1651,-0.56840000000000002,15.2524,0.095280000000000004,11.702999999999999,12.728,13.901,15.252000000000001,16.821999999999999,18.661000000000001,20.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1652,-0.56840000000000002,15.2525,0.095299999999999996,11.702999999999999,12.728,13.901,15.252000000000001,16.823,18.661999999999999,20.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1653,-0.56840000000000002,15.2525,0.095310000000000006,11.702999999999999,12.727,13.901,15.252000000000001,16.823,18.661999999999999,20.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1654,-0.56840000000000002,15.252599999999999,0.095329999999999998,11.702,12.727,13.9,15.253,16.823,18.663,20.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1655,-0.56840000000000002,15.252700000000001,0.095350000000000004,11.701000000000001,12.727,13.9,15.253,16.824000000000002,18.664000000000001,20.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1656,-0.56840000000000002,15.252800000000001,0.095369999999999996,11.701000000000001,12.726000000000001,13.9,15.253,16.824000000000002,18.664999999999999,20.843 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1657,-0.56840000000000002,15.2529,0.095380000000000006,11.701000000000001,12.726000000000001,13.9,15.253,16.824000000000002,18.666,20.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1658,-0.56840000000000002,15.2529,0.095399999999999999,11.7,12.726000000000001,13.9,15.253,16.824999999999999,18.667000000000002,20.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1659,-0.56840000000000002,15.253,0.095420000000000005,11.7,12.725,13.9,15.253,16.824999999999999,18.667000000000002,20.847000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1660,-0.56840000000000002,15.2531,0.095439999999999997,11.699,12.725,13.898999999999999,15.253,16.826000000000001,18.667999999999999,20.849 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1661,-0.56840000000000002,15.2532,0.095449999999999993,11.699,12.725,13.898999999999999,15.253,16.826000000000001,18.669,20.849 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1662,-0.56840000000000002,15.253299999999999,0.095469999999999999,11.698,12.724,13.898999999999999,15.253,16.826000000000001,18.670000000000002,20.850999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1663,-0.56840000000000002,15.253399999999999,0.095490000000000005,11.698,12.724,13.898999999999999,15.253,16.827000000000002,18.670999999999999,20.853000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1664,-0.56840000000000002,15.253399999999999,0.095500000000000002,11.696999999999999,12.724,13.898999999999999,15.253,16.827000000000002,18.670999999999999,20.853000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1665,-0.56840000000000002,15.253500000000001,0.095519999999999994,11.696999999999999,12.723000000000001,13.898999999999999,15.254,16.827999999999999,18.672000000000001,20.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1666,-0.56840000000000002,15.2536,0.09554,11.696,12.723000000000001,13.898,15.254,16.827999999999999,18.672999999999998,20.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1667,-0.56840000000000002,15.2537,0.095560000000000006,11.696,12.723000000000001,13.898,15.254,16.829000000000001,18.673999999999999,20.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1668,-0.56840000000000002,15.2538,0.095570000000000002,11.696,12.723000000000001,13.898,15.254,16.829000000000001,18.675000000000001,20.859000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1669,-0.56840000000000002,15.2539,0.095589999999999994,11.695,12.722,13.898,15.254,16.829000000000001,18.675999999999998,20.861000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1670,-0.56840000000000002,15.254,0.095610000000000001,11.695,12.722,13.898,15.254,16.829999999999998,18.677,20.861999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1671,-0.56840000000000002,15.254099999999999,0.095619999999999997,11.694000000000001,12.722,13.898,15.254,16.829999999999998,18.677,20.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1672,-0.56840000000000002,15.254200000000001,0.095640000000000003,11.694000000000001,12.721,13.898,15.254,16.829999999999998,18.678000000000001,20.864999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1673,-0.56840000000000002,15.254300000000001,0.095659999999999995,11.693,12.721,13.898,15.254,16.831,18.678999999999998,20.867000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1674,-0.56840000000000002,15.254300000000001,0.095670000000000005,11.693,12.721,13.897,15.254,16.831,18.68,20.867000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1675,-0.56840000000000002,15.2544,0.095689999999999997,11.692,12.72,13.897,15.254,16.832000000000001,18.68,20.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1676,-0.56840000000000002,15.2545,0.095710000000000003,11.692,12.72,13.897,15.254,16.832000000000001,18.681000000000001,20.870999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1677,-0.56840000000000002,15.2546,0.095729999999999996,11.691000000000001,12.72,13.897,15.255000000000001,16.832999999999998,18.681999999999999,20.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1678,-0.56840000000000002,15.2547,0.095740000000000006,11.691000000000001,12.718999999999999,13.897,15.255000000000001,16.832999999999998,18.683,20.873000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1679,-0.56840000000000002,15.254799999999999,0.095759999999999998,11.691000000000001,12.718999999999999,13.897,15.255000000000001,16.832999999999998,18.684000000000001,20.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1680,-0.56840000000000002,15.254899999999999,0.095780000000000004,11.69,12.718999999999999,13.897,15.255000000000001,16.834,18.684999999999999,20.876000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1681,-0.56840000000000002,15.255000000000001,0.09579,11.69,12.718999999999999,13.896000000000001,15.255000000000001,16.834,18.684999999999999,20.876999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1682,-0.56840000000000002,15.255100000000001,0.095810000000000006,11.689,12.718,13.896000000000001,15.255000000000001,16.835000000000001,18.686,20.879000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1683,-0.56840000000000002,15.2552,0.095829999999999999,11.689,12.718,13.896000000000001,15.255000000000001,16.835000000000001,18.687000000000001,20.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1684,-0.56840000000000002,15.2553,0.095839999999999995,11.689,12.718,13.896000000000001,15.255000000000001,16.835000000000001,18.687999999999999,20.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1685,-0.56840000000000002,15.2554,0.095860000000000001,11.688000000000001,12.717000000000001,13.896000000000001,15.255000000000001,16.835999999999999,18.689,20.882999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1686,-0.56840000000000002,15.2555,0.095880000000000007,11.688000000000001,12.717000000000001,13.896000000000001,15.256,16.835999999999999,18.690000000000001,20.885000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1687,-0.56840000000000002,15.255599999999999,0.095890000000000003,11.686999999999999,12.717000000000001,13.896000000000001,15.256,16.835999999999999,18.690000000000001,20.885999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1688,-0.56840000000000002,15.255699999999999,0.095909999999999995,11.686999999999999,12.715999999999999,13.896000000000001,15.256,16.837,18.690999999999999,20.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1689,-0.56840000000000002,15.255800000000001,0.095930000000000001,11.686,12.715999999999999,13.895,15.256,16.837,18.692,20.888999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1690,-0.56840000000000002,15.2559,0.095939999999999998,11.686,12.715999999999999,13.895,15.256,16.838000000000001,18.693000000000001,20.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1691,-0.56840000000000002,15.256,0.095960000000000004,11.686,12.715,13.895,15.256,16.838000000000001,18.693999999999999,20.890999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1692,-0.56840000000000002,15.2561,0.09597,11.685,12.715,13.895,15.256,16.838000000000001,18.693999999999999,20.891999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1693,-0.56840000000000002,15.2563,0.095990000000000006,11.685,12.715,13.895,15.256,16.838999999999999,18.695,20.893999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1694,-0.56840000000000002,15.256399999999999,0.096009999999999998,11.683999999999999,12.715,13.895,15.256,16.84,18.696000000000002,20.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1695,-0.56840000000000002,15.256500000000001,0.096019999999999994,11.683999999999999,12.714,13.895,15.256,16.84,18.696999999999999,20.896999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1696,-0.56840000000000002,15.256600000000001,0.09604,11.683999999999999,12.714,13.895,15.257,16.84,18.698,20.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1697,-0.56840000000000002,15.2567,0.096060000000000006,11.683,12.714,13.894,15.257,16.841000000000001,18.699000000000002,20.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1698,-0.56840000000000002,15.2568,0.096070000000000003,11.683,12.714,13.894,15.257,16.841000000000001,18.699000000000002,20.901 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1699,-0.56840000000000002,15.2569,0.096089999999999995,11.682,12.712999999999999,13.894,15.257,16.841000000000001,18.7,20.902000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1700,-0.56840000000000002,15.257,0.096100000000000005,11.682,12.712999999999999,13.894,15.257,16.841999999999999,18.701000000000001,20.902999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1701,-0.56840000000000002,15.257099999999999,0.096119999999999997,11.682,12.712999999999999,13.894,15.257,16.841999999999999,18.702000000000002,20.905000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1702,-0.56840000000000002,15.257199999999999,0.096140000000000003,11.680999999999999,12.712,13.894,15.257,16.843,18.702999999999999,20.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1703,-0.56840000000000002,15.257400000000001,0.096149999999999999,11.680999999999999,12.712,13.894,15.257,16.843,18.702999999999999,20.908000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1704,-0.56840000000000002,15.2575,0.096170000000000005,11.68,12.712,13.894,15.257999999999999,16.844000000000001,18.704000000000001,20.908999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1705,-0.56840000000000002,15.2576,0.096180000000000002,11.68,12.712,13.894,15.257999999999999,16.844000000000001,18.704999999999998,20.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1706,-0.56840000000000002,15.2577,0.096199999999999994,11.68,12.711,13.894,15.257999999999999,16.844000000000001,18.706,20.911999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1707,-0.56840000000000002,15.2578,0.09622,11.679,12.711,13.893000000000001,15.257999999999999,16.844999999999999,18.707000000000001,20.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1708,-0.56840000000000002,15.257899999999999,0.096229999999999996,11.679,12.711,13.893000000000001,15.257999999999999,16.844999999999999,18.707000000000001,20.914000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1709,-0.56840000000000002,15.257999999999999,0.096250000000000002,11.678000000000001,12.71,13.893000000000001,15.257999999999999,16.846,18.707999999999998,20.916 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1710,-0.56840000000000002,15.2582,0.096259999999999998,11.678000000000001,12.71,13.893000000000001,15.257999999999999,16.846,18.709,20.917000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1711,-0.56840000000000002,15.2583,0.096280000000000004,11.678000000000001,12.71,13.893000000000001,15.257999999999999,16.846,18.71,20.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1712,-0.56840000000000002,15.2584,0.096299999999999997,11.677,12.71,13.893000000000001,15.257999999999999,16.847000000000001,18.710999999999999,20.92 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1713,-0.56840000000000002,15.2585,0.096310000000000007,11.677,12.709,13.893000000000001,15.257999999999999,16.847000000000001,18.712,20.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1714,-0.56840000000000002,15.258599999999999,0.096329999999999999,11.676,12.709,13.893000000000001,15.259,16.847999999999999,18.712,20.922999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1715,-0.56840000000000002,15.258699999999999,0.096339999999999995,11.676,12.709,13.893000000000001,15.259,16.847999999999999,18.713000000000001,20.923999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1716,-0.56840000000000002,15.258900000000001,0.096360000000000001,11.676,12.709,13.893000000000001,15.259,16.849,18.713999999999999,20.925000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1717,-0.56840000000000002,15.259,0.096369999999999997,11.676,12.709,13.891999999999999,15.259,16.849,18.715,20.925999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1718,-0.56840000000000002,15.2591,0.096390000000000003,11.675000000000001,12.708,13.891999999999999,15.259,16.849,18.716000000000001,20.928000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1719,-0.56840000000000002,15.2592,0.096409999999999996,11.673999999999999,12.708,13.891999999999999,15.259,16.850000000000001,18.716999999999999,20.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1720,-0.56840000000000002,15.2593,0.096420000000000006,11.673999999999999,12.708,13.891999999999999,15.259,16.850000000000001,18.716999999999999,20.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1721,-0.56840000000000002,15.259499999999999,0.096439999999999998,11.673999999999999,12.707000000000001,13.891999999999999,15.26,16.850999999999999,18.718,20.931999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1722,-0.56840000000000002,15.259600000000001,0.096449999999999994,11.673999999999999,12.707000000000001,13.891999999999999,15.26,16.850999999999999,18.719000000000001,20.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1723,-0.56840000000000002,15.2597,0.09647,11.673,12.707000000000001,13.891999999999999,15.26,16.850999999999999,18.72,20.934999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1724,-0.56840000000000002,15.2598,0.096479999999999996,11.673,12.707000000000001,13.891999999999999,15.26,16.852,18.72,20.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1725,-0.56840000000000002,15.2599,0.096500000000000002,11.672000000000001,12.706,13.891999999999999,15.26,16.852,18.721,20.937000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1726,-0.56840000000000002,15.2601,0.096509999999999999,11.672000000000001,12.706,13.891999999999999,15.26,16.853000000000002,18.722000000000001,20.937999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1727,-0.56840000000000002,15.260199999999999,0.096530000000000005,11.672000000000001,12.706,13.891,15.26,16.853000000000002,18.722999999999999,20.94 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1728,-0.56840000000000002,15.260300000000001,0.096540000000000001,11.670999999999999,12.706,13.891,15.26,16.853000000000002,18.722999999999999,20.940999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1729,-0.56840000000000002,15.260400000000001,0.096560000000000007,11.670999999999999,12.705,13.891,15.26,16.853999999999999,18.724,20.942 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1730,-0.56840000000000002,15.2606,0.096570000000000003,11.670999999999999,12.705,13.891,15.260999999999999,16.853999999999999,18.725000000000001,20.943999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1731,-0.56840000000000002,15.2607,0.096589999999999995,11.67,12.705,13.891,15.260999999999999,16.855,18.725999999999999,20.945 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1732,-0.56840000000000002,15.2608,0.096600000000000005,11.67,12.705,13.891,15.260999999999999,16.855,18.727,20.946000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1733,-0.56840000000000002,15.260999999999999,0.096619999999999998,11.67,12.704000000000001,13.891,15.260999999999999,16.855,18.728000000000002,20.948 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1734,-0.56840000000000002,15.261100000000001,0.096629999999999994,11.669,12.704000000000001,13.891,15.260999999999999,16.856000000000002,18.728000000000002,20.949000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1735,-0.56840000000000002,15.261200000000001,0.09665,11.669,12.704000000000001,13.891,15.260999999999999,16.856000000000002,18.728999999999999,20.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1736,-0.56840000000000002,15.2613,0.096659999999999996,11.669,12.704000000000001,13.891,15.260999999999999,16.856999999999999,18.73,20.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1737,-0.56840000000000002,15.2615,0.096680000000000002,11.667999999999999,12.704000000000001,13.891,15.262,16.856999999999999,18.731000000000002,20.952999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1738,-0.56840000000000002,15.2616,0.096689999999999998,11.667999999999999,12.702999999999999,13.891,15.262,16.856999999999999,18.731000000000002,20.954000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1739,-0.56840000000000002,15.261699999999999,0.096710000000000004,11.667,12.702999999999999,13.89,15.262,16.858000000000001,18.731999999999999,20.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1740,-0.56840000000000002,15.261900000000001,0.09672,11.667,12.702999999999999,13.89,15.262,16.858000000000001,18.733000000000001,20.957000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1741,-0.56840000000000002,15.262,0.096740000000000007,11.667,12.702999999999999,13.89,15.262,16.859000000000002,18.734000000000002,20.957999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1742,-0.56840000000000002,15.2621,0.096750000000000003,11.666,12.702,13.89,15.262,16.859000000000002,18.734000000000002,20.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1743,-0.56840000000000002,15.2622,0.096769999999999995,11.666,12.702,13.89,15.262,16.859000000000002,18.734999999999999,20.960999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1744,-0.56840000000000002,15.2624,0.096780000000000005,11.666,12.702,13.89,15.262,16.86,18.736000000000001,20.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1745,-0.56840000000000002,15.262499999999999,0.096799999999999997,11.664999999999999,12.702,13.89,15.262,16.86,18.736999999999998,20.963000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1746,-0.56840000000000002,15.262600000000001,0.096809999999999993,11.664999999999999,12.701000000000001,13.89,15.263,16.861000000000001,18.738,20.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1747,-0.56840000000000002,15.2628,0.096829999999999999,11.664999999999999,12.701000000000001,13.89,15.263,16.861000000000001,18.739000000000001,20.966000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1748,-0.56840000000000002,15.2629,0.096839999999999996,11.664,12.701000000000001,13.89,15.263,16.861000000000001,18.739000000000001,20.966999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1749,-0.56840000000000002,15.263,0.096860000000000002,11.664,12.701000000000001,13.89,15.263,16.861999999999998,18.739999999999998,20.969000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1750,-0.56840000000000002,15.263199999999999,0.096869999999999998,11.664,12.701000000000001,13.89,15.263,16.861999999999998,18.741,20.97 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1751,-0.56840000000000002,15.263299999999999,0.096879999999999994,11.663,12.7,13.89,15.263,16.863,18.741,20.971 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1752,-0.56840000000000002,15.263500000000001,0.0969,11.663,12.7,13.89,15.263999999999999,16.863,18.742000000000001,20.972000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1753,-0.56840000000000002,15.2636,0.096909999999999996,11.663,12.7,13.89,15.263999999999999,16.864000000000001,18.742999999999999,20.972999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1754,-0.56840000000000002,15.2637,0.096930000000000002,11.662000000000001,12.7,13.888999999999999,15.263999999999999,16.864000000000001,18.744,20.975000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1755,-0.56840000000000002,15.2639,0.096939999999999998,11.662000000000001,12.7,13.888999999999999,15.263999999999999,16.864000000000001,18.745000000000001,20.975999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1756,-0.56840000000000002,15.263999999999999,0.096960000000000005,11.662000000000001,12.699,13.888999999999999,15.263999999999999,16.864999999999998,18.745999999999999,20.978000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1757,-0.56840000000000002,15.264099999999999,0.096970000000000001,11.661,12.699,13.888999999999999,15.263999999999999,16.864999999999998,18.745999999999999,20.978000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1758,-0.56840000000000002,15.2643,0.096990000000000007,11.661,12.699,13.888999999999999,15.263999999999999,16.866,18.747,20.98 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1759,-0.56840000000000002,15.2644,0.097000000000000003,11.661,12.699,13.888999999999999,15.263999999999999,16.866,18.748000000000001,20.981000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1760,-0.56840000000000002,15.2646,0.097009999999999999,11.661,12.699,13.888999999999999,15.265000000000001,16.866,18.748000000000001,20.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1761,-0.56840000000000002,15.264699999999999,0.097030000000000005,11.66,12.698,13.888999999999999,15.265000000000001,16.867000000000001,18.748999999999999,20.984000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1762,-0.56840000000000002,15.264799999999999,0.097040000000000001,11.66,12.698,13.888999999999999,15.265000000000001,16.867000000000001,18.75,20.984999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1763,-0.56840000000000002,15.265000000000001,0.097059999999999994,11.659000000000001,12.698,13.888999999999999,15.265000000000001,16.867999999999999,18.751000000000001,20.986000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1764,-0.56840000000000002,15.2651,0.097070000000000004,11.659000000000001,12.698,13.888999999999999,15.265000000000001,16.867999999999999,18.751999999999999,20.986999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1765,-0.56840000000000002,15.2653,0.09708,11.659000000000001,12.698,13.888999999999999,15.265000000000001,16.867999999999999,18.751999999999999,20.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1766,-0.56840000000000002,15.2654,0.097100000000000006,11.657999999999999,12.696999999999999,13.888999999999999,15.265000000000001,16.869,18.753,20.99 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1767,-0.56840000000000002,15.265499999999999,0.097110000000000002,11.657999999999999,12.696999999999999,13.888999999999999,15.266,16.869,18.754000000000001,20.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1768,-0.56840000000000002,15.265700000000001,0.097129999999999994,11.657999999999999,12.696999999999999,13.888999999999999,15.266,16.87,18.754999999999999,20.992999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1769,-0.56840000000000002,15.2658,0.097140000000000004,11.657999999999999,12.696999999999999,13.888999999999999,15.266,16.87,18.754999999999999,20.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1770,-0.56840000000000002,15.266,0.09715,11.657,12.696999999999999,13.888999999999999,15.266,16.87,18.756,20.995000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1771,-0.56840000000000002,15.2661,0.097170000000000006,11.657,12.696,13.888,15.266,16.870999999999999,18.757000000000001,20.995999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1772,-0.56840000000000002,15.266299999999999,0.097180000000000002,11.657,12.696,13.888,15.266,16.870999999999999,18.757999999999999,20.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1773,-0.56840000000000002,15.266400000000001,0.097199999999999995,11.656000000000001,12.696,13.888,15.266,16.872,18.759,20.998999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1774,-0.56840000000000002,15.266500000000001,0.097210000000000005,11.656000000000001,12.696,13.888,15.266,16.872,18.759,21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1775,-0.56840000000000002,15.2667,0.097220000000000001,11.656000000000001,12.695,13.888,15.266999999999999,16.872,18.760000000000002,21.001000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1776,-0.56840000000000002,15.2668,0.097239999999999993,11.654999999999999,12.695,13.888,15.266999999999999,16.873000000000001,18.760999999999999,21.003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1777,-0.56840000000000002,15.266999999999999,0.097250000000000003,11.654999999999999,12.695,13.888,15.266999999999999,16.873000000000001,18.762,21.004000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1778,-0.56840000000000002,15.267099999999999,0.097259999999999999,11.654999999999999,12.695,13.888,15.266999999999999,16.873999999999999,18.762,21.004000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1779,-0.56840000000000002,15.267300000000001,0.097280000000000005,11.654999999999999,12.695,13.888,15.266999999999999,16.873999999999999,18.763000000000002,21.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1780,-0.56840000000000002,15.2674,0.097290000000000001,11.654,12.694000000000001,13.888,15.266999999999999,16.873999999999999,18.763999999999999,21.007000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1781,-0.56840000000000002,15.2676,0.097299999999999998,11.654,12.694000000000001,13.888,15.268000000000001,16.875,18.763999999999999,21.007999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1782,-0.56840000000000002,15.2677,0.097320000000000004,11.654,12.694000000000001,13.888,15.268000000000001,16.875,18.765000000000001,21.01 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1783,-0.56840000000000002,15.267899999999999,0.09733,11.654,12.694000000000001,13.888,15.268000000000001,16.876000000000001,18.765999999999998,21.010999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1784,-0.56840000000000002,15.268000000000001,0.097339999999999996,11.653,12.694000000000001,13.888,15.268000000000001,16.876000000000001,18.766999999999999,21.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1785,-0.56840000000000002,15.2682,0.097360000000000002,11.653,12.694000000000001,13.888,15.268000000000001,16.876999999999999,18.768000000000001,21.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1786,-0.56840000000000002,15.2683,0.097369999999999998,11.653,12.693,13.888,15.268000000000001,16.876999999999999,18.768000000000001,21.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1787,-0.56840000000000002,15.2685,0.097390000000000004,11.651999999999999,12.693,13.888,15.268000000000001,16.876999999999999,18.768999999999998,21.015999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1788,-0.56840000000000002,15.268599999999999,0.0974,11.651999999999999,12.693,13.888,15.269,16.878,18.77,21.016999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1789,-0.56840000000000002,15.268800000000001,0.097409999999999997,11.651999999999999,12.693,13.888,15.269,16.878,18.771000000000001,21.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1790,-0.56840000000000002,15.2689,0.097430000000000003,11.651,12.693,13.888,15.269,16.879000000000001,18.771000000000001,21.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1791,-0.56840000000000002,15.2691,0.097439999999999999,11.651,12.692,13.888,15.269,16.879000000000001,18.771999999999998,21.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1792,-0.56840000000000002,15.2692,0.097449999999999995,11.651,12.692,13.888,15.269,16.879000000000001,18.773,21.021999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1793,-0.56840000000000002,15.269399999999999,0.097460000000000005,11.651,12.692,13.888,15.269,16.88,18.773,21.023 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1794,-0.56840000000000002,15.269500000000001,0.097479999999999997,11.65,12.692,13.887,15.27,16.88,18.774000000000001,21.024000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1795,-0.56840000000000002,15.2697,0.097489999999999993,11.65,12.692,13.887,15.27,16.881,18.774999999999999,21.024999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1796,-0.56840000000000002,15.2698,0.097500000000000003,11.65,12.692,13.887,15.27,16.881,18.776,21.026 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1797,-0.56840000000000002,15.27,0.097519999999999996,11.648999999999999,12.691000000000001,13.887,15.27,16.881,18.777000000000001,21.027999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1798,-0.56840000000000002,15.270200000000001,0.097530000000000006,11.648999999999999,12.691000000000001,13.887,15.27,16.882000000000001,18.777000000000001,21.029 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1799,-0.56840000000000002,15.270300000000001,0.097540000000000002,11.648999999999999,12.691000000000001,13.887,15.27,16.882000000000001,18.777999999999999,21.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1800,-0.56840000000000002,15.2705,0.097559999999999994,11.648999999999999,12.691000000000001,13.887,15.27,16.882999999999999,18.779,21.032 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1801,-0.56840000000000002,15.2706,0.097570000000000004,11.648,12.691000000000001,13.887,15.271000000000001,16.882999999999999,18.779,21.033000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1802,-0.56840000000000002,15.270799999999999,0.09758,11.648,12.691000000000001,13.887,15.271000000000001,16.882999999999999,18.78,21.033999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1803,-0.56840000000000002,15.270899999999999,0.097600000000000006,11.648,12.69,13.887,15.271000000000001,16.884,18.780999999999999,21.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1804,-0.56840000000000002,15.271100000000001,0.097610000000000002,11.648,12.69,13.887,15.271000000000001,16.884,18.782,21.036000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1805,-0.56840000000000002,15.2713,0.097619999999999998,11.647,12.69,13.887,15.271000000000001,16.885000000000002,18.782,21.036999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1806,-0.56840000000000002,15.2714,0.097629999999999995,11.647,12.69,13.887,15.271000000000001,16.885000000000002,18.783000000000001,21.038 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1807,-0.56840000000000002,15.271599999999999,0.097650000000000001,11.647,12.69,13.887,15.272,16.885999999999999,18.783999999999999,21.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1808,-0.56840000000000002,15.271699999999999,0.097659999999999997,11.647,12.69,13.887,15.272,16.885999999999999,18.785,21.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1809,-0.56840000000000002,15.2719,0.097670000000000007,11.646000000000001,12.69,13.887,15.272,16.885999999999999,18.785,21.042000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1810,-0.56840000000000002,15.272,0.097689999999999999,11.646000000000001,12.689,13.887,15.272,16.887,18.786000000000001,21.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1811,-0.56840000000000002,15.2722,0.097699999999999995,11.646000000000001,12.689,13.887,15.272,16.887,18.786999999999999,21.045000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1812,-0.56840000000000002,15.272399999999999,0.097710000000000005,11.646000000000001,12.689,13.887,15.272,16.888000000000002,18.788,21.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1813,-0.56840000000000002,15.272500000000001,0.097720000000000001,11.645,12.689,13.887,15.272,16.888000000000002,18.788,21.047000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1814,-0.56840000000000002,15.2727,0.097739999999999994,11.645,12.689,13.887,15.273,16.888000000000002,18.789000000000001,21.047999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1815,-0.56840000000000002,15.2729,0.097750000000000004,11.645,12.689,13.887,15.273,16.888999999999999,18.79,21.05 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1816,-0.56840000000000002,15.273,0.09776,11.645,12.688000000000001,13.887,15.273,16.888999999999999,18.79,21.05 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1817,-0.56840000000000002,15.273199999999999,0.097769999999999996,11.644,12.688000000000001,13.887,15.273,16.888999999999999,18.791,21.050999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1818,-0.56840000000000002,15.273300000000001,0.097790000000000002,11.644,12.688000000000001,13.887,15.273,16.89,18.792000000000002,21.053000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1819,-0.56840000000000002,15.2735,0.097799999999999998,11.644,12.688000000000001,13.887,15.273999999999999,16.89,18.792999999999999,21.053999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1820,-0.56840000000000002,15.2737,0.097809999999999994,11.644,12.688000000000001,13.887,15.273999999999999,16.890999999999998,18.792999999999999,21.055 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1821,-0.56840000000000002,15.2738,0.097820000000000004,11.643000000000001,12.688000000000001,13.887,15.273999999999999,16.890999999999998,18.794,21.056000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1822,-0.56840000000000002,15.273999999999999,0.097839999999999996,11.643000000000001,12.686999999999999,13.887,15.273999999999999,16.891999999999999,18.795000000000002,21.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1823,-0.56840000000000002,15.2742,0.097850000000000006,11.643000000000001,12.686999999999999,13.887,15.273999999999999,16.891999999999999,18.795999999999999,21.059000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1824,-0.56840000000000002,15.2743,0.097860000000000003,11.643000000000001,12.686999999999999,13.887,15.273999999999999,16.891999999999999,18.795999999999999,21.06 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1825,-0.56840000000000002,15.2745,0.097869999999999999,11.641999999999999,12.686999999999999,13.887,15.273999999999999,16.893000000000001,18.797000000000001,21.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1826,-0.56840000000000002,15.274699999999999,0.097890000000000005,11.641999999999999,12.686999999999999,13.887,15.275,16.893000000000001,18.797999999999998,21.062999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1827,-0.56840000000000002,15.274800000000001,0.097900000000000001,11.641999999999999,12.686999999999999,13.887,15.275,16.893999999999998,18.798999999999999,21.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1828,-0.56840000000000002,15.275,0.097909999999999997,11.641999999999999,12.686999999999999,13.887,15.275,16.893999999999998,18.798999999999999,21.065000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1829,-0.56840000000000002,15.2752,0.097919999999999993,11.641,12.686999999999999,13.887,15.275,16.893999999999998,18.8,21.065999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1830,-0.56840000000000002,15.2753,0.097939999999999999,11.641,12.686,13.887,15.275,16.895,18.800999999999998,21.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1831,-0.56840000000000002,15.275499999999999,0.097949999999999995,11.641,12.686,13.887,15.276,16.895,18.802,21.068000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1832,-0.56840000000000002,15.275700000000001,0.097960000000000005,11.641,12.686,13.887,15.276,16.896000000000001,18.802,21.068999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1833,-0.56840000000000002,15.2758,0.097970000000000002,11.64,12.686,13.887,15.276,16.896000000000001,18.803000000000001,21.07 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1834,-0.56840000000000002,15.276,0.097989999999999994,11.64,12.686,13.887,15.276,16.896999999999998,18.803999999999998,21.071999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1835,-0.56840000000000002,15.276199999999999,0.098000000000000004,11.64,12.686,13.887,15.276,16.896999999999998,18.805,21.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1836,-0.56840000000000002,15.276300000000001,0.09801,11.64,12.685,13.887,15.276,16.896999999999998,18.805,21.074000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1837,-0.56840000000000002,15.2765,0.098019999999999996,11.638999999999999,12.685,13.887,15.276,16.898,18.806000000000001,21.074999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1838,-0.56840000000000002,15.2767,0.098030000000000006,11.638999999999999,12.685,13.887,15.276999999999999,16.898,18.806000000000001,21.076000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1839,-0.56840000000000002,15.2768,0.098049999999999998,11.638999999999999,12.685,13.887,15.276999999999999,16.898,18.806999999999999,21.077999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1840,-0.56840000000000002,15.276999999999999,0.098059999999999994,11.638999999999999,12.685,13.887,15.276999999999999,16.899000000000001,18.808,21.079000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1841,-0.56840000000000002,15.277200000000001,0.098070000000000004,11.638,12.685,13.887,15.276999999999999,16.899000000000001,18.809000000000001,21.08 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1842,-0.56840000000000002,15.2773,0.098080000000000001,11.638,12.685,13.887,15.276999999999999,16.899999999999999,18.809000000000001,21.081 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1843,-0.56840000000000002,15.2775,0.098100000000000007,11.638,12.683999999999999,13.887,15.278,16.899999999999999,18.809999999999999,21.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1844,-0.56840000000000002,15.277699999999999,0.098110000000000003,11.638,12.683999999999999,13.887,15.278,16.901,18.811,21.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1845,-0.56840000000000002,15.277900000000001,0.098119999999999999,11.637,12.683999999999999,13.887,15.278,16.901,18.812000000000001,21.084 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1846,-0.56840000000000002,15.278,0.098129999999999995,11.637,12.683999999999999,13.887,15.278,16.901,18.812000000000001,21.085000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1847,-0.56840000000000002,15.2782,0.098140000000000005,11.637,12.683999999999999,13.887,15.278,16.902000000000001,18.812999999999999,21.085999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1848,-0.56840000000000002,15.2784,0.098159999999999997,11.637,12.683999999999999,13.887,15.278,16.902000000000001,18.814,21.088000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1849,-0.56840000000000002,15.278499999999999,0.098169999999999993,11.635999999999999,12.683999999999999,13.887,15.278,16.902999999999999,18.815000000000001,21.088999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1850,-0.56840000000000002,15.278700000000001,0.098180000000000003,11.635999999999999,12.683999999999999,13.887,15.279,16.902999999999999,18.815000000000001,21.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1851,-0.56840000000000002,15.2789,0.09819,11.635999999999999,12.683,13.887,15.279,16.902999999999999,18.815999999999999,21.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1852,-0.56840000000000002,15.2791,0.098199999999999996,11.635999999999999,12.683,13.887,15.279,16.904,18.817,21.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1853,-0.56840000000000002,15.279199999999999,0.098220000000000002,11.635,12.683,13.885999999999999,15.279,16.904,18.818000000000001,21.094000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1854,-0.56840000000000002,15.279400000000001,0.098229999999999998,11.635,12.683,13.887,15.279,16.905000000000001,18.818000000000001,21.094999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1855,-0.56840000000000002,15.2796,0.098239999999999994,11.635,12.683,13.887,15.28,16.905000000000001,18.818999999999999,21.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1856,-0.56840000000000002,15.2798,0.098250000000000004,11.635,12.683,13.887,15.28,16.905000000000001,18.82,21.097000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-girls-z-who-2007-exp.xlsx,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,0,-0.30530000000000002,13.4069,0.095600000000000004,10.183999999999999,11.132999999999999,12.201000000000001,13.407,14.773,16.326000000000001,18.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1,-0.1867,13.397600000000001,0.09597,10.121,11.095000000000001,12.182,13.398,14.76,16.29,18.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,2,-0.068099999999999994,13.388299999999999,0.096339999999999995,10.055999999999999,11.055999999999999,12.162000000000001,13.388,14.747,16.254000000000001,17.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,3,0.050500000000000003,13.379099999999999,0.09672,9.9879999999999995,11.015000000000001,12.143000000000001,13.379,14.734,16.219000000000001,17.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,4,0.16900000000000001,13.3698,0.097089999999999996,9.9179999999999993,10.974,12.122999999999999,13.37,14.721,16.184999999999999,17.766999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,5,0.28760000000000002,13.3606,0.097460000000000005,9.8439999999999994,10.932,12.103,13.361000000000001,14.709,16.151,17.690999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,6,0.40620000000000001,13.3513,0.097839999999999996,9.7680000000000007,10.888999999999999,12.083,13.351000000000001,14.696,16.117999999999999,17.617999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,7,0.52470000000000006,13.3421,0.098210000000000006,9.6880000000000006,10.843999999999999,12.061999999999999,13.342000000000001,14.683,16.085000000000001,17.547000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,8,0.50939999999999996,13.3843,0.097689999999999999,9.7439999999999998,10.895,12.108000000000001,13.384,14.723000000000001,16.125,17.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,9,0.49409999999999998,13.426500000000001,0.097159999999999996,9.8010000000000002,10.946,12.154,13.426,14.763,16.164000000000001,17.629000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,10,0.47889999999999999,13.4687,0.096640000000000004,9.8580000000000005,10.996,12.2,13.468999999999999,14.803000000000001,16.202999999999999,17.670000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,11,0.46360000000000001,13.510999999999999,0.096110000000000001,9.9139999999999997,11.047000000000001,12.246,13.510999999999999,14.843,16.242999999999999,17.71 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,12,0.44829999999999998,13.5532,0.095589999999999994,9.9710000000000001,11.098000000000001,12.292,13.553000000000001,14.882999999999999,16.282,17.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,13,0.433,13.5954,0.095070000000000002,10.026999999999999,11.148999999999999,12.337999999999999,13.595000000000001,14.923,16.321000000000002,17.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,14,0.41770000000000002,13.637700000000001,0.094539999999999999,10.084,11.2,12.384,13.638,14.962999999999999,16.36,17.829999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,15,0.40589999999999998,13.7174,0.094159999999999994,10.162000000000001,11.276999999999999,12.462,13.717000000000001,15.045,16.446999999999999,17.922999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,16,0.39460000000000001,13.800599999999999,0.093799999999999994,10.241,11.356999999999999,12.542999999999999,13.801,15.132,16.539000000000001,18.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,17,0.38390000000000002,13.885400000000001,0.093469999999999998,10.321,11.436999999999999,12.625,13.885,15.221,16.632999999999999,18.123000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,18,0.3735,13.970700000000001,0.093149999999999997,10.4,11.516999999999999,12.707000000000001,13.971,15.31,16.728000000000002,18.225000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,19,0.36359999999999998,14.0558,0.092850000000000002,10.478999999999999,11.597,12.789,14.055999999999999,15.4,16.823,18.327000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,20,0.35410000000000003,14.1404,0.09257,10.555999999999999,11.676,12.87,14.14,15.489000000000001,16.917999999999999,18.428999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,21,0.34489999999999998,14.2241,0.092299999999999993,10.632,11.754,12.951000000000001,14.224,15.577,17.012,18.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,22,0.33600000000000002,14.3065,0.092039999999999997,10.707000000000001,11.831,13.03,14.305999999999999,15.664,17.103999999999999,18.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,23,0.32740000000000002,14.387700000000001,0.091800000000000007,10.781000000000001,11.906000000000001,13.106999999999999,14.388,15.75,17.196000000000002,18.728999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,24,0.31909999999999999,14.467499999999999,0.091560000000000002,10.853,11.98,13.183999999999999,14.468,15.834,17.286000000000001,18.824999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,25,0.311,14.5457,0.091340000000000005,10.923,12.052,13.257999999999999,14.545999999999999,15.917,17.373999999999999,18.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,26,0.30320000000000003,14.6225,0.091120000000000007,10.992000000000001,12.122999999999999,13.332000000000001,14.622,15.997999999999999,17.460999999999999,19.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,27,0.29549999999999998,14.697699999999999,0.090920000000000001,11.06,12.192,13.404,14.698,16.077000000000002,17.545999999999999,19.106000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,28,0.28810000000000002,14.7714,0.090719999999999995,11.125999999999999,12.26,13.474,14.771000000000001,16.155000000000001,17.629000000000001,19.196000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,29,0.28089999999999998,14.8436,0.090529999999999999,11.19,12.326000000000001,13.542999999999999,14.843999999999999,16.231999999999999,17.710999999999999,19.283999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,30,0.27379999999999999,14.914,0.09035,11.253,12.391,13.61,14.914,16.306000000000001,17.791,19.370999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,31,0.26690000000000003,14.982200000000001,0.09017,11.315,12.454000000000001,13.675000000000001,14.981999999999999,16.378,17.867999999999999,19.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,32,0.26019999999999999,15.048500000000001,0.09,11.374000000000001,12.515000000000001,13.739000000000001,15.048,16.449000000000002,17.943000000000001,19.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,33,0.25359999999999999,15.1127,0.089840000000000003,11.430999999999999,12.574,13.8,15.113,16.516999999999999,18.015999999999998,19.614000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,34,0.2472,15.175000000000001,0.089679999999999996,11.487,12.631,13.859,15.175000000000001,16.582999999999998,18.085999999999999,19.690000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,35,0.2409,15.2355,0.089529999999999998,11.542,12.686999999999999,13.917,15.236000000000001,16.646999999999998,18.155000000000001,19.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,36,0.23480000000000001,15.2942,0.089380000000000001,11.593999999999999,12.741,13.973000000000001,15.294,16.709,18.221,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,37,0.22869999999999999,15.351100000000001,0.08924,11.646000000000001,12.794,14.028,15.351000000000001,16.768999999999998,18.286000000000001,19.905999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,38,0.2228,15.4062,0.089099999999999999,11.695,12.845000000000001,14.08,15.406000000000001,16.827000000000002,18.347999999999999,19.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,39,0.217,15.4597,0.088969999999999994,11.743,12.894,14.131,15.46,16.884,18.408999999999999,20.039000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,40,0.21129999999999999,15.5115,0.088840000000000002,11.79,12.942,14.180999999999999,15.512,16.939,18.466999999999999,20.103000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,41,0.20580000000000001,15.5618,0.088709999999999997,11.836,12.989000000000001,14.228999999999999,15.561999999999999,16.992000000000001,18.524000000000001,20.164000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,42,0.20030000000000001,15.6107,0.088590000000000002,11.88,13.034000000000001,14.276,15.611000000000001,17.044,18.579999999999998,20.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,43,0.19489999999999999,15.658200000000001,0.088469999999999993,11.923,13.077999999999999,14.321,15.657999999999999,17.094000000000001,18.632999999999999,20.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,44,0.18959999999999999,15.7043,0.088349999999999998,11.965,13.121,14.366,15.704000000000001,17.141999999999999,18.684999999999999,20.338999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,45,0.18440000000000001,15.7492,0.088239999999999999,12.006,13.163,14.409000000000001,15.749000000000001,17.190000000000001,18.736000000000001,20.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,46,0.17929999999999999,15.792899999999999,0.08813,12.045999999999999,13.202999999999999,14.45,15.792999999999999,17.236000000000001,18.786000000000001,20.448 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,47,0.17430000000000001,15.8353,0.088020000000000001,12.084,13.243,14.491,15.835000000000001,17.280999999999999,18.832999999999998,20.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,48,0.16930000000000001,15.8767,0.087919999999999998,12.122,13.281000000000001,14.531000000000001,15.877000000000001,17.324999999999999,18.88,20.550999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,49,0.16450000000000001,15.9169,0.087819999999999995,12.159000000000001,13.319000000000001,14.569000000000001,15.917,17.367000000000001,18.925999999999998,20.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,50,0.15970000000000001,15.956,0.087720000000000006,12.195,13.355,14.606999999999999,15.956,17.408000000000001,18.97,20.648 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,51,0.155,15.9941,0.087620000000000003,12.23,13.391,14.644,15.994,17.448,19.013000000000002,20.693999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,52,0.15029999999999999,16.031099999999999,0.087529999999999997,12.263,13.425000000000001,14.679,16.030999999999999,17.488,19.055,20.74 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,53,0.1457,16.0672,0.087429999999999994,12.297000000000001,13.459,14.714,16.067,17.526,19.094999999999999,20.783999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,54,0.14119999999999999,16.1023,0.087340000000000001,12.329000000000001,13.492000000000001,14.747999999999999,16.102,17.562999999999999,19.135000000000002,20.827000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,55,0.1368,16.136500000000002,0.087249999999999994,12.361000000000001,13.523999999999999,14.781000000000001,16.137,17.599,19.173999999999999,20.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,56,0.13239999999999999,16.169799999999999,0.087169999999999997,12.391,13.555,14.811999999999999,16.170000000000002,17.634,19.210999999999999,20.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,57,0.128,16.202100000000002,0.087080000000000005,12.422000000000001,13.586,14.843999999999999,16.202000000000002,17.667999999999999,19.248000000000001,20.949000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,58,0.12379999999999999,16.233599999999999,0.086999999999999994,12.451000000000001,13.615,14.874000000000001,16.234000000000002,17.701000000000001,19.283000000000001,20.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,59,0.1196,16.264199999999999,0.086919999999999997,12.478999999999999,13.644,14.903,16.263999999999999,17.733000000000001,19.318000000000001,21.026 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,60,0.1154,16.2941,0.086840000000000001,12.507,13.672000000000001,14.932,16.294,17.765000000000001,19.350999999999999,21.062000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,61,0.1113,16.3231,0.086760000000000004,12.534000000000001,13.7,14.96,16.323,17.795000000000002,19.384,21.097999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,62,0.1072,16.351299999999998,0.086690000000000003,12.56,13.726000000000001,14.987,16.350999999999999,17.824999999999999,19.416,21.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,63,0.1032,16.378699999999998,0.086610000000000006,12.586,13.752000000000001,15.013999999999999,16.379000000000001,17.853999999999999,19.446999999999999,21.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,64,0.099299999999999999,16.4053,0.086540000000000006,12.611000000000001,13.776999999999999,15.04,16.405000000000001,17.882000000000001,19.477,21.199000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,65,0.095399999999999999,16.4312,0.086459999999999995,12.635999999999999,13.802,15.065,16.431000000000001,17.908999999999999,19.504999999999999,21.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,66,0.091499999999999998,16.456199999999999,0.086389999999999995,12.66,13.826000000000001,15.089,16.456,17.934999999999999,19.533000000000001,21.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,67,0.0877,16.480599999999999,0.086319999999999994,12.683,13.849,15.113,16.481000000000002,17.960999999999999,19.561,21.29 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,68,0.084000000000000005,16.504200000000001,0.086260000000000003,12.705,13.871,15.135,16.504000000000001,17.984999999999999,19.588000000000001,21.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,69,0.080299999999999996,16.527100000000001,0.086190000000000003,12.727,13.893000000000001,15.157999999999999,16.527000000000001,18.009,19.613,21.347000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,70,0.076600000000000001,16.549399999999999,0.086120000000000002,12.747999999999999,13.914999999999999,15.179,16.548999999999999,18.033000000000001,19.638000000000002,21.373999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,71,0.072900000000000006,16.571000000000002,0.086059999999999998,12.769,13.936,15.2,16.571000000000002,18.055,19.661999999999999,21.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,72,0.0693,16.591999999999999,0.085989999999999997,12.789,13.956,15.221,16.591999999999999,18.077000000000002,19.686,21.425999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,73,0.065799999999999997,16.612400000000001,0.085930000000000006,12.808999999999999,13.976000000000001,15.241,16.611999999999998,18.099,19.707999999999998,21.451000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,74,0.062300000000000001,16.632100000000001,0.085870000000000002,12.827999999999999,13.994999999999999,15.26,16.632000000000001,18.119,19.73,21.475000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,75,0.058799999999999998,16.651399999999999,0.085809999999999997,12.847,14.013,15.279,16.651,18.138999999999999,19.751999999999999,21.498999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,76,0.055399999999999998,16.670000000000002,0.085750000000000007,12.865,14.031000000000001,15.297000000000001,16.670000000000002,18.158999999999999,19.773,21.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,77,0.051999999999999998,16.688199999999998,0.085690000000000002,12.882999999999999,14.048999999999999,15.315,16.687999999999999,18.178000000000001,19.792999999999999,21.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,78,0.048599999999999997,16.7058,0.085639999999999994,12.9,14.066000000000001,15.332000000000001,16.706,18.196000000000002,19.812999999999999,21.565000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,79,0.045199999999999997,16.722899999999999,0.085580000000000003,12.917,14.083,15.349,16.722999999999999,18.213999999999999,19.832000000000001,21.585999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,80,0.0419,16.739599999999999,0.085519999999999999,12.933999999999999,14.099,15.365,16.739999999999998,18.231000000000002,19.850000000000001,21.606000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,81,0.038699999999999998,16.755700000000001,0.085470000000000004,12.949,14.115,15.381,16.756,18.248000000000001,19.867999999999999,21.626000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,82,0.035400000000000001,16.7715,0.08541,12.965,14.131,15.397,16.771999999999998,18.265000000000001,19.885000000000002,21.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,83,0.032199999999999999,16.7867,0.085360000000000005,12.98,14.145,15.411,16.786999999999999,18.28,19.902000000000001,21.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,84,0.029100000000000001,16.801600000000001,0.085309999999999997,12.994999999999999,14.16,15.426,16.802,18.295999999999999,19.919,21.681000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,85,0.025899999999999999,16.816099999999999,0.085260000000000002,13.01,14.173999999999999,15.44,16.815999999999999,18.311,19.934999999999999,21.699000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,86,0.022800000000000001,16.830100000000002,0.085209999999999994,13.023999999999999,14.188000000000001,15.454000000000001,16.829999999999998,18.326000000000001,19.951000000000001,21.716000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,87,0.019699999999999999,16.843800000000002,0.08516,13.038,14.202,15.468,16.844000000000001,18.34,19.966000000000001,21.733000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,88,0.0167,16.857099999999999,0.085110000000000005,13.051,14.215,15.481,16.856999999999999,18.353999999999999,19.98,21.748999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,89,0.0137,16.870100000000001,0.085059999999999997,13.065,14.228,15.494,16.87,18.367000000000001,19.995000000000001,21.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,90,0.010699999999999999,16.8827,0.085010000000000002,13.077999999999999,14.241,15.506,16.882999999999999,18.38,20.007999999999999,21.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,91,0.0077000000000000002,16.895,0.084959999999999994,13.090999999999999,14.253,15.518000000000001,16.895,18.393000000000001,20.021999999999998,21.794 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,92,0.0047999999999999996,16.9069,0.084919999999999995,13.103,14.265000000000001,15.53,16.907,18.405000000000001,20.035,21.809000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,93,0.0018,16.918600000000001,0.084870000000000001,13.115,14.276999999999999,15.542,16.919,18.417000000000002,20.047999999999998,21.823 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,94,-0.0011000000000000001,16.9299,0.084830000000000003,13.125999999999999,14.288,15.553000000000001,16.93,18.428999999999998,20.061,21.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,95,-0.0038999999999999998,16.940999999999999,0.084779999999999994,13.138,14.3,15.564,16.940999999999999,18.440000000000001,20.073,21.85 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,96,-0.0067999999999999996,16.951799999999999,0.084739999999999996,13.148999999999999,14.31,15.574999999999999,16.952000000000002,18.451000000000001,20.085000000000001,21.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,97,-0.0095999999999999992,16.962299999999999,0.084699999999999998,13.16,14.321,15.585000000000001,16.962,18.462,20.096,21.876000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,98,-0.0124,16.9725,0.084650000000000003,13.170999999999999,14.332000000000001,15.596,16.972000000000001,18.472999999999999,20.106999999999999,21.888000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,99,-0.015100000000000001,16.982500000000002,0.084610000000000005,13.182,14.342000000000001,15.606,16.981999999999999,18.483000000000001,20.117999999999999,21.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,100,-0.017899999999999999,16.9923,0.084570000000000006,13.192,14.352,15.615,16.992000000000001,18.492999999999999,20.129000000000001,21.911999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,101,-0.0206,17.001799999999999,0.084529999999999994,13.202,14.362,15.625,17.001999999999999,18.503,20.138999999999999,21.923999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,102,-0.023300000000000001,17.011099999999999,0.084489999999999996,13.212,14.371,15.634,17.010999999999999,18.512,20.149999999999999,21.934999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,103,-0.025999999999999999,17.020099999999999,0.084449999999999997,13.222,14.38,15.643000000000001,17.02,18.521999999999998,20.158999999999999,21.946000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,104,-0.0287,17.029,0.084409999999999999,13.231999999999999,14.39,15.651999999999999,17.029,18.530999999999999,20.169,21.957000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,105,-0.031300000000000001,17.037600000000001,0.084370000000000001,13.241,14.398999999999999,15.661,17.038,18.54,20.178000000000001,21.966999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,106,-0.0339,17.046099999999999,0.084330000000000002,13.25,14.407,15.669,17.045999999999999,18.547999999999998,20.187999999999999,21.977 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,107,-0.036499999999999998,17.054400000000001,0.084290000000000004,13.259,14.416,15.678000000000001,17.053999999999998,18.556999999999999,20.196000000000002,21.986999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,108,-0.039100000000000003,17.0624,0.084260000000000002,13.268000000000001,14.423999999999999,15.686,17.062000000000001,18.565000000000001,20.206,21.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,109,-0.041599999999999998,17.070399999999999,0.084220000000000003,13.276999999999999,14.433,15.694000000000001,17.07,18.573,20.213999999999999,22.007000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,110,-0.044200000000000003,17.078099999999999,0.084180000000000005,13.285,14.441000000000001,15.702,17.077999999999999,18.581,20.222000000000001,22.015999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,111,-0.046699999999999998,17.085699999999999,0.084150000000000003,13.292999999999999,14.449,15.709,17.085999999999999,18.588999999999999,20.231000000000002,22.024999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,112,-0.049200000000000001,17.0931,0.084110000000000004,13.302,14.457000000000001,15.717000000000001,17.093,18.596,20.239000000000001,22.033999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,113,-0.051700000000000003,17.100300000000001,0.084080000000000002,13.31,14.464,15.724,17.100000000000001,18.603999999999999,20.247,22.042999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,114,-0.054100000000000002,17.107399999999998,0.084040000000000004,13.318,14.472,15.731,17.106999999999999,18.611000000000001,20.254000000000001,22.050999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,115,-0.056599999999999998,17.1144,0.084010000000000001,13.324999999999999,14.478999999999999,15.738,17.114000000000001,18.617999999999999,20.262,22.06 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,116,-0.058999999999999997,17.121200000000002,0.083970000000000003,13.333,14.486000000000001,15.746,17.120999999999999,18.625,20.268999999999998,22.068000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,117,-0.061400000000000003,17.1279,0.083940000000000001,13.340999999999999,14.493,15.752000000000001,17.128,18.632000000000001,20.276,22.076000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,118,-0.063799999999999996,17.134399999999999,0.083909999999999998,13.348000000000001,14.5,15.759,17.134,18.638000000000002,20.283999999999999,22.084 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,119,-0.066199999999999995,17.140899999999998,0.08387,13.356,14.507,15.766,17.140999999999998,18.645,20.29,22.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,120,-0.068599999999999994,17.147200000000002,0.083839999999999998,13.363,14.513999999999999,15.772,17.146999999999998,18.651,20.297000000000001,22.099 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,121,-0.070900000000000005,17.153300000000002,0.083809999999999996,13.369,14.52,15.778,17.152999999999999,18.658000000000001,20.303999999999998,22.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,122,-0.073200000000000001,17.159400000000002,0.083779999999999993,13.375999999999999,14.526999999999999,15.784000000000001,17.158999999999999,18.664000000000001,20.311,22.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,123,-0.075600000000000001,17.165299999999998,0.083750000000000005,13.382999999999999,14.532999999999999,15.79,17.164999999999999,18.670000000000002,20.317,22.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,124,-0.077899999999999997,17.171199999999999,0.083710000000000007,13.39,14.54,15.797000000000001,17.170999999999999,18.675999999999998,20.323,22.128 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,125,-0.080100000000000005,17.1769,0.083680000000000004,13.397,14.545999999999999,15.802,17.177,18.681000000000001,20.329000000000001,22.135000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,126,-0.082400000000000001,17.182500000000001,0.083650000000000002,13.403,14.552,15.808,17.181999999999999,18.687000000000001,20.335000000000001,22.141999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,127,-0.084699999999999998,17.187999999999999,0.08362,13.41,14.558,15.814,17.187999999999999,18.693000000000001,20.341000000000001,22.149000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,128,-0.086900000000000005,17.1934,0.083589999999999998,13.416,14.564,15.819000000000001,17.193000000000001,18.698,20.347000000000001,22.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,129,-0.089099999999999999,17.198699999999999,0.083559999999999995,13.422000000000001,14.57,15.824999999999999,17.199000000000002,18.702999999999999,20.353000000000002,22.161000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,130,-0.091300000000000006,17.203800000000001,0.083540000000000003,13.428000000000001,14.574999999999999,15.83,17.204000000000001,18.709,20.358000000000001,22.167999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,131,-0.0935,17.2089,0.083510000000000001,13.433999999999999,14.581,15.835000000000001,17.209,18.713999999999999,20.364000000000001,22.173999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,132,-0.095699999999999993,17.213799999999999,0.083479999999999999,13.44,14.586,15.84,17.213999999999999,18.719000000000001,20.369,22.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,133,-0.097900000000000001,17.218699999999998,0.083449999999999996,13.446,14.592000000000001,15.845000000000001,17.219000000000001,18.724,20.373999999999999,22.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,134,-0.1,17.223400000000002,0.083419999999999994,13.451000000000001,14.597,15.85,17.222999999999999,18.728000000000002,20.379000000000001,22.192 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,135,-0.1022,17.228100000000001,0.083400000000000002,13.457000000000001,14.602,15.855,17.228000000000002,18.733000000000001,20.385000000000002,22.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,136,-0.1043,17.232600000000001,0.08337,13.462,14.606999999999999,15.86,17.233000000000001,18.738,20.388999999999999,22.202999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,137,-0.10639999999999999,17.236999999999998,0.083339999999999997,13.468,14.612,15.865,17.236999999999998,18.742000000000001,20.393999999999998,22.207999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,138,-0.1085,17.241399999999999,0.083320000000000005,13.473000000000001,14.617000000000001,15.869,17.241,18.747,20.399000000000001,22.213999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,139,-0.1106,17.2456,0.083290000000000003,13.478,14.621,15.872999999999999,17.245999999999999,18.751000000000001,20.402999999999999,22.219000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,140,-0.11269999999999999,17.249700000000001,0.083260000000000001,13.483000000000001,14.625999999999999,15.878,17.25,18.754999999999999,20.407,22.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,141,-0.1147,17.253699999999998,0.083239999999999995,13.488,14.631,15.882,17.254000000000001,18.759,20.411999999999999,22.228999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,142,-0.1168,17.2576,0.083210000000000006,13.493,14.635,15.885999999999999,17.257999999999999,18.763000000000002,20.416,22.233000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,143,-0.1188,17.261500000000002,0.08319,13.497999999999999,14.638999999999999,15.89,17.262,18.766999999999999,20.420000000000002,22.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,144,-0.1208,17.2652,0.083159999999999998,13.503,14.644,15.894,17.265000000000001,18.77,20.423999999999999,22.242999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,145,-0.1229,17.268799999999999,0.083140000000000006,13.507,14.648,15.898,17.268999999999998,18.774000000000001,20.428000000000001,22.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,146,-0.1249,17.272300000000001,0.083110000000000003,13.512,14.651999999999999,15.901999999999999,17.271999999999998,18.777000000000001,20.431000000000001,22.251000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,147,-0.12690000000000001,17.275700000000001,0.083089999999999997,13.516,14.656000000000001,15.904999999999999,17.276,18.780999999999999,20.434999999999999,22.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,148,-0.1288,17.2791,0.083059999999999995,13.521000000000001,14.66,15.909000000000001,17.279,18.783999999999999,20.439,22.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,149,-0.1308,17.282299999999999,0.083040000000000003,13.525,14.664,15.912000000000001,17.282,18.786999999999999,20.442,22.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,150,-0.1328,17.285399999999999,0.083019999999999997,13.529,14.667,15.916,17.285,18.79,20.445,22.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,151,-0.13469999999999999,17.288499999999999,0.082989999999999994,13.532999999999999,14.670999999999999,15.919,17.288,18.792999999999999,20.448,22.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,152,-0.1366,17.291399999999999,0.082970000000000002,13.537000000000001,14.675000000000001,15.922000000000001,17.291,18.795999999999999,20.452000000000002,22.274999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,153,-0.1386,17.2943,0.082949999999999996,13.541,14.678000000000001,15.925000000000001,17.294,18.798999999999999,20.454999999999998,22.277999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,154,-0.14050000000000001,17.297000000000001,0.082919999999999994,13.545,14.682,15.928000000000001,17.297000000000001,18.802,20.457000000000001,22.280999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,155,-0.1424,17.299700000000001,0.082900000000000001,13.548999999999999,14.685,15.930999999999999,17.3,18.803999999999998,20.46,22.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,156,-0.14430000000000001,17.302299999999999,0.082879999999999995,13.552,14.688000000000001,15.933999999999999,17.302,18.806999999999999,20.463000000000001,22.288 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,157,-0.1462,17.3048,0.082849999999999993,13.555999999999999,14.691000000000001,15.936999999999999,17.305,18.809000000000001,20.465,22.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,158,-0.14799999999999999,17.307200000000002,0.082830000000000001,13.56,14.694000000000001,15.939,17.306999999999999,18.811,20.468,22.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,159,-0.14990000000000001,17.3095,0.082809999999999995,13.563000000000001,14.696999999999999,15.942,17.309999999999999,18.814,20.47,22.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,160,-0.15179999999999999,17.311699999999998,0.082790000000000002,13.566000000000001,14.7,15.944000000000001,17.312000000000001,18.815999999999999,20.472000000000001,22.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,161,-0.15359999999999999,17.3139,0.082769999999999996,13.569000000000001,14.702999999999999,15.946999999999999,17.314,18.818000000000001,20.475000000000001,22.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,162,-0.15540000000000001,17.315999999999999,0.082750000000000004,13.573,14.706,15.949,17.315999999999999,18.82,20.477,22.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,163,-0.1573,17.318000000000001,0.082720000000000002,13.576000000000001,14.708,15.952,17.318000000000001,18.821999999999999,20.478999999999999,22.306999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,164,-0.15909999999999999,17.319900000000001,0.082699999999999996,13.579000000000001,14.711,15.954000000000001,17.32,18.823,20.48,22.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,165,-0.16089999999999999,17.3218,0.082680000000000003,13.582000000000001,14.714,15.956,17.321999999999999,18.824999999999999,20.481999999999999,22.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,166,-0.16270000000000001,17.323499999999999,0.082659999999999997,13.585000000000001,14.715999999999999,15.958,17.324000000000002,18.827000000000002,20.484000000000002,22.312999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,167,-0.16450000000000001,17.325199999999999,0.082640000000000005,13.587999999999999,14.718,15.96,17.324999999999999,18.827999999999999,20.486000000000001,22.315000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,168,-0.1663,17.326799999999999,0.082619999999999999,13.59,14.721,15.962,17.327000000000002,18.829999999999998,20.486999999999998,22.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,169,-0.16800000000000001,17.328399999999998,0.082600000000000007,13.593,14.723000000000001,15.964,17.327999999999999,18.831,20.489000000000001,22.318999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,170,-0.16980000000000001,17.329899999999999,0.082580000000000001,13.596,14.725,15.965,17.329999999999998,18.832999999999998,20.49,22.321000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,171,-0.17150000000000001,17.331299999999999,0.082559999999999995,13.598000000000001,14.727,15.967000000000001,17.331,18.834,20.492000000000001,22.323 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,172,-0.17330000000000001,17.332599999999999,0.082540000000000002,13.601000000000001,14.728999999999999,15.968999999999999,17.332999999999998,18.835000000000001,20.492999999999999,22.324000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,173,-0.17499999999999999,17.3338,0.082519999999999996,13.603,14.731,15.97,17.334,18.835999999999999,20.494,22.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,174,-0.17680000000000001,17.335000000000001,0.082500000000000004,13.606,14.733000000000001,15.972,17.335000000000001,18.837,20.495000000000001,22.327000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,175,-0.17849999999999999,17.336099999999998,0.082479999999999998,13.608000000000001,14.734999999999999,15.973000000000001,17.335999999999999,18.838000000000001,20.495999999999999,22.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,176,-0.1802,17.3371,0.082460000000000006,13.61,14.737,15.975,17.337,18.838999999999999,20.497,22.33 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,177,-0.18190000000000001,17.338100000000001,0.082439999999999999,13.612,14.738,15.976000000000001,17.338000000000001,18.84,20.498000000000001,22.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,178,-0.18360000000000001,17.338999999999999,0.082419999999999993,13.615,14.74,15.977,17.338999999999999,18.84,20.498000000000001,22.332000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,179,-0.18529999999999999,17.3398,0.082409999999999997,13.616,14.741,15.978,17.34,18.841000000000001,20.498999999999999,22.332999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,180,-0.187,17.340599999999998,0.082390000000000005,13.618,14.743,15.978999999999999,17.341000000000001,18.841999999999999,20.5,22.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,181,-0.18859999999999999,17.341200000000001,0.082369999999999999,13.62,14.744,15.98,17.341000000000001,18.841999999999999,20.5,22.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,182,-0.1903,17.341899999999999,0.082350000000000007,13.622,14.746,15.981,17.341999999999999,18.843,20.501000000000001,22.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,183,-0.19189999999999999,17.342400000000001,0.08233,13.624000000000001,14.747,15.981999999999999,17.341999999999999,18.843,20.501000000000001,22.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,184,-0.19359999999999999,17.3429,0.082309999999999994,13.625999999999999,14.747999999999999,15.983000000000001,17.343,18.843,20.501000000000001,22.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,185,-0.19520000000000001,17.343299999999999,0.082299999999999998,13.627000000000001,14.749000000000001,15.984,17.343,18.844000000000001,20.501999999999999,22.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,186,-0.19689999999999999,17.343699999999998,0.082280000000000006,13.629,14.750999999999999,15.984,17.344000000000001,18.844000000000001,20.501999999999999,22.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,187,-0.19850000000000001,17.343900000000001,0.08226,13.631,14.752000000000001,15.984999999999999,17.344000000000001,18.844000000000001,20.501999999999999,22.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,188,-0.2001,17.344100000000001,0.082239999999999994,13.632,14.753,15.984999999999999,17.344000000000001,18.844000000000001,20.501999999999999,22.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,189,-0.20169999999999999,17.3443,0.082220000000000001,13.634,14.754,15.986000000000001,17.344000000000001,18.844000000000001,20.501000000000001,22.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,190,-0.20330000000000001,17.3444,0.082210000000000005,13.635,14.754,15.986000000000001,17.344000000000001,18.844000000000001,20.501999999999999,22.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,191,-0.2049,17.3444,0.082189999999999999,13.635999999999999,14.755000000000001,15.987,17.344000000000001,18.843,20.501000000000001,22.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,192,-0.20649999999999999,17.3443,0.082170000000000007,13.637,14.756,15.987,17.344000000000001,18.843,20.501000000000001,22.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,193,-0.20810000000000001,17.344200000000001,0.082159999999999997,13.638,14.757,15.987,17.344000000000001,18.843,20.501000000000001,22.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,194,-0.2097,17.344000000000001,0.082140000000000005,13.64,14.757,15.987,17.344000000000001,18.841999999999999,20.5,22.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,195,-0.2112,17.343800000000002,0.082119999999999999,13.641,14.757999999999999,15.988,17.344000000000001,18.841999999999999,20.498999999999999,22.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,196,-0.21279999999999999,17.343399999999999,0.082100000000000006,13.641999999999999,14.757999999999999,15.988,17.343,18.841000000000001,20.498000000000001,22.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,197,-0.21440000000000001,17.3431,0.082089999999999996,13.643000000000001,14.759,15.988,17.343,18.841000000000001,20.498000000000001,22.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,198,-0.21590000000000001,17.342600000000001,0.082070000000000004,13.644,14.759,15.988,17.343,18.84,20.497,22.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,199,-0.21740000000000001,17.342099999999999,0.082049999999999998,13.645,14.76,15.988,17.341999999999999,18.838999999999999,20.495999999999999,22.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,200,-0.219,17.3416,0.082040000000000002,13.645,14.76,15.987,17.341999999999999,18.838000000000001,20.495999999999999,22.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,201,-0.2205,17.340900000000001,0.082019999999999996,13.646000000000001,14.76,15.987,17.341000000000001,18.837,20.494,22.332999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,202,-0.222,17.340199999999999,0.08201,13.646000000000001,14.76,15.987,17.34,18.835999999999999,20.494,22.332000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,203,-0.2235,17.339500000000001,0.081989999999999993,13.647,14.76,15.986000000000001,17.34,18.835000000000001,20.492000000000001,22.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,204,-0.22509999999999999,17.338699999999999,0.081970000000000001,13.648,14.76,15.986000000000001,17.338999999999999,18.834,20.491,22.33 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,205,-0.2266,17.337800000000001,0.081960000000000005,13.648,14.76,15.984999999999999,17.338000000000001,18.832999999999998,20.49,22.329000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,206,-0.2281,17.3369,0.081939999999999999,13.648999999999999,14.76,15.984999999999999,17.337,18.832000000000001,20.488,22.327000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,207,-0.22950000000000001,17.335899999999999,0.081930000000000003,13.648999999999999,14.76,15.984,17.335999999999999,18.831,20.486999999999998,22.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,208,-0.23100000000000001,17.334900000000001,0.081909999999999997,13.65,14.76,15.984,17.335000000000001,18.829000000000001,20.486000000000001,22.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,209,-0.23250000000000001,17.3338,0.081890000000000004,13.65,14.76,15.983000000000001,17.334,18.827999999999999,20.484000000000002,22.323 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,210,-0.23400000000000001,17.332599999999999,0.081879999999999994,13.65,14.76,15.981999999999999,17.332999999999998,18.826000000000001,20.481999999999999,22.321999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,211,-0.2354,17.331399999999999,0.081860000000000002,13.65,14.759,15.981999999999999,17.331,18.824999999999999,20.481000000000002,22.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,212,-0.2369,17.330200000000001,0.081850000000000006,13.651,14.759,15.981,17.329999999999998,18.823,20.478999999999999,22.318999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,213,-0.2384,17.328900000000001,0.08183,13.651,14.759,15.98,17.329000000000001,18.821999999999999,20.477,22.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,214,-0.23980000000000001,17.327500000000001,0.081820000000000004,13.651,14.757999999999999,15.978999999999999,17.327999999999999,18.82,20.475999999999999,22.315000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,215,-0.24129999999999999,17.3261,0.081799999999999998,13.651,14.757999999999999,15.978,17.326000000000001,18.818000000000001,20.472999999999999,22.312999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,216,-0.2427,17.3246,0.081790000000000002,13.651,14.757,15.977,17.324999999999999,18.817,20.472000000000001,22.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,217,-0.24410000000000001,17.323,0.081769999999999995,13.651,14.756,15.976000000000001,17.323,18.815000000000001,20.469000000000001,22.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,218,-0.24560000000000001,17.3215,0.081759999999999999,13.65,14.756,15.975,17.321999999999999,18.812999999999999,20.468,22.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,219,-0.247,17.319800000000001,0.081739999999999993,13.65,14.755000000000001,15.973000000000001,17.32,18.811,20.465,22.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,220,-0.24840000000000001,17.318100000000001,0.081729999999999997,13.65,14.754,15.972,17.318000000000001,18.809000000000001,20.463000000000001,22.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,221,-0.24979999999999999,17.316400000000002,0.081710000000000005,13.65,14.754,15.971,17.315999999999999,18.806999999999999,20.460999999999999,22.300999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,222,-0.25119999999999998,17.314599999999999,0.081699999999999995,13.648999999999999,14.753,15.968999999999999,17.315000000000001,18.805,20.457999999999998,22.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,223,-0.25259999999999999,17.3127,0.081680000000000003,13.648999999999999,14.752000000000001,15.968,17.312999999999999,18.802,20.456,22.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,224,-0.254,17.3108,0.081670000000000006,13.648999999999999,14.750999999999999,15.967000000000001,17.311,18.8,20.454000000000001,22.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,225,-0.25540000000000002,17.308900000000001,0.08165,13.648,14.75,15.965,17.309000000000001,18.797999999999998,20.451000000000001,22.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,226,-0.25679999999999997,17.306899999999999,0.081640000000000004,13.648,14.749000000000001,15.964,17.306999999999999,18.795000000000002,20.448,22.288 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,227,-0.2581,17.3048,0.081629999999999994,13.647,14.747,15.962,17.305,18.792999999999999,20.446000000000002,22.286000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,228,-0.25950000000000001,17.302700000000002,0.081610000000000002,13.647,14.746,15.96,17.303000000000001,18.79,20.443000000000001,22.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,229,-0.26090000000000002,17.300599999999999,0.081600000000000006,13.646000000000001,14.744999999999999,15.959,17.300999999999998,18.788,20.440000000000001,22.28 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,230,-0.26219999999999999,17.298400000000001,0.08158,13.645,14.744,15.957000000000001,17.297999999999998,18.785,20.437000000000001,22.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,231,-0.2636,17.296199999999999,0.081570000000000004,13.645,14.743,15.955,17.295999999999999,18.783000000000001,20.434999999999999,22.274999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,232,-0.26500000000000001,17.293900000000001,0.081549999999999997,13.644,14.742000000000001,15.952999999999999,17.294,18.78,20.431999999999999,22.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,233,-0.26629999999999998,17.291599999999999,0.081540000000000001,13.643000000000001,14.74,15.952,17.292000000000002,18.777000000000001,20.428999999999998,22.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,234,-0.2676,17.289200000000001,0.081530000000000005,13.641999999999999,14.739000000000001,15.95,17.289000000000001,18.774999999999999,20.425999999999998,22.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,235,-0.26900000000000002,17.286799999999999,0.081509999999999999,13.641999999999999,14.738,15.948,17.286999999999999,18.771999999999998,20.422999999999998,22.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,236,-0.27029999999999998,17.284400000000002,0.081500000000000003,13.641,14.736000000000001,15.946,17.283999999999999,18.768999999999998,20.420000000000002,22.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,237,-0.27160000000000001,17.2819,0.081490000000000007,13.638999999999999,14.734,15.944000000000001,17.282,18.765999999999998,20.417000000000002,22.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,238,-0.27300000000000002,17.279399999999999,0.081470000000000001,13.638999999999999,14.733000000000001,15.942,17.279,18.763000000000002,20.413,22.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,239,-0.27429999999999999,17.276800000000001,0.081460000000000005,13.638,14.731,15.94,17.277000000000001,18.760000000000002,20.41,22.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,240,-0.27560000000000001,17.2742,0.081449999999999995,13.635999999999999,14.73,15.936999999999999,17.274000000000001,18.757000000000001,20.407,22.245999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,241,-0.27689999999999998,17.2715,0.081430000000000002,13.635,14.728,15.935,17.271999999999998,18.754000000000001,20.402999999999999,22.242000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,242,-0.2782,17.268799999999999,0.081420000000000006,13.634,14.726000000000001,15.933,17.268999999999998,18.751000000000001,20.399999999999999,22.239000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,243,-0.27950000000000003,17.266100000000002,0.081409999999999996,13.632999999999999,14.725,15.930999999999999,17.265999999999998,18.748000000000001,20.396999999999998,22.236000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,244,-0.28079999999999999,17.263300000000001,0.081390000000000004,13.632,14.723000000000001,15.928000000000001,17.263000000000002,18.745000000000001,20.393000000000001,22.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,245,-0.28210000000000002,17.2605,0.081379999999999994,13.631,14.721,15.926,17.260000000000002,18.742000000000001,20.39,22.228000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,246,-0.28339999999999999,17.2577,0.081369999999999998,13.629,14.718999999999999,15.923999999999999,17.257999999999999,18.739000000000001,20.385999999999999,22.225000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,247,-0.28470000000000001,17.254799999999999,0.081350000000000006,13.628,14.718,15.920999999999999,17.254999999999999,18.734999999999999,20.382999999999999,22.221 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,248,-0.28589999999999999,17.251899999999999,0.081339999999999996,13.627000000000001,14.715999999999999,15.919,17.251999999999999,18.731999999999999,20.379000000000001,22.216999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,249,-0.28720000000000001,17.248999999999999,0.08133,13.625,14.714,15.917,17.248999999999999,18.728999999999999,20.376000000000001,22.213999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,250,-0.28849999999999998,17.245999999999999,0.081309999999999993,13.624000000000001,14.712,15.914,17.245999999999999,18.725000000000001,20.372,22.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,251,-0.2898,17.242999999999999,0.081299999999999997,13.622999999999999,14.71,15.912000000000001,17.242999999999999,18.722000000000001,20.367999999999999,22.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,252,-0.29099999999999998,17.239899999999999,0.081290000000000001,13.621,14.708,15.909000000000001,17.239999999999998,18.718,20.364000000000001,22.202000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,253,-0.2923,17.236799999999999,0.081280000000000005,13.62,14.706,15.906000000000001,17.236999999999998,18.715,20.36,22.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,254,-0.29349999999999998,17.233699999999999,0.081259999999999999,13.618,14.704000000000001,15.904,17.234000000000002,18.710999999999999,20.356000000000002,22.193999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,255,-0.29480000000000001,17.230599999999999,0.081250000000000003,13.617000000000001,14.702,15.901,17.231000000000002,18.707999999999998,20.353000000000002,22.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,256,-0.29599999999999999,17.227399999999999,0.081240000000000007,13.615,14.699,15.898,17.227,18.704000000000001,20.349,22.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,257,-0.29720000000000002,17.2242,0.081220000000000001,13.614000000000001,14.696999999999999,15.896000000000001,17.224,18.7,20.344000000000001,22.181000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,258,-0.29849999999999999,17.221,0.081210000000000004,13.612,14.695,15.893000000000001,17.221,18.696999999999999,20.341000000000001,22.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,259,-0.29970000000000002,17.217700000000001,0.081199999999999994,13.61,14.693,15.89,17.218,18.693000000000001,20.337,22.172999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,260,-0.3009,17.214400000000001,0.081189999999999998,13.608000000000001,14.691000000000001,15.887,17.213999999999999,18.689,20.332999999999998,22.169 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,261,-0.30220000000000002,17.211099999999998,0.081170000000000006,13.606999999999999,14.689,15.885,17.210999999999999,18.684999999999999,20.327999999999999,22.164000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,262,-0.3034,17.207799999999999,0.081159999999999996,13.605,14.686,15.882,17.207999999999998,18.681999999999999,20.324000000000002,22.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,263,-0.30459999999999998,17.2044,0.08115,13.603,14.683999999999999,15.879,17.204000000000001,18.678000000000001,20.32,22.155999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,264,-0.30580000000000002,17.2011,0.081140000000000004,13.602,14.682,15.875999999999999,17.201000000000001,18.673999999999999,20.315999999999999,22.152000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,265,-0.307,17.197600000000001,0.081129999999999994,13.6,14.679,15.872999999999999,17.198,18.670000000000002,20.312000000000001,22.148 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,266,-0.30819999999999997,17.194199999999999,0.081110000000000002,13.598000000000001,14.677,15.87,17.193999999999999,18.666,20.306999999999999,22.143000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,267,-0.30940000000000001,17.190799999999999,0.081100000000000005,13.596,14.675000000000001,15.868,17.190999999999999,18.661999999999999,20.303000000000001,22.138999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,268,-0.31059999999999999,17.1873,0.081089999999999995,13.593999999999999,14.672000000000001,15.865,17.187000000000001,18.658000000000001,20.298999999999999,22.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,269,-0.31180000000000002,17.183800000000002,0.081079999999999999,13.592000000000001,14.67,15.862,17.184000000000001,18.655000000000001,20.295000000000002,22.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,270,-0.313,17.180299999999999,0.081070000000000003,13.59,14.667,15.858000000000001,17.18,18.651,20.291,22.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,271,-0.31419999999999998,17.1767,0.081049999999999997,13.589,14.664999999999999,15.856,17.177,18.646000000000001,20.286000000000001,22.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,272,-0.31530000000000002,17.173100000000002,0.081040000000000001,13.587,14.662000000000001,15.852,17.172999999999998,18.641999999999999,20.282,22.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,273,-0.3165,17.169599999999999,0.081030000000000005,13.585000000000001,14.66,15.849,17.170000000000002,18.638000000000002,20.277000000000001,22.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,274,-0.31769999999999998,17.165900000000001,0.081019999999999995,13.583,14.657,15.846,17.166,18.634,20.273,22.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,275,-0.31890000000000002,17.162299999999998,0.081009999999999999,13.581,14.654,15.843,17.161999999999999,18.63,20.268999999999998,22.102 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,276,-0.32,17.1587,0.080990000000000006,13.579000000000001,14.651999999999999,15.84,17.158999999999999,18.626000000000001,20.263999999999999,22.097000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,277,-0.32119999999999999,17.155000000000001,0.080979999999999996,13.577,14.648999999999999,15.837,17.155000000000001,18.622,20.259,22.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,278,-0.32229999999999998,17.151299999999999,0.08097,13.574999999999999,14.647,15.834,17.151,18.617999999999999,20.254999999999999,22.088000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,279,-0.32350000000000001,17.147600000000001,0.080960000000000004,13.573,14.644,15.831,17.148,18.614000000000001,20.25,22.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,280,-0.3246,17.143899999999999,0.080949999999999994,13.57,14.641,15.827,17.143999999999998,18.61,20.245999999999999,22.077999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,281,-0.32579999999999998,17.1402,0.080939999999999998,13.568,14.638999999999999,15.824,17.14,18.605,20.241,22.074000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,282,-0.32690000000000002,17.136399999999998,0.080930000000000002,13.566000000000001,14.635999999999999,15.821,17.135999999999999,18.600999999999999,20.236999999999998,22.068999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,283,-0.3281,17.1326,0.080909999999999996,13.564,14.632999999999999,15.818,17.132999999999999,18.597000000000001,20.231999999999999,22.062999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,284,-0.32919999999999999,17.128799999999998,0.0809,13.561999999999999,14.631,15.814,17.129000000000001,18.591999999999999,20.227,22.059000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,285,-0.33029999999999998,17.125,0.080890000000000004,13.56,14.628,15.811,17.125,18.588000000000001,20.222999999999999,22.053999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,286,-0.33150000000000002,17.121200000000002,0.080879999999999994,13.558,14.625,15.808,17.120999999999999,18.584,20.218,22.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,287,-0.33260000000000001,17.1174,0.080869999999999997,13.555,14.622,15.804,17.117000000000001,18.579999999999998,20.213000000000001,22.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,288,-0.3337,17.113499999999998,0.080860000000000001,13.553000000000001,14.62,15.801,17.114000000000001,18.574999999999999,20.209,22.039000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,289,-0.33479999999999999,17.1097,0.080850000000000005,13.551,14.617000000000001,15.798,17.11,18.571000000000002,20.204000000000001,22.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,290,-0.33589999999999998,17.105799999999999,0.080839999999999995,13.548,14.614000000000001,15.794,17.106000000000002,18.567,20.199000000000002,22.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,291,-0.33710000000000001,17.101900000000001,0.080820000000000003,13.547000000000001,14.611000000000001,15.791,17.102,18.562000000000001,20.193999999999999,22.024000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,292,-0.3382,17.097999999999999,0.080810000000000007,13.544,14.609,15.788,17.097999999999999,18.558,20.190000000000001,22.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,293,-0.33929999999999999,17.094100000000001,0.080799999999999997,13.542,14.606,15.784000000000001,17.094000000000001,18.553999999999998,20.184999999999999,22.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,294,-0.34039999999999998,17.0901,0.080790000000000001,13.539,14.603,15.781000000000001,17.09,18.548999999999999,20.18,22.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,295,-0.34150000000000003,17.086200000000002,0.080780000000000005,13.537000000000001,14.6,15.778,17.085999999999999,18.545000000000002,20.175000000000001,22.004000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,296,-0.34260000000000002,17.0823,0.080769999999999995,13.535,14.597,15.773999999999999,17.082000000000001,18.54,20.170999999999999,21.998999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,297,-0.34370000000000001,17.078299999999999,0.080759999999999998,13.532,14.593999999999999,15.771000000000001,17.077999999999999,18.536000000000001,20.166,21.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,298,-0.3448,17.074300000000001,0.080750000000000002,13.53,14.590999999999999,15.766999999999999,17.074000000000002,18.530999999999999,20.161000000000001,21.989000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,299,-0.3458,17.0703,0.080740000000000006,13.528,14.587999999999999,15.763999999999999,17.07,18.527000000000001,20.155999999999999,21.984000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,300,-0.34689999999999999,17.066299999999998,0.080729999999999996,13.525,14.585000000000001,15.76,17.065999999999999,18.523,20.151,21.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,301,-0.34799999999999998,17.0623,0.080710000000000004,13.523,14.583,15.757,17.062000000000001,18.518000000000001,20.146000000000001,21.972999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,302,-0.34910000000000002,17.058299999999999,0.080699999999999994,13.521000000000001,14.58,15.753,17.058,18.513000000000002,20.140999999999998,21.968 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,303,-0.35020000000000001,17.054300000000001,0.080689999999999998,13.518000000000001,14.577,15.75,17.053999999999998,18.509,20.135999999999999,21.963000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,304,-0.35120000000000001,17.0503,0.080680000000000002,13.516,14.574,15.746,17.05,18.504000000000001,20.131,21.957999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,305,-0.3523,17.046299999999999,0.080670000000000006,13.513,14.571,15.743,17.045999999999999,18.5,20.126999999999999,21.952999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,306,-0.35339999999999999,17.042200000000001,0.080659999999999996,13.510999999999999,14.568,15.739000000000001,17.042000000000002,18.495000000000001,20.122,21.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,307,-0.35439999999999999,17.0382,0.080649999999999999,13.509,14.565,15.736000000000001,17.038,18.491,20.117000000000001,21.942 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,308,-0.35549999999999998,17.034099999999999,0.080640000000000003,13.506,14.561999999999999,15.731999999999999,17.033999999999999,18.486000000000001,20.111999999999998,21.937000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,309,-0.35649999999999998,17.030100000000001,0.080629999999999993,13.504,14.558999999999999,15.728999999999999,17.03,18.481999999999999,20.106999999999999,21.931999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,310,-0.35759999999999997,17.026,0.080619999999999997,13.500999999999999,14.555999999999999,15.725,17.026,18.477,20.102,21.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,311,-0.35859999999999997,17.021899999999999,0.080610000000000001,13.499000000000001,14.553000000000001,15.722,17.021999999999998,18.472999999999999,20.097000000000001,21.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,312,-0.35970000000000002,17.017800000000001,0.080600000000000005,13.496,14.55,15.718,17.018000000000001,18.468,20.091999999999999,21.916 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,313,-0.36070000000000002,17.0138,0.080589999999999995,13.494,14.547000000000001,15.715,17.013999999999999,18.463999999999999,20.087,21.911000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,314,-0.36180000000000001,17.009699999999999,0.080579999999999999,13.491,14.544,15.711,17.010000000000002,18.459,20.082000000000001,21.905999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,315,-0.36280000000000001,17.005600000000001,0.080570000000000003,13.489000000000001,14.54,15.707000000000001,17.006,18.454999999999998,20.077000000000002,21.901 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,316,-0.36380000000000001,17.0015,0.080560000000000007,13.486000000000001,14.537000000000001,15.704000000000001,17.001999999999999,18.45,20.071999999999999,21.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,317,-0.3649,16.997399999999999,0.080549999999999997,13.484,14.534000000000001,15.7,16.997,18.445,20.067,21.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,318,-0.3659,16.993300000000001,0.08054,13.481,14.531000000000001,15.696999999999999,16.992999999999999,18.440999999999999,20.062000000000001,21.885000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,319,-0.3669,16.9892,0.080530000000000004,13.478999999999999,14.528,15.693,16.989000000000001,18.436,20.056999999999999,21.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,320,-0.3679,16.984999999999999,0.080519999999999994,13.476000000000001,14.525,15.689,16.984999999999999,18.431999999999999,20.052,21.873999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,321,-0.36899999999999999,16.980899999999998,0.080509999999999998,13.473000000000001,14.522,15.686,16.981000000000002,18.427,20.047000000000001,21.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,322,-0.37,16.976800000000001,0.080500000000000002,13.471,14.519,15.682,16.977,18.422000000000001,20.042000000000002,21.864000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,323,-0.371,16.9727,0.080490000000000006,13.468,14.516,15.679,16.972999999999999,18.417999999999999,20.036999999999999,21.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,324,-0.372,16.968599999999999,0.080479999999999996,13.465999999999999,14.513,15.675000000000001,16.969000000000001,18.413,20.032,21.853000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,325,-0.373,16.964400000000001,0.08047,13.462999999999999,14.51,15.670999999999999,16.963999999999999,18.408999999999999,20.027000000000001,21.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,326,-0.374,16.9603,0.080460000000000004,13.461,14.507,15.667999999999999,16.96,18.404,20.021999999999998,21.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,327,-0.375,16.956199999999999,0.080449999999999994,13.458,14.504,15.664,16.956,18.399000000000001,20.016999999999999,21.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,328,-0.376,16.952100000000002,0.080439999999999998,13.456,14.500999999999999,15.661,16.952000000000002,18.395,20.012,21.832000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,329,-0.377,16.947900000000001,0.080430000000000001,13.452999999999999,14.497,15.657,16.948,18.39,20.007000000000001,21.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,330,-0.378,16.9438,0.080420000000000005,13.451000000000001,14.494,15.653,16.943999999999999,18.385999999999999,20.001999999999999,21.821000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,331,-0.379,16.939699999999998,0.080409999999999995,13.448,14.491,15.65,16.940000000000001,18.381,19.997,21.815999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,332,-0.38,16.935500000000001,0.080399999999999999,13.445,14.488,15.646000000000001,16.936,18.376000000000001,19.992000000000001,21.81 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,333,-0.38100000000000001,16.9314,0.080390000000000003,13.443,14.484999999999999,15.641999999999999,16.931000000000001,18.372,19.986999999999998,21.805 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,334,-0.38200000000000001,16.927299999999999,0.080379999999999993,13.44,14.481999999999999,15.638999999999999,16.927,18.367000000000001,19.981999999999999,21.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,335,-0.38300000000000001,16.923100000000002,0.080369999999999997,13.438000000000001,14.478999999999999,15.635,16.922999999999998,18.363,19.977,21.795000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,336,-0.38390000000000002,16.919,0.080360000000000001,13.435,14.476000000000001,15.632,16.919,18.358000000000001,19.972000000000001,21.789000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,337,-0.38490000000000002,16.9148,0.080350000000000005,13.432,14.473000000000001,15.628,16.914999999999999,18.353000000000002,19.966999999999999,21.783999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,338,-0.38590000000000002,16.910699999999999,0.080339999999999995,13.43,14.47,15.624000000000001,16.911000000000001,18.349,19.962,21.777999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,339,-0.38690000000000002,16.906600000000001,0.080329999999999999,13.427,14.467000000000001,15.621,16.907,18.344000000000001,19.957000000000001,21.773 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,340,-0.38779999999999998,16.9024,0.080320000000000003,13.425000000000001,14.462999999999999,15.617000000000001,16.902000000000001,18.338999999999999,19.952000000000002,21.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,341,-0.38879999999999998,16.898299999999999,0.080310000000000006,13.422000000000001,14.46,15.613,16.898,18.335000000000001,19.946999999999999,21.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,342,-0.38979999999999998,16.894200000000001,0.080299999999999996,13.42,14.457000000000001,15.61,16.893999999999998,18.329999999999998,19.942,21.757000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,343,-0.39069999999999999,16.89,0.08029,13.417,14.454000000000001,15.606,16.89,18.326000000000001,19.937000000000001,21.751999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,344,-0.39169999999999999,16.885899999999999,0.080280000000000004,13.414,14.451000000000001,15.603,16.885999999999999,18.321000000000002,19.931999999999999,21.745999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,345,-0.3926,16.881699999999999,0.080269999999999994,13.412000000000001,14.448,15.599,16.882000000000001,18.315999999999999,19.927,21.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,346,-0.39360000000000001,16.877600000000001,0.080259999999999998,13.409000000000001,14.445,15.595000000000001,16.878,18.312000000000001,19.922000000000001,21.736000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,347,-0.39450000000000002,16.8735,0.080250000000000002,13.407,14.442,15.592000000000001,16.873999999999999,18.306999999999999,19.917000000000002,21.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,348,-0.39550000000000002,16.869299999999999,0.080240000000000006,13.404,14.439,15.587999999999999,16.869,18.302,19.911000000000001,21.725000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,349,-0.39639999999999997,16.865200000000002,0.080229999999999996,13.401,14.435,15.584,16.864999999999998,18.297999999999998,19.905999999999999,21.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,350,-0.39739999999999998,16.861000000000001,0.08022,13.398999999999999,14.432,15.581,16.861000000000001,18.292999999999999,19.901,21.713999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,351,-0.39829999999999999,16.8569,0.08022,13.396000000000001,14.429,15.577,16.856999999999999,18.289000000000001,19.896999999999998,21.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,352,-0.39929999999999999,16.852799999999998,0.080210000000000004,13.393000000000001,14.426,15.573,16.853000000000002,18.283999999999999,19.891999999999999,21.704000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,353,-0.4002,16.848600000000001,0.080199999999999994,13.391,14.423,15.57,16.849,18.28,19.887,21.699000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,354,-0.40110000000000001,16.8445,0.080189999999999997,13.388,14.42,15.566000000000001,16.844000000000001,18.274999999999999,19.882000000000001,21.693000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,355,-0.40210000000000001,16.840399999999999,0.080180000000000001,13.385999999999999,14.417,15.563000000000001,16.84,18.27,19.876999999999999,21.687999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,356,-0.40300000000000002,16.836300000000001,0.080170000000000005,13.382999999999999,14.413,15.558999999999999,16.835999999999999,18.265999999999998,19.872,21.683 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,357,-0.40389999999999998,16.832100000000001,0.080159999999999995,13.38,14.41,15.555,16.832000000000001,18.260999999999999,19.866,21.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,358,-0.40489999999999998,16.827999999999999,0.080149999999999999,13.378,14.407,15.552,16.827999999999999,18.257000000000001,19.861000000000001,21.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,359,-0.40579999999999999,16.823899999999998,0.080140000000000003,13.375,14.404,15.548,16.824000000000002,18.251999999999999,19.856000000000002,21.667000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,360,-0.40670000000000001,16.819800000000001,0.080130000000000007,13.372999999999999,14.401,15.544,16.82,18.247,19.850999999999999,21.661000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,361,-0.40760000000000002,16.8156,0.080119999999999997,13.37,14.398,15.541,16.815999999999999,18.242999999999999,19.846,21.655999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,362,-0.40849999999999997,16.811499999999999,0.080110000000000001,13.367000000000001,14.395,15.537000000000001,16.812000000000001,18.238,19.841000000000001,21.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,363,-0.40949999999999998,16.807400000000001,0.080110000000000001,13.364000000000001,14.391,15.532999999999999,16.806999999999999,18.234000000000002,19.837,21.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,364,-0.41039999999999999,16.8033,0.080100000000000005,13.362,14.388,15.53,16.803000000000001,18.228999999999999,19.832000000000001,21.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,365,-0.4113,16.799199999999999,0.080089999999999995,13.359,14.385,15.526,16.798999999999999,18.225000000000001,19.827000000000002,21.635000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,366,-0.41220000000000001,16.795100000000001,0.080079999999999998,13.356999999999999,14.382,15.523,16.795000000000002,18.22,19.821999999999999,21.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,367,-0.41310000000000002,16.790900000000001,0.080070000000000002,13.353999999999999,14.379,15.519,16.791,18.215,19.817,21.623999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,368,-0.41399999999999998,16.786799999999999,0.080060000000000006,13.351000000000001,14.375999999999999,15.515000000000001,16.786999999999999,18.210999999999999,19.812000000000001,21.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,369,-0.41489999999999999,16.782699999999998,0.080049999999999996,13.349,14.372999999999999,15.512,16.783000000000001,18.206,19.806999999999999,21.614000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,370,-0.4158,16.778600000000001,0.08004,13.346,14.37,15.507999999999999,16.779,18.202000000000002,19.802,21.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,371,-0.41670000000000001,16.7745,0.080030000000000004,13.343999999999999,14.367000000000001,15.505000000000001,16.774000000000001,18.196999999999999,19.797000000000001,21.603000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,372,-0.41760000000000003,16.770399999999999,0.080030000000000004,13.340999999999999,14.363,15.500999999999999,16.77,18.193000000000001,19.792000000000002,21.597999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,373,-0.41849999999999998,16.766300000000001,0.080019999999999994,13.337999999999999,14.36,15.497,16.765999999999998,18.187999999999999,19.786999999999999,21.593 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,374,-0.4194,16.7622,0.080009999999999998,13.335000000000001,14.356999999999999,15.494,16.762,18.183,19.782,21.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,375,-0.42030000000000001,16.758199999999999,0.08,13.333,14.353999999999999,15.49,16.757999999999999,18.178999999999998,19.777000000000001,21.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,376,-0.42109999999999997,16.754100000000001,0.079990000000000006,13.33,14.351000000000001,15.487,16.754000000000001,18.173999999999999,19.771999999999998,21.577000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,377,-0.42199999999999999,16.75,0.079979999999999996,13.327999999999999,14.348000000000001,15.483000000000001,16.75,18.170000000000002,19.766999999999999,21.571999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,378,-0.4229,16.745899999999999,0.079969999999999999,13.324999999999999,14.345000000000001,15.478999999999999,16.745999999999999,18.164999999999999,19.762,21.565999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,379,-0.42380000000000001,16.741800000000001,0.079960000000000003,13.321999999999999,14.342000000000001,15.476000000000001,16.742000000000001,18.161000000000001,19.757000000000001,21.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,380,-0.42470000000000002,16.7377,0.079960000000000003,13.32,14.337999999999999,15.472,16.738,18.155999999999999,19.751999999999999,21.556000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,381,-0.42549999999999999,16.733699999999999,0.079949999999999993,13.317,14.335000000000001,15.468,16.734000000000002,18.152000000000001,19.747,21.550999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,382,-0.4264,16.729600000000001,0.079939999999999997,13.314,14.332000000000001,15.465,16.73,18.146999999999998,19.742000000000001,21.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,383,-0.42730000000000001,16.7255,0.079930000000000001,13.311999999999999,14.329000000000001,15.461,16.725999999999999,18.143000000000001,19.736999999999998,21.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,384,-0.42820000000000003,16.721499999999999,0.079920000000000005,13.308999999999999,14.326000000000001,15.458,16.722000000000001,18.138000000000002,19.733000000000001,21.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,385,-0.42899999999999999,16.717400000000001,0.079909999999999995,13.307,14.323,15.454000000000001,16.716999999999999,18.134,19.727,21.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,386,-0.4299,16.7134,0.079899999999999999,13.304,14.32,15.451000000000001,16.713000000000001,18.129000000000001,19.722999999999999,21.524000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,387,-0.43080000000000002,16.709299999999999,0.079899999999999999,13.301,14.317,15.446999999999999,16.709,18.125,19.718,21.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,388,-0.43159999999999998,16.705300000000001,0.079890000000000003,13.298999999999999,14.314,15.443,16.704999999999998,18.12,19.713000000000001,21.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,389,-0.4325,16.7012,0.079880000000000007,13.295999999999999,14.311,15.44,16.701000000000001,18.116,19.707999999999998,21.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,390,-0.43330000000000002,16.697199999999999,0.079869999999999997,13.292999999999999,14.308,15.436,16.696999999999999,18.111000000000001,19.702999999999999,21.504000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,391,-0.43419999999999997,16.693200000000001,0.07986,13.291,14.305,15.433,16.693000000000001,18.106999999999999,19.698,21.498000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,392,-0.435,16.6891,0.079850000000000004,13.288,14.301,15.429,16.689,18.102,19.693000000000001,21.492999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,393,-0.43590000000000001,16.685099999999998,0.079839999999999994,13.286,14.298,15.426,16.684999999999999,18.097999999999999,19.687999999999999,21.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,394,-0.43669999999999998,16.681100000000001,0.079839999999999994,13.282999999999999,14.295,15.422000000000001,16.681000000000001,18.093,19.684000000000001,21.483000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,395,-0.43759999999999999,16.677099999999999,0.079829999999999998,13.28,14.292,15.419,16.677,18.088999999999999,19.678999999999998,21.478000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,396,-0.43840000000000001,16.673100000000002,0.079820000000000002,13.278,14.289,15.414999999999999,16.672999999999998,18.084,19.673999999999999,21.472999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,397,-0.43930000000000002,16.6691,0.079810000000000006,13.275,14.286,15.411,16.669,18.079999999999998,19.669,21.466999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,398,-0.44009999999999999,16.665099999999999,0.079799999999999996,13.273,14.282999999999999,15.407999999999999,16.664999999999999,18.074999999999999,19.664000000000001,21.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,399,-0.441,16.661100000000001,0.079799999999999996,13.27,14.28,15.404,16.661000000000001,18.071000000000002,19.66,21.457999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,400,-0.44180000000000003,16.6571,0.07979,13.266999999999999,14.276999999999999,15.401,16.657,18.067,19.655000000000001,21.452000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,401,-0.44259999999999999,16.653099999999998,0.079780000000000004,13.265000000000001,14.273999999999999,15.397,16.652999999999999,18.062000000000001,19.649999999999999,21.446999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,402,-0.44350000000000001,16.649100000000001,0.079769999999999994,13.262,14.271000000000001,15.394,16.649000000000001,18.058,19.645,21.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,403,-0.44429999999999997,16.645099999999999,0.079759999999999998,13.26,14.268000000000001,15.39,16.645,18.053000000000001,19.64,21.437000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,404,-0.4451,16.641200000000001,0.079750000000000001,13.257,14.265000000000001,15.387,16.640999999999998,18.048999999999999,19.635000000000002,21.431000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,405,-0.44600000000000001,16.6372,0.079750000000000001,13.254,14.260999999999999,15.382999999999999,16.637,18.045000000000002,19.631,21.427 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,406,-0.44679999999999997,16.633199999999999,0.079740000000000005,13.252000000000001,14.257999999999999,15.38,16.632999999999999,18.04,19.626000000000001,21.422000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,407,-0.4476,16.629300000000001,0.079729999999999995,13.249000000000001,14.255000000000001,15.375999999999999,16.629000000000001,18.036000000000001,19.620999999999999,21.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,408,-0.44840000000000002,16.625299999999999,0.079719999999999999,13.247,14.252000000000001,15.372999999999999,16.625,18.030999999999999,19.616,21.411000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,409,-0.44929999999999998,16.621400000000001,0.079710000000000003,13.244,14.249000000000001,15.369,16.620999999999999,18.027000000000001,19.611000000000001,21.405999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,410,-0.4501,16.6175,0.079710000000000003,13.241,14.246,15.366,16.617999999999999,18.023,19.606999999999999,21.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,411,-0.45090000000000002,16.613499999999998,0.079699999999999993,13.239000000000001,14.243,15.362,16.614000000000001,18.018000000000001,19.602,21.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,412,-0.45169999999999999,16.6096,0.079689999999999997,13.236000000000001,14.24,15.359,16.61,18.013999999999999,19.597000000000001,21.390999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,413,-0.45250000000000001,16.605699999999999,0.079680000000000001,13.234,14.237,15.355,16.606000000000002,18.009,19.591999999999999,21.385999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,414,-0.45329999999999998,16.601800000000001,0.079670000000000005,13.231,14.234,15.352,16.602,18.004999999999999,19.588000000000001,21.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,415,-0.4541,16.597899999999999,0.079659999999999995,13.228999999999999,14.231,15.349,16.597999999999999,18.001000000000001,19.582999999999998,21.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,416,-0.45500000000000002,16.594000000000001,0.079659999999999995,13.226000000000001,14.228,15.345000000000001,16.594000000000001,17.997,19.577999999999999,21.370999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,417,-0.45579999999999998,16.5901,0.079649999999999999,13.223000000000001,14.225,15.342000000000001,16.59,17.992000000000001,19.574000000000002,21.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,418,-0.45660000000000001,16.586200000000002,0.079640000000000002,13.221,14.222,15.337999999999999,16.585999999999999,17.988,19.568999999999999,21.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,419,-0.45739999999999997,16.5823,0.079630000000000006,13.218999999999999,14.218999999999999,15.335000000000001,16.582000000000001,17.983000000000001,19.564,21.356000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,420,-0.4582,16.578399999999998,0.079630000000000006,13.215999999999999,14.215999999999999,15.331,16.577999999999999,17.978999999999999,19.559999999999999,21.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,421,-0.45900000000000002,16.5745,0.079619999999999996,13.212999999999999,14.212999999999999,15.327999999999999,16.574000000000002,17.975000000000001,19.555,21.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,422,-0.45979999999999999,16.570699999999999,0.07961,13.211,14.21,15.324,16.571000000000002,17.971,19.55,21.341000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,423,-0.46060000000000001,16.566800000000001,0.079600000000000004,13.208,14.207000000000001,15.321,16.567,17.966000000000001,19.545000000000002,21.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,424,-0.46139999999999998,16.562899999999999,0.079589999999999994,13.206,14.205,15.318,16.562999999999999,17.962,19.541,21.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,425,-0.46210000000000001,16.559100000000001,0.079589999999999994,13.202999999999999,14.201000000000001,15.314,16.559000000000001,17.957999999999998,19.536000000000001,21.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,426,-0.46289999999999998,16.555299999999999,0.079579999999999998,13.201000000000001,14.199,15.311,16.555,17.954000000000001,19.532,21.321000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,427,-0.4637,16.551400000000001,0.079570000000000002,13.198,14.196,15.307,16.550999999999998,17.949000000000002,19.527000000000001,21.315999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,428,-0.46450000000000002,16.547599999999999,0.079560000000000006,13.196,14.193,15.304,16.547999999999998,17.945,19.521999999999998,21.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,429,-0.46529999999999999,16.543800000000001,0.079549999999999996,13.193,14.19,15.301,16.544,17.940999999999999,19.516999999999999,21.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,430,-0.46610000000000001,16.539899999999999,0.079549999999999996,13.19,14.186999999999999,15.297000000000001,16.54,17.937000000000001,19.513000000000002,21.300999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,431,-0.46689999999999998,16.536100000000001,0.07954,13.188000000000001,14.183999999999999,15.294,16.536000000000001,17.931999999999999,19.507999999999999,21.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,432,-0.4677,16.532299999999999,0.079530000000000003,13.186,14.180999999999999,15.29,16.532,17.928000000000001,19.504000000000001,21.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,433,-0.46839999999999998,16.528500000000001,0.079519999999999993,13.183,14.178000000000001,15.287000000000001,16.527999999999999,17.923999999999999,19.498999999999999,21.286000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,434,-0.46920000000000001,16.524699999999999,0.079519999999999993,13.18,14.175000000000001,15.284000000000001,16.524999999999999,17.920000000000002,19.495000000000001,21.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,435,-0.47,16.520900000000001,0.079509999999999997,13.178000000000001,14.172000000000001,15.28,16.521000000000001,17.914999999999999,19.489999999999998,21.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,436,-0.4708,16.517199999999999,0.079500000000000001,13.176,14.169,15.276999999999999,16.516999999999999,17.911000000000001,19.484999999999999,21.271999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,437,-0.47149999999999997,16.513400000000001,0.079490000000000005,13.173,14.166,15.273999999999999,16.513000000000002,17.907,19.481000000000002,21.266999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,438,-0.4723,16.509599999999999,0.079490000000000005,13.17,14.163,15.27,16.510000000000002,17.902999999999999,19.475999999999999,21.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,439,-0.47310000000000002,16.5059,0.079479999999999995,13.167999999999999,14.16,15.266999999999999,16.506,17.899000000000001,19.472000000000001,21.257999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,440,-0.4738,16.502099999999999,0.079469999999999999,13.166,14.157999999999999,15.263999999999999,16.501999999999999,17.893999999999998,19.466999999999999,21.251999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,441,-0.47460000000000002,16.4984,0.079460000000000003,13.163,14.154999999999999,15.26,16.498000000000001,17.89,19.463000000000001,21.248000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,442,-0.47539999999999999,16.494599999999998,0.079460000000000003,13.16,14.151999999999999,15.257,16.495000000000001,17.885999999999999,19.457999999999998,21.242999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,443,-0.47610000000000002,16.4909,0.079450000000000007,13.157999999999999,14.148999999999999,15.254,16.491,17.882000000000001,19.454000000000001,21.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,444,-0.47689999999999999,16.487100000000002,0.079439999999999997,13.156000000000001,14.146000000000001,15.25,16.486999999999998,17.878,19.449000000000002,21.233000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,445,-0.47770000000000001,16.4834,0.079430000000000001,13.153,14.143000000000001,15.247,16.483000000000001,17.873999999999999,19.445,21.228000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,446,-0.47839999999999999,16.479700000000001,0.079430000000000001,13.151,14.14,15.244,16.48,17.87,19.440000000000001,21.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,447,-0.47920000000000001,16.475999999999999,0.079420000000000004,13.148,14.137,15.241,16.475999999999999,17.866,19.436,21.219000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,448,-0.47989999999999999,16.472300000000001,0.079409999999999994,13.146000000000001,14.135,15.237,16.472000000000001,17.861000000000001,19.431000000000001,21.213999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,449,-0.48070000000000002,16.468599999999999,0.079399999999999998,13.144,14.132,15.234,16.469000000000001,17.856999999999999,19.427,21.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,450,-0.48139999999999999,16.4649,0.079399999999999998,13.141,14.129,15.231,16.465,17.853000000000002,19.422000000000001,21.204999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,451,-0.48220000000000002,16.461200000000002,0.079390000000000002,13.138999999999999,14.125999999999999,15.227,16.460999999999999,17.849,19.417999999999999,21.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,452,-0.4829,16.457599999999999,0.079380000000000006,13.135999999999999,14.122999999999999,15.224,16.457999999999998,17.844999999999999,19.413,21.195 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,453,-0.48370000000000002,16.453900000000001,0.079369999999999996,13.134,14.12,15.221,16.454000000000001,17.841000000000001,19.408999999999999,21.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,454,-0.4844,16.450199999999999,0.079369999999999996,13.131,14.117000000000001,15.218,16.45,17.837,19.405000000000001,21.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,455,-0.48520000000000002,16.4466,0.07936,13.129,14.115,15.214,16.446999999999999,17.832999999999998,19.399999999999999,21.181000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,456,-0.4859,16.442900000000002,0.079350000000000004,13.127000000000001,14.112,15.211,16.443000000000001,17.829000000000001,19.396000000000001,21.175999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,457,-0.48670000000000002,16.439299999999999,0.079339999999999994,13.124000000000001,14.109,15.208,16.439,17.824999999999999,19.390999999999998,21.170999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,458,-0.4874,16.435700000000001,0.079339999999999994,13.122,14.106,15.205,16.436,17.821000000000002,19.387,21.167000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,459,-0.48809999999999998,16.431999999999999,0.079329999999999998,13.119,14.103,15.202,16.431999999999999,17.817,19.382999999999999,21.161999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,460,-0.4889,16.4284,0.079320000000000002,13.117000000000001,14.101000000000001,15.198,16.428000000000001,17.812999999999999,19.378,21.157 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,461,-0.48959999999999998,16.424800000000001,0.079310000000000005,13.115,14.098000000000001,15.195,16.425000000000001,17.809000000000001,19.373999999999999,21.152999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,462,-0.49030000000000001,16.421199999999999,0.079310000000000005,13.112,14.095000000000001,15.192,16.420999999999999,17.805,19.37,21.148 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,463,-0.49109999999999998,16.4176,0.079299999999999995,13.11,14.092000000000001,15.189,16.417999999999999,17.800999999999998,19.364999999999998,21.143999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,464,-0.49180000000000001,16.414000000000001,0.079289999999999999,13.106999999999999,14.09,15.186,16.414000000000001,17.797000000000001,19.361000000000001,21.138999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,465,-0.49249999999999999,16.410399999999999,0.079289999999999999,13.105,14.087,15.182,16.41,17.792999999999999,19.356999999999999,21.135000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,466,-0.49330000000000002,16.4069,0.079280000000000003,13.103,14.084,15.179,16.407,17.789000000000001,19.352,21.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,467,-0.49399999999999999,16.403300000000002,0.079269999999999993,13.1,14.081,15.176,16.402999999999999,17.785,19.347999999999999,21.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,468,-0.49469999999999997,16.399699999999999,0.079259999999999997,13.098000000000001,14.079000000000001,15.173,16.399999999999999,17.780999999999999,19.343,21.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,469,-0.49540000000000001,16.3962,0.079259999999999997,13.095000000000001,14.076000000000001,15.17,16.396000000000001,17.777000000000001,19.338999999999999,21.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,470,-0.49619999999999997,16.392600000000002,0.079250000000000001,13.093,14.073,15.167,16.393000000000001,17.773,19.335000000000001,21.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,471,-0.49690000000000001,16.389099999999999,0.079240000000000005,13.090999999999999,14.07,15.164,16.388999999999999,17.768999999999998,19.331,21.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,472,-0.49759999999999999,16.3856,0.079240000000000005,13.087999999999999,14.067,15.16,16.385999999999999,17.765000000000001,19.327000000000002,21.103000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,473,-0.49830000000000002,16.382100000000001,0.079229999999999995,13.086,14.065,15.157,16.382000000000001,17.760999999999999,19.321999999999999,21.097999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,474,-0.499,16.378499999999999,0.079219999999999999,13.084,14.061999999999999,15.154,16.378,17.757000000000001,19.318000000000001,21.093 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,475,-0.49969999999999998,16.375,0.079210000000000003,13.082000000000001,14.058999999999999,15.151,16.375,17.753,19.312999999999999,21.088000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,476,-0.50049999999999994,16.371500000000001,0.079210000000000003,13.079000000000001,14.057,15.148,16.372,17.75,19.309000000000001,21.084 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,477,-0.50119999999999998,16.367999999999999,0.079200000000000007,13.077,14.054,15.145,16.367999999999999,17.745999999999999,19.305,21.08 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,478,-0.50190000000000001,16.364599999999999,0.079189999999999997,13.074999999999999,14.051,15.141999999999999,16.364999999999998,17.742000000000001,19.300999999999998,21.074999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,479,-0.50260000000000005,16.3611,0.079189999999999997,13.071999999999999,14.048,15.138999999999999,16.361000000000001,17.738,19.297000000000001,21.071000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,480,-0.50329999999999997,16.357600000000001,0.07918,13.07,14.045999999999999,15.135999999999999,16.358000000000001,17.734000000000002,19.292999999999999,21.065999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,481,-0.504,16.354099999999999,0.079170000000000004,13.068,14.042999999999999,15.132999999999999,16.353999999999999,17.73,19.288,21.062000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,482,-0.50470000000000004,16.3507,0.079159999999999994,13.066000000000001,14.041,15.13,16.350999999999999,17.725999999999999,19.283999999999999,21.056999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,483,-0.50539999999999996,16.347200000000001,0.079159999999999994,13.063000000000001,14.038,15.125999999999999,16.347000000000001,17.722999999999999,19.28,21.053000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,484,-0.50609999999999999,16.343800000000002,0.079149999999999998,13.061,14.035,15.122999999999999,16.344000000000001,17.719000000000001,19.276,21.047999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,485,-0.50680000000000003,16.340399999999999,0.079140000000000002,13.058999999999999,14.032999999999999,15.12,16.34,17.715,19.271999999999998,21.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,486,-0.50749999999999995,16.3369,0.079140000000000002,13.055999999999999,14.03,15.117000000000001,16.337,17.710999999999999,19.268000000000001,21.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,487,-0.50819999999999999,16.333500000000001,0.079130000000000006,13.054,14.026999999999999,15.114000000000001,16.334,17.707000000000001,19.263000000000002,21.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,488,-0.50890000000000002,16.330100000000002,0.079119999999999996,13.052,14.025,15.111000000000001,16.329999999999998,17.704000000000001,19.259,21.030999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,489,-0.50960000000000005,16.326699999999999,0.079119999999999996,13.048999999999999,14.022,15.108000000000001,16.327000000000002,17.7,19.254999999999999,21.027000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,490,-0.51029999999999998,16.3233,0.07911,13.047000000000001,14.019,15.105,16.323,17.696000000000002,19.251000000000001,21.021999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,491,-0.51100000000000001,16.319900000000001,0.079100000000000004,13.045,14.016999999999999,15.102,16.32,17.692,19.247,21.016999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,492,-0.51170000000000004,16.316500000000001,0.079089999999999994,13.042999999999999,14.013999999999999,15.099,16.317,17.687999999999999,19.242999999999999,21.013000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,493,-0.51239999999999997,16.313099999999999,0.079089999999999994,13.04,14.010999999999999,15.096,16.312999999999999,17.684999999999999,19.239000000000001,21.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,494,-0.5131,16.309799999999999,0.079079999999999998,13.038,14.009,15.093,16.309999999999999,17.681000000000001,19.234999999999999,21.004000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,495,-0.51380000000000003,16.3064,0.079070000000000001,13.036,14.006,15.09,16.306000000000001,17.677,19.23,21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,496,-0.51439999999999997,16.303100000000001,0.079070000000000001,13.034000000000001,14.004,15.087,16.303000000000001,17.673999999999999,19.227,20.995999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,497,-0.5151,16.299700000000001,0.079060000000000005,13.032,14.000999999999999,15.084,16.3,17.670000000000002,19.222000000000001,20.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,498,-0.51580000000000004,16.296399999999998,0.079049999999999995,13.029,13.999000000000001,15.081,16.295999999999999,17.666,19.218,20.986999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,499,-0.51649999999999996,16.292999999999999,0.079049999999999995,13.026999999999999,13.996,15.077999999999999,16.292999999999999,17.663,19.213999999999999,20.983000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,500,-0.51719999999999999,16.2897,0.079039999999999999,13.025,13.993,15.074999999999999,16.29,17.658999999999999,19.21,20.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,501,-0.51790000000000003,16.2864,0.079030000000000003,13.023,13.991,15.073,16.286000000000001,17.655000000000001,19.206,20.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,502,-0.51849999999999996,16.283100000000001,0.079030000000000003,13.02,13.988,15.07,16.283000000000001,17.652000000000001,19.202999999999999,20.97 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,503,-0.51919999999999999,16.279800000000002,0.079020000000000007,13.018000000000001,13.986000000000001,15.067,16.28,17.648,19.198,20.966000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,504,-0.51990000000000003,16.276499999999999,0.079009999999999997,13.016,13.983000000000001,15.064,16.276,17.643999999999998,19.193999999999999,20.960999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,505,-0.52059999999999995,16.273199999999999,0.079009999999999997,13.013999999999999,13.981,15.061,16.273,17.640999999999998,19.190999999999999,20.957999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,506,-0.5212,16.2699,0.079000000000000001,13.012,13.978,15.058,16.27,17.637,19.186,20.952999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,507,-0.52190000000000003,16.2666,0.078990000000000005,13.01,13.976000000000001,15.055,16.266999999999999,17.632999999999999,19.181999999999999,20.949000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,508,-0.52259999999999995,16.263400000000001,0.078990000000000005,13.007,13.973000000000001,15.052,16.263000000000002,17.63,19.178999999999998,20.945 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,509,-0.52329999999999999,16.260100000000001,0.078979999999999995,13.005000000000001,13.97,15.048999999999999,16.260000000000002,17.626000000000001,19.175000000000001,20.94 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,510,-0.52390000000000003,16.256799999999998,0.078969999999999999,13.003,13.968,15.045999999999999,16.257000000000001,17.622,19.170000000000002,20.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,511,-0.52459999999999996,16.253599999999999,0.078969999999999999,13.000999999999999,13.965,15.042999999999999,16.254000000000001,17.619,19.167000000000002,20.931999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,512,-0.52529999999999999,16.250399999999999,0.078960000000000002,12.999000000000001,13.962999999999999,15.041,16.25,17.614999999999998,19.163,20.928000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,513,-0.52590000000000003,16.2471,0.078950000000000006,12.997,13.96,15.038,16.247,17.611000000000001,19.158999999999999,20.922999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,514,-0.52659999999999996,16.2439,0.078950000000000006,12.994,13.958,15.035,16.244,17.608000000000001,19.155000000000001,20.92 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,515,-0.52729999999999999,16.2407,0.078939999999999996,12.992000000000001,13.955,15.032,16.241,17.603999999999999,19.151,20.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,516,-0.52790000000000004,16.237500000000001,0.07893,12.99,13.952999999999999,15.029,16.238,17.600999999999999,19.146999999999998,20.911000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,517,-0.52859999999999996,16.234300000000001,0.07893,12.988,13.95,15.026,16.234000000000002,17.597000000000001,19.143999999999998,20.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,518,-0.5292,16.231100000000001,0.078920000000000004,12.986000000000001,13.948,15.023,16.231000000000002,17.594000000000001,19.138999999999999,20.902999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,519,-0.52990000000000004,16.227900000000002,0.078909999999999994,12.984,13.946,15.021000000000001,16.228000000000002,17.59,19.135000000000002,20.899000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,520,-0.53059999999999996,16.224699999999999,0.078909999999999994,12.981999999999999,13.943,15.018000000000001,16.225000000000001,17.587,19.132000000000001,20.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,521,-0.53120000000000001,16.221499999999999,0.078899999999999998,12.98,13.941000000000001,15.015000000000001,16.221,17.582999999999998,19.128,20.890999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,522,-0.53190000000000004,16.218399999999999,0.078890000000000002,12.978,13.938000000000001,15.012,16.218,17.579999999999998,19.123999999999999,20.885999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,523,-0.53249999999999997,16.215199999999999,0.078890000000000002,12.975,13.936,15.009,16.215,17.576000000000001,19.12,20.882999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,524,-0.53320000000000001,16.2121,0.078880000000000006,12.973000000000001,13.933,15.007,16.212,17.573,19.116,20.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,525,-0.53380000000000005,16.2089,0.078869999999999996,12.971,13.930999999999999,15.004,16.209,17.568999999999999,19.111999999999998,20.873999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,526,-0.53449999999999998,16.2058,0.078869999999999996,12.968999999999999,13.928000000000001,15.000999999999999,16.206,17.565999999999999,19.109000000000002,20.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,527,-0.53510000000000002,16.2027,0.07886,12.967000000000001,13.926,14.997999999999999,16.202999999999999,17.562000000000001,19.105,20.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,528,-0.53580000000000005,16.1996,0.078850000000000003,12.965,13.923999999999999,14.996,16.2,17.559000000000001,19.100999999999999,20.861999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,529,-0.53639999999999999,16.196400000000001,0.078850000000000003,12.962999999999999,13.920999999999999,14.993,16.196000000000002,17.555,19.097999999999999,20.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,530,-0.53710000000000002,16.193300000000001,0.078839999999999993,12.961,13.919,14.99,16.193000000000001,17.552,19.094000000000001,20.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,531,-0.53769999999999996,16.190200000000001,0.078829999999999997,12.959,13.916,14.987,16.190000000000001,17.547999999999998,19.09,20.85 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,532,-0.5383,16.187200000000001,0.078829999999999997,12.957000000000001,13.914,14.984999999999999,16.187000000000001,17.545000000000002,19.085999999999999,20.846 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,533,-0.53900000000000003,16.184100000000001,0.078820000000000001,12.955,13.912000000000001,14.981999999999999,16.184000000000001,17.542000000000002,19.082999999999998,20.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,534,-0.53959999999999997,16.181000000000001,0.078810000000000005,12.952999999999999,13.909000000000001,14.978999999999999,16.181000000000001,17.538,19.079000000000001,20.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,535,-0.5403,16.177900000000001,0.078810000000000005,12.951000000000001,13.907,14.976000000000001,16.178000000000001,17.535,19.074999999999999,20.834 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,536,-0.54090000000000005,16.174900000000001,0.078799999999999995,12.949,13.904999999999999,14.974,16.175000000000001,17.530999999999999,19.071000000000002,20.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,537,-0.54149999999999998,16.171800000000001,0.078799999999999995,12.946,13.901999999999999,14.971,16.172000000000001,17.527999999999999,19.068000000000001,20.827000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,538,-0.54220000000000002,16.168800000000001,0.078789999999999999,12.945,13.9,14.968,16.169,17.524999999999999,19.064,20.821999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,539,-0.54279999999999995,16.165800000000001,0.078780000000000003,12.943,13.898,14.965999999999999,16.166,17.521000000000001,19.059999999999999,20.818000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,540,-0.54339999999999999,16.162700000000001,0.078780000000000003,12.94,13.895,14.962999999999999,16.163,17.518000000000001,19.056999999999999,20.815000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,541,-0.54410000000000003,16.159700000000001,0.078770000000000007,12.939,13.893000000000001,14.96,16.16,17.513999999999999,19.053000000000001,20.811 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,542,-0.54469999999999996,16.156700000000001,0.078759999999999997,12.936999999999999,13.891,14.958,16.157,17.510999999999999,19.048999999999999,20.806000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,543,-0.54530000000000001,16.153700000000001,0.078759999999999997,12.933999999999999,13.888,14.955,16.154,17.507999999999999,19.045999999999999,20.803000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,544,-0.54600000000000004,16.150700000000001,0.078750000000000001,12.933,13.885999999999999,14.952,16.151,17.504000000000001,19.042000000000002,20.798999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,545,-0.54659999999999997,16.1477,0.078740000000000004,12.930999999999999,13.884,14.95,16.148,17.501000000000001,19.038,20.795000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,546,-0.54720000000000002,16.1447,0.078740000000000004,12.929,13.881,14.946999999999999,16.145,17.498000000000001,19.035,20.791 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,547,-0.54790000000000005,16.1418,0.078729999999999994,12.927,13.879,14.944000000000001,16.141999999999999,17.495000000000001,19.030999999999999,20.786999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,548,-0.54849999999999999,16.1388,0.078729999999999994,12.925000000000001,13.877000000000001,14.942,16.138999999999999,17.491,19.027999999999999,20.783999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,549,-0.54910000000000003,16.135899999999999,0.078719999999999998,12.923,13.874000000000001,14.939,16.135999999999999,17.488,19.024000000000001,20.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,550,-0.54969999999999997,16.132899999999999,0.078710000000000002,12.920999999999999,13.872,14.936,16.132999999999999,17.484999999999999,19.02,20.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,551,-0.55030000000000001,16.13,0.078710000000000002,12.919,13.87,14.933999999999999,16.13,17.481999999999999,19.016999999999999,20.771999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,552,-0.55100000000000005,16.126999999999999,0.078700000000000006,12.917,13.868,14.930999999999999,16.126999999999999,17.478000000000002,19.013000000000002,20.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,553,-0.55159999999999998,16.124099999999999,0.078689999999999996,12.914999999999999,13.865,14.929,16.123999999999999,17.475000000000001,19.010000000000002,20.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,554,-0.55220000000000002,16.121200000000002,0.078689999999999996,12.913,13.863,14.926,16.120999999999999,17.472000000000001,19.006,20.760999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,555,-0.55279999999999996,16.118300000000001,0.07868,12.911,13.861000000000001,14.923999999999999,16.117999999999999,17.468,19.003,20.757000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,556,-0.5534,16.115400000000001,0.078670000000000004,12.909000000000001,13.859,14.920999999999999,16.114999999999998,17.465,18.998999999999999,20.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,557,-0.55410000000000004,16.112500000000001,0.078670000000000004,12.907,13.856,14.917999999999999,16.111999999999998,17.462,18.995999999999999,20.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,558,-0.55469999999999997,16.1096,0.078659999999999994,12.904999999999999,13.853999999999999,14.916,16.11,17.459,18.992000000000001,20.745999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,559,-0.55530000000000002,16.1067,0.078659999999999994,12.903,13.852,14.913,16.106999999999999,17.456,18.989000000000001,20.742000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,560,-0.55589999999999995,16.103899999999999,0.078649999999999998,12.901999999999999,13.85,14.911,16.103999999999999,17.452000000000002,18.984999999999999,20.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,561,-0.55649999999999999,16.100999999999999,0.078640000000000002,12.9,13.848000000000001,14.907999999999999,16.100999999999999,17.449000000000002,18.981999999999999,20.734000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,562,-0.55710000000000004,16.098099999999999,0.078640000000000002,12.898,13.845000000000001,14.906000000000001,16.097999999999999,17.446000000000002,18.978000000000002,20.731000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,563,-0.55769999999999997,16.095300000000002,0.078630000000000005,12.896000000000001,13.843,14.903,16.094999999999999,17.443000000000001,18.975000000000001,20.727 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,564,-0.55830000000000002,16.092500000000001,0.078630000000000005,12.894,13.840999999999999,14.901,16.093,17.440000000000001,18.972000000000001,20.724 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,565,-0.55889999999999995,16.089600000000001,0.078619999999999995,12.891999999999999,13.839,14.898,16.09,17.437000000000001,18.968,20.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,566,-0.5595,16.0868,0.078609999999999999,12.89,13.837,14.896000000000001,16.087,17.433,18.963999999999999,20.716000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,567,-0.56020000000000003,16.084,0.078609999999999999,12.888,13.834,14.893000000000001,16.084,17.43,18.960999999999999,20.713000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,568,-0.56079999999999997,16.081199999999999,0.078600000000000003,12.887,13.832000000000001,14.891,16.081,17.427,18.957999999999998,20.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,569,-0.56140000000000001,16.078399999999998,0.078589999999999993,12.885,13.83,14.888,16.077999999999999,17.423999999999999,18.954000000000001,20.704999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,570,-0.56200000000000006,16.075600000000001,0.078589999999999993,12.882999999999999,13.827999999999999,14.885999999999999,16.076000000000001,17.420999999999999,18.951000000000001,20.702000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,571,-0.56259999999999999,16.072800000000001,0.078579999999999997,12.881,13.826000000000001,14.882999999999999,16.073,17.417999999999999,18.948,20.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,572,-0.56320000000000003,16.0701,0.078579999999999997,12.879,13.824,14.881,16.07,17.414999999999999,18.945,20.695 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,573,-0.56379999999999997,16.067299999999999,0.078570000000000001,12.877000000000001,13.821,14.878,16.067,17.411999999999999,18.940999999999999,20.690999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,574,-0.56440000000000001,16.064599999999999,0.078560000000000005,12.875999999999999,13.819000000000001,14.875999999999999,16.065000000000001,17.408999999999999,18.937999999999999,20.687000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,575,-0.56499999999999995,16.061800000000002,0.078560000000000005,12.874000000000001,13.817,14.872999999999999,16.062000000000001,17.405999999999999,18.934000000000001,20.684000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,576,-0.56559999999999999,16.059100000000001,0.078549999999999995,12.872,13.815,14.871,16.059000000000001,17.402999999999999,18.931000000000001,20.68 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,577,-0.56620000000000004,16.0564,0.078549999999999995,12.87,13.813000000000001,14.869,16.056000000000001,17.399999999999999,18.928000000000001,20.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,578,-0.56669999999999998,16.053599999999999,0.078539999999999999,12.868,13.811,14.866,16.053999999999998,17.396999999999998,18.923999999999999,20.672999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,579,-0.56730000000000003,16.050899999999999,0.078530000000000003,12.867000000000001,13.808999999999999,14.864000000000001,16.050999999999998,17.393999999999998,18.920999999999999,20.669 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,580,-0.56789999999999996,16.048200000000001,0.078530000000000003,12.865,13.807,14.861000000000001,16.047999999999998,17.390999999999998,18.917999999999999,20.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,581,-0.56850000000000001,16.045500000000001,0.078520000000000006,12.863,13.805,14.859,16.045999999999999,17.388000000000002,18.914000000000001,20.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,582,-0.56910000000000005,16.042899999999999,0.078520000000000006,12.861000000000001,13.803000000000001,14.856999999999999,16.042999999999999,17.385000000000002,18.911999999999999,20.66 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,583,-0.56969999999999998,16.040199999999999,0.078509999999999996,12.86,13.801,14.853999999999999,16.04,17.382000000000001,18.908000000000001,20.655999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,584,-0.57030000000000003,16.037500000000001,0.0785,12.858000000000001,13.798999999999999,14.852,16.038,17.379000000000001,18.905000000000001,20.652000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,585,-0.57089999999999996,16.0349,0.0785,12.856,13.795999999999999,14.85,16.035,17.376000000000001,18.902000000000001,20.649000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,586,-0.57150000000000001,16.0322,0.078490000000000004,12.853999999999999,13.794,14.847,16.032,17.373000000000001,18.898,20.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,587,-0.57210000000000005,16.029599999999999,0.078490000000000004,12.852,13.792,14.845000000000001,16.03,17.37,18.895,20.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,588,-0.5726,16.026900000000001,0.078479999999999994,12.851000000000001,13.79,14.843,16.027000000000001,17.367000000000001,18.891999999999999,20.638999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,589,-0.57320000000000004,16.0243,0.078469999999999998,12.849,13.788,14.84,16.024000000000001,17.364000000000001,18.888999999999999,20.635000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,590,-0.57379999999999998,16.021699999999999,0.078469999999999998,12.847,13.786,14.837999999999999,16.021999999999998,17.361000000000001,18.885999999999999,20.632000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,591,-0.57440000000000002,16.019100000000002,0.078460000000000002,12.846,13.784000000000001,14.836,16.018999999999998,17.358000000000001,18.882000000000001,20.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,592,-0.57499999999999996,16.016500000000001,0.078460000000000002,12.843999999999999,13.782,14.833,16.015999999999998,17.355,18.879000000000001,20.626000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,593,-0.57550000000000001,16.0139,0.078450000000000006,12.842000000000001,13.78,14.831,16.013999999999999,17.352,18.876000000000001,20.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,594,-0.57609999999999995,16.011299999999999,0.078439999999999996,12.840999999999999,13.778,14.829000000000001,16.010999999999999,17.349,18.873000000000001,20.617999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,595,-0.57669999999999999,16.008800000000001,0.078439999999999996,12.839,13.776,14.827,16.009,17.347000000000001,18.87,20.614999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,596,-0.57730000000000004,16.0062,0.07843,12.837,13.773999999999999,14.824,16.006,17.344000000000001,18.867000000000001,20.611999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,597,-0.57789999999999997,16.003599999999999,0.07843,12.835000000000001,13.772,14.821999999999999,16.004000000000001,17.341000000000001,18.864000000000001,20.609000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,598,-0.57840000000000003,16.001100000000001,0.078420000000000004,12.834,13.77,14.82,16.001000000000001,17.338000000000001,18.861000000000001,20.605 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,599,-0.57899999999999996,15.9986,0.078409999999999994,12.832000000000001,13.769,14.818,15.999000000000001,17.335000000000001,18.856999999999999,20.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,600,-0.5796,15.996,0.078409999999999994,12.83,13.766999999999999,14.815,15.996,17.332999999999998,18.853999999999999,20.599 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,601,-0.58020000000000005,15.993499999999999,0.078399999999999997,12.829000000000001,13.765000000000001,14.813000000000001,15.994,17.329999999999998,18.850999999999999,20.594999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,602,-0.58069999999999999,15.991,0.078399999999999997,12.827,13.763,14.811,15.991,17.327000000000002,18.847999999999999,20.591999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,603,-0.58130000000000004,15.9885,0.078390000000000001,12.826000000000001,13.760999999999999,14.808999999999999,15.988,17.324000000000002,18.844999999999999,20.588999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,604,-0.58189999999999997,15.986000000000001,0.078380000000000005,12.824,13.759,14.807,15.986000000000001,17.321000000000002,18.841999999999999,20.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,605,-0.58240000000000003,15.983499999999999,0.078380000000000005,12.821999999999999,13.757,14.804,15.984,17.318999999999999,18.838999999999999,20.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,606,-0.58299999999999996,15.9811,0.078369999999999995,12.821,13.755000000000001,14.802,15.981,17.315999999999999,18.835999999999999,20.579000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,607,-0.58360000000000001,15.9786,0.078369999999999995,12.819000000000001,13.753,14.8,15.978999999999999,17.312999999999999,18.832999999999998,20.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,608,-0.58409999999999995,15.976100000000001,0.078359999999999999,12.818,13.750999999999999,14.798,15.976000000000001,17.309999999999999,18.829999999999998,20.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,609,-0.5847,15.973699999999999,0.078359999999999999,12.816000000000001,13.749000000000001,14.795999999999999,15.974,17.308,18.827000000000002,20.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,610,-0.58530000000000004,15.971299999999999,0.078350000000000003,12.814,13.747999999999999,14.792999999999999,15.971,17.305,18.824000000000002,20.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,611,-0.58579999999999999,15.9688,0.078340000000000007,12.813000000000001,13.746,14.791,15.968999999999999,17.302,18.821000000000002,20.562999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,612,-0.58640000000000003,15.9664,0.078340000000000007,12.811,13.744,14.789,15.965999999999999,17.3,18.818000000000001,20.56 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,613,-0.58699999999999997,15.964,0.078329999999999997,12.81,13.742000000000001,14.787000000000001,15.964,17.297000000000001,18.815000000000001,20.556999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,614,-0.58750000000000002,15.961600000000001,0.078329999999999997,12.808,13.74,14.785,15.962,17.294,18.812999999999999,20.553999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,615,-0.58809999999999996,15.959199999999999,0.078320000000000001,12.807,13.738,14.782999999999999,15.959,17.292000000000002,18.809999999999999,20.550999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,616,-0.58860000000000001,15.956799999999999,0.078320000000000001,12.805,13.736000000000001,14.781000000000001,15.957000000000001,17.289000000000001,18.806999999999999,20.547999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,617,-0.58919999999999995,15.9544,0.078310000000000005,12.803000000000001,13.734999999999999,14.779,15.954000000000001,17.286000000000001,18.803999999999998,20.545000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,618,-0.58979999999999999,15.9521,0.078299999999999995,12.802,13.733000000000001,14.776999999999999,15.952,17.283999999999999,18.800999999999998,20.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,619,-0.59030000000000005,15.9497,0.078299999999999995,12.8,13.731,14.773999999999999,15.95,17.280999999999999,18.797999999999998,20.539000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,620,-0.59089999999999998,15.9473,0.078289999999999998,12.798999999999999,13.728999999999999,14.772,15.946999999999999,17.277999999999999,18.795000000000002,20.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,621,-0.59140000000000004,15.945,0.078289999999999998,12.797000000000001,13.727,14.77,15.945,17.276,18.792000000000002,20.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,622,-0.59199999999999997,15.9427,0.078280000000000002,12.795999999999999,13.726000000000001,14.768000000000001,15.943,17.273,18.79,20.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,623,-0.59250000000000003,15.940300000000001,0.078270000000000006,12.794,13.724,14.766,15.94,17.27,18.786000000000001,20.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,624,-0.59309999999999996,15.938000000000001,0.078270000000000006,12.792999999999999,13.722,14.763999999999999,15.938000000000001,17.268000000000001,18.783999999999999,20.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,625,-0.59360000000000002,15.935700000000001,0.078259999999999996,12.791,13.721,14.762,15.936,17.265000000000001,18.780999999999999,20.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,626,-0.59419999999999995,15.933400000000001,0.078259999999999996,12.79,13.718999999999999,14.76,15.933,17.263000000000002,18.777999999999999,20.516999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,627,-0.59470000000000001,15.931100000000001,0.07825,12.788,13.717000000000001,14.757999999999999,15.930999999999999,17.260000000000002,18.774999999999999,20.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,628,-0.59530000000000005,15.928800000000001,0.07825,12.787000000000001,13.715,14.756,15.929,17.257999999999999,18.773,20.512 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,629,-0.5958,15.926600000000001,0.078240000000000004,12.785,13.714,14.754,15.927,17.254999999999999,18.77,20.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,630,-0.59640000000000004,15.924300000000001,0.078240000000000004,12.784000000000001,13.712,14.752000000000001,15.923999999999999,17.253,18.766999999999999,20.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,631,-0.59689999999999999,15.922000000000001,0.078229999999999994,12.782,13.71,14.75,15.922000000000001,17.25,18.763999999999999,20.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,632,-0.59750000000000003,15.9198,0.078219999999999998,12.781000000000001,13.708,14.747999999999999,15.92,17.248000000000001,18.760999999999999,20.498999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,633,-0.59799999999999998,15.9176,0.078219999999999998,12.779,13.707000000000001,14.746,15.917999999999999,17.245000000000001,18.759,20.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,634,-0.59860000000000002,15.9153,0.078210000000000002,12.778,13.705,14.744,15.914999999999999,17.242999999999999,18.756,20.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,635,-0.59909999999999997,15.9131,0.078210000000000002,12.776,13.702999999999999,14.742000000000001,15.913,17.239999999999998,18.754000000000001,20.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,636,-0.59960000000000002,15.9109,0.078200000000000006,12.775,13.702,14.74,15.911,17.238,18.751000000000001,20.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,637,-0.60019999999999996,15.9087,0.078200000000000006,12.773999999999999,13.7,14.738,15.909000000000001,17.234999999999999,18.748000000000001,20.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,638,-0.60070000000000001,15.906499999999999,0.078189999999999996,12.772,13.698,14.736000000000001,15.906000000000001,17.233000000000001,18.745000000000001,20.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,639,-0.60129999999999995,15.904299999999999,0.078179999999999999,12.771000000000001,13.696999999999999,14.734,15.904,17.23,18.742999999999999,20.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,640,-0.6018,15.902100000000001,0.078179999999999999,12.769,13.695,14.731999999999999,15.901999999999999,17.228000000000002,18.739999999999998,20.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,641,-0.60229999999999995,15.9,0.078170000000000003,12.768000000000001,13.693,14.731,15.9,17.225000000000001,18.736999999999998,20.474 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,642,-0.60289999999999999,15.8978,0.078170000000000003,12.766999999999999,13.692,14.728999999999999,15.898,17.222999999999999,18.734999999999999,20.471 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,643,-0.60340000000000005,15.8956,0.078159999999999993,12.765000000000001,13.69,14.727,15.896000000000001,17.221,18.731999999999999,20.468 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,644,-0.60399999999999998,15.8935,0.078159999999999993,12.763999999999999,13.688000000000001,14.725,15.894,17.218,18.73,20.466000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,645,-0.60450000000000004,15.891299999999999,0.078149999999999997,12.763,13.686999999999999,14.723000000000001,15.891,17.216000000000001,18.727,20.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,646,-0.60499999999999998,15.889200000000001,0.078149999999999997,12.760999999999999,13.685,14.721,15.888999999999999,17.213999999999999,18.724,20.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,647,-0.60560000000000003,15.8871,0.078140000000000001,12.76,13.683,14.718999999999999,15.887,17.210999999999999,18.722000000000001,20.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,648,-0.60609999999999997,15.885,0.078130000000000005,12.759,13.682,14.718,15.885,17.209,18.719000000000001,20.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,649,-0.60660000000000003,15.882899999999999,0.078130000000000005,12.757,13.68,14.715999999999999,15.882999999999999,17.206,18.716999999999999,20.452000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,650,-0.60719999999999996,15.880800000000001,0.078119999999999995,12.756,13.679,14.714,15.881,17.204000000000001,18.713999999999999,20.449000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,651,-0.60770000000000002,15.8787,0.078119999999999995,12.754,13.677,14.712,15.879,17.202000000000002,18.712,20.446000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,652,-0.60819999999999996,15.8766,0.078109999999999999,12.753,13.676,14.71,15.877000000000001,17.199000000000002,18.709,20.443000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,653,-0.60870000000000002,15.874499999999999,0.078109999999999999,12.752000000000001,13.673999999999999,14.708,15.874000000000001,17.196999999999999,18.706,20.440999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,654,-0.60929999999999995,15.8725,0.078100000000000003,12.750999999999999,13.672000000000001,14.706,15.872,17.195,18.704000000000001,20.437999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,655,-0.60980000000000001,15.8704,0.078100000000000003,12.749000000000001,13.670999999999999,14.705,15.87,17.193000000000001,18.702000000000002,20.436 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,656,-0.61029999999999995,15.868399999999999,0.078090000000000007,12.747999999999999,13.669,14.702999999999999,15.868,17.190000000000001,18.699000000000002,20.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,657,-0.6109,15.866300000000001,0.078090000000000007,12.746,13.667999999999999,14.701000000000001,15.866,17.187999999999999,18.696999999999999,20.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,658,-0.61140000000000005,15.8643,0.078079999999999997,12.744999999999999,13.666,14.699,15.864000000000001,17.186,18.693999999999999,20.427 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,659,-0.6119,15.862299999999999,0.078070000000000001,12.744,13.664999999999999,14.698,15.862,17.183,18.690999999999999,20.425000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,660,-0.61240000000000006,15.860200000000001,0.078070000000000001,12.743,13.663,14.696,15.86,17.181000000000001,18.689,20.422000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,661,-0.61299999999999999,15.8582,0.078060000000000004,12.741,13.662000000000001,14.694000000000001,15.858000000000001,17.178999999999998,18.686,20.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,662,-0.61350000000000005,15.856199999999999,0.078060000000000004,12.74,13.66,14.692,15.856,17.177,18.684000000000001,20.417000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,663,-0.61399999999999999,15.854200000000001,0.078049999999999994,12.739000000000001,13.659000000000001,14.69,15.853999999999999,17.173999999999999,18.681000000000001,20.414000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,664,-0.61450000000000005,15.8522,0.078049999999999994,12.737,13.657,14.689,15.852,17.172000000000001,18.678999999999998,20.411999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,665,-0.61499999999999999,15.850300000000001,0.078039999999999998,12.736000000000001,13.656000000000001,14.686999999999999,15.85,17.170000000000002,18.677,20.408999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,666,-0.61560000000000004,15.8483,0.078039999999999998,12.734999999999999,13.654,14.685,15.848000000000001,17.167999999999999,18.673999999999999,20.407 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,667,-0.61609999999999998,15.846299999999999,0.078030000000000002,12.734,13.653,14.683,15.846,17.166,18.672000000000001,20.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,668,-0.61660000000000004,15.8444,0.078030000000000002,12.731999999999999,13.651,14.682,15.843999999999999,17.164000000000001,18.670000000000002,20.402000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,669,-0.61709999999999998,15.8424,0.078020000000000006,12.731,13.65,14.68,15.842000000000001,17.161000000000001,18.667000000000002,20.399000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,670,-0.61760000000000004,15.8405,0.078020000000000006,12.73,13.648,14.678000000000001,15.84,17.158999999999999,18.664999999999999,20.396999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,671,-0.61809999999999998,15.8385,0.078009999999999996,12.728999999999999,13.647,14.677,15.837999999999999,17.157,18.661999999999999,20.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,672,-0.61870000000000003,15.836600000000001,0.078,12.728,13.645,14.675000000000001,15.837,17.155000000000001,18.66,20.390999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,673,-0.61919999999999997,15.8347,0.078,12.726000000000001,13.644,14.673,15.835000000000001,17.152999999999999,18.658000000000001,20.388999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,674,-0.61970000000000003,15.832800000000001,0.077990000000000004,12.725,13.641999999999999,14.672000000000001,15.833,17.149999999999999,18.655000000000001,20.385999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,675,-0.62019999999999997,15.8309,0.077990000000000004,12.724,13.641,14.67,15.831,17.148,18.652999999999999,20.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,676,-0.62070000000000003,15.829000000000001,0.077979999999999994,12.723000000000001,13.64,14.667999999999999,15.829000000000001,17.146000000000001,18.651,20.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,677,-0.62119999999999997,15.8271,0.077979999999999994,12.722,13.638,14.667,15.827,17.143999999999998,18.648,20.379000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,678,-0.62170000000000003,15.825200000000001,0.077969999999999998,12.72,13.637,14.664999999999999,15.824999999999999,17.141999999999999,18.646000000000001,20.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,679,-0.62219999999999998,15.8233,0.077969999999999998,12.718999999999999,13.635,14.663,15.823,17.14,18.643999999999998,20.373999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,680,-0.62270000000000003,15.821400000000001,0.077960000000000002,12.718,13.634,14.662000000000001,15.821,17.138000000000002,18.640999999999998,20.370999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,681,-0.62329999999999997,15.819599999999999,0.077960000000000002,12.717000000000001,13.632,14.66,15.82,17.135999999999999,18.638999999999999,20.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,682,-0.62380000000000002,15.8177,0.077950000000000005,12.715999999999999,13.631,14.657999999999999,15.818,17.134,18.637,20.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,683,-0.62429999999999997,15.815799999999999,0.077950000000000005,12.714,13.63,14.657,15.816000000000001,17.132000000000001,18.635000000000002,20.364999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,684,-0.62480000000000002,15.814,0.077939999999999995,12.712999999999999,13.628,14.654999999999999,15.814,17.129000000000001,18.632000000000001,20.361999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,685,-0.62529999999999997,15.812200000000001,0.077939999999999995,12.712,13.627000000000001,14.654,15.811999999999999,17.126999999999999,18.63,20.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,686,-0.62580000000000002,15.8103,0.077929999999999999,12.711,13.625,14.651999999999999,15.81,17.125,18.628,20.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,687,-0.62629999999999997,15.8085,0.077920000000000003,12.71,13.624000000000001,14.65,15.808,17.123000000000001,18.625,20.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,688,-0.62680000000000002,15.806699999999999,0.077920000000000003,12.709,13.622999999999999,14.648999999999999,15.807,17.120999999999999,18.623000000000001,20.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,689,-0.62729999999999997,15.8049,0.077909999999999993,12.708,13.622,14.647,15.805,17.119,18.620999999999999,20.350000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,690,-0.62780000000000002,15.803100000000001,0.077909999999999993,12.706,13.62,14.646000000000001,15.803000000000001,17.117000000000001,18.619,20.347999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,691,-0.62829999999999997,15.801299999999999,0.077899999999999997,12.706,13.619,14.644,15.801,17.114999999999998,18.617000000000001,20.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,692,-0.62880000000000003,15.7995,0.077899999999999997,12.704000000000001,13.617000000000001,14.641999999999999,15.8,17.113,18.614999999999998,20.343 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,693,-0.62929999999999997,15.797700000000001,0.077890000000000001,12.702999999999999,13.616,14.641,15.798,17.111000000000001,18.611999999999998,20.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,694,-0.62980000000000003,15.7959,0.077890000000000001,12.702,13.615,14.638999999999999,15.795999999999999,17.109000000000002,18.61,20.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,695,-0.63029999999999997,15.7941,0.077880000000000005,12.701000000000001,13.613,14.638,15.794,17.106999999999999,18.608000000000001,20.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,696,-0.63080000000000003,15.792400000000001,0.077880000000000005,12.7,13.612,14.635999999999999,15.792,17.105,18.606000000000002,20.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,697,-0.63129999999999997,15.7906,0.077869999999999995,12.699,13.611000000000001,14.635,15.791,17.103000000000002,18.603999999999999,20.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,698,-0.63180000000000003,15.7888,0.077869999999999995,12.696999999999999,13.609,14.632999999999999,15.789,17.100999999999999,18.602,20.329000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,699,-0.63229999999999997,15.787100000000001,0.077859999999999999,12.696999999999999,13.608000000000001,14.632,15.787000000000001,17.099,18.599,20.327000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,700,-0.63280000000000003,15.785299999999999,0.077859999999999999,12.695,13.606999999999999,14.63,15.785,17.097000000000001,18.597000000000001,20.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,701,-0.63329999999999997,15.7836,0.077850000000000003,12.694000000000001,13.606,14.629,15.784000000000001,17.094999999999999,18.594999999999999,20.321999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,702,-0.63380000000000003,15.7819,0.077850000000000003,12.693,13.603999999999999,14.627000000000001,15.782,17.094000000000001,18.593,20.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,703,-0.63429999999999997,15.780200000000001,0.077840000000000006,12.692,13.603,14.625999999999999,15.78,17.091999999999999,18.591000000000001,20.318000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,704,-0.63480000000000003,15.7784,0.077840000000000006,12.691000000000001,13.602,14.624000000000001,15.778,17.09,18.588999999999999,20.315999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,705,-0.63519999999999999,15.7767,0.077829999999999996,12.69,13.6,14.622999999999999,15.776999999999999,17.088000000000001,18.587,20.312999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,706,-0.63570000000000004,15.775,0.077829999999999996,12.689,13.599,14.621,15.775,17.085999999999999,18.585000000000001,20.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,707,-0.63619999999999999,15.773300000000001,0.07782,12.688000000000001,13.598000000000001,14.62,15.773,17.084,18.582000000000001,20.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,708,-0.63670000000000004,15.771599999999999,0.07782,12.686999999999999,13.596,14.618,15.772,17.082000000000001,18.581,20.306999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,709,-0.63719999999999999,15.7699,0.077810000000000004,12.686,13.595000000000001,14.617000000000001,15.77,17.079999999999998,18.577999999999999,20.303999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,710,-0.63770000000000004,15.7682,0.077810000000000004,12.685,13.593999999999999,14.615,15.768000000000001,17.077999999999999,18.576000000000001,20.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,711,-0.63819999999999999,15.766500000000001,0.077799999999999994,12.683999999999999,13.593,14.614000000000001,15.766,17.076000000000001,18.574000000000002,20.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,712,-0.63870000000000005,15.764900000000001,0.077799999999999994,12.683,13.590999999999999,14.612,15.765000000000001,17.074000000000002,18.571999999999999,20.297999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,713,-0.63919999999999999,15.763199999999999,0.077789999999999998,12.682,13.59,14.611000000000001,15.763,17.071999999999999,18.57,20.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,714,-0.63959999999999995,15.7615,0.077789999999999998,12.68,13.589,14.609,15.762,17.071000000000002,18.568000000000001,20.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,715,-0.6401,15.7599,0.077780000000000002,12.68,13.587999999999999,14.608000000000001,15.76,17.068999999999999,18.565999999999999,20.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,716,-0.64059999999999995,15.7582,0.077780000000000002,12.678000000000001,13.586,14.606,15.757999999999999,17.067,18.564,20.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,717,-0.6411,15.756600000000001,0.077770000000000006,12.678000000000001,13.585000000000001,14.605,15.757,17.065000000000001,18.562000000000001,20.286999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,718,-0.64159999999999995,15.754899999999999,0.077770000000000006,12.676,13.584,14.603,15.755000000000001,17.062999999999999,18.559999999999999,20.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,719,-0.6421,15.753299999999999,0.077759999999999996,12.676,13.583,14.602,15.753,17.061,18.558,20.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,720,-0.64249999999999996,15.7517,0.077759999999999996,12.673999999999999,13.582000000000001,14.601000000000001,15.752000000000001,17.059999999999999,18.556000000000001,20.280999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,721,-0.64300000000000002,15.75,0.07775,12.673,13.58,14.599,15.75,17.058,18.553999999999998,20.277999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,722,-0.64349999999999996,15.7484,0.07775,12.672000000000001,13.579000000000001,14.598000000000001,15.747999999999999,17.056000000000001,18.552,20.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,723,-0.64400000000000002,15.7468,0.077740000000000004,12.670999999999999,13.577999999999999,14.596,15.747,17.053999999999998,18.55,20.274000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,724,-0.64449999999999996,15.745200000000001,0.077740000000000004,12.67,13.577,14.595000000000001,15.744999999999999,17.052,18.547999999999998,20.271999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,725,-0.64490000000000003,15.743600000000001,0.077729999999999994,12.669,13.576000000000001,14.593999999999999,15.744,17.050999999999998,18.545999999999999,20.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,726,-0.64539999999999997,15.742000000000001,0.077729999999999994,12.667999999999999,13.574,14.592000000000001,15.742000000000001,17.048999999999999,18.544,20.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,727,-0.64590000000000003,15.740399999999999,0.077719999999999997,12.667999999999999,13.573,14.590999999999999,15.74,17.047000000000001,18.542000000000002,20.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,728,-0.64639999999999997,15.738799999999999,0.077719999999999997,12.666,13.571999999999999,14.589,15.739000000000001,17.045000000000002,18.54,20.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,729,-0.64690000000000003,15.7372,0.077710000000000001,12.666,13.571,14.587999999999999,15.737,17.042999999999999,18.538,20.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,730,-0.64729999999999999,15.7356,0.077710000000000001,12.664,13.57,14.587,15.736000000000001,17.042000000000002,18.536000000000001,20.260000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,731,-0.61870000000000003,16.018899999999999,0.077850000000000003,12.879,13.805999999999999,14.846,16.018999999999998,17.349,18.867999999999999,20.614999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,732,-0.61750000000000005,16.017600000000002,0.077850000000000003,12.878,13.805,14.845000000000001,16.018000000000001,17.347999999999999,18.867000000000001,20.611999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,733,-0.61639999999999995,16.016300000000001,0.077850000000000003,12.877000000000001,13.804,14.843999999999999,16.015999999999998,17.346,18.864999999999998,20.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,734,-0.61519999999999997,16.015000000000001,0.077850000000000003,12.875,13.802,14.842000000000001,16.015000000000001,17.344999999999999,18.863,20.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,735,-0.61399999999999999,16.0136,0.077859999999999999,12.872999999999999,13.801,14.840999999999999,16.013999999999999,17.344000000000001,18.861000000000001,20.606000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,736,-0.6129,16.0123,0.077859999999999999,12.872,13.798999999999999,14.84,16.012,17.341999999999999,18.86,20.603000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,737,-0.61170000000000002,16.010999999999999,0.077859999999999999,12.871,13.798,14.837999999999999,16.010999999999999,17.341000000000001,18.858000000000001,20.600999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,738,-0.61050000000000004,16.009699999999999,0.077859999999999999,12.869,13.797000000000001,14.837,16.010000000000002,17.338999999999999,18.856000000000002,20.597999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,739,-0.60940000000000005,16.008400000000002,0.077869999999999995,12.868,13.795,14.836,16.007999999999999,17.338000000000001,18.853999999999999,20.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,740,-0.60819999999999996,16.007100000000001,0.077869999999999995,12.866,13.794,14.834,16.007000000000001,17.335999999999999,18.853000000000002,20.594000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,741,-0.60699999999999998,16.005800000000001,0.077869999999999995,12.865,13.792999999999999,14.833,16.006,17.335000000000001,18.850999999999999,20.591000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,742,-0.60589999999999999,16.0045,0.077869999999999995,12.863,13.791,14.832000000000001,16.004000000000001,17.332999999999998,18.849,20.588999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,743,-0.60470000000000002,16.0032,0.077869999999999995,12.862,13.79,14.831,16.003,17.332000000000001,18.847000000000001,20.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,744,-0.60360000000000003,16.001899999999999,0.077880000000000005,12.86,13.789,14.829000000000001,16.001999999999999,17.331,18.846,20.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,745,-0.60240000000000005,16.000599999999999,0.077880000000000005,12.859,13.787000000000001,14.827999999999999,16.001000000000001,17.329000000000001,18.844000000000001,20.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,746,-0.60119999999999996,15.9993,0.077880000000000005,12.856999999999999,13.786,14.827,15.999000000000001,17.327999999999999,18.841999999999999,20.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,747,-0.60009999999999997,15.997999999999999,0.077880000000000005,12.856,13.785,14.826000000000001,15.997999999999999,17.326000000000001,18.84,20.577000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,748,-0.59889999999999999,15.996700000000001,0.077890000000000001,12.853999999999999,13.782999999999999,14.824,15.997,17.324999999999999,18.838999999999999,20.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,749,-0.5978,15.9954,0.077890000000000001,12.853,13.782,14.823,15.994999999999999,17.323,18.837,20.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,750,-0.59660000000000002,15.9941,0.077890000000000001,12.852,13.781000000000001,14.821999999999999,15.994,17.321999999999999,18.835000000000001,20.571000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,751,-0.59550000000000003,15.992800000000001,0.077890000000000001,12.85,13.779,14.82,15.993,17.321000000000002,18.832999999999998,20.568000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,752,-0.59430000000000005,15.9915,0.077890000000000001,12.849,13.778,14.819000000000001,15.992000000000001,17.318999999999999,18.831,20.565999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,753,-0.59319999999999995,15.9902,0.077899999999999997,12.847,13.776,14.818,15.99,17.318000000000001,18.829999999999998,20.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,754,-0.59199999999999997,15.988899999999999,0.077899999999999997,12.846,13.775,14.816000000000001,15.989000000000001,17.315999999999999,18.827999999999999,20.562000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,755,-0.59089999999999998,15.9876,0.077899999999999997,12.843999999999999,13.773999999999999,14.815,15.988,17.315000000000001,18.826000000000001,20.559000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,756,-0.5897,15.9863,0.077899999999999997,12.843,13.773,14.814,15.986000000000001,17.312999999999999,18.824999999999999,20.556999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,757,-0.58860000000000001,15.984999999999999,0.077909999999999993,12.840999999999999,13.771000000000001,14.813000000000001,15.984999999999999,17.312000000000001,18.823,20.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,758,-0.58740000000000003,15.9838,0.077909999999999993,12.84,13.77,14.811,15.984,17.311,18.821000000000002,20.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,759,-0.58630000000000004,15.9825,0.077909999999999993,12.839,13.769,14.81,15.981999999999999,17.309000000000001,18.82,20.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,760,-0.58509999999999995,15.981199999999999,0.077909999999999993,12.837,13.766999999999999,14.808999999999999,15.981,17.308,18.818000000000001,20.547999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,761,-0.58399999999999996,15.979900000000001,0.077920000000000003,12.835000000000001,13.766,14.807,15.98,17.306000000000001,18.815999999999999,20.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,762,-0.58279999999999998,15.9786,0.077920000000000003,12.834,13.763999999999999,14.805999999999999,15.978999999999999,17.305,18.814,20.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,763,-0.58169999999999999,15.9773,0.077920000000000003,12.833,13.763,14.805,15.977,17.303999999999998,18.812999999999999,20.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,764,-0.58050000000000002,15.976000000000001,0.077920000000000003,12.831,13.762,14.804,15.976000000000001,17.302,18.811,20.539000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,765,-0.57940000000000003,15.9748,0.077929999999999999,12.83,13.76,14.802,15.975,17.300999999999998,18.809999999999999,20.536999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,766,-0.57830000000000004,15.9735,0.077929999999999999,12.827999999999999,13.759,14.801,15.974,17.298999999999999,18.808,20.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,767,-0.57709999999999995,15.972200000000001,0.077929999999999999,12.827,13.757999999999999,14.8,15.972,17.297999999999998,18.806000000000001,20.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,768,-0.57599999999999996,15.9709,0.077929999999999999,12.826000000000001,13.757,14.798999999999999,15.971,17.295999999999999,18.803999999999998,20.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,769,-0.57479999999999998,15.9697,0.077939999999999995,12.824,13.755000000000001,14.797000000000001,15.97,17.295000000000002,18.803000000000001,20.527999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,770,-0.57369999999999999,15.968400000000001,0.077939999999999995,12.821999999999999,13.754,14.795999999999999,15.968,17.294,18.800999999999998,20.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,771,-0.5726,15.9671,0.077939999999999995,12.821,13.752000000000001,14.795,15.967000000000001,17.292000000000002,18.798999999999999,20.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,772,-0.57140000000000002,15.9658,0.077939999999999995,12.82,13.750999999999999,14.794,15.965999999999999,17.291,18.797000000000001,20.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,773,-0.57030000000000003,15.964600000000001,0.077950000000000005,12.818,13.75,14.792,15.965,17.29,18.795999999999999,20.518999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,774,-0.56920000000000004,15.9633,0.077950000000000005,12.817,13.747999999999999,14.791,15.962999999999999,17.288,18.794,20.516999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,775,-0.56799999999999995,15.962,0.077950000000000005,12.815,13.747,14.79,15.962,17.286999999999999,18.792000000000002,20.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,776,-0.56689999999999996,15.960699999999999,0.077950000000000005,12.814,13.746,14.789,15.961,17.285,18.791,20.512 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,777,-0.56579999999999997,15.9595,0.077960000000000002,12.811999999999999,13.744,14.787000000000001,15.96,17.283999999999999,18.789000000000001,20.51 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,778,-0.56469999999999998,15.9582,0.077960000000000002,12.811,13.743,14.786,15.958,17.283000000000001,18.786999999999999,20.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,779,-0.5635,15.956899999999999,0.077960000000000002,12.81,13.742000000000001,14.785,15.957000000000001,17.280999999999999,18.786000000000001,20.504999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,780,-0.56240000000000001,15.9557,0.077960000000000002,12.808,13.741,14.784000000000001,15.956,17.28,18.783999999999999,20.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,781,-0.56130000000000002,15.9544,0.077969999999999998,12.807,13.739000000000001,14.782,15.954000000000001,17.277999999999999,18.783000000000001,20.501000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,782,-0.56020000000000003,15.953200000000001,0.077969999999999998,12.805,13.738,14.781000000000001,15.952999999999999,17.277000000000001,18.780999999999999,20.498999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,783,-0.55900000000000005,15.9519,0.077969999999999998,12.804,13.737,14.78,15.952,17.276,18.779,20.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,784,-0.55789999999999995,15.9506,0.077979999999999994,12.802,13.734999999999999,14.778,15.951000000000001,17.274000000000001,18.777999999999999,20.495000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,785,-0.55679999999999996,15.949400000000001,0.077979999999999994,12.801,13.734,14.776999999999999,15.949,17.273,18.776,20.492999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,786,-0.55569999999999997,15.9481,0.077979999999999994,12.798999999999999,13.733000000000001,14.776,15.948,17.271999999999998,18.774000000000001,20.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,787,-0.55459999999999998,15.9468,0.077979999999999994,12.798,13.731,14.775,15.946999999999999,17.27,18.771999999999998,20.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,788,-0.55349999999999999,15.945600000000001,0.077990000000000004,12.795999999999999,13.73,14.773,15.946,17.268999999999998,18.771000000000001,20.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,789,-0.55230000000000001,15.9443,0.077990000000000004,12.795,13.728999999999999,14.772,15.944000000000001,17.266999999999999,18.768999999999998,20.484000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,790,-0.55120000000000002,15.943099999999999,0.077990000000000004,12.794,13.727,14.771000000000001,15.943,17.265999999999998,18.766999999999999,20.481000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,791,-0.55010000000000003,15.941800000000001,0.077990000000000004,12.792,13.726000000000001,14.77,15.942,17.265000000000001,18.765999999999998,20.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,792,-0.54900000000000004,15.9406,0.078,12.791,13.725,14.768000000000001,15.941000000000001,17.263000000000002,18.763999999999999,20.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,793,-0.54790000000000005,15.939299999999999,0.078,12.789,13.723000000000001,14.766999999999999,15.939,17.262,18.763000000000002,20.475000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,794,-0.54679999999999995,15.9381,0.078,12.788,13.722,14.766,15.938000000000001,17.260999999999999,18.760999999999999,20.472999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,795,-0.54569999999999996,15.9368,0.078009999999999996,12.786,13.721,14.765000000000001,15.936999999999999,17.259,18.759,20.471 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,796,-0.54459999999999997,15.935600000000001,0.078009999999999996,12.785,13.718999999999999,14.763,15.936,17.257999999999999,18.757999999999999,20.469000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,797,-0.54349999999999998,15.9343,0.078009999999999996,12.784000000000001,13.718,14.762,15.933999999999999,17.256,18.756,20.466000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,798,-0.54239999999999999,15.9331,0.078009999999999996,12.782,13.717000000000001,14.760999999999999,15.933,17.254999999999999,18.754000000000001,20.463999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,799,-0.5413,15.931800000000001,0.078020000000000006,12.781000000000001,13.715,14.76,15.932,17.254000000000001,18.753,20.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,800,-0.54020000000000001,15.9306,0.078020000000000006,12.779,13.714,14.759,15.930999999999999,17.251999999999999,18.751000000000001,20.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,801,-0.53910000000000002,15.9293,0.078020000000000006,12.778,13.712999999999999,14.757,15.929,17.251000000000001,18.748999999999999,20.457999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,802,-0.53800000000000003,15.928100000000001,0.078030000000000002,12.776,13.711,14.756,15.928000000000001,17.25,18.748000000000001,20.456 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,803,-0.53690000000000004,15.9268,0.078030000000000002,12.775,13.71,14.755000000000001,15.927,17.248000000000001,18.745999999999999,20.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,804,-0.53580000000000005,15.925599999999999,0.078030000000000002,12.773999999999999,13.709,14.754,15.926,17.247,18.745000000000001,20.451000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,805,-0.53469999999999995,15.9244,0.078030000000000002,12.773,13.708,14.752000000000001,15.923999999999999,17.245999999999999,18.742999999999999,20.449000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,806,-0.53359999999999996,15.9231,0.078039999999999998,12.771000000000001,13.706,14.750999999999999,15.923,17.244,18.741,20.446999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,807,-0.53249999999999997,15.921900000000001,0.078039999999999998,12.769,13.705,14.75,15.922000000000001,17.242999999999999,18.739999999999998,20.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,808,-0.53149999999999997,15.9206,0.078039999999999998,12.768000000000001,13.704000000000001,14.749000000000001,15.920999999999999,17.241,18.738,20.443000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,809,-0.53039999999999998,15.9194,0.078049999999999994,12.766999999999999,13.702,14.747,15.919,17.239999999999998,18.736999999999998,20.440999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,810,-0.52929999999999999,15.918200000000001,0.078049999999999994,12.765000000000001,13.701000000000001,14.746,15.917999999999999,17.239000000000001,18.734999999999999,20.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,811,-0.5282,15.9169,0.078049999999999994,12.763999999999999,13.7,14.744999999999999,15.917,17.236999999999998,18.733000000000001,20.437000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,812,-0.52710000000000001,15.915699999999999,0.078049999999999994,12.763,13.699,14.744,15.916,17.236000000000001,18.731000000000002,20.434000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,813,-0.52600000000000002,15.9145,0.078060000000000004,12.760999999999999,13.696999999999999,14.742000000000001,15.914,17.234999999999999,18.73,20.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,814,-0.52500000000000002,15.9132,0.078060000000000004,12.76,13.696,14.741,15.913,17.233000000000001,18.728000000000002,20.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,815,-0.52390000000000003,15.912000000000001,0.078060000000000004,12.757999999999999,13.695,14.74,15.912000000000001,17.231999999999999,18.727,20.428000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,816,-0.52280000000000004,15.9108,0.078070000000000001,12.757,13.693,14.739000000000001,15.911,17.231000000000002,18.725000000000001,20.427 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,817,-0.52170000000000005,15.9095,0.078070000000000001,12.755000000000001,13.692,14.737,15.91,17.228999999999999,18.724,20.423999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,818,-0.52070000000000005,15.908300000000001,0.078070000000000001,12.754,13.691000000000001,14.736000000000001,15.907999999999999,17.228000000000002,18.722000000000001,20.422000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,819,-0.51959999999999995,15.9071,0.078079999999999997,12.752000000000001,13.689,14.734999999999999,15.907,17.227,18.721,20.420000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,820,-0.51849999999999996,15.905799999999999,0.078079999999999997,12.750999999999999,13.688000000000001,14.734,15.906000000000001,17.225000000000001,18.719000000000001,20.417999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,821,-0.51749999999999996,15.9046,0.078079999999999997,12.75,13.686999999999999,14.733000000000001,15.904999999999999,17.224,18.716999999999999,20.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,822,-0.51639999999999997,15.9034,0.078090000000000007,12.747999999999999,13.685,14.731,15.903,17.222999999999999,18.716000000000001,20.414000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,823,-0.51529999999999998,15.902200000000001,0.078090000000000007,12.747,13.683999999999999,14.73,15.901999999999999,17.222000000000001,18.713999999999999,20.411999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,824,-0.51429999999999998,15.9009,0.078090000000000007,12.746,13.683,14.728999999999999,15.901,17.22,18.712,20.41 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,825,-0.51319999999999999,15.899699999999999,0.078090000000000007,12.744,13.682,14.728,15.9,17.219000000000001,18.710999999999999,20.407 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,826,-0.51219999999999999,15.8985,0.078100000000000003,12.743,13.68,14.726000000000001,15.898,17.218,18.709,20.405999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,827,-0.5111,15.8973,0.078100000000000003,12.741,13.679,14.725,15.897,17.216000000000001,18.707999999999998,20.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,828,-0.5101,15.896100000000001,0.078100000000000003,12.74,13.678000000000001,14.724,15.896000000000001,17.215,18.706,20.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,829,-0.50900000000000001,15.8948,0.078109999999999999,12.738,13.676,14.723000000000001,15.895,17.213999999999999,18.704999999999998,20.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,830,-0.50800000000000001,15.893599999999999,0.078109999999999999,12.737,13.675000000000001,14.722,15.894,17.212,18.702999999999999,20.396999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,831,-0.50690000000000002,15.8924,0.078109999999999999,12.736000000000001,13.673999999999999,14.72,15.891999999999999,17.210999999999999,18.701000000000001,20.395 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,832,-0.50590000000000002,15.8912,0.078119999999999995,12.734,13.673,14.718999999999999,15.891,17.21,18.7,20.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,833,-0.50480000000000003,15.89,0.078119999999999995,12.733000000000001,13.670999999999999,14.718,15.89,17.207999999999998,18.698,20.390999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,834,-0.50380000000000003,15.8888,0.078119999999999995,12.731999999999999,13.67,14.717000000000001,15.888999999999999,17.207000000000001,18.696999999999999,20.388999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,835,-0.50270000000000004,15.887499999999999,0.078130000000000005,12.73,13.669,14.715,15.888,17.206,18.695,20.388000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,836,-0.50170000000000003,15.8863,0.078130000000000005,12.728999999999999,13.667,14.714,15.885999999999999,17.204000000000001,18.693999999999999,20.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,837,-0.50060000000000004,15.8851,0.078130000000000005,12.727,13.666,14.712999999999999,15.885,17.202999999999999,18.692,20.382999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,838,-0.49959999999999999,15.883900000000001,0.078140000000000001,12.726000000000001,13.664999999999999,14.712,15.884,17.202000000000002,18.690999999999999,20.382000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,839,-0.49859999999999999,15.8827,0.078140000000000001,12.724,13.664,14.711,15.882999999999999,17.2,18.689,20.379000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,840,-0.4975,15.881500000000001,0.078140000000000001,12.723000000000001,13.662000000000001,14.71,15.882,17.199000000000002,18.687000000000001,20.376999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,841,-0.4965,15.8803,0.078149999999999997,12.722,13.661,14.708,15.88,17.198,18.686,20.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,842,-0.4955,15.879099999999999,0.078149999999999997,12.72,13.66,14.707000000000001,15.879,17.196999999999999,18.684000000000001,20.373000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,843,-0.49440000000000001,15.8779,0.078149999999999997,12.718999999999999,13.659000000000001,14.706,15.878,17.195,18.683,20.370999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,844,-0.49340000000000001,15.8767,0.078159999999999993,12.717000000000001,13.657,14.705,15.877000000000001,17.193999999999999,18.681000000000001,20.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,845,-0.4924,15.875500000000001,0.078159999999999993,12.715999999999999,13.656000000000001,14.702999999999999,15.875999999999999,17.193000000000001,18.68,20.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,846,-0.4914,15.8742,0.078159999999999993,12.715,13.654999999999999,14.702,15.874000000000001,17.190999999999999,18.678000000000001,20.364999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,847,-0.4904,15.872999999999999,0.078170000000000003,12.712999999999999,13.653,14.701000000000001,15.872999999999999,17.190000000000001,18.677,20.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,848,-0.48930000000000001,15.8718,0.078170000000000003,12.712,13.651999999999999,14.7,15.872,17.189,18.675000000000001,20.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,849,-0.48830000000000001,15.8706,0.078170000000000003,12.711,13.651,14.699,15.871,17.187000000000001,18.672999999999998,20.359000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,850,-0.48730000000000001,15.869400000000001,0.078179999999999999,12.709,13.65,14.696999999999999,15.869,17.186,18.672000000000001,20.358000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,851,-0.48630000000000001,15.8682,0.078179999999999999,12.708,13.648,14.696,15.868,17.184999999999999,18.670000000000002,20.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,852,-0.48530000000000001,15.867000000000001,0.078179999999999999,12.707000000000001,13.647,14.695,15.867000000000001,17.183,18.669,20.353000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,853,-0.48430000000000001,15.8658,0.078189999999999996,12.705,13.646000000000001,14.694000000000001,15.866,17.181999999999999,18.667999999999999,20.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,854,-0.48330000000000001,15.864599999999999,0.078189999999999996,12.704000000000001,13.645,14.693,15.865,17.181000000000001,18.666,20.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,855,-0.48230000000000001,15.8634,0.078189999999999996,12.702,13.643000000000001,14.691000000000001,15.863,17.18,18.664000000000001,20.347000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,856,-0.48130000000000001,15.8622,0.078200000000000006,12.701000000000001,13.641999999999999,14.69,15.862,17.178000000000001,18.663,20.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,857,-0.4803,15.8611,0.078200000000000006,12.7,13.641,14.689,15.861000000000001,17.177,18.661000000000001,20.344000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,858,-0.4793,15.8599,0.078200000000000006,12.698,13.64,14.688000000000001,15.86,17.175999999999998,18.66,20.341999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,859,-0.4783,15.858700000000001,0.078210000000000002,12.696999999999999,13.638,14.686999999999999,15.859,17.175000000000001,18.658000000000001,20.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,860,-0.4773,15.8575,0.078210000000000002,12.695,13.637,14.685,15.858000000000001,17.172999999999998,18.657,20.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,861,-0.4763,15.856299999999999,0.078210000000000002,12.694000000000001,13.635999999999999,14.683999999999999,15.856,17.172000000000001,18.655000000000001,20.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,862,-0.4753,15.8551,0.078219999999999998,12.693,13.634,14.683,15.855,17.170999999999999,18.654,20.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,863,-0.4743,15.853899999999999,0.078219999999999998,12.691000000000001,13.632999999999999,14.682,15.853999999999999,17.169,18.652000000000001,20.332000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,864,-0.4733,15.8527,0.078219999999999998,12.69,13.632,14.680999999999999,15.853,17.167999999999999,18.651,20.329999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,865,-0.4723,15.8515,0.078229999999999994,12.688000000000001,13.631,14.679,15.852,17.167000000000002,18.649000000000001,20.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,866,-0.4713,15.850300000000001,0.078229999999999994,12.686999999999999,13.629,14.678000000000001,15.85,17.164999999999999,18.648,20.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,867,-0.47039999999999998,15.8491,0.078240000000000004,12.686,13.628,14.677,15.849,17.164000000000001,18.646000000000001,20.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,868,-0.46939999999999998,15.848000000000001,0.078240000000000004,12.683999999999999,13.627000000000001,14.676,15.848000000000001,17.163,18.645,20.323 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,869,-0.46839999999999998,15.8468,0.078240000000000004,12.683,13.625999999999999,14.675000000000001,15.847,17.161999999999999,18.643000000000001,20.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,870,-0.46739999999999998,15.845599999999999,0.07825,12.682,13.624000000000001,14.673,15.846,17.16,18.641999999999999,20.318999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,871,-0.46650000000000003,15.8444,0.07825,12.68,13.622999999999999,14.672000000000001,15.843999999999999,17.158999999999999,18.64,20.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,872,-0.46550000000000002,15.8432,0.07825,12.679,13.622,14.670999999999999,15.843,17.158000000000001,18.638999999999999,20.315000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,873,-0.46450000000000002,15.842000000000001,0.078259999999999996,12.677,13.62,14.67,15.842000000000001,17.157,18.637,20.312999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,874,-0.46360000000000001,15.8409,0.078259999999999996,12.676,13.619,14.669,15.840999999999999,17.155000000000001,18.635999999999999,20.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,875,-0.46260000000000001,15.839700000000001,0.078259999999999996,12.675000000000001,13.618,14.667999999999999,15.84,17.154,18.634,20.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,876,-0.46160000000000001,15.8385,0.078270000000000006,12.673,13.617000000000001,14.666,15.837999999999999,17.152999999999999,18.632999999999999,20.306999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,877,-0.4607,15.837300000000001,0.078270000000000006,12.672000000000001,13.616,14.664999999999999,15.837,17.151,18.631,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,878,-0.4597,15.8361,0.078280000000000002,12.670999999999999,13.614000000000001,14.664,15.836,17.149999999999999,18.63,20.303999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,879,-0.4587,15.835000000000001,0.078280000000000002,12.669,13.613,14.663,15.835000000000001,17.149000000000001,18.628,20.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,880,-0.45779999999999998,15.8338,0.078280000000000002,12.667999999999999,13.612,14.662000000000001,15.834,17.148,18.626999999999999,20.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,881,-0.45679999999999998,15.832599999999999,0.078289999999999998,12.667,13.61,14.66,15.833,17.146999999999998,18.626000000000001,20.297999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,882,-0.45590000000000003,15.8314,0.078289999999999998,12.664999999999999,13.609,14.659000000000001,15.831,17.145,18.623999999999999,20.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,883,-0.45490000000000003,15.830299999999999,0.078289999999999998,12.664,13.608000000000001,14.657999999999999,15.83,17.143999999999998,18.622,20.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,884,-0.45400000000000001,15.8291,0.078299999999999995,12.663,13.606999999999999,14.657,15.829000000000001,17.143000000000001,18.620999999999999,20.292000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,885,-0.4531,15.8279,0.078299999999999995,12.661,13.606,14.656000000000001,15.827999999999999,17.140999999999998,18.619,20.29 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,886,-0.4521,15.826700000000001,0.078310000000000005,12.66,13.603999999999999,14.654,15.827,17.14,18.617999999999999,20.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,887,-0.45119999999999999,15.8256,0.078310000000000005,12.659000000000001,13.603,14.653,15.826000000000001,17.138999999999999,18.617000000000001,20.286999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,888,-0.45019999999999999,15.824400000000001,0.078310000000000005,12.657,13.602,14.651999999999999,15.824,17.138000000000002,18.614999999999998,20.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,889,-0.44929999999999998,15.8232,0.078320000000000001,12.656000000000001,13.6,14.651,15.823,17.135999999999999,18.614000000000001,20.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,890,-0.44840000000000002,15.822100000000001,0.078320000000000001,12.654999999999999,13.599,14.65,15.821999999999999,17.135000000000002,18.611999999999998,20.280999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,891,-0.44740000000000002,15.8209,0.078320000000000001,12.653,13.598000000000001,14.648999999999999,15.821,17.134,18.611000000000001,20.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,892,-0.44650000000000001,15.819699999999999,0.078329999999999997,12.651999999999999,13.597,14.647,15.82,17.132999999999999,18.609000000000002,20.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,893,-0.4456,15.8186,0.078329999999999997,12.651,13.596,14.646000000000001,15.819000000000001,17.131,18.608000000000001,20.274999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,894,-0.4446,15.817399999999999,0.078340000000000007,12.648999999999999,13.593999999999999,14.645,15.817,17.13,18.606999999999999,20.274000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,895,-0.44369999999999998,15.8162,0.078340000000000007,12.648,13.593,14.644,15.816000000000001,17.129000000000001,18.605,20.271999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,896,-0.44280000000000003,15.815099999999999,0.078340000000000007,12.647,13.592000000000001,14.643000000000001,15.815,17.128,18.603000000000002,20.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,897,-0.44190000000000002,15.8139,0.078350000000000003,12.645,13.590999999999999,14.641999999999999,15.814,17.126999999999999,18.602,20.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,898,-0.441,15.8127,0.078350000000000003,12.644,13.589,14.64,15.813000000000001,17.125,18.600999999999999,20.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,899,-0.44009999999999999,15.8116,0.078350000000000003,12.643000000000001,13.587999999999999,14.638999999999999,15.811999999999999,17.123999999999999,18.599,20.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,900,-0.43909999999999999,15.8104,0.078359999999999999,12.641,13.587,14.638,15.81,17.123000000000001,18.597999999999999,20.263000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,901,-0.43819999999999998,15.8093,0.078359999999999999,12.64,13.586,14.637,15.808999999999999,17.122,18.596,20.260999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,902,-0.43730000000000002,15.8081,0.078369999999999995,12.638,13.584,14.635999999999999,15.808,17.12,18.594999999999999,20.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,903,-0.43640000000000001,15.806900000000001,0.078369999999999995,12.637,13.583,14.635,15.807,17.119,18.593,20.257000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,904,-0.4355,15.8058,0.078369999999999995,12.635999999999999,13.582000000000001,14.634,15.805999999999999,17.117999999999999,18.591999999999999,20.254999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,905,-0.43459999999999999,15.804600000000001,0.078380000000000005,12.634,13.581,14.632,15.805,17.117000000000001,18.591000000000001,20.254000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,906,-0.43369999999999997,15.8035,0.078380000000000005,12.632999999999999,13.58,14.631,15.804,17.114999999999998,18.588999999999999,20.251999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,907,-0.43280000000000002,15.802300000000001,0.078390000000000001,12.632,13.577999999999999,14.63,15.802,17.114000000000001,18.588000000000001,20.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,908,-0.43190000000000001,15.8012,0.078390000000000001,12.63,13.577,14.629,15.801,17.113,18.585999999999999,20.248000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,909,-0.43099999999999999,15.8,0.078390000000000001,12.629,13.576000000000001,14.628,15.8,17.111999999999998,18.585000000000001,20.245999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,910,-0.43009999999999998,15.7989,0.078399999999999997,12.628,13.574999999999999,14.625999999999999,15.798999999999999,17.111000000000001,18.584,20.245000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,911,-0.42930000000000001,15.797700000000001,0.078399999999999997,12.625999999999999,13.573,14.625,15.798,17.109000000000002,18.582000000000001,20.242999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,912,-0.4284,15.7966,0.078409999999999994,12.625,13.571999999999999,14.624000000000001,15.797000000000001,17.108000000000001,18.581,20.242000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,913,-0.42749999999999999,15.795400000000001,0.078409999999999994,12.624000000000001,13.571,14.622999999999999,15.795,17.106999999999999,18.579000000000001,20.239000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,914,-0.42659999999999998,15.7943,0.078409999999999994,12.622999999999999,13.57,14.622,15.794,17.106000000000002,18.577999999999999,20.236999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,915,-0.42570000000000002,15.793100000000001,0.078420000000000004,12.621,13.568,14.621,15.792999999999999,17.103999999999999,18.576000000000001,20.236000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,916,-0.4249,15.792,0.078420000000000004,12.62,13.567,14.62,15.792,17.103000000000002,18.574999999999999,20.234000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,917,-0.42399999999999999,15.790800000000001,0.07843,12.618,13.566000000000001,14.618,15.791,17.102,18.574000000000002,20.233000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,918,-0.42309999999999998,15.7897,0.07843,12.617000000000001,13.565,14.617000000000001,15.79,17.100999999999999,18.571999999999999,20.231000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,919,-0.42220000000000002,15.788500000000001,0.07843,12.616,13.564,14.616,15.788,17.099,18.571000000000002,20.228999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,920,-0.4214,15.7874,0.078439999999999996,12.614000000000001,13.561999999999999,14.615,15.787000000000001,17.097999999999999,18.568999999999999,20.227 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,921,-0.42049999999999998,15.786199999999999,0.078439999999999996,12.613,13.561,14.614000000000001,15.786,17.097000000000001,18.568000000000001,20.225000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,922,-0.41959999999999997,15.7851,0.078450000000000006,12.612,13.56,14.613,15.785,17.096,18.567,20.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,923,-0.41880000000000001,15.783899999999999,0.078450000000000006,12.61,13.558999999999999,14.611000000000001,15.784000000000001,17.094999999999999,18.565000000000001,20.222000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,924,-0.41789999999999999,15.7828,0.078450000000000006,12.609,13.558,14.61,15.782999999999999,17.093,18.564,20.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,925,-0.41710000000000003,15.781700000000001,0.078460000000000002,12.608000000000001,13.555999999999999,14.609,15.782,17.091999999999999,18.562000000000001,20.219000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,926,-0.41620000000000001,15.7805,0.078460000000000002,12.606999999999999,13.555,14.608000000000001,15.78,17.091000000000001,18.561,20.216000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,927,-0.41539999999999999,15.779400000000001,0.078469999999999998,12.605,13.554,14.606999999999999,15.779,17.09,18.559999999999999,20.215 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,928,-0.41449999999999998,15.7782,0.078469999999999998,12.603999999999999,13.553000000000001,14.606,15.778,17.088000000000001,18.558,20.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,929,-0.41370000000000001,15.777100000000001,0.078479999999999994,12.602,13.551,14.603999999999999,15.776999999999999,17.087,18.556999999999999,20.212 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,930,-0.4128,15.776,0.078479999999999994,12.601000000000001,13.55,14.603,15.776,17.085999999999999,18.555,20.21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,931,-0.41199999999999998,15.774800000000001,0.078479999999999994,12.6,13.548999999999999,14.602,15.775,17.085000000000001,18.553999999999998,20.207999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,932,-0.41110000000000002,15.7737,0.078490000000000004,12.599,13.548,14.601000000000001,15.773999999999999,17.084,18.553000000000001,20.207000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,933,-0.4103,15.772600000000001,0.078490000000000004,12.597,13.547000000000001,14.6,15.773,17.082999999999998,18.550999999999998,20.204999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,934,-0.40949999999999998,15.7714,0.0785,12.596,13.545,14.599,15.771000000000001,17.081,18.55,20.202999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,935,-0.40860000000000002,15.770300000000001,0.0785,12.595000000000001,13.544,14.598000000000001,15.77,17.079999999999998,18.548999999999999,20.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,936,-0.4078,15.7692,0.0785,12.593999999999999,13.542999999999999,14.597,15.769,17.079000000000001,18.547000000000001,20.199000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,937,-0.40699999999999997,15.768000000000001,0.078509999999999996,12.592000000000001,13.542,14.595000000000001,15.768000000000001,17.077999999999999,18.545999999999999,20.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,938,-0.40620000000000001,15.7669,0.078509999999999996,12.590999999999999,13.541,14.593999999999999,15.766999999999999,17.076000000000001,18.544,20.196000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,939,-0.40529999999999999,15.7658,0.078520000000000006,12.589,13.539,14.593,15.766,17.074999999999999,18.542999999999999,20.195 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,940,-0.40450000000000003,15.7646,0.078520000000000006,12.587999999999999,13.538,14.592000000000001,15.765000000000001,17.074000000000002,18.542000000000002,20.193000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,941,-0.4037,15.763500000000001,0.078530000000000003,12.587,13.537000000000001,14.590999999999999,15.763999999999999,17.073,18.54,20.190999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,942,-0.40289999999999998,15.7624,0.078530000000000003,12.586,13.536,14.59,15.762,17.071999999999999,18.539000000000001,20.189 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,943,-0.40210000000000001,15.761200000000001,0.078530000000000003,12.584,13.535,14.589,15.760999999999999,17.07,18.536999999999999,20.187000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,944,-0.40129999999999999,15.7601,0.078539999999999999,12.583,13.532999999999999,14.587,15.76,17.068999999999999,18.536000000000001,20.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,945,-0.40050000000000002,15.759,0.078539999999999999,12.582000000000001,13.532,14.586,15.759,17.068000000000001,18.535,20.184000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,946,-0.3997,15.757899999999999,0.078549999999999995,12.58,13.531000000000001,14.585000000000001,15.757999999999999,17.067,18.533999999999999,20.183 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,947,-0.39879999999999999,15.7567,0.078549999999999995,12.579000000000001,13.53,14.584,15.757,17.065999999999999,18.532,20.181000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,948,-0.39800000000000002,15.755599999999999,0.078560000000000005,12.577999999999999,13.528,14.583,15.756,17.065000000000001,18.530999999999999,20.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,949,-0.39729999999999999,15.7545,0.078560000000000005,12.577,13.526999999999999,14.582000000000001,15.754,17.062999999999999,18.53,20.178000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,950,-0.39650000000000002,15.753399999999999,0.078570000000000001,12.574999999999999,13.526,14.581,15.753,17.062000000000001,18.527999999999999,20.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,951,-0.3957,15.7522,0.078570000000000001,12.574,13.525,14.579000000000001,15.752000000000001,17.061,18.527000000000001,20.173999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,952,-0.39489999999999997,15.751099999999999,0.078570000000000001,12.573,13.523999999999999,14.577999999999999,15.750999999999999,17.059999999999999,18.524999999999999,20.172999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,953,-0.39410000000000001,15.75,0.078579999999999997,12.571,13.523,14.577,15.75,17.059000000000001,18.524000000000001,20.170999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,954,-0.39329999999999998,15.748900000000001,0.078579999999999997,12.57,13.521000000000001,14.576000000000001,15.749000000000001,17.058,18.523,20.169 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,955,-0.39250000000000002,15.7478,0.078589999999999993,12.569000000000001,13.52,14.574999999999999,15.747999999999999,17.056000000000001,18.521999999999998,20.167999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,956,-0.39169999999999999,15.746600000000001,0.078589999999999993,12.568,13.519,14.574,15.747,17.055,18.52,20.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,957,-0.39100000000000001,15.7455,0.078600000000000003,12.566000000000001,13.518000000000001,14.573,15.746,17.053999999999998,18.518999999999998,20.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,958,-0.39019999999999999,15.744400000000001,0.078600000000000003,12.565,13.516999999999999,14.571,15.744,17.053000000000001,18.516999999999999,20.163 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,959,-0.38940000000000002,15.7433,0.078609999999999999,12.563000000000001,13.515000000000001,14.57,15.743,17.052,18.515999999999998,20.161999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,960,-0.3886,15.7422,0.078609999999999999,12.561999999999999,13.513999999999999,14.569000000000001,15.742000000000001,17.050999999999998,18.515000000000001,20.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,961,-0.38790000000000002,15.741099999999999,0.078609999999999999,12.561,13.513,14.568,15.741,17.048999999999999,18.513000000000002,20.158000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,962,-0.3871,15.74,0.078619999999999995,12.56,13.512,14.567,15.74,17.047999999999998,18.512,20.157 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,963,-0.38640000000000002,15.738799999999999,0.078619999999999995,12.558999999999999,13.510999999999999,14.566000000000001,15.739000000000001,17.047000000000001,18.510999999999999,20.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,964,-0.3856,15.7377,0.078630000000000005,12.557,13.509,14.565,15.738,17.045999999999999,18.510000000000002,20.152999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,965,-0.38479999999999998,15.736599999999999,0.078630000000000005,12.555999999999999,13.507999999999999,14.564,15.737,17.045000000000002,18.507999999999999,20.152000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,966,-0.3841,15.7355,0.078640000000000002,12.555,13.507,14.561999999999999,15.736000000000001,17.044,18.507000000000001,20.149999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,967,-0.38329999999999997,15.734400000000001,0.078640000000000002,12.553000000000001,13.506,14.561,15.734,17.042000000000002,18.506,20.148 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,968,-0.3826,15.7333,0.078649999999999998,12.552,13.505000000000001,14.56,15.733000000000001,17.041,18.504000000000001,20.146999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,969,-0.38179999999999997,15.732200000000001,0.078649999999999998,12.551,13.504,14.558999999999999,15.731999999999999,17.04,18.503,20.145 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,970,-0.38109999999999999,15.7311,0.078649999999999998,12.55,13.502000000000001,14.558,15.731,17.039000000000001,18.501000000000001,20.143000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,971,-0.38040000000000002,15.73,0.078659999999999994,12.548,13.500999999999999,14.557,15.73,17.038,18.5,20.141999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,972,-0.37959999999999999,15.728899999999999,0.078659999999999994,12.547000000000001,13.5,14.555999999999999,15.728999999999999,17.036000000000001,18.498999999999999,20.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,973,-0.37890000000000001,15.7278,0.078670000000000004,12.545999999999999,13.499000000000001,14.555,15.728,17.035,18.498000000000001,20.138999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,974,-0.37819999999999998,15.726699999999999,0.078670000000000004,12.545,13.497999999999999,14.554,15.727,17.033999999999999,18.495999999999999,20.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,975,-0.37740000000000001,15.7256,0.07868,12.542999999999999,13.496,14.552,15.726000000000001,17.033000000000001,18.495000000000001,20.135999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,976,-0.37669999999999998,15.724500000000001,0.07868,12.542,13.494999999999999,14.551,15.724,17.032,18.494,20.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,977,-0.376,15.7234,0.078689999999999996,12.541,13.494,14.55,15.723000000000001,17.030999999999999,18.492999999999999,20.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,978,-0.37530000000000002,15.722200000000001,0.078689999999999996,12.539,13.493,14.548999999999999,15.722,17.03,18.491,20.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,979,-0.3745,15.7211,0.078700000000000006,12.538,13.492000000000001,14.548,15.721,17.027999999999999,18.489999999999998,20.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,980,-0.37380000000000002,15.72,0.078700000000000006,12.537000000000001,13.491,14.547000000000001,15.72,17.027000000000001,18.489000000000001,20.128 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,981,-0.37309999999999999,15.718999999999999,0.078710000000000002,12.536,13.489000000000001,14.545999999999999,15.718999999999999,17.026,18.488,20.126999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,982,-0.37240000000000001,15.7179,0.078710000000000002,12.534000000000001,13.488,14.545,15.718,17.024999999999999,18.486000000000001,20.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,983,-0.37169999999999997,15.716799999999999,0.078719999999999998,12.532999999999999,13.487,14.542999999999999,15.717000000000001,17.024000000000001,18.484999999999999,20.123999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,984,-0.371,15.7157,0.078719999999999998,12.532,13.486000000000001,14.542,15.715999999999999,17.023,18.484000000000002,20.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,985,-0.37030000000000002,15.714600000000001,0.078719999999999998,12.531000000000001,13.484999999999999,14.541,15.715,17.021999999999998,18.481999999999999,20.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,986,-0.36959999999999998,15.7135,0.078729999999999994,12.529,13.484,14.54,15.714,17.02,18.481000000000002,20.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,987,-0.36890000000000001,15.712400000000001,0.078729999999999994,12.528,13.483000000000001,14.539,15.712,17.018999999999998,18.48,20.117000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,988,-0.36820000000000003,15.7113,0.078740000000000004,12.526999999999999,13.481,14.538,15.711,17.018000000000001,18.478999999999999,20.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,989,-0.36749999999999999,15.7102,0.078740000000000004,12.526,13.48,14.537000000000001,15.71,17.016999999999999,18.477,20.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,990,-0.36680000000000001,15.709099999999999,0.078750000000000001,12.523999999999999,13.478999999999999,14.536,15.709,17.015999999999998,18.475999999999999,20.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,991,-0.36609999999999998,15.708,0.078750000000000001,12.523,13.478,14.535,15.708,17.015000000000001,18.475000000000001,20.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,992,-0.36549999999999999,15.706899999999999,0.078759999999999997,12.522,13.477,14.532999999999999,15.707000000000001,17.013999999999999,18.472999999999999,20.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,993,-0.36480000000000001,15.7058,0.078759999999999997,12.521000000000001,13.475,14.532,15.706,17.012,18.472000000000001,20.108000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,994,-0.36409999999999998,15.704700000000001,0.078770000000000007,12.519,13.474,14.531000000000001,15.705,17.010999999999999,18.471,20.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,995,-0.3634,15.7037,0.078770000000000007,12.518000000000001,13.473000000000001,14.53,15.704000000000001,17.010000000000002,18.47,20.105 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,996,-0.36280000000000001,15.7026,0.078780000000000003,12.516999999999999,13.472,14.529,15.702999999999999,17.009,18.469000000000001,20.103999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,997,-0.36209999999999998,15.701499999999999,0.078780000000000003,12.516,13.471,14.528,15.702,17.007999999999999,18.466999999999999,20.102 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,998,-0.3614,15.7004,0.078789999999999999,12.513999999999999,13.47,14.526999999999999,15.7,17.007000000000001,18.466000000000001,20.100999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,999,-0.36080000000000001,15.699299999999999,0.078789999999999999,12.513,13.468,14.526,15.699,17.006,18.465,20.099 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1000,-0.36009999999999998,15.6982,0.078799999999999995,12.512,13.467000000000001,14.525,15.698,17.004999999999999,18.463000000000001,20.097999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1001,-0.3594,15.697100000000001,0.078799999999999995,12.510999999999999,13.465999999999999,14.523999999999999,15.696999999999999,17.003,18.462,20.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1002,-0.35880000000000001,15.696099999999999,0.078810000000000005,12.509,13.465,14.522,15.696,17.001999999999999,18.460999999999999,20.094999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1003,-0.35809999999999997,15.695,0.078810000000000005,12.507999999999999,13.464,14.521000000000001,15.695,17.001000000000001,18.46,20.093 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1004,-0.35749999999999998,15.693899999999999,0.078820000000000001,12.507,13.462999999999999,14.52,15.694000000000001,17,18.459,20.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1005,-0.35680000000000001,15.6928,0.078820000000000001,12.506,13.462,14.519,15.693,16.998999999999999,18.457000000000001,20.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1006,-0.35620000000000002,15.691700000000001,0.078829999999999997,12.504,13.46,14.518000000000001,15.692,16.998000000000001,18.456,20.088999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1007,-0.35560000000000003,15.6907,0.078829999999999997,12.503,13.459,14.516999999999999,15.691000000000001,16.997,18.454999999999998,20.087 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1008,-0.35489999999999999,15.6896,0.078839999999999993,12.502000000000001,13.458,14.516,15.69,16.995999999999999,18.454000000000001,20.085999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1009,-0.3543,15.688499999999999,0.078839999999999993,12.500999999999999,13.457000000000001,14.515000000000001,15.688000000000001,16.995000000000001,18.452000000000002,20.085000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1010,-0.35360000000000003,15.6874,0.078850000000000003,12.499000000000001,13.456,14.513999999999999,15.686999999999999,16.992999999999999,18.451000000000001,20.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1011,-0.35299999999999998,15.686400000000001,0.078850000000000003,12.497999999999999,13.455,14.513,15.686,16.992000000000001,18.45,20.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1012,-0.35239999999999999,15.6853,0.07886,12.497,13.452999999999999,14.510999999999999,15.685,16.991,18.449000000000002,20.081 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1013,-0.3518,15.684200000000001,0.07886,12.496,13.452,14.51,15.683999999999999,16.989999999999998,18.446999999999999,20.079000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1014,-0.35110000000000002,15.683199999999999,0.078869999999999996,12.494999999999999,13.451000000000001,14.509,15.683,16.989000000000001,18.446000000000002,20.077999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1015,-0.35049999999999998,15.6821,0.078869999999999996,12.494,13.45,14.507999999999999,15.682,16.988,18.445,20.076000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1016,-0.34989999999999999,15.680999999999999,0.078880000000000006,12.492000000000001,13.449,14.507,15.680999999999999,16.986999999999998,18.443999999999999,20.074999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1017,-0.3493,15.6799,0.078880000000000006,12.491,13.448,14.506,15.68,16.986000000000001,18.442,20.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1018,-0.34870000000000001,15.678900000000001,0.078890000000000002,12.49,13.446999999999999,14.505000000000001,15.679,16.984999999999999,18.440999999999999,20.071999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1019,-0.34810000000000002,15.6778,0.078890000000000002,12.489000000000001,13.446,14.504,15.678000000000001,16.983000000000001,18.440000000000001,20.07 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1020,-0.34749999999999998,15.6767,0.078899999999999998,12.487,13.444000000000001,14.503,15.677,16.981999999999999,18.439,20.068999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1021,-0.34689999999999999,15.675700000000001,0.078899999999999998,12.486000000000001,13.443,14.502000000000001,15.676,16.981000000000002,18.437999999999999,20.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1022,-0.3463,15.6746,0.078909999999999994,12.484999999999999,13.442,14.500999999999999,15.675000000000001,16.98,18.437000000000001,20.065999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1023,-0.34570000000000001,15.673500000000001,0.078909999999999994,12.484,13.441000000000001,14.5,15.673999999999999,16.978999999999999,18.434999999999999,20.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1024,-0.34510000000000002,15.672499999999999,0.078920000000000004,12.481999999999999,13.44,14.497999999999999,15.672000000000001,16.978000000000002,18.434000000000001,20.062999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1025,-0.34449999999999997,15.6714,0.078920000000000004,12.481,13.439,14.497,15.670999999999999,16.977,18.433,20.062000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1026,-0.34389999999999998,15.670400000000001,0.07893,12.48,13.438000000000001,14.496,15.67,16.975999999999999,18.431999999999999,20.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1027,-0.34329999999999999,15.6693,0.07893,12.478999999999999,13.436,14.494999999999999,15.669,16.975000000000001,18.43,20.059000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1028,-0.3427,15.668200000000001,0.078939999999999996,12.478,13.435,14.494,15.667999999999999,16.974,18.428999999999998,20.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1029,-0.3422,15.667199999999999,0.078939999999999996,12.477,13.433999999999999,14.493,15.667,16.972999999999999,18.428000000000001,20.056000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1030,-0.34160000000000001,15.6661,0.078950000000000006,12.475,13.433,14.492000000000001,15.666,16.971,18.427,20.055 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1031,-0.34100000000000003,15.665100000000001,0.078950000000000006,12.474,13.432,14.491,15.664999999999999,16.97,18.425999999999998,20.053000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1032,-0.34039999999999998,15.664,0.078960000000000002,12.473000000000001,13.430999999999999,14.49,15.664,16.969000000000001,18.425000000000001,20.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1033,-0.33989999999999998,15.663,0.078960000000000002,12.472,13.43,14.489000000000001,15.663,16.968,18.422999999999998,20.050999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1034,-0.33929999999999999,15.661899999999999,0.078969999999999999,12.47,13.428000000000001,14.488,15.662000000000001,16.966999999999999,18.422000000000001,20.05 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1035,-0.33879999999999999,15.6609,0.078969999999999999,12.468999999999999,13.428000000000001,14.487,15.661,16.966000000000001,18.420999999999999,20.047999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1036,-0.3382,15.659800000000001,0.078979999999999995,12.468,13.426,14.486000000000001,15.66,16.965,18.420000000000002,20.047000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1037,-0.33760000000000001,15.658799999999999,0.078979999999999995,12.467000000000001,13.425000000000001,14.484999999999999,15.659000000000001,16.963999999999999,18.419,20.045000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1038,-0.33710000000000001,15.6577,0.078990000000000005,12.465999999999999,13.423999999999999,14.483000000000001,15.657999999999999,16.963000000000001,18.417999999999999,20.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1039,-0.33650000000000002,15.656700000000001,0.078990000000000005,12.465,13.423,14.481999999999999,15.657,16.962,18.416,20.042000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1040,-0.33600000000000002,15.6556,0.079000000000000001,12.462999999999999,13.422000000000001,14.481,15.656000000000001,16.960999999999999,18.414999999999999,20.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1041,-0.33539999999999998,15.6546,0.079000000000000001,12.462,13.420999999999999,14.48,15.654999999999999,16.96,18.414000000000001,20.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1042,-0.33489999999999998,15.653499999999999,0.079009999999999997,12.461,13.42,14.478999999999999,15.654,16.957999999999998,18.413,20.039000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1043,-0.33439999999999998,15.6525,0.079009999999999997,12.46,13.419,14.478,15.651999999999999,16.957000000000001,18.411999999999999,20.036999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1044,-0.33379999999999999,15.651400000000001,0.079020000000000007,12.459,13.417,14.477,15.651,16.956,18.411000000000001,20.036000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1045,-0.33329999999999999,15.650399999999999,0.079030000000000003,12.457000000000001,13.416,14.476000000000001,15.65,16.954999999999998,18.41,20.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1046,-0.33279999999999998,15.6493,0.079030000000000003,12.456,13.414999999999999,14.475,15.648999999999999,16.954000000000001,18.408000000000001,20.033000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1047,-0.3322,15.648300000000001,0.079039999999999999,12.455,13.414,14.474,15.648,16.952999999999999,18.407,20.032 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1048,-0.33169999999999999,15.6473,0.079039999999999999,12.454000000000001,13.413,14.473000000000001,15.647,16.952000000000002,18.405999999999999,20.030999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1049,-0.33119999999999999,15.6462,0.079049999999999995,12.452999999999999,13.412000000000001,14.472,15.646000000000001,16.951000000000001,18.405000000000001,20.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1050,-0.33069999999999999,15.645200000000001,0.079049999999999995,12.452,13.411,14.471,15.645,16.95,18.404,20.027999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1051,-0.33019999999999999,15.6441,0.079060000000000005,12.45,13.409000000000001,14.47,15.644,16.949000000000002,18.402999999999999,20.027000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1052,-0.3296,15.6431,0.079060000000000005,12.449,13.409000000000001,14.468999999999999,15.643000000000001,16.948,18.401,20.024999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1053,-0.3291,15.642099999999999,0.079070000000000001,12.448,13.407,14.468,15.641999999999999,16.946999999999999,18.399999999999999,20.024000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1054,-0.3286,15.641,0.079070000000000001,12.446999999999999,13.406000000000001,14.465999999999999,15.641,16.946000000000002,18.399000000000001,20.023 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1055,-0.3281,15.64,0.079079999999999998,12.446,13.404999999999999,14.465,15.64,16.945,18.398,20.021999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1056,-0.3276,15.638999999999999,0.079079999999999998,12.445,13.404,14.464,15.638999999999999,16.943999999999999,18.396999999999998,20.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1057,-0.3271,15.6379,0.079089999999999994,12.443,13.403,14.462999999999999,15.638,16.943000000000001,18.396000000000001,20.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1058,-0.3266,15.636900000000001,0.079100000000000004,12.442,13.401999999999999,14.462,15.637,16.942,18.395,20.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1059,-0.3261,15.635899999999999,0.079100000000000004,12.441000000000001,13.401,14.461,15.635999999999999,16.940999999999999,18.393000000000001,20.015999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1060,-0.32569999999999999,15.6349,0.07911,12.44,13.4,14.46,15.635,16.940000000000001,18.393000000000001,20.015999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1061,-0.32519999999999999,15.633800000000001,0.07911,12.439,13.398999999999999,14.459,15.634,16.937999999999999,18.390999999999998,20.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1062,-0.32469999999999999,15.6328,0.079119999999999996,12.436999999999999,13.397,14.458,15.632999999999999,16.937000000000001,18.39,20.013000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1063,-0.32419999999999999,15.6318,0.079119999999999996,12.436999999999999,13.396000000000001,14.457000000000001,15.632,16.936,18.388999999999999,20.010999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1064,-0.32369999999999999,15.630800000000001,0.079130000000000006,12.435,13.395,14.456,15.631,16.934999999999999,18.388000000000002,20.010000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1065,-0.32329999999999998,15.6297,0.079130000000000006,12.433999999999999,13.394,14.455,15.63,16.934000000000001,18.387,20.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1066,-0.32279999999999998,15.6287,0.079140000000000002,12.433,13.393000000000001,14.454000000000001,15.629,16.933,18.385999999999999,20.007999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1067,-0.32229999999999998,15.627700000000001,0.079149999999999998,12.432,13.391999999999999,14.452999999999999,15.628,16.931999999999999,18.385000000000002,20.007000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1068,-0.32179999999999997,15.6267,0.079149999999999998,12.430999999999999,13.391,14.452,15.627000000000001,16.931000000000001,18.384,20.004999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1069,-0.32140000000000002,15.6256,0.079159999999999994,12.429,13.39,14.451000000000001,15.625999999999999,16.93,18.382999999999999,20.004000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1070,-0.32090000000000002,15.624599999999999,0.079159999999999994,12.428000000000001,13.388999999999999,14.45,15.625,16.928999999999998,18.381,20.003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1071,-0.32050000000000001,15.6236,0.079170000000000004,12.427,13.388,14.449,15.624000000000001,16.928000000000001,18.38,20.001999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1072,-0.32,15.6226,0.079170000000000004,12.426,13.387,14.448,15.622999999999999,16.927,18.379000000000001,20 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1073,-0.3196,15.621600000000001,0.07918,12.425000000000001,13.385,14.446999999999999,15.622,16.925999999999998,18.378,19.998999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1074,-0.31909999999999999,15.6206,0.07918,12.423999999999999,13.385,14.446,15.621,16.925000000000001,18.376999999999999,19.998000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1075,-0.31869999999999998,15.6196,0.079189999999999997,12.423,13.382999999999999,14.445,15.62,16.923999999999999,18.376000000000001,19.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1076,-0.31819999999999998,15.618499999999999,0.079200000000000007,12.420999999999999,13.382,14.443,15.618,16.922999999999998,18.375,19.995999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1077,-0.31780000000000003,15.6175,0.079200000000000007,12.42,13.381,14.442,15.618,16.922000000000001,18.373999999999999,19.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1078,-0.31740000000000002,15.6165,0.079210000000000003,12.419,13.38,14.441000000000001,15.616,16.920999999999999,18.373000000000001,19.992999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1079,-0.31690000000000002,15.615500000000001,0.079210000000000003,12.417999999999999,13.379,14.44,15.616,16.920000000000002,18.370999999999999,19.992000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1080,-0.3165,15.6145,0.079219999999999999,12.417,13.378,14.439,15.614000000000001,16.919,18.370999999999999,19.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1081,-0.31609999999999999,15.6135,0.079219999999999999,12.416,13.377000000000001,14.438000000000001,15.614000000000001,16.917999999999999,18.369,19.989000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1082,-0.31559999999999999,15.612500000000001,0.079229999999999995,12.414999999999999,13.375999999999999,14.436999999999999,15.612,16.917000000000002,18.367999999999999,19.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1083,-0.31519999999999998,15.611499999999999,0.079240000000000005,12.413,13.375,14.436,15.612,16.916,18.367999999999999,19.986999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1084,-0.31480000000000002,15.6105,0.079240000000000005,12.412000000000001,13.374000000000001,14.435,15.61,16.914999999999999,18.366,19.986000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1085,-0.31440000000000001,15.609500000000001,0.079250000000000001,12.411,13.372999999999999,14.433999999999999,15.61,16.914000000000001,18.364999999999998,19.984999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1086,-0.314,15.608499999999999,0.079250000000000001,12.41,13.372,14.433,15.608000000000001,16.913,18.364000000000001,19.984000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1087,-0.31359999999999999,15.6075,0.079259999999999997,12.409000000000001,13.37,14.432,15.608000000000001,16.911999999999999,18.363,19.983000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1088,-0.31319999999999998,15.6065,0.079259999999999997,12.407999999999999,13.37,14.430999999999999,15.606,16.911000000000001,18.361999999999998,19.981000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1089,-0.31280000000000002,15.605499999999999,0.079269999999999993,12.407,13.368,14.43,15.606,16.91,18.361000000000001,19.98 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1090,-0.31240000000000001,15.6045,0.079280000000000003,12.406000000000001,13.367000000000001,14.429,15.603999999999999,16.908999999999999,18.36,19.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1091,-0.312,15.6035,0.079280000000000003,12.404999999999999,13.366,14.428000000000001,15.603999999999999,16.908000000000001,18.359000000000002,19.978000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1092,-0.31159999999999999,15.602499999999999,0.079289999999999999,12.403,13.365,14.427,15.602,16.907,18.358000000000001,19.977 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1093,-0.31119999999999998,15.6015,0.079289999999999999,12.401999999999999,13.364000000000001,14.426,15.602,16.905999999999999,18.356999999999999,19.975000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1094,-0.31080000000000002,15.6005,0.079299999999999995,12.401,13.363,14.425000000000001,15.6,16.905000000000001,18.356000000000002,19.975000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1095,-0.31040000000000001,15.599500000000001,0.079310000000000005,12.4,13.362,14.423999999999999,15.6,16.904,18.355,19.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1096,-0.31,15.598599999999999,0.079310000000000005,12.398999999999999,13.361000000000001,14.423,15.599,16.902999999999999,18.353999999999999,19.972000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1097,-0.30969999999999998,15.5976,0.079320000000000002,12.398,13.36,14.422000000000001,15.598000000000001,16.902000000000001,18.353000000000002,19.971 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1098,-0.30930000000000002,15.5966,0.079320000000000002,12.397,13.359,14.420999999999999,15.597,16.901,18.352,19.97 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1099,-0.30890000000000001,15.595599999999999,0.079329999999999998,12.396000000000001,13.358000000000001,14.42,15.596,16.899999999999999,18.350999999999999,19.969000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1100,-0.3085,15.5946,0.079339999999999994,12.394,13.356999999999999,14.419,15.595000000000001,16.899000000000001,18.350000000000001,19.968 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1101,-0.30819999999999997,15.5936,0.079339999999999994,12.393000000000001,13.356,14.417999999999999,15.593999999999999,16.898,18.349,19.966999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1102,-0.30780000000000002,15.592599999999999,0.079350000000000004,12.391999999999999,13.353999999999999,14.417,15.593,16.896999999999998,18.347999999999999,19.966000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1103,-0.30740000000000001,15.591699999999999,0.079350000000000004,12.391,13.353999999999999,14.416,15.592000000000001,16.896000000000001,18.347000000000001,19.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1104,-0.30709999999999998,15.5907,0.07936,12.39,13.352,14.414999999999999,15.590999999999999,16.895,18.346,19.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1105,-0.30669999999999997,15.589700000000001,0.07936,12.388999999999999,13.352,14.414,15.59,16.893999999999998,18.344000000000001,19.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1106,-0.30640000000000001,15.588699999999999,0.079369999999999996,12.388,13.35,14.413,15.589,16.893000000000001,18.344000000000001,19.960999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1107,-0.30599999999999999,15.5878,0.079380000000000006,12.387,13.349,14.412000000000001,15.587999999999999,16.891999999999999,18.343,19.96 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1108,-0.30570000000000003,15.5868,0.079380000000000006,12.385999999999999,13.348000000000001,14.411,15.587,16.890999999999998,18.341999999999999,19.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1109,-0.3054,15.585800000000001,0.079390000000000002,12.385,13.347,14.41,15.586,16.89,18.341000000000001,19.957999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1110,-0.30499999999999999,15.5848,0.079399999999999998,12.382999999999999,13.346,14.409000000000001,15.585000000000001,16.888999999999999,18.34,19.957000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1111,-0.30470000000000003,15.5839,0.079399999999999998,12.382999999999999,13.345000000000001,14.407999999999999,15.584,16.888000000000002,18.338999999999999,19.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1112,-0.30430000000000001,15.5829,0.079409999999999994,12.381,13.343999999999999,14.407,15.583,16.887,18.338000000000001,19.954999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1113,-0.30399999999999999,15.581899999999999,0.079409999999999994,12.38,13.343,14.406000000000001,15.582000000000001,16.885999999999999,18.335999999999999,19.954000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1114,-0.30370000000000003,15.581,0.079420000000000004,12.379,13.342000000000001,14.404999999999999,15.581,16.885000000000002,18.335999999999999,19.952999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1115,-0.3034,15.58,0.079430000000000001,12.378,13.340999999999999,14.404,15.58,16.884,18.335000000000001,19.952000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1116,-0.30309999999999998,15.579000000000001,0.079430000000000001,12.377000000000001,13.34,14.403,15.579000000000001,16.882999999999999,18.334,19.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1117,-0.30270000000000002,15.578099999999999,0.079439999999999997,12.375999999999999,13.339,14.401999999999999,15.577999999999999,16.882000000000001,18.332999999999998,19.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1118,-0.3024,15.5771,0.079439999999999997,12.375,13.337999999999999,14.401,15.577,16.881,18.332000000000001,19.948 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1119,-0.30209999999999998,15.5761,0.079450000000000007,12.374000000000001,13.337,14.4,15.576000000000001,16.88,18.331,19.948 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1120,-0.30180000000000001,15.575200000000001,0.079460000000000003,12.372999999999999,13.336,14.398999999999999,15.574999999999999,16.88,18.329999999999998,19.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1121,-0.30149999999999999,15.574199999999999,0.079460000000000003,12.372,13.335000000000001,14.398,15.574,16.879000000000001,18.329000000000001,19.945 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1122,-0.30120000000000002,15.5733,0.079469999999999999,12.371,13.334,14.397,15.573,16.878,18.327999999999999,19.945 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1123,-0.3009,15.5723,0.079479999999999995,12.369,13.333,14.396000000000001,15.571999999999999,16.876999999999999,18.327000000000002,19.943999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1124,-0.30059999999999998,15.571400000000001,0.079479999999999995,12.369,13.332000000000001,14.395,15.571,16.876000000000001,18.326000000000001,19.942 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1125,-0.30030000000000001,15.570399999999999,0.079490000000000005,12.367000000000001,13.331,14.394,15.57,16.875,18.324999999999999,19.942 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1126,-0.3,15.5695,0.079490000000000005,12.366,13.33,14.393000000000001,15.57,16.873999999999999,18.324000000000002,19.940000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1127,-0.29970000000000002,15.5685,0.079500000000000001,12.365,13.329000000000001,14.391999999999999,15.568,16.873000000000001,18.323,19.940000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1128,-0.29949999999999999,15.567600000000001,0.079509999999999997,12.364000000000001,13.327999999999999,14.391,15.568,16.872,18.321999999999999,19.939 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1129,-0.29920000000000002,15.566599999999999,0.079509999999999997,12.363,13.327,14.39,15.567,16.870999999999999,18.321000000000002,19.937000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1130,-0.2989,15.5657,0.079519999999999993,12.362,13.326000000000001,14.388999999999999,15.566000000000001,16.87,18.32,19.937000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1131,-0.29859999999999998,15.5647,0.079530000000000003,12.361000000000001,13.324999999999999,14.388,15.565,16.869,18.32,19.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1132,-0.2984,15.563800000000001,0.079530000000000003,12.36,13.324,14.387,15.564,16.867999999999999,18.318000000000001,19.934999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1133,-0.29809999999999998,15.562799999999999,0.07954,12.359,13.323,14.385999999999999,15.563000000000001,16.867000000000001,18.318000000000001,19.934000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1134,-0.29780000000000001,15.5619,0.07954,12.358000000000001,13.321999999999999,14.385,15.561999999999999,16.866,18.315999999999999,19.931999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1135,-0.29759999999999998,15.5609,0.079549999999999996,12.356999999999999,13.321,14.384,15.561,16.864999999999998,18.315999999999999,19.931999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1136,-0.29730000000000001,15.56,0.079560000000000006,12.356,13.32,14.382999999999999,15.56,16.864999999999998,18.315000000000001,19.931000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1137,-0.29709999999999998,15.559100000000001,0.079560000000000006,12.355,13.319000000000001,14.382,15.558999999999999,16.864000000000001,18.314,19.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1138,-0.29680000000000001,15.5581,0.079570000000000002,12.353999999999999,13.318,14.381,15.558,16.863,18.312999999999999,19.928999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1139,-0.29659999999999997,15.5572,0.079579999999999998,12.352,13.317,14.38,15.557,16.861999999999998,18.312000000000001,19.928000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1140,-0.29630000000000001,15.5563,0.079579999999999998,12.352,13.316000000000001,14.38,15.555999999999999,16.861000000000001,18.311,19.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1141,-0.29609999999999997,15.555300000000001,0.079589999999999994,12.35,13.315,14.379,15.555,16.86,18.309999999999999,19.925999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1142,-0.2959,15.554399999999999,0.079600000000000004,12.349,13.314,14.378,15.554,16.859000000000002,18.309000000000001,19.925000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1143,-0.29559999999999997,15.5535,0.079600000000000004,12.349,13.313000000000001,14.377000000000001,15.554,16.858000000000001,18.308,19.923999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1144,-0.2954,15.5525,0.07961,12.347,13.311999999999999,14.375999999999999,15.552,16.856999999999999,18.306999999999999,19.922999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1145,-0.29520000000000002,15.551600000000001,0.079619999999999996,12.346,13.31,14.375,15.552,16.856000000000002,18.306999999999999,19.922999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1146,-0.2949,15.550700000000001,0.079619999999999996,12.345000000000001,13.31,14.374000000000001,15.551,16.855,18.306000000000001,19.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1147,-0.29470000000000002,15.549799999999999,0.079630000000000006,12.343999999999999,13.308999999999999,14.372999999999999,15.55,16.855,18.305,19.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1148,-0.29449999999999998,15.5489,0.079640000000000002,12.343,13.308,14.372,15.548999999999999,16.853999999999999,18.303999999999998,19.920000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1149,-0.29430000000000001,15.5479,0.079640000000000002,12.342000000000001,13.307,14.371,15.548,16.853000000000002,18.303000000000001,19.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1150,-0.29409999999999997,15.547000000000001,0.079649999999999999,12.340999999999999,13.305999999999999,14.37,15.547000000000001,16.852,18.302,19.917999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1151,-0.29389999999999999,15.546099999999999,0.079659999999999995,12.34,13.305,14.369,15.545999999999999,16.850999999999999,18.300999999999998,19.917000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1152,-0.29370000000000002,15.545199999999999,0.079659999999999995,12.339,13.304,14.368,15.545,16.850000000000001,18.3,19.916 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1153,-0.29339999999999999,15.5443,0.079670000000000005,12.337999999999999,13.303000000000001,14.367000000000001,15.544,16.849,18.3,19.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1154,-0.29320000000000002,15.5434,0.079670000000000005,12.337,13.302,14.366,15.542999999999999,16.847999999999999,18.297999999999998,19.914000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1155,-0.29310000000000003,15.542400000000001,0.079680000000000001,12.336,13.301,14.365,15.542,16.847000000000001,18.297999999999998,19.914000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1156,-0.29289999999999999,15.541499999999999,0.079689999999999997,12.335000000000001,13.3,14.364000000000001,15.542,16.847000000000001,18.297000000000001,19.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1157,-0.29270000000000002,15.5406,0.079689999999999997,12.334,13.298999999999999,14.363,15.541,16.846,18.295999999999999,19.911999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1158,-0.29249999999999998,15.5397,0.079699999999999993,12.333,13.298,14.362,15.54,16.844999999999999,18.295000000000002,19.911000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1159,-0.2923,15.5388,0.079710000000000003,12.332000000000001,13.297000000000001,14.361000000000001,15.539,16.844000000000001,18.294,19.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1160,-0.29210000000000003,15.5379,0.079719999999999999,12.331,13.295999999999999,14.36,15.538,16.843,18.294,19.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1161,-0.29189999999999999,15.537000000000001,0.079719999999999999,12.33,13.295,14.36,15.537000000000001,16.841999999999999,18.292999999999999,19.908000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1162,-0.2918,15.536099999999999,0.079729999999999995,12.329000000000001,13.294,14.359,15.536,16.841000000000001,18.292000000000002,19.908000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1163,-0.29160000000000003,15.5352,0.079740000000000005,12.327999999999999,13.292999999999999,14.358000000000001,15.535,16.841000000000001,18.291,19.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1164,-0.29139999999999999,15.5343,0.079740000000000005,12.327,13.292,14.356999999999999,15.534000000000001,16.84,18.29,19.905999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1165,-0.2913,15.5334,0.079750000000000001,12.326000000000001,13.291,14.356,15.532999999999999,16.838999999999999,18.289000000000001,19.905000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1166,-0.29110000000000003,15.532500000000001,0.079759999999999998,12.324999999999999,13.29,14.355,15.532,16.838000000000001,18.289000000000001,19.905000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1167,-0.29089999999999999,15.531599999999999,0.079759999999999998,12.324,13.289,14.353999999999999,15.532,16.837,18.286999999999999,19.902999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1168,-0.2908,15.5307,0.079769999999999994,12.323,13.288,14.353,15.531000000000001,16.835999999999999,18.286999999999999,19.902999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1169,-0.29060000000000002,15.5298,0.079780000000000004,12.321999999999999,13.287000000000001,14.352,15.53,16.835000000000001,18.286000000000001,19.902000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1170,-0.29049999999999998,15.5289,0.079780000000000004,12.321,13.286,14.351000000000001,15.529,16.834,18.285,19.901 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1171,-0.2903,15.5281,0.07979,12.32,13.285,14.35,15.528,16.834,18.283999999999999,19.899999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1172,-0.29020000000000001,15.527200000000001,0.079799999999999996,12.319000000000001,13.284000000000001,14.349,15.526999999999999,16.832999999999998,18.283999999999999,19.899999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1173,-0.29010000000000002,15.526300000000001,0.079799999999999996,12.318,13.282999999999999,14.348000000000001,15.526,16.832000000000001,18.283000000000001,19.899000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1174,-0.28989999999999999,15.525399999999999,0.079810000000000006,12.317,13.282,14.348000000000001,15.525,16.831,18.282,19.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1175,-0.2898,15.5245,0.079820000000000002,12.316000000000001,13.281000000000001,14.347,15.523999999999999,16.829999999999998,18.280999999999999,19.896999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1176,-0.28970000000000001,15.5236,0.079820000000000002,12.315,13.281000000000001,14.346,15.523999999999999,16.829000000000001,18.28,19.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1177,-0.28949999999999998,15.5228,0.079829999999999998,12.314,13.28,14.345000000000001,15.523,16.829000000000001,18.279,19.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1178,-0.28939999999999999,15.5219,0.079839999999999994,12.313000000000001,13.279,14.343999999999999,15.522,16.827999999999999,18.279,19.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1179,-0.2893,15.521000000000001,0.079850000000000004,12.311999999999999,13.278,14.343,15.521000000000001,16.827000000000002,18.277999999999999,19.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1180,-0.28920000000000001,15.520099999999999,0.079850000000000004,12.311,13.276999999999999,14.342000000000001,15.52,16.826000000000001,18.277000000000001,19.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1181,-0.28899999999999998,15.519299999999999,0.07986,12.31,13.276,14.340999999999999,15.519,16.824999999999999,18.276,19.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1182,-0.28889999999999999,15.5184,0.079869999999999997,12.308999999999999,13.275,14.34,15.518000000000001,16.824000000000002,18.276,19.891999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1183,-0.2888,15.5175,0.079869999999999997,12.308,13.273999999999999,14.339,15.518000000000001,16.823,18.274999999999999,19.890999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1184,-0.28870000000000001,15.5167,0.079880000000000007,12.307,13.273,14.337999999999999,15.516999999999999,16.823,18.274000000000001,19.890999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1185,-0.28860000000000002,15.5158,0.079890000000000003,12.305999999999999,13.272,14.337,15.516,16.821999999999999,18.273,19.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1186,-0.28849999999999998,15.514900000000001,0.079890000000000003,12.305999999999999,13.271000000000001,14.337,15.515000000000001,16.821000000000002,18.271999999999998,19.888999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1187,-0.28839999999999999,15.514099999999999,0.079899999999999999,12.305,13.27,14.336,15.513999999999999,16.82,18.271999999999998,19.888000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1188,-0.2883,15.513199999999999,0.079909999999999995,12.303000000000001,13.269,14.335000000000001,15.513,16.818999999999999,18.271000000000001,19.888000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1189,-0.28820000000000001,15.5123,0.079920000000000005,12.302,13.268000000000001,14.334,15.512,16.818999999999999,18.27,19.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1190,-0.28810000000000002,15.5115,0.079920000000000005,12.302,13.266999999999999,14.333,15.512,16.818000000000001,18.268999999999998,19.885999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1191,-0.28810000000000002,15.5106,0.079930000000000001,12.301,13.266,14.332000000000001,15.510999999999999,16.817,18.268999999999998,19.885999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1192,-0.28799999999999998,15.5098,0.079939999999999997,12.3,13.265000000000001,14.331,15.51,16.815999999999999,18.268000000000001,19.885000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1193,-0.28789999999999999,15.508900000000001,0.079939999999999997,12.298999999999999,13.265000000000001,14.33,15.509,16.815000000000001,18.266999999999999,19.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1194,-0.2878,15.508100000000001,0.079949999999999993,12.298,13.263999999999999,14.329000000000001,15.507999999999999,16.815000000000001,18.265999999999998,19.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1195,-0.28770000000000001,15.507199999999999,0.079960000000000003,12.297000000000001,13.263,14.327999999999999,15.507,16.814,18.265999999999998,19.882999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1196,-0.28770000000000001,15.506399999999999,0.079969999999999999,12.295999999999999,13.262,14.327999999999999,15.506,16.812999999999999,18.265000000000001,19.882999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1197,-0.28760000000000002,15.5055,0.079969999999999999,12.295,13.260999999999999,14.327,15.506,16.812000000000001,18.263999999999999,19.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1198,-0.28749999999999998,15.5047,0.079979999999999996,12.294,13.26,14.326000000000001,15.505000000000001,16.811,18.263000000000002,19.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1199,-0.28749999999999998,15.5038,0.079990000000000006,12.292999999999999,13.259,14.324999999999999,15.504,16.811,18.263000000000002,19.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1200,-0.28739999999999999,15.503,0.079990000000000006,12.292,13.257999999999999,14.324,15.503,16.809999999999999,18.262,19.879000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1201,-0.28739999999999999,15.5021,0.08,12.291,13.257,14.323,15.502000000000001,16.809000000000001,18.260999999999999,19.879000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1202,-0.2873,15.501300000000001,0.080009999999999998,12.29,13.256,14.321999999999999,15.500999999999999,16.808,18.260000000000002,19.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1203,-0.2873,15.500500000000001,0.080019999999999994,12.289,13.255000000000001,14.321,15.5,16.808,18.260000000000002,19.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1204,-0.28720000000000001,15.499599999999999,0.080019999999999994,12.289,13.255000000000001,14.321,15.5,16.806999999999999,18.259,19.876999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1205,-0.28720000000000001,15.498799999999999,0.080030000000000004,12.288,13.254,14.32,15.499000000000001,16.806000000000001,18.257999999999999,19.876000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1206,-0.28710000000000002,15.497999999999999,0.08004,12.287000000000001,13.253,14.319000000000001,15.497999999999999,16.805,18.257999999999999,19.876000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1207,-0.28710000000000002,15.4971,0.080049999999999996,12.286,13.252000000000001,14.318,15.497,16.803999999999998,18.257000000000001,19.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1208,-0.28710000000000002,15.4963,0.080049999999999996,12.285,13.250999999999999,14.317,15.496,16.803000000000001,18.256,19.873999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1209,-0.28699999999999998,15.4955,0.080060000000000006,12.284000000000001,13.25,14.316000000000001,15.496,16.803000000000001,18.254999999999999,19.873999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1210,-0.28699999999999998,15.4946,0.080070000000000002,12.282999999999999,13.249000000000001,14.315,15.494999999999999,16.802,18.254999999999999,19.873000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1211,-0.28699999999999998,15.4938,0.080079999999999998,12.282,13.247999999999999,14.314,15.494,16.800999999999998,18.254000000000001,19.873000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1212,-0.28699999999999998,15.493,0.080079999999999998,12.281000000000001,13.247,14.314,15.493,16.8,18.253,19.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1213,-0.28689999999999999,15.4922,0.080089999999999995,12.28,13.246,14.313000000000001,15.492000000000001,16.8,18.253,19.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1214,-0.28689999999999999,15.491400000000001,0.080100000000000005,12.279,13.244999999999999,14.311999999999999,15.491,16.798999999999999,18.251999999999999,19.870999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1215,-0.28689999999999999,15.490500000000001,0.080110000000000001,12.278,13.244,14.311,15.49,16.797999999999998,18.251000000000001,19.870999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1216,-0.28689999999999999,15.489699999999999,0.080110000000000001,12.278,13.244,14.31,15.49,16.797000000000001,18.251000000000001,19.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1217,-0.28689999999999999,15.488899999999999,0.080119999999999997,12.276999999999999,13.243,14.308999999999999,15.489000000000001,16.797000000000001,18.25,19.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1218,-0.28689999999999999,15.488099999999999,0.080130000000000007,12.276,13.242000000000001,14.308,15.488,16.795999999999999,18.248999999999999,19.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1219,-0.28689999999999999,15.487299999999999,0.080140000000000003,12.275,13.241,14.308,15.487,16.795000000000002,18.248999999999999,19.867999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1220,-0.28689999999999999,15.486499999999999,0.080140000000000003,12.273999999999999,13.24,14.307,15.486000000000001,16.794,18.248000000000001,19.867000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1221,-0.28689999999999999,15.4857,0.080149999999999999,12.273,13.239000000000001,14.305999999999999,15.486000000000001,16.794,18.247,19.867000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1222,-0.28689999999999999,15.4848,0.080159999999999995,12.272,13.238,14.305,15.484999999999999,16.792999999999999,18.247,19.867000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1223,-0.28689999999999999,15.484,0.080170000000000005,12.271000000000001,13.237,14.304,15.484,16.792000000000002,18.245999999999999,19.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1224,-0.28689999999999999,15.4832,0.080170000000000005,12.27,13.237,14.303000000000001,15.483000000000001,16.791,18.245000000000001,19.864999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1225,-0.28689999999999999,15.4824,0.080180000000000001,12.269,13.236000000000001,14.302,15.481999999999999,16.791,18.245000000000001,19.864999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1226,-0.28699999999999998,15.4816,0.080189999999999997,12.268000000000001,13.234999999999999,14.302,15.481999999999999,16.79,18.244,19.864000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1227,-0.28699999999999998,15.4808,0.080199999999999994,12.266999999999999,13.234,14.301,15.481,16.789000000000001,18.244,19.864000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1228,-0.28699999999999998,15.48,0.080199999999999994,12.266999999999999,13.233000000000001,14.3,15.48,16.788,18.242999999999999,19.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1229,-0.28699999999999998,15.479200000000001,0.080210000000000004,12.266,13.231999999999999,14.298999999999999,15.478999999999999,16.788,18.242000000000001,19.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1230,-0.28710000000000002,15.4785,0.08022,12.265000000000001,13.231,14.298,15.478,16.786999999999999,18.242000000000001,19.861999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1231,-0.28710000000000002,15.4777,0.080229999999999996,12.263999999999999,13.231,14.297000000000001,15.478,16.786000000000001,18.241,19.861999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1232,-0.28710000000000002,15.476900000000001,0.080229999999999996,12.263,13.23,14.297000000000001,15.477,16.786000000000001,18.239999999999998,19.861000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1233,-0.28720000000000001,15.476100000000001,0.080240000000000006,12.262,13.228999999999999,14.295999999999999,15.476000000000001,16.785,18.239999999999998,19.861000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1234,-0.28720000000000001,15.475300000000001,0.080250000000000002,12.260999999999999,13.228,14.295,15.475,16.783999999999999,18.239000000000001,19.86 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1235,-0.2873,15.474500000000001,0.080259999999999998,12.26,13.227,14.294,15.474,16.783000000000001,18.238,19.86 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1236,-0.2873,15.473699999999999,0.080269999999999994,12.259,13.226000000000001,14.292999999999999,15.474,16.783000000000001,18.238,19.86 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1237,-0.28739999999999999,15.472899999999999,0.080269999999999994,12.259,13.225,14.292,15.473000000000001,16.782,18.236999999999998,19.859000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1238,-0.28739999999999999,15.472200000000001,0.080280000000000004,12.257999999999999,13.225,14.292,15.472,16.780999999999999,18.236999999999998,19.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1239,-0.28749999999999998,15.471399999999999,0.08029,12.257,13.224,14.291,15.471,16.780999999999999,18.236000000000001,19.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1240,-0.28749999999999998,15.470599999999999,0.080299999999999996,12.256,13.223000000000001,14.29,15.471,16.78,18.234999999999999,19.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1241,-0.28760000000000002,15.469799999999999,0.080310000000000006,12.255000000000001,13.222,14.289,15.47,16.779,18.234999999999999,19.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1242,-0.28770000000000001,15.469099999999999,0.080310000000000006,12.255000000000001,13.221,14.288,15.468999999999999,16.777999999999999,18.234000000000002,19.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1243,-0.28770000000000001,15.468299999999999,0.080320000000000003,12.254,13.22,14.288,15.468,16.777999999999999,18.234000000000002,19.856000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1244,-0.2878,15.467499999999999,0.080329999999999999,12.253,13.218999999999999,14.287000000000001,15.468,16.777000000000001,18.233000000000001,19.856000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1245,-0.28789999999999999,15.466699999999999,0.080339999999999995,12.252000000000001,13.218,14.286,15.467000000000001,16.776,18.231999999999999,19.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1246,-0.28799999999999998,15.465999999999999,0.080339999999999995,12.250999999999999,13.218,14.285,15.465999999999999,16.776,18.231999999999999,19.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1247,-0.28799999999999998,15.465199999999999,0.080350000000000005,12.25,13.217000000000001,14.284000000000001,15.465,16.774999999999999,18.231000000000002,19.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1248,-0.28810000000000002,15.464499999999999,0.080360000000000001,12.249000000000001,13.215999999999999,14.282999999999999,15.464,16.774000000000001,18.231000000000002,19.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1249,-0.28820000000000001,15.463699999999999,0.080369999999999997,12.247999999999999,13.215,14.282999999999999,15.464,16.774000000000001,18.23,19.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1250,-0.2883,15.462899999999999,0.080379999999999993,12.247,13.214,14.282,15.462999999999999,16.773,18.23,19.853000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1251,-0.28839999999999999,15.462199999999999,0.080379999999999993,12.247,13.214,14.281000000000001,15.462,16.771999999999998,18.228999999999999,19.853000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1252,-0.28849999999999998,15.461399999999999,0.080390000000000003,12.246,13.212999999999999,14.28,15.461,16.771999999999998,18.228000000000002,19.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1253,-0.28860000000000002,15.460699999999999,0.080399999999999999,12.244999999999999,13.212,14.279,15.461,16.771000000000001,18.228000000000002,19.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1254,-0.28870000000000001,15.459899999999999,0.080409999999999995,12.244,13.211,14.279,15.46,16.77,18.227,19.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1255,-0.2888,15.459199999999999,0.080420000000000005,12.243,13.21,14.278,15.459,16.77,18.227,19.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1256,-0.28889999999999999,15.458399999999999,0.080420000000000005,12.243,13.21,14.276999999999999,15.458,16.768999999999998,18.225999999999999,19.850999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1257,-0.28899999999999998,15.457700000000001,0.080430000000000001,12.242000000000001,13.209,14.276,15.458,16.768000000000001,18.225999999999999,19.850000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1258,-0.28910000000000002,15.456899999999999,0.080439999999999998,12.241,13.208,14.275,15.457000000000001,16.768000000000001,18.225000000000001,19.850000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1259,-0.28920000000000001,15.456200000000001,0.080449999999999994,12.24,13.207000000000001,14.275,15.456,16.766999999999999,18.225000000000001,19.850000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1260,-0.2893,15.455399999999999,0.080460000000000004,12.239000000000001,13.206,14.273999999999999,15.455,16.765999999999998,18.224,19.850000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1261,-0.28939999999999999,15.454700000000001,0.080460000000000004,12.239000000000001,13.205,14.273,15.455,16.765999999999998,18.222999999999999,19.849 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1262,-0.28960000000000002,15.453900000000001,0.08047,12.238,13.205,14.272,15.454000000000001,16.765000000000001,18.222999999999999,19.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1263,-0.28970000000000001,15.453200000000001,0.080479999999999996,12.237,13.204000000000001,14.271000000000001,15.452999999999999,16.763999999999999,18.222000000000001,19.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1264,-0.2898,15.452500000000001,0.080490000000000006,12.236000000000001,13.202999999999999,14.271000000000001,15.452,16.763999999999999,18.222000000000001,19.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1265,-0.28989999999999999,15.451700000000001,0.080500000000000002,12.234999999999999,13.202,14.27,15.452,16.763000000000002,18.221,19.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1266,-0.29010000000000002,15.451000000000001,0.080509999999999998,12.234,13.201000000000001,14.269,15.451000000000001,16.762,18.221,19.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1267,-0.29020000000000001,15.4503,0.080509999999999998,12.234,13.201000000000001,14.268000000000001,15.45,16.762,18.22,19.847000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1268,-0.2903,15.4495,0.080519999999999994,12.233000000000001,13.2,14.266999999999999,15.45,16.760999999999999,18.22,19.846 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1269,-0.29049999999999998,15.4488,0.080530000000000004,12.231999999999999,13.199,14.266999999999999,15.449,16.760000000000002,18.219000000000001,19.846 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1270,-0.29060000000000002,15.4481,0.08054,12.231,13.198,14.266,15.448,16.760000000000002,18.219000000000001,19.846 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1271,-0.2908,15.4473,0.080549999999999997,12.23,13.196999999999999,14.265000000000001,15.446999999999999,16.759,18.218,19.846 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1272,-0.29089999999999999,15.4466,0.080560000000000007,12.228999999999999,13.196,14.263999999999999,15.446999999999999,16.759,18.218,19.846 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1273,-0.29110000000000003,15.4459,0.080560000000000007,12.228999999999999,13.196,14.263999999999999,15.446,16.757999999999999,18.216999999999999,19.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1274,-0.29120000000000001,15.4452,0.080570000000000003,12.228,13.195,14.263,15.445,16.757000000000001,18.216999999999999,19.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1275,-0.29139999999999999,15.4445,0.080579999999999999,12.227,13.194000000000001,14.262,15.444000000000001,16.757000000000001,18.216000000000001,19.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1276,-0.29149999999999998,15.4437,0.080589999999999995,12.226000000000001,13.193,14.260999999999999,15.444000000000001,16.756,18.216000000000001,19.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1277,-0.29170000000000001,15.443,0.080600000000000005,12.225,13.192,14.26,15.443,16.754999999999999,18.215,19.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1278,-0.2918,15.442299999999999,0.080610000000000001,12.224,13.191000000000001,14.26,15.442,16.754999999999999,18.215,19.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1279,-0.29199999999999998,15.441599999999999,0.080610000000000001,12.224,13.191000000000001,14.259,15.442,16.754000000000001,18.213999999999999,19.843 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1280,-0.29220000000000002,15.440899999999999,0.080619999999999997,12.223000000000001,13.19,14.257999999999999,15.441000000000001,16.753,18.213999999999999,19.843 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1281,-0.29239999999999999,15.440200000000001,0.080629999999999993,12.222,13.189,14.257,15.44,16.753,18.213000000000001,19.843 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1282,-0.29249999999999998,15.439500000000001,0.080640000000000003,12.221,13.188000000000001,14.257,15.44,16.751999999999999,18.213000000000001,19.843 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1283,-0.29270000000000002,15.438800000000001,0.080649999999999999,12.221,13.188000000000001,14.256,15.439,16.751999999999999,18.213000000000001,19.843 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1284,-0.29289999999999999,15.438000000000001,0.080659999999999996,12.22,13.186999999999999,14.255000000000001,15.438000000000001,16.751000000000001,18.212,19.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1285,-0.29310000000000003,15.4373,0.080659999999999996,12.218999999999999,13.186,14.254,15.436999999999999,16.75,18.210999999999999,19.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1286,-0.29330000000000001,15.4366,0.080670000000000006,12.218,13.185,14.254,15.436999999999999,16.75,18.210999999999999,19.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1287,-0.29339999999999999,15.4359,0.080680000000000002,12.217000000000001,13.183999999999999,14.253,15.436,16.748999999999999,18.210999999999999,19.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1288,-0.29360000000000003,15.4352,0.080689999999999998,12.217000000000001,13.183999999999999,14.252000000000001,15.435,16.748999999999999,18.21,19.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1289,-0.29380000000000001,15.4345,0.080699999999999994,12.215999999999999,13.183,14.250999999999999,15.433999999999999,16.748000000000001,18.21,19.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1290,-0.29399999999999998,15.4338,0.080710000000000004,12.215,13.182,14.250999999999999,15.433999999999999,16.747,18.209,19.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1291,-0.29420000000000002,15.433199999999999,0.08072,12.214,13.180999999999999,14.25,15.433,16.747,18.209,19.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1292,-0.2944,15.432499999999999,0.08072,12.214,13.180999999999999,14.249000000000001,15.432,16.745999999999999,18.207999999999998,19.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1293,-0.29459999999999997,15.431800000000001,0.080729999999999996,12.212999999999999,13.18,14.247999999999999,15.432,16.745999999999999,18.207999999999998,19.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1294,-0.29480000000000001,15.431100000000001,0.080740000000000006,12.212,13.179,14.247999999999999,15.430999999999999,16.745000000000001,18.207999999999998,19.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1295,-0.29499999999999998,15.430400000000001,0.080750000000000002,12.211,13.178000000000001,14.247,15.43,16.744,18.207000000000001,19.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1296,-0.29520000000000002,15.4297,0.080759999999999998,12.21,13.177,14.246,15.43,16.744,18.207000000000001,19.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1297,-0.2954,15.429,0.080769999999999995,12.21,13.177,14.244999999999999,15.429,16.742999999999999,18.206,19.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1298,-0.29570000000000002,15.4283,0.080780000000000005,12.209,13.176,14.244999999999999,15.428000000000001,16.742999999999999,18.206,19.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1299,-0.2959,15.4276,0.080780000000000005,12.208,13.175000000000001,14.244,15.428000000000001,16.742000000000001,18.204999999999998,19.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1300,-0.29609999999999997,15.427,0.080790000000000001,12.208,13.175000000000001,14.243,15.427,16.742000000000001,18.204999999999998,19.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1301,-0.29630000000000001,15.426299999999999,0.080799999999999997,12.207000000000001,13.173999999999999,14.242000000000001,15.426,16.741,18.204999999999998,19.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1302,-0.29649999999999999,15.425599999999999,0.080810000000000007,12.206,13.173,14.242000000000001,15.426,16.739999999999998,18.204000000000001,19.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1303,-0.29680000000000001,15.424899999999999,0.080820000000000003,12.205,13.172000000000001,14.241,15.425000000000001,16.739999999999998,18.204000000000001,19.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1304,-0.29699999999999999,15.424300000000001,0.080829999999999999,12.204000000000001,13.170999999999999,14.24,15.423999999999999,16.739000000000001,18.204000000000001,19.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1305,-0.29720000000000002,15.4236,0.080839999999999995,12.202999999999999,13.170999999999999,14.239000000000001,15.423999999999999,16.739000000000001,18.202999999999999,19.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1306,-0.29749999999999999,15.4229,0.080850000000000005,12.202999999999999,13.17,14.239000000000001,15.423,16.738,18.202999999999999,19.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1307,-0.29770000000000002,15.4222,0.080850000000000005,12.202,13.169,14.238,15.422000000000001,16.736999999999998,18.202000000000002,19.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1308,-0.2979,15.4216,0.080860000000000001,12.201000000000001,13.167999999999999,14.237,15.422000000000001,16.736999999999998,18.202000000000002,19.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1309,-0.29820000000000002,15.4209,0.080869999999999997,12.201000000000001,13.167999999999999,14.237,15.420999999999999,16.736000000000001,18.201000000000001,19.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1310,-0.2984,15.420199999999999,0.080879999999999994,12.2,13.167,14.236000000000001,15.42,16.736000000000001,18.201000000000001,19.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1311,-0.29870000000000002,15.419600000000001,0.080890000000000004,12.199,13.166,14.234999999999999,15.42,16.734999999999999,18.201000000000001,19.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1312,-0.2989,15.418900000000001,0.0809,12.198,13.164999999999999,14.234,15.419,16.734999999999999,18.2,19.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1313,-0.29920000000000002,15.418200000000001,0.080909999999999996,12.196999999999999,13.164999999999999,14.234,15.417999999999999,16.734000000000002,18.2,19.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1314,-0.2994,15.4176,0.080920000000000006,12.196999999999999,13.164,14.233000000000001,15.417999999999999,16.734000000000002,18.2,19.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1315,-0.29970000000000002,15.4169,0.080930000000000002,12.196,13.163,14.231999999999999,15.417,16.733000000000001,18.199000000000002,19.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1316,-0.3,15.4162,0.080930000000000002,12.195,13.162000000000001,14.231,15.416,16.731999999999999,18.199000000000002,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1317,-0.30020000000000002,15.4156,0.080939999999999998,12.195,13.162000000000001,14.231,15.416,16.731999999999999,18.198,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1318,-0.30049999999999999,15.414899999999999,0.080949999999999994,12.194000000000001,13.161,14.23,15.414999999999999,16.731000000000002,18.198,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1319,-0.30080000000000001,15.414300000000001,0.080960000000000004,12.193,13.16,14.228999999999999,15.414,16.731000000000002,18.198,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1320,-0.30099999999999999,15.413600000000001,0.08097,12.192,13.159000000000001,14.228999999999999,15.414,16.73,18.196999999999999,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1321,-0.30130000000000001,15.413,0.080979999999999996,12.192,13.159000000000001,14.228,15.413,16.73,18.196999999999999,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1322,-0.30159999999999998,15.4123,0.080990000000000006,12.191000000000001,13.157999999999999,14.227,15.412000000000001,16.728999999999999,18.196999999999999,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1323,-0.30180000000000001,15.4117,0.081000000000000003,12.19,13.157,14.226000000000001,15.412000000000001,16.728999999999999,18.196000000000002,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1324,-0.30209999999999998,15.411,0.081009999999999999,12.189,13.156000000000001,14.226000000000001,15.411,16.728000000000002,18.196000000000002,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1325,-0.3024,15.410399999999999,0.081019999999999995,12.189,13.156000000000001,14.225,15.41,16.728000000000002,18.196000000000002,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1326,-0.30270000000000002,15.409700000000001,0.081019999999999995,12.188000000000001,13.154999999999999,14.224,15.41,16.727,18.195,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1327,-0.30299999999999999,15.4091,0.081030000000000005,12.186999999999999,13.154,14.224,15.409000000000001,16.727,18.195,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1328,-0.30330000000000001,15.4084,0.081040000000000001,12.186999999999999,13.154,14.223000000000001,15.407999999999999,16.725999999999999,18.193999999999999,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1329,-0.30359999999999998,15.4078,0.081049999999999997,12.186,13.153,14.222,15.407999999999999,16.725999999999999,18.193999999999999,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1330,-0.30380000000000001,15.4072,0.081059999999999993,12.185,13.151999999999999,14.222,15.407,16.725000000000001,18.193999999999999,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1331,-0.30409999999999998,15.406499999999999,0.081070000000000003,12.183999999999999,13.151,14.221,15.406000000000001,16.725000000000001,18.193000000000001,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1332,-0.3044,15.405900000000001,0.081079999999999999,12.183999999999999,13.151,14.22,15.406000000000001,16.724,18.193000000000001,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1333,-0.30470000000000003,15.405200000000001,0.081089999999999995,12.183,13.15,14.218999999999999,15.404999999999999,16.722999999999999,18.193000000000001,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1334,-0.30499999999999999,15.4046,0.081100000000000005,12.182,13.148999999999999,14.218999999999999,15.404999999999999,16.722999999999999,18.193000000000001,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1335,-0.3054,15.404,0.081110000000000002,12.180999999999999,13.148,14.218,15.404,16.722999999999999,18.192,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1336,-0.30570000000000003,15.4033,0.081119999999999998,12.180999999999999,13.148,14.217000000000001,15.403,16.722000000000001,18.192,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1337,-0.30599999999999999,15.402699999999999,0.081129999999999994,12.18,13.147,14.217000000000001,15.403,16.722000000000001,18.192,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1338,-0.30630000000000002,15.402100000000001,0.081129999999999994,12.18,13.146000000000001,14.215999999999999,15.401999999999999,16.721,18.190999999999999,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1339,-0.30659999999999998,15.4015,0.081140000000000004,12.179,13.146000000000001,14.215,15.401999999999999,16.72,18.190999999999999,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1340,-0.30690000000000001,15.4008,0.08115,12.178000000000001,13.145,14.215,15.401,16.72,18.190999999999999,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1341,-0.30719999999999997,15.4002,0.081159999999999996,12.177,13.144,14.214,15.4,16.719000000000001,18.190000000000001,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1342,-0.30759999999999998,15.3996,0.081170000000000006,12.177,13.143000000000001,14.212999999999999,15.4,16.719000000000001,18.190000000000001,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1343,-0.30790000000000001,15.398999999999999,0.081180000000000002,12.176,13.143000000000001,14.212,15.398999999999999,16.718,18.190000000000001,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1344,-0.30819999999999997,15.398300000000001,0.081189999999999998,12.175000000000001,13.141999999999999,14.212,15.398,16.718,18.189,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1345,-0.3085,15.3977,0.081199999999999994,12.173999999999999,13.141,14.211,15.398,16.716999999999999,18.189,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1346,-0.30890000000000001,15.3971,0.081210000000000004,12.173999999999999,13.141,14.21,15.397,16.716999999999999,18.189,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1347,-0.30919999999999997,15.3965,0.081220000000000001,12.173,13.14,14.21,15.396000000000001,16.716999999999999,18.189,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1348,-0.3095,15.395799999999999,0.081229999999999997,12.172000000000001,13.138999999999999,14.209,15.396000000000001,16.716000000000001,18.187999999999999,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1349,-0.30990000000000001,15.395200000000001,0.081240000000000007,12.172000000000001,13.138,14.208,15.395,16.715,18.187999999999999,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1350,-0.31019999999999998,15.394600000000001,0.081250000000000003,12.170999999999999,13.138,14.208,15.395,16.715,18.187999999999999,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1351,-0.31059999999999999,15.394,0.081259999999999999,12.17,13.137,14.207000000000001,15.394,16.715,18.187999999999999,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1352,-0.31090000000000001,15.3934,0.081269999999999995,12.169,13.135999999999999,14.206,15.393000000000001,16.713999999999999,18.187000000000001,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1353,-0.31130000000000002,15.392799999999999,0.081280000000000005,12.169,13.135999999999999,14.206,15.393000000000001,16.713999999999999,18.187000000000001,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1354,-0.31159999999999999,15.392200000000001,0.081280000000000005,12.167999999999999,13.135,14.205,15.391999999999999,16.713000000000001,18.187000000000001,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1355,-0.312,15.3916,0.081290000000000001,12.167999999999999,13.134,14.204000000000001,15.391999999999999,16.713000000000001,18.186,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1356,-0.31230000000000002,15.3909,0.081299999999999997,12.167,13.134,14.204000000000001,15.391,16.712,18.186,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1357,-0.31269999999999998,15.3903,0.081309999999999993,12.166,13.132999999999999,14.202999999999999,15.39,16.712,18.186,19.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1358,-0.313,15.389699999999999,0.081320000000000003,12.166,13.132,14.202,15.39,16.710999999999999,18.184999999999999,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1359,-0.31340000000000001,15.389099999999999,0.08133,12.164999999999999,13.131,14.202,15.388999999999999,16.710999999999999,18.184999999999999,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1360,-0.31380000000000002,15.388500000000001,0.081339999999999996,12.164,13.131,14.201000000000001,15.388,16.71,18.184999999999999,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1361,-0.31409999999999999,15.3879,0.081350000000000006,12.163,13.13,14.2,15.388,16.71,18.184999999999999,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1362,-0.3145,15.3873,0.081360000000000002,12.163,13.129,14.199,15.387,16.709,18.184999999999999,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1363,-0.31490000000000001,15.386699999999999,0.081369999999999998,12.162000000000001,13.129,14.199,15.387,16.709,18.184000000000001,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1364,-0.31519999999999998,15.386100000000001,0.081379999999999994,12.161,13.128,14.198,15.385999999999999,16.707999999999998,18.184000000000001,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1365,-0.31559999999999999,15.3855,0.081390000000000004,12.161,13.127000000000001,14.196999999999999,15.385999999999999,16.707999999999998,18.184000000000001,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1366,-0.316,15.3849,0.0814,12.16,13.127000000000001,14.196999999999999,15.385,16.707000000000001,18.184000000000001,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1367,-0.31640000000000001,15.3843,0.081409999999999996,12.159000000000001,13.125999999999999,14.196,15.384,16.707000000000001,18.183,19.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1368,-0.31680000000000003,15.383699999999999,0.081420000000000006,12.159000000000001,13.125,14.195,15.384,16.706,18.183,19.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1369,-0.31709999999999999,15.383100000000001,0.081430000000000002,12.157999999999999,13.124000000000001,14.195,15.382999999999999,16.706,18.183,19.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1370,-0.3175,15.3825,0.081439999999999999,12.157,13.124000000000001,14.194000000000001,15.382,16.706,18.183,19.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1371,-0.31790000000000002,15.382,0.081449999999999995,12.157,13.122999999999999,14.194000000000001,15.382,16.704999999999998,18.183,19.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1372,-0.31830000000000003,15.381399999999999,0.081460000000000005,12.156000000000001,13.122,14.193,15.381,16.704999999999998,18.181999999999999,19.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1373,-0.31869999999999998,15.380800000000001,0.081470000000000001,12.154999999999999,13.122,14.192,15.381,16.704000000000001,18.181999999999999,19.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1374,-0.31909999999999999,15.3802,0.081479999999999997,12.154999999999999,13.121,14.191000000000001,15.38,16.704000000000001,18.181999999999999,19.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1375,-0.31950000000000001,15.3796,0.081490000000000007,12.154,13.12,14.191000000000001,15.38,16.702999999999999,18.181999999999999,19.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1376,-0.31990000000000002,15.379,0.081500000000000003,12.153,13.12,14.19,15.379,16.702999999999999,18.181999999999999,19.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1377,-0.32029999999999997,15.378399999999999,0.081509999999999999,12.153,13.119,14.189,15.378,16.702000000000002,18.181000000000001,19.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1378,-0.32069999999999999,15.377800000000001,0.081519999999999995,12.151999999999999,13.118,14.189,15.378,16.702000000000002,18.181000000000001,19.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1379,-0.3211,15.3773,0.081530000000000005,12.151,13.118,14.188000000000001,15.377000000000001,16.702000000000002,18.181000000000001,19.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1380,-0.32150000000000001,15.3767,0.081540000000000001,12.151,13.117000000000001,14.188000000000001,15.377000000000001,16.701000000000001,18.181000000000001,19.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1381,-0.32200000000000001,15.376099999999999,0.081549999999999997,12.15,13.116,14.186999999999999,15.375999999999999,16.701000000000001,18.181000000000001,19.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1382,-0.32240000000000002,15.375500000000001,0.081559999999999994,12.148999999999999,13.116,14.186,15.375999999999999,16.7,18.18,19.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1383,-0.32279999999999998,15.3749,0.081570000000000004,12.148999999999999,13.115,14.186,15.375,16.7,18.18,19.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1384,-0.32319999999999999,15.3744,0.08158,12.148,13.114000000000001,14.185,15.374000000000001,16.699000000000002,18.18,19.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1385,-0.3236,15.373799999999999,0.081589999999999996,12.147,13.114000000000001,14.183999999999999,15.374000000000001,16.699000000000002,18.18,19.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1386,-0.3241,15.373200000000001,0.081600000000000006,12.147,13.113,14.183999999999999,15.372999999999999,16.699000000000002,18.18,19.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1387,-0.32450000000000001,15.3726,0.081610000000000002,12.146000000000001,13.112,14.183,15.372999999999999,16.698,18.178999999999998,19.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1388,-0.32490000000000002,15.3721,0.081619999999999998,12.145,13.112,14.182,15.372,16.698,18.178999999999998,19.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1389,-0.32529999999999998,15.371499999999999,0.081629999999999994,12.145,13.111000000000001,14.182,15.372,16.696999999999999,18.178999999999998,19.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1390,-0.32579999999999998,15.370900000000001,0.081640000000000004,12.144,13.11,14.180999999999999,15.371,16.696999999999999,18.178999999999998,19.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1391,-0.32619999999999999,15.3703,0.08165,12.143000000000001,13.11,14.18,15.37,16.696000000000002,18.178999999999998,19.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1392,-0.3266,15.3698,0.081659999999999996,12.143000000000001,13.109,14.18,15.37,16.696000000000002,18.178999999999998,19.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1393,-0.3271,15.369199999999999,0.081670000000000006,12.141999999999999,13.108000000000001,14.179,15.369,16.696000000000002,18.178000000000001,19.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1394,-0.32750000000000001,15.368600000000001,0.081680000000000003,12.141,13.108000000000001,14.178000000000001,15.369,16.695,18.178000000000001,19.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1395,-0.32800000000000001,15.3681,0.081689999999999999,12.141,13.106999999999999,14.178000000000001,15.368,16.695,18.178000000000001,19.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1396,-0.32840000000000003,15.3675,0.081699999999999995,12.14,13.106,14.177,15.368,16.693999999999999,18.178000000000001,19.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1397,-0.32890000000000003,15.366899999999999,0.081710000000000005,12.14,13.106,14.176,15.367000000000001,16.693999999999999,18.178000000000001,19.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1398,-0.32929999999999998,15.366400000000001,0.081720000000000001,12.138999999999999,13.105,14.176,15.366,16.693999999999999,18.178000000000001,19.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1399,-0.32979999999999998,15.3658,0.081729999999999997,12.138,13.103999999999999,14.175000000000001,15.366,16.693000000000001,18.177,19.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1400,-0.33019999999999999,15.3652,0.081739999999999993,12.138,13.103999999999999,14.175000000000001,15.365,16.693000000000001,18.177,19.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1401,-0.33069999999999999,15.364699999999999,0.081750000000000003,12.137,13.103,14.173999999999999,15.365,16.692,18.177,19.843 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1402,-0.33119999999999999,15.364100000000001,0.081759999999999999,12.135999999999999,13.102,14.173,15.364000000000001,16.692,18.177,19.843 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1403,-0.33160000000000001,15.3636,0.081769999999999995,12.135999999999999,13.102,14.173,15.364000000000001,16.692,18.177,19.843 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1404,-0.33210000000000001,15.363,0.081780000000000005,12.135,13.101000000000001,14.172000000000001,15.363,16.690999999999999,18.177,19.843 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1405,-0.33250000000000002,15.362399999999999,0.081790000000000002,12.134,13.1,14.170999999999999,15.362,16.690999999999999,18.175999999999998,19.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1406,-0.33300000000000002,15.3619,0.081799999999999998,12.134,13.1,14.170999999999999,15.362,16.690000000000001,18.175999999999998,19.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1407,-0.33350000000000002,15.3613,0.081809999999999994,12.132999999999999,13.099,14.17,15.361000000000001,16.690000000000001,18.175999999999998,19.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1408,-0.33400000000000002,15.360799999999999,0.081820000000000004,12.132999999999999,13.098000000000001,14.17,15.361000000000001,16.689,18.175999999999998,19.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1409,-0.33439999999999998,15.360200000000001,0.08183,12.132,13.098000000000001,14.169,15.36,16.689,18.175999999999998,19.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1410,-0.33489999999999998,15.3597,0.081839999999999996,12.131,13.097,14.167999999999999,15.36,16.689,18.175999999999998,19.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1411,-0.33539999999999998,15.3591,0.081850000000000006,12.131,13.096,14.167999999999999,15.359,16.687999999999999,18.175000000000001,19.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1412,-0.33589999999999998,15.358599999999999,0.081860000000000002,12.13,13.096,14.167,15.359,16.687999999999999,18.175000000000001,19.846 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1413,-0.33639999999999998,15.358000000000001,0.081869999999999998,12.13,13.095000000000001,14.166,15.358000000000001,16.687000000000001,18.175000000000001,19.846 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1414,-0.33689999999999998,15.3575,0.081879999999999994,12.129,13.095000000000001,14.166,15.358000000000001,16.687000000000001,18.175000000000001,19.846 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1415,-0.33729999999999999,15.3569,0.081890000000000004,12.128,13.093999999999999,14.164999999999999,15.356999999999999,16.687000000000001,18.175000000000001,19.846 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1416,-0.33779999999999999,15.356400000000001,0.081900000000000001,12.128,13.093,14.164999999999999,15.356,16.686,18.175000000000001,19.847000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1417,-0.33829999999999999,15.3558,0.081909999999999997,12.127000000000001,13.093,14.164,15.356,16.686,18.175000000000001,19.847000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1418,-0.33879999999999999,15.3553,0.081920000000000007,12.127000000000001,13.092000000000001,14.163,15.355,16.684999999999999,18.175000000000001,19.847000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1419,-0.33929999999999999,15.354699999999999,0.081930000000000003,12.125999999999999,13.090999999999999,14.163,15.355,16.684999999999999,18.173999999999999,19.847000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1420,-0.33979999999999999,15.354200000000001,0.081939999999999999,12.125,13.090999999999999,14.162000000000001,15.353999999999999,16.684999999999999,18.173999999999999,19.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1421,-0.34029999999999999,15.3537,0.081949999999999995,12.125,13.09,14.162000000000001,15.353999999999999,16.684000000000001,18.173999999999999,19.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1422,-0.34079999999999999,15.3531,0.081960000000000005,12.124000000000001,13.09,14.161,15.353,16.684000000000001,18.173999999999999,19.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1423,-0.34129999999999999,15.352600000000001,0.081970000000000001,12.124000000000001,13.089,14.16,15.353,16.684000000000001,18.173999999999999,19.849 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1424,-0.34179999999999999,15.352,0.081979999999999997,12.122999999999999,13.087999999999999,14.16,15.352,16.683,18.173999999999999,19.849 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1425,-0.34239999999999998,15.3515,0.082000000000000003,12.122,13.087,14.159000000000001,15.352,16.683,18.173999999999999,19.850000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1426,-0.34289999999999998,15.351000000000001,0.08201,12.121,13.087,14.157999999999999,15.351000000000001,16.683,18.173999999999999,19.850000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1427,-0.34339999999999998,15.3504,0.082019999999999996,12.121,13.086,14.157999999999999,15.35,16.681999999999999,18.173999999999999,19.850000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1428,-0.34389999999999998,15.3499,0.082030000000000006,12.12,13.086,14.157,15.35,16.681999999999999,18.173999999999999,19.850999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1429,-0.34439999999999998,15.349299999999999,0.082040000000000002,12.12,13.085000000000001,14.156000000000001,15.349,16.681000000000001,18.173999999999999,19.850999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1430,-0.34489999999999998,15.348800000000001,0.082049999999999998,12.119,13.084,14.156000000000001,15.349,16.681000000000001,18.172999999999998,19.850999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1431,-0.34549999999999997,15.3483,0.082059999999999994,12.119,13.084,14.154999999999999,15.348000000000001,16.681000000000001,18.172999999999998,19.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1432,-0.34599999999999997,15.3477,0.082070000000000004,12.118,13.083,14.154999999999999,15.348000000000001,16.68,18.172999999999998,19.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1433,-0.34649999999999997,15.347200000000001,0.08208,12.117000000000001,13.082000000000001,14.154,15.347,16.68,18.172999999999998,19.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1434,-0.34710000000000002,15.3467,0.082089999999999996,12.117000000000001,13.082000000000001,14.153,15.347,16.68,18.172999999999998,19.853000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1435,-0.34760000000000002,15.3461,0.082100000000000006,12.116,13.081,14.153,15.346,16.678999999999998,18.172999999999998,19.853000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1436,-0.34810000000000002,15.345599999999999,0.082110000000000002,12.116,13.081,14.151999999999999,15.346,16.678999999999998,18.172999999999998,19.853000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1437,-0.34870000000000001,15.3451,0.082119999999999999,12.115,13.08,14.151999999999999,15.345000000000001,16.678000000000001,18.172999999999998,19.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1438,-0.34920000000000001,15.3445,0.082129999999999995,12.114000000000001,13.079000000000001,14.151,15.343999999999999,16.678000000000001,18.172999999999998,19.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1439,-0.34970000000000001,15.343999999999999,0.082140000000000005,12.114000000000001,13.079000000000001,14.15,15.343999999999999,16.678000000000001,18.172999999999998,19.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1440,-0.3503,15.343500000000001,0.082150000000000001,12.113,13.077999999999999,14.15,15.343999999999999,16.677,18.172999999999998,19.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1441,-0.3508,15.343,0.082159999999999997,12.113,13.077999999999999,14.148999999999999,15.343,16.677,18.172000000000001,19.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1442,-0.35139999999999999,15.3424,0.082180000000000003,12.112,13.077,14.148,15.342000000000001,16.677,18.172999999999998,19.856000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1443,-0.35189999999999999,15.341900000000001,0.082189999999999999,12.111000000000001,13.076000000000001,14.148,15.342000000000001,16.675999999999998,18.172999999999998,19.856000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1444,-0.35249999999999998,15.3414,0.082199999999999995,12.111000000000001,13.076000000000001,14.147,15.340999999999999,16.675999999999998,18.172999999999998,19.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1445,-0.35299999999999998,15.3409,0.082210000000000005,12.11,13.074999999999999,14.147,15.340999999999999,16.675999999999998,18.172000000000001,19.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1446,-0.35360000000000003,15.340299999999999,0.082220000000000001,12.11,13.074,14.146000000000001,15.34,16.675000000000001,18.172000000000001,19.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1447,-0.35410000000000003,15.3398,0.082229999999999998,12.109,13.074,14.145,15.34,16.675000000000001,18.172000000000001,19.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1448,-0.35470000000000002,15.3393,0.082239999999999994,12.108000000000001,13.073,14.145,15.339,16.675000000000001,18.172000000000001,19.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1449,-0.3553,15.338800000000001,0.082250000000000004,12.108000000000001,13.073,14.144,15.339,16.673999999999999,18.172000000000001,19.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1450,-0.35580000000000001,15.3383,0.08226,12.106999999999999,13.071999999999999,14.144,15.337999999999999,16.673999999999999,18.172000000000001,19.859000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1451,-0.35639999999999999,15.3377,0.082269999999999996,12.106999999999999,13.071,14.143000000000001,15.337999999999999,16.672999999999998,18.172000000000001,19.859000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1452,-0.35699999999999998,15.337199999999999,0.082280000000000006,12.106,13.071,14.143000000000001,15.337,16.672999999999998,18.172000000000001,19.859000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1453,-0.35749999999999998,15.3367,0.082290000000000002,12.106,13.07,14.141999999999999,15.337,16.672999999999998,18.172000000000001,19.86 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1454,-0.35809999999999997,15.3362,0.082309999999999994,12.105,13.069000000000001,14.141,15.336,16.672999999999998,18.172000000000001,19.861000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1455,-0.35870000000000002,15.335699999999999,0.082320000000000004,12.103999999999999,13.069000000000001,14.141,15.336,16.672000000000001,18.172000000000001,19.861000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1456,-0.35930000000000001,15.3352,0.08233,12.103999999999999,13.068,14.14,15.335000000000001,16.672000000000001,18.172000000000001,19.861999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1457,-0.35980000000000001,15.3346,0.082339999999999997,12.103,13.067,14.138999999999999,15.335000000000001,16.670999999999999,18.172000000000001,19.861999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1458,-0.3604,15.334099999999999,0.082350000000000007,12.103,13.067,14.138999999999999,15.334,16.670999999999999,18.172000000000001,19.861999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1459,-0.36099999999999999,15.333600000000001,0.082360000000000003,12.102,13.066000000000001,14.138,15.334,16.670999999999999,18.172000000000001,19.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1460,-0.36159999999999998,15.3331,0.082369999999999999,12.101000000000001,13.066000000000001,14.138,15.333,16.670000000000002,18.172000000000001,19.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1461,-0.36220000000000002,15.332599999999999,0.082379999999999995,12.101000000000001,13.065,14.137,15.333,16.670000000000002,18.172000000000001,19.864000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1462,-0.36280000000000001,15.332100000000001,0.082390000000000005,12.1,13.065,14.137,15.332000000000001,16.670000000000002,18.172000000000001,19.864000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1463,-0.3634,15.3316,0.082400000000000001,12.1,13.064,14.135999999999999,15.332000000000001,16.669,18.172000000000001,19.864000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1464,-0.36399999999999999,15.331099999999999,0.082409999999999997,12.099,13.063000000000001,14.135,15.331,16.669,18.172000000000001,19.864999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1465,-0.36459999999999998,15.3306,0.082430000000000003,12.098000000000001,13.063000000000001,14.135,15.331,16.669,18.172000000000001,19.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1466,-0.36520000000000002,15.3301,0.082439999999999999,12.098000000000001,13.061999999999999,14.134,15.33,16.669,18.172000000000001,19.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1467,-0.36580000000000001,15.329499999999999,0.082449999999999996,12.097,13.061,14.134,15.33,16.667999999999999,18.172000000000001,19.867000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1468,-0.3664,15.329000000000001,0.082460000000000006,12.097,13.061,14.132999999999999,15.329000000000001,16.667999999999999,18.172000000000001,19.867000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1469,-0.36699999999999999,15.3285,0.082470000000000002,12.096,13.06,14.132,15.327999999999999,16.667000000000002,18.172000000000001,19.867999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1470,-0.36759999999999998,15.327999999999999,0.082479999999999998,12.096,13.06,14.132,15.327999999999999,16.667000000000002,18.172000000000001,19.867999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1471,-0.36820000000000003,15.327500000000001,0.082489999999999994,12.095000000000001,13.058999999999999,14.131,15.327999999999999,16.667000000000002,18.170999999999999,19.867999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1472,-0.36880000000000002,15.327,0.082500000000000004,12.095000000000001,13.058999999999999,14.131,15.327,16.666,18.170999999999999,19.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1473,-0.36940000000000001,15.326499999999999,0.08251,12.093999999999999,13.058,14.13,15.326000000000001,16.666,18.170999999999999,19.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1474,-0.37,15.326000000000001,0.082530000000000006,12.093,13.057,14.129,15.326000000000001,16.666,18.172000000000001,19.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1475,-0.37059999999999998,15.3255,0.082540000000000002,12.093,13.057,14.129,15.326000000000001,16.666,18.172000000000001,19.870999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1476,-0.37130000000000002,15.324999999999999,0.082549999999999998,12.092000000000001,13.055999999999999,14.128,15.324999999999999,16.664999999999999,18.172000000000001,19.870999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1477,-0.37190000000000001,15.3245,0.082559999999999995,12.092000000000001,13.055,14.128,15.324,16.664999999999999,18.172000000000001,19.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1478,-0.3725,15.324,0.082570000000000005,12.090999999999999,13.055,14.127000000000001,15.324,16.664999999999999,18.172000000000001,19.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1479,-0.37309999999999999,15.323499999999999,0.082580000000000001,12.090999999999999,13.054,14.127000000000001,15.324,16.664000000000001,18.172000000000001,19.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1480,-0.37380000000000002,15.323,0.082589999999999997,12.09,13.054,14.125999999999999,15.323,16.664000000000001,18.172000000000001,19.873000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1481,-0.37440000000000001,15.3225,0.082600000000000007,12.09,13.053000000000001,14.125,15.321999999999999,16.664000000000001,18.170999999999999,19.873000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1482,-0.375,15.321999999999999,0.082619999999999999,12.089,13.052,14.125,15.321999999999999,16.663,18.172000000000001,19.873999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1483,-0.37559999999999999,15.3215,0.082629999999999995,12.087999999999999,13.052,14.124000000000001,15.321999999999999,16.663,18.172000000000001,19.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1484,-0.37630000000000002,15.321099999999999,0.082640000000000005,12.087999999999999,13.051,14.124000000000001,15.321,16.663,18.172000000000001,19.876000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1485,-0.37690000000000001,15.320600000000001,0.082650000000000001,12.087,13.051,14.122999999999999,15.321,16.663,18.172000000000001,19.876000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1486,-0.37759999999999999,15.3201,0.082659999999999997,12.087,13.05,14.122999999999999,15.32,16.661999999999999,18.172000000000001,19.876000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1487,-0.37819999999999998,15.319599999999999,0.082669999999999993,12.086,13.05,14.122,15.32,16.661999999999999,18.172000000000001,19.876999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1488,-0.37890000000000001,15.319100000000001,0.082680000000000003,12.086,13.048999999999999,14.121,15.319000000000001,16.661999999999999,18.172000000000001,19.876999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1489,-0.3795,15.3186,0.08269,12.085000000000001,13.048,14.121,15.319000000000001,16.661000000000001,18.172000000000001,19.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1490,-0.38009999999999999,15.318099999999999,0.082710000000000006,12.084,13.048,14.12,15.318,16.661000000000001,18.172000000000001,19.879000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1491,-0.38080000000000003,15.317600000000001,0.082720000000000002,12.084,13.047000000000001,14.12,15.318,16.661000000000001,18.172000000000001,19.879000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1492,-0.38150000000000001,15.3171,0.082729999999999998,12.083,13.047000000000001,14.119,15.317,16.66,18.172000000000001,19.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1493,-0.3821,15.316599999999999,0.082739999999999994,12.083,13.045999999999999,14.118,15.317,16.66,18.172000000000001,19.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1494,-0.38279999999999997,15.3162,0.082750000000000004,12.083,13.045,14.118,15.316000000000001,16.66,18.172000000000001,19.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1495,-0.38340000000000002,15.3157,0.08276,12.082000000000001,13.045,14.117000000000001,15.316000000000001,16.658999999999999,18.172000000000001,19.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1496,-0.3841,15.315200000000001,0.082769999999999996,12.081,13.044,14.117000000000001,15.315,16.658999999999999,18.172000000000001,19.882000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1497,-0.38469999999999999,15.3147,0.082790000000000002,12.081,13.044,14.116,15.315,16.658999999999999,18.172000000000001,19.882999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1498,-0.38540000000000002,15.3142,0.082799999999999999,12.08,13.042999999999999,14.116,15.314,16.658999999999999,18.172000000000001,19.882999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1499,-0.3861,15.313700000000001,0.082809999999999995,12.08,13.042,14.115,15.314,16.658000000000001,18.172000000000001,19.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1500,-0.38669999999999999,15.3133,0.082820000000000005,12.079000000000001,13.042,14.114000000000001,15.313000000000001,16.658000000000001,18.172000000000001,19.885000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1501,-0.38740000000000002,15.312799999999999,0.082830000000000001,12.079000000000001,13.041,14.114000000000001,15.313000000000001,16.658000000000001,18.172000000000001,19.885000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1502,-0.3881,15.3123,0.082839999999999997,12.077999999999999,13.041,14.113,15.311999999999999,16.657,18.172000000000001,19.885999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1503,-0.38879999999999998,15.3118,0.082849999999999993,12.077999999999999,13.04,14.113,15.311999999999999,16.657,18.172000000000001,19.885999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1504,-0.38940000000000002,15.311299999999999,0.082869999999999999,12.077,13.039,14.112,15.311,16.657,18.172999999999998,19.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1505,-0.3901,15.3109,0.082879999999999995,12.076000000000001,13.039,14.112,15.311,16.657,18.172999999999998,19.888000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1506,-0.39079999999999998,15.3104,0.082890000000000005,12.076000000000001,13.038,14.111000000000001,15.31,16.655999999999999,18.172999999999998,19.888000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1507,-0.39150000000000001,15.309900000000001,0.082900000000000001,12.074999999999999,13.038,14.11,15.31,16.655999999999999,18.172999999999998,19.888999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1508,-0.39219999999999999,15.3094,0.082909999999999998,12.074999999999999,13.037000000000001,14.11,15.308999999999999,16.655999999999999,18.172999999999998,19.888999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1509,-0.39290000000000003,15.308999999999999,0.082919999999999994,12.074999999999999,13.037000000000001,14.109,15.308999999999999,16.655999999999999,18.172999999999998,19.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1510,-0.39360000000000001,15.3085,0.082930000000000004,12.074,13.036,14.109,15.308,16.655000000000001,18.172999999999998,19.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1511,-0.39419999999999999,15.308,0.082949999999999996,12.073,13.035,14.108000000000001,15.308,16.655000000000001,18.172999999999998,19.891999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1512,-0.39489999999999997,15.307499999999999,0.082960000000000006,12.073,13.035,14.108000000000001,15.308,16.655000000000001,18.172999999999998,19.891999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1513,-0.39560000000000001,15.3071,0.082970000000000002,12.071999999999999,13.034000000000001,14.106999999999999,15.307,16.654,18.172999999999998,19.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1514,-0.39629999999999999,15.3066,0.082979999999999998,12.071999999999999,13.034000000000001,14.106999999999999,15.307,16.654,18.172999999999998,19.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1515,-0.39700000000000002,15.306100000000001,0.082989999999999994,12.071,13.032999999999999,14.106,15.305999999999999,16.654,18.172999999999998,19.893999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1516,-0.3977,15.3057,0.083000000000000004,12.071,13.032999999999999,14.106,15.305999999999999,16.654,18.172999999999998,19.893999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1517,-0.39839999999999998,15.305199999999999,0.083019999999999997,12.07,13.032,14.105,15.305,16.652999999999999,18.173999999999999,19.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1518,-0.39910000000000001,15.3047,0.083030000000000007,12.07,13.032,14.103999999999999,15.305,16.652999999999999,18.173999999999999,19.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1519,-0.39979999999999999,15.3043,0.083040000000000003,12.069000000000001,13.031000000000001,14.103999999999999,15.304,16.652999999999999,18.173999999999999,19.896999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1520,-0.40060000000000001,15.303800000000001,0.083049999999999999,12.069000000000001,13.031000000000001,14.103,15.304,16.652999999999999,18.173999999999999,19.896999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1521,-0.40129999999999999,15.3033,0.083059999999999995,12.068,13.03,14.103,15.303000000000001,16.652000000000001,18.173999999999999,19.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1522,-0.40200000000000002,15.302899999999999,0.083070000000000005,12.068,13.029,14.102,15.303000000000001,16.652000000000001,18.173999999999999,19.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1523,-0.4027,15.3024,0.083089999999999997,12.067,13.029,14.101000000000001,15.302,16.652000000000001,18.173999999999999,19.899999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1524,-0.40339999999999998,15.3019,0.083099999999999993,12.066000000000001,13.028,14.101000000000001,15.302,16.652000000000001,18.173999999999999,19.899999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1525,-0.40410000000000001,15.301500000000001,0.083110000000000003,12.066000000000001,13.028,14.1,15.302,16.651,18.173999999999999,19.901 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1526,-0.40489999999999998,15.301,0.083119999999999999,12.066000000000001,13.026999999999999,14.1,15.301,16.651,18.173999999999999,19.901 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1527,-0.40560000000000002,15.3005,0.083129999999999996,12.065,13.026999999999999,14.099,15.3,16.651,18.173999999999999,19.902000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1528,-0.40629999999999999,15.3001,0.083140000000000006,12.065,13.026,14.099,15.3,16.649999999999999,18.175000000000001,19.902000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1529,-0.40699999999999997,15.2996,0.083159999999999998,12.064,13.025,14.098000000000001,15.3,16.649999999999999,18.175000000000001,19.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1530,-0.4078,15.299200000000001,0.083169999999999994,12.063000000000001,13.025,14.098000000000001,15.298999999999999,16.649999999999999,18.175000000000001,19.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1531,-0.40849999999999997,15.2987,0.083180000000000004,12.063000000000001,13.023999999999999,14.097,15.298999999999999,16.649999999999999,18.175000000000001,19.905000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1532,-0.40920000000000001,15.2982,0.08319,12.063000000000001,13.023999999999999,14.097,15.298,16.649000000000001,18.175000000000001,19.905000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1533,-0.41,15.297800000000001,0.083199999999999996,12.061999999999999,13.023,14.096,15.298,16.649000000000001,18.175000000000001,19.905999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1534,-0.41070000000000001,15.2973,0.083220000000000002,12.061,13.022,14.095000000000001,15.297000000000001,16.649000000000001,18.175999999999998,19.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1535,-0.41139999999999999,15.296900000000001,0.083229999999999998,12.061,13.022,14.095000000000001,15.297000000000001,16.649000000000001,18.175999999999998,19.908000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1536,-0.41220000000000001,15.2964,0.083239999999999995,12.06,13.021000000000001,14.093999999999999,15.295999999999999,16.648,18.175999999999998,19.908000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1537,-0.41289999999999999,15.2959,0.083250000000000005,12.06,13.021000000000001,14.093999999999999,15.295999999999999,16.648,18.175999999999998,19.908999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1538,-0.41370000000000001,15.295500000000001,0.083260000000000001,12.06,13.02,14.093,15.295999999999999,16.648,18.175999999999998,19.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1539,-0.41439999999999999,15.295,0.083269999999999997,12.058999999999999,13.02,14.093,15.295,16.648,18.175999999999998,19.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1540,-0.41510000000000002,15.294600000000001,0.083290000000000003,12.058,13.019,14.092000000000001,15.295,16.648,18.175999999999998,19.911999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1541,-0.41589999999999999,15.2941,0.083299999999999999,12.058,13.019,14.092000000000001,15.294,16.646999999999998,18.175999999999998,19.911999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1542,-0.41660000000000003,15.293699999999999,0.083309999999999995,12.057,13.018000000000001,14.090999999999999,15.294,16.646999999999998,18.175999999999998,19.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1543,-0.41739999999999999,15.293200000000001,0.083320000000000005,12.057,13.018000000000001,14.090999999999999,15.292999999999999,16.646999999999998,18.175999999999998,19.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1544,-0.41820000000000002,15.2928,0.083330000000000001,12.057,13.016999999999999,14.09,15.292999999999999,16.646000000000001,18.177,19.914000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1545,-0.41889999999999999,15.292299999999999,0.083349999999999994,12.055999999999999,13.016,14.089,15.292,16.646000000000001,18.177,19.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1546,-0.41970000000000002,15.2919,0.083360000000000004,12.055,13.016,14.089,15.292,16.646000000000001,18.177,19.916 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1547,-0.4204,15.291399999999999,0.08337,12.055,13.015000000000001,14.087999999999999,15.291,16.646000000000001,18.177,19.917000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1548,-0.42120000000000002,15.291,0.083379999999999996,12.055,13.015000000000001,14.087999999999999,15.291,16.646000000000001,18.177,19.917000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1549,-0.42199999999999999,15.2905,0.083390000000000006,12.054,13.013999999999999,14.087,15.29,16.645,18.177,19.917999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1550,-0.42270000000000002,15.290100000000001,0.083409999999999998,12.053000000000001,13.013999999999999,14.087,15.29,16.645,18.178000000000001,19.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1551,-0.42349999999999999,15.2896,0.083419999999999994,12.053000000000001,13.013,14.086,15.29,16.645,18.178000000000001,19.920000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1552,-0.42430000000000001,15.289199999999999,0.083430000000000004,12.053000000000001,13.013,14.086,15.289,16.645,18.178000000000001,19.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1553,-0.42499999999999999,15.2888,0.08344,12.052,13.012,14.085000000000001,15.289,16.643999999999998,18.178000000000001,19.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1554,-0.42580000000000001,15.2883,0.083449999999999996,12.052,13.012,14.085000000000001,15.288,16.643999999999998,18.178000000000001,19.922000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1555,-0.42659999999999998,15.2879,0.083470000000000003,12.051,13.010999999999999,14.084,15.288,16.643999999999998,18.178999999999998,19.922999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1556,-0.4274,15.2874,0.083479999999999999,12.051,13.010999999999999,14.083,15.287000000000001,16.643999999999998,18.178999999999998,19.923999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1557,-0.42809999999999998,15.287000000000001,0.083489999999999995,12.05,13.01,14.083,15.287000000000001,16.643999999999998,18.178999999999998,19.923999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1558,-0.4289,15.2865,0.083500000000000005,12.05,13.009,14.082000000000001,15.286,16.643000000000001,18.178999999999998,19.925000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1559,-0.42970000000000003,15.286099999999999,0.083510000000000001,12.048999999999999,13.009,14.082000000000001,15.286,16.643000000000001,18.178999999999998,19.925999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1560,-0.43049999999999999,15.2857,0.083529999999999993,12.048999999999999,13.007999999999999,14.081,15.286,16.643000000000001,18.178999999999998,19.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1561,-0.43130000000000002,15.2852,0.083540000000000003,12.048,13.007999999999999,14.081,15.285,16.643000000000001,18.178999999999998,19.928000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1562,-0.43209999999999998,15.284800000000001,0.083549999999999999,12.048,13.007,14.08,15.285,16.641999999999999,18.18,19.928000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1563,-0.43280000000000002,15.2844,0.083559999999999995,12.047000000000001,13.007,14.08,15.284000000000001,16.641999999999999,18.18,19.928999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1564,-0.43359999999999999,15.283899999999999,0.083570000000000005,12.047000000000001,13.006,14.079000000000001,15.284000000000001,16.641999999999999,18.18,19.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1565,-0.43440000000000001,15.2835,0.083589999999999998,12.045999999999999,13.006,14.079000000000001,15.284000000000001,16.641999999999999,18.18,19.931000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1566,-0.43519999999999998,15.282999999999999,0.083599999999999994,12.045999999999999,13.005000000000001,14.077999999999999,15.282999999999999,16.641999999999999,18.18,19.931999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1567,-0.436,15.2826,0.083610000000000004,12.045,13.005000000000001,14.077999999999999,15.282999999999999,16.640999999999998,18.18,19.931999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1568,-0.43680000000000002,15.2822,0.08362,12.045,13.004,14.077,15.282,16.640999999999998,18.181000000000001,19.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1569,-0.43759999999999999,15.281700000000001,0.083640000000000006,12.044,13.003,14.077,15.282,16.640999999999998,18.181000000000001,19.934000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1570,-0.43840000000000001,15.2813,0.083650000000000002,12.044,13.003,14.076000000000001,15.281000000000001,16.640999999999998,18.181000000000001,19.934999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1571,-0.43919999999999998,15.280900000000001,0.083659999999999998,12.042999999999999,13.003,14.076000000000001,15.281000000000001,16.64,18.181000000000001,19.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1572,-0.44,15.2805,0.083669999999999994,12.042999999999999,13.002000000000001,14.074999999999999,15.28,16.64,18.181000000000001,19.937000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1573,-0.44080000000000003,15.28,0.083680000000000004,12.042999999999999,13.002000000000001,14.074999999999999,15.28,16.64,18.181000000000001,19.937000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1574,-0.44169999999999998,15.2796,0.083699999999999997,12.042,13.000999999999999,14.074,15.28,16.64,18.181999999999999,19.939 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1575,-0.4425,15.279199999999999,0.083710000000000007,12.042,13,14.074,15.279,16.64,18.181999999999999,19.940000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1576,-0.44330000000000003,15.278700000000001,0.083720000000000003,12.041,13,14.073,15.279,16.638999999999999,18.181999999999999,19.940000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1577,-0.44409999999999999,15.2783,0.083729999999999999,12.041,12.999000000000001,14.073,15.278,16.638999999999999,18.181999999999999,19.940999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1578,-0.44490000000000002,15.277900000000001,0.083750000000000005,12.04,12.999000000000001,14.071999999999999,15.278,16.638999999999999,18.183,19.942 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1579,-0.44569999999999999,15.2775,0.083760000000000001,12.04,12.997999999999999,14.071,15.278,16.638999999999999,18.183,19.943000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1580,-0.44650000000000001,15.276999999999999,0.083769999999999997,12.039,12.997999999999999,14.071,15.276999999999999,16.638999999999999,18.183,19.943999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1581,-0.44740000000000002,15.2766,0.083779999999999993,12.039,12.997,14.07,15.276999999999999,16.638000000000002,18.183,19.943999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1582,-0.44819999999999999,15.276199999999999,0.083790000000000003,12.038,12.997,14.07,15.276,16.638000000000002,18.183,19.945 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1583,-0.44900000000000001,15.2758,0.083809999999999996,12.038,12.996,14.069000000000001,15.276,16.638000000000002,18.184000000000001,19.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1584,-0.44979999999999998,15.2753,0.083820000000000006,12.037000000000001,12.996,14.069000000000001,15.275,16.638000000000002,18.184000000000001,19.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1585,-0.45069999999999999,15.274900000000001,0.083830000000000002,12.037000000000001,12.994999999999999,14.068,15.275,16.638000000000002,18.184000000000001,19.948 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1586,-0.45150000000000001,15.2745,0.083839999999999998,12.037000000000001,12.994999999999999,14.068,15.273999999999999,16.637,18.184000000000001,19.949000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1587,-0.45229999999999998,15.274100000000001,0.083860000000000004,12.036,12.994,14.067,15.273999999999999,16.637,18.184999999999999,19.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1588,-0.45319999999999999,15.2737,0.08387,12.036,12.994,14.067,15.273999999999999,16.637,18.184999999999999,19.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1589,-0.45400000000000001,15.273199999999999,0.083879999999999996,12.035,12.993,14.066000000000001,15.273,16.637,18.184999999999999,19.952000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1590,-0.45479999999999998,15.2728,0.083890000000000006,12.035,12.993,14.066000000000001,15.273,16.637,18.184999999999999,19.952000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1591,-0.45569999999999999,15.272399999999999,0.083909999999999998,12.034000000000001,12.992000000000001,14.065,15.272,16.637,18.186,19.954000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1592,-0.45650000000000002,15.272,0.083919999999999995,12.034000000000001,12.992000000000001,14.065,15.272,16.635999999999999,18.186,19.954999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1593,-0.45739999999999997,15.271599999999999,0.083930000000000005,12.032999999999999,12.991,14.064,15.272,16.635999999999999,18.186,19.954999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1594,-0.4582,15.2712,0.083940000000000001,12.032999999999999,12.991,14.064,15.271000000000001,16.635999999999999,18.186,19.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1595,-0.45900000000000002,15.270799999999999,0.083949999999999997,12.032999999999999,12.99,14.063000000000001,15.271000000000001,16.635999999999999,18.186,19.957000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1596,-0.45989999999999998,15.270300000000001,0.083970000000000003,12.032,12.989000000000001,14.063000000000001,15.27,16.635999999999999,18.187000000000001,19.957999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1597,-0.4607,15.2699,0.083979999999999999,12.031000000000001,12.989000000000001,14.061999999999999,15.27,16.635000000000002,18.187000000000001,19.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1598,-0.46160000000000001,15.269500000000001,0.083989999999999995,12.031000000000001,12.989000000000001,14.061999999999999,15.27,16.635000000000002,18.187000000000001,19.96 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1599,-0.46239999999999998,15.2691,0.084000000000000005,12.031000000000001,12.988,14.061,15.269,16.635000000000002,18.187000000000001,19.960999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1600,-0.46329999999999999,15.268700000000001,0.084019999999999997,12.03,12.987,14.061,15.269,16.635000000000002,18.187999999999999,19.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1601,-0.46410000000000001,15.2683,0.084029999999999994,12.03,12.987,14.06,15.268000000000001,16.635000000000002,18.187999999999999,19.963000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1602,-0.46500000000000002,15.267899999999999,0.084040000000000004,12.029,12.987,14.06,15.268000000000001,16.634,18.187999999999999,19.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1603,-0.46589999999999998,15.2675,0.08405,12.029,12.986000000000001,14.058999999999999,15.268000000000001,16.634,18.187999999999999,19.965 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1604,-0.4667,15.267099999999999,0.084070000000000006,12.028,12.984999999999999,14.058999999999999,15.266999999999999,16.634,18.189,19.966000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1605,-0.46760000000000002,15.2667,0.084080000000000002,12.028,12.984999999999999,14.058,15.266999999999999,16.634,18.189,19.966999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1606,-0.46839999999999998,15.2662,0.084089999999999998,12.028,12.984999999999999,14.058,15.266,16.634,18.189,19.966999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1607,-0.46929999999999999,15.2658,0.084099999999999994,12.026999999999999,12.984,14.057,15.266,16.634,18.189,19.968 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1608,-0.47020000000000001,15.2654,0.08412,12.026999999999999,12.983000000000001,14.057,15.265000000000001,16.632999999999999,18.190000000000001,19.97 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1609,-0.47099999999999997,15.265000000000001,0.084129999999999996,12.026,12.983000000000001,14.055999999999999,15.265000000000001,16.632999999999999,18.190000000000001,19.971 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1610,-0.47189999999999999,15.2646,0.084140000000000006,12.026,12.983000000000001,14.055999999999999,15.265000000000001,16.632999999999999,18.190000000000001,19.971 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1611,-0.4728,15.264200000000001,0.084150000000000003,12.025,12.981999999999999,14.055,15.263999999999999,16.632999999999999,18.190000000000001,19.972000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1612,-0.47360000000000002,15.2638,0.084169999999999995,12.025,12.981,14.055,15.263999999999999,16.632999999999999,18.190999999999999,19.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1613,-0.47449999999999998,15.263400000000001,0.084180000000000005,12.023999999999999,12.981,14.054,15.263,16.632999999999999,18.190999999999999,19.975000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1614,-0.47539999999999999,15.263,0.084190000000000001,12.023999999999999,12.981,14.054,15.263,16.632000000000001,18.190999999999999,19.975000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1615,-0.47620000000000001,15.262600000000001,0.084199999999999997,12.023999999999999,12.98,14.053000000000001,15.263,16.632000000000001,18.190999999999999,19.975999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1616,-0.47710000000000002,15.2622,0.084220000000000003,12.023,12.978999999999999,14.053000000000001,15.262,16.632000000000001,18.192,19.978000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1617,-0.47799999999999998,15.261799999999999,0.084229999999999999,12.023,12.978999999999999,14.052,15.262,16.632000000000001,18.192,19.978000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1618,-0.47889999999999999,15.2614,0.084239999999999995,12.022,12.978999999999999,14.052,15.260999999999999,16.632000000000001,18.192,19.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1619,-0.4798,15.260999999999999,0.084250000000000005,12.022,12.978,14.051,15.260999999999999,16.632000000000001,18.192,19.98 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1620,-0.48060000000000003,15.2606,0.084269999999999998,12.021000000000001,12.977,14.051,15.260999999999999,16.631,18.193000000000001,19.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1621,-0.48149999999999998,15.260199999999999,0.084279999999999994,12.021000000000001,12.977,14.05,15.26,16.631,18.193000000000001,19.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1622,-0.4824,15.2598,0.084290000000000004,12.021000000000001,12.977,14.05,15.26,16.631,18.193000000000001,19.983000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1623,-0.48330000000000001,15.259399999999999,0.084309999999999996,12.02,12.976000000000001,14.048999999999999,15.259,16.631,18.193999999999999,19.984999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1624,-0.48420000000000002,15.259,0.084320000000000006,12.02,12.975,14.048999999999999,15.259,16.631,18.193999999999999,19.986000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1625,-0.48509999999999998,15.258599999999999,0.084330000000000002,12.019,12.975,14.048,15.259,16.631,18.193999999999999,19.986999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1626,-0.48599999999999999,15.2582,0.084339999999999998,12.019,12.975,14.048,15.257999999999999,16.63,18.193999999999999,19.986999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1627,-0.4869,15.257899999999999,0.084360000000000004,12.018000000000001,12.974,14.047000000000001,15.257999999999999,16.631,18.195,19.989000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1628,-0.48770000000000002,15.2575,0.084370000000000001,12.018000000000001,12.974,14.047000000000001,15.257999999999999,16.63,18.195,19.989999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1629,-0.48859999999999998,15.257099999999999,0.084379999999999997,12.018000000000001,12.973000000000001,14.045999999999999,15.257,16.63,18.195,19.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1630,-0.48949999999999999,15.2567,0.084390000000000007,12.016999999999999,12.973000000000001,14.045999999999999,15.257,16.63,18.196000000000002,19.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1631,-0.4904,15.2563,0.084409999999999999,12.016999999999999,12.972,14.045,15.256,16.63,18.196000000000002,19.992999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1632,-0.49130000000000001,15.2559,0.084419999999999995,12.016,12.972,14.045,15.256,16.63,18.196000000000002,19.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1633,-0.49220000000000003,15.2555,0.084430000000000005,12.016,12.971,14.044,15.256,16.629000000000001,18.196999999999999,19.995000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1634,-0.49309999999999998,15.255100000000001,0.084440000000000001,12.016,12.971,14.044,15.255000000000001,16.629000000000001,18.196999999999999,19.995999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1635,-0.49399999999999999,15.2547,0.084459999999999993,12.015000000000001,12.97,14.042999999999999,15.255000000000001,16.629000000000001,18.196999999999999,19.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1636,-0.49490000000000001,15.254300000000001,0.084470000000000003,12.015000000000001,12.97,14.042999999999999,15.254,16.629000000000001,18.196999999999999,19.998000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1637,-0.49580000000000002,15.254,0.08448,12.013999999999999,12.968999999999999,14.042,15.254,16.629000000000001,18.198,19.998999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1638,-0.49680000000000002,15.2536,0.084500000000000006,12.013999999999999,12.968999999999999,14.042,15.254,16.629000000000001,18.198,20.001000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1639,-0.49769999999999998,15.2532,0.084510000000000002,12.013,12.968,14.041,15.253,16.629000000000001,18.199000000000002,20.001000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1640,-0.49859999999999999,15.252800000000001,0.084519999999999998,12.013,12.968,14.041,15.253,16.628,18.199000000000002,20.001999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1641,-0.4995,15.2524,0.084529999999999994,12.013,12.967000000000001,14.04,15.252000000000001,16.628,18.199000000000002,20.003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1642,-0.50039999999999996,15.252000000000001,0.08455,12.012,12.967000000000001,14.04,15.252000000000001,16.628,18.2,20.004999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1643,-0.50129999999999997,15.2516,0.084559999999999996,12.012,12.965999999999999,14.039,15.252000000000001,16.628,18.2,20.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1644,-0.50219999999999998,15.251300000000001,0.084570000000000006,12.010999999999999,12.965999999999999,14.039,15.250999999999999,16.628,18.2,20.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1645,-0.50309999999999999,15.2509,0.084589999999999999,12.010999999999999,12.965,14.038,15.250999999999999,16.628,18.201000000000001,20.007999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1646,-0.504,15.250500000000001,0.084599999999999995,12.01,12.965,14.038,15.25,16.628,18.201000000000001,20.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1647,-0.505,15.2501,0.084610000000000005,12.01,12.964,14.038,15.25,16.626999999999999,18.201000000000001,20.010000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1648,-0.50590000000000002,15.249700000000001,0.084620000000000001,12.01,12.964,14.037000000000001,15.25,16.626999999999999,18.201000000000001,20.010999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1649,-0.50680000000000003,15.2494,0.084640000000000007,12.009,12.962999999999999,14.037000000000001,15.249000000000001,16.626999999999999,18.202000000000002,20.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1650,-0.50770000000000004,15.249000000000001,0.084650000000000003,12.009,12.962999999999999,14.036,15.249000000000001,16.626999999999999,18.202000000000002,20.013000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1651,-0.50870000000000004,15.2486,0.084659999999999999,12.009,12.962999999999999,14.036,15.249000000000001,16.626999999999999,18.202000000000002,20.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1652,-0.50960000000000005,15.248200000000001,0.084680000000000005,12.007999999999999,12.962,14.035,15.247999999999999,16.626999999999999,18.202999999999999,20.015999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1653,-0.51049999999999995,15.2478,0.084690000000000001,12.007999999999999,12.961,14.035,15.247999999999999,16.626999999999999,18.202999999999999,20.016999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1654,-0.51139999999999997,15.2475,0.084699999999999998,12.007,12.961,14.034000000000001,15.247999999999999,16.626999999999999,18.202999999999999,20.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1655,-0.51239999999999997,15.2471,0.084709999999999994,12.007,12.961,14.034000000000001,15.247,16.626000000000001,18.204000000000001,20.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1656,-0.51329999999999998,15.246700000000001,0.08473,12.006,12.96,14.032999999999999,15.247,16.626000000000001,18.204000000000001,20.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1657,-0.51419999999999999,15.2463,0.084739999999999996,12.006,12.96,14.032999999999999,15.246,16.626000000000001,18.204000000000001,20.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1658,-0.5151,15.246,0.084750000000000006,12.006,12.959,14.032,15.246,16.626000000000001,18.204999999999998,20.021999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1659,-0.5161,15.2456,0.084769999999999998,12.005000000000001,12.959,14.032,15.246,16.626000000000001,18.204999999999998,20.024000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1660,-0.51700000000000002,15.245200000000001,0.084779999999999994,12.005000000000001,12.958,14.031000000000001,15.244999999999999,16.626000000000001,18.204999999999998,20.024000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1661,-0.51800000000000002,15.2448,0.084790000000000004,12.005000000000001,12.958,14.031000000000001,15.244999999999999,16.626000000000001,18.206,20.024999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1662,-0.51890000000000003,15.2445,0.0848,12.004,12.957000000000001,14.03,15.244,16.626000000000001,18.206,20.026 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1663,-0.51980000000000004,15.2441,0.084820000000000007,12.004,12.957000000000001,14.03,15.244,16.626000000000001,18.207000000000001,20.027999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1664,-0.52080000000000004,15.2437,0.084830000000000003,12.003,12.956,14.029,15.244,16.625,18.207000000000001,20.029 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1665,-0.52170000000000005,15.2433,0.084839999999999999,12.003,12.956,14.029,15.243,16.625,18.207000000000001,20.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1666,-0.52270000000000005,15.243,0.084860000000000005,12.002000000000001,12.955,14.028,15.243,16.625,18.207999999999998,20.032 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1667,-0.52359999999999995,15.242599999999999,0.084870000000000001,12.002000000000001,12.955,14.028,15.243,16.625,18.207999999999998,20.032 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1668,-0.52449999999999997,15.2422,0.084879999999999997,12.002000000000001,12.955,14.028,15.242000000000001,16.625,18.207999999999998,20.033000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1669,-0.52549999999999997,15.241899999999999,0.084900000000000003,12.000999999999999,12.954000000000001,14.026999999999999,15.242000000000001,16.625,18.209,20.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1670,-0.52639999999999998,15.2415,0.084909999999999999,12.000999999999999,12.954000000000001,14.026999999999999,15.242000000000001,16.625,18.209,20.036000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1671,-0.52739999999999998,15.241099999999999,0.084919999999999995,12.000999999999999,12.952999999999999,14.026,15.241,16.623999999999999,18.209,20.036999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1672,-0.52829999999999999,15.2408,0.084930000000000005,12,12.952999999999999,14.026,15.241,16.623999999999999,18.21,20.038 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1673,-0.52929999999999999,15.240399999999999,0.084949999999999998,12,12.952,14.025,15.24,16.623999999999999,18.21,20.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1674,-0.5302,15.24,0.084959999999999994,11.999000000000001,12.952,14.025,15.24,16.623999999999999,18.21,20.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1675,-0.53120000000000001,15.239699999999999,0.084970000000000004,11.999000000000001,12.951000000000001,14.023999999999999,15.24,16.623999999999999,18.210999999999999,20.042000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1676,-0.53210000000000002,15.2393,0.084989999999999996,11.999000000000001,12.951000000000001,14.023999999999999,15.239000000000001,16.623999999999999,18.210999999999999,20.042999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1677,-0.53310000000000002,15.238899999999999,0.085000000000000006,11.997999999999999,12.95,14.023,15.239000000000001,16.623999999999999,18.212,20.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1678,-0.53410000000000002,15.2386,0.085010000000000002,11.997999999999999,12.95,14.023,15.239000000000001,16.623999999999999,18.212,20.045000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1679,-0.53500000000000003,15.238200000000001,0.085029999999999994,11.997,12.949,14.022,15.238,16.623999999999999,18.212,20.047000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1680,-0.53600000000000003,15.2378,0.085040000000000004,11.997,12.949,14.022,15.238,16.623999999999999,18.213000000000001,20.047999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1681,-0.53690000000000004,15.237500000000001,0.085050000000000001,11.997,12.949,14.022,15.238,16.623000000000001,18.213000000000001,20.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1682,-0.53790000000000004,15.2371,0.085059999999999997,11.996,12.948,14.021000000000001,15.237,16.623000000000001,18.213000000000001,20.05 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1683,-0.53890000000000005,15.236800000000001,0.085080000000000003,11.996,12.948,14.021000000000001,15.237,16.623000000000001,18.213999999999999,20.050999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1684,-0.53979999999999995,15.2364,0.085089999999999999,11.996,12.946999999999999,14.02,15.236000000000001,16.623000000000001,18.213999999999999,20.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1685,-0.54079999999999995,15.236000000000001,0.085099999999999995,11.994999999999999,12.946999999999999,14.02,15.236000000000001,16.623000000000001,18.213999999999999,20.053000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1686,-0.54179999999999995,15.2357,0.085120000000000001,11.994999999999999,12.946,14.019,15.236000000000001,16.623000000000001,18.215,20.055 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1687,-0.54269999999999996,15.235300000000001,0.085129999999999997,11.994,12.946,14.019,15.234999999999999,16.623000000000001,18.215,20.056000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1688,-0.54369999999999996,15.234999999999999,0.085139999999999993,11.994,12.945,14.018000000000001,15.234999999999999,16.623000000000001,18.216000000000001,20.056999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1689,-0.54469999999999996,15.2346,0.08516,11.994,12.945,14.018000000000001,15.234999999999999,16.623000000000001,18.216000000000001,20.059000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1690,-0.54559999999999997,15.2342,0.085169999999999996,11.993,12.944000000000001,14.016999999999999,15.234,16.622,18.216000000000001,20.059999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1691,-0.54659999999999997,15.2339,0.085180000000000006,11.993,12.944000000000001,14.016999999999999,15.234,16.622,18.216999999999999,20.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1692,-0.54759999999999998,15.233499999999999,0.085199999999999998,11.992000000000001,12.943,14.016,15.234,16.622,18.216999999999999,20.062000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1693,-0.54859999999999998,15.2332,0.085209999999999994,11.992000000000001,12.943,14.016,15.233000000000001,16.622,18.218,20.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1694,-0.54949999999999999,15.232799999999999,0.085220000000000004,11.992000000000001,12.943,14.016,15.233000000000001,16.622,18.218,20.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1695,-0.55049999999999999,15.2325,0.085239999999999996,11.991,12.942,14.015000000000001,15.231999999999999,16.622,18.219000000000001,20.065999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1696,-0.55149999999999999,15.232100000000001,0.085250000000000006,11.991,12.942,14.015000000000001,15.231999999999999,16.622,18.219000000000001,20.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1697,-0.55249999999999999,15.2318,0.085260000000000002,11.991,12.941000000000001,14.013999999999999,15.231999999999999,16.622,18.219000000000001,20.068000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1698,-0.55349999999999999,15.231400000000001,0.085269999999999999,11.99,12.941000000000001,14.013999999999999,15.231,16.622,18.22,20.068999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1699,-0.5544,15.2311,0.085290000000000005,11.99,12.94,14.013,15.231,16.622,18.22,20.071000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1700,-0.5554,15.230700000000001,0.085300000000000001,11.99,12.94,14.013,15.231,16.622,18.22,20.071999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1701,-0.55640000000000001,15.230399999999999,0.085309999999999997,11.989000000000001,12.94,14.012,15.23,16.620999999999999,18.221,20.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1702,-0.55740000000000001,15.23,0.085330000000000003,11.989000000000001,12.939,14.012,15.23,16.620999999999999,18.221,20.074999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1703,-0.55840000000000001,15.229699999999999,0.085339999999999999,11.989000000000001,12.939,14.012,15.23,16.620999999999999,18.222000000000001,20.076000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1704,-0.55940000000000001,15.2293,0.085349999999999995,11.988,12.938000000000001,14.010999999999999,15.228999999999999,16.620999999999999,18.222000000000001,20.077000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1705,-0.56040000000000001,15.228999999999999,0.085370000000000001,11.988,12.938000000000001,14.010999999999999,15.228999999999999,16.620999999999999,18.222999999999999,20.079000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1706,-0.56140000000000001,15.2286,0.085379999999999998,11.987,12.936999999999999,14.01,15.228999999999999,16.620999999999999,18.222999999999999,20.079999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1707,-0.56230000000000002,15.228300000000001,0.085389999999999994,11.987,12.936999999999999,14.01,15.228,16.620999999999999,18.222999999999999,20.081 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1708,-0.56330000000000002,15.2279,0.08541,11.987,12.936,14.009,15.228,16.620999999999999,18.224,20.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1709,-0.56430000000000002,15.227600000000001,0.085419999999999996,11.986000000000001,12.936,14.009,15.228,16.620999999999999,18.224,20.084 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1710,-0.56530000000000002,15.2272,0.085430000000000006,11.986000000000001,12.936,14.007999999999999,15.227,16.620999999999999,18.225000000000001,20.085000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1711,-0.56630000000000003,15.226900000000001,0.085449999999999998,11.984999999999999,12.935,14.007999999999999,15.227,16.620999999999999,18.225000000000001,20.085999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1712,-0.56730000000000003,15.2265,0.085459999999999994,11.984999999999999,12.935,14.007,15.226000000000001,16.620999999999999,18.225000000000001,20.087 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1713,-0.56830000000000003,15.2262,0.085470000000000004,11.984999999999999,12.933999999999999,14.007,15.226000000000001,16.62,18.225999999999999,20.088999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1714,-0.56930000000000003,15.2258,0.085489999999999997,11.984,12.933999999999999,14.006,15.226000000000001,16.62,18.225999999999999,20.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1715,-0.57030000000000003,15.2255,0.085500000000000007,11.984,12.933,14.006,15.226000000000001,16.62,18.227,20.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1716,-0.57130000000000003,15.225199999999999,0.085510000000000003,11.984,12.933,14.006,15.225,16.62,18.227,20.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1717,-0.57230000000000003,15.2248,0.085529999999999995,11.983000000000001,12.932,14.005000000000001,15.225,16.62,18.228000000000002,20.094000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1718,-0.57330000000000003,15.224500000000001,0.085540000000000005,11.983000000000001,12.932,14.005000000000001,15.224,16.62,18.228000000000002,20.094999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1719,-0.57430000000000003,15.2241,0.085550000000000001,11.983000000000001,12.932,14.004,15.224,16.62,18.228000000000002,20.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1720,-0.57540000000000002,15.223800000000001,0.085569999999999993,11.981999999999999,12.930999999999999,14.004,15.224,16.62,18.228999999999999,20.097999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1721,-0.57640000000000002,15.2235,0.085580000000000003,11.981999999999999,12.930999999999999,14.003,15.224,16.62,18.23,20.099 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1722,-0.57740000000000002,15.223100000000001,0.085589999999999999,11.981999999999999,12.93,14.003,15.223000000000001,16.62,18.23,20.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1723,-0.57840000000000003,15.222799999999999,0.085610000000000006,11.981,12.93,14.003,15.223000000000001,16.62,18.231000000000002,20.102 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1724,-0.57940000000000003,15.2224,0.085620000000000002,11.981,12.929,14.002000000000001,15.222,16.62,18.231000000000002,20.103000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1725,-0.58040000000000003,15.222099999999999,0.085629999999999998,11.981,12.929,14.002000000000001,15.222,16.62,18.231000000000002,20.103999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1726,-0.58140000000000003,15.2218,0.085650000000000004,11.98,12.928000000000001,14.000999999999999,15.222,16.62,18.231999999999999,20.106000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1727,-0.58240000000000003,15.221399999999999,0.08566,11.98,12.928000000000001,14.000999999999999,15.221,16.619,18.231999999999999,20.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1728,-0.58350000000000002,15.2211,0.085669999999999996,11.98,12.928000000000001,14,15.221,16.619,18.231999999999999,20.108000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1729,-0.58450000000000002,15.220800000000001,0.085690000000000002,11.978999999999999,12.927,14,15.221,16.619,18.233000000000001,20.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1730,-0.58550000000000002,15.2204,0.085699999999999998,11.978999999999999,12.927,13.999000000000001,15.22,16.619,18.233000000000001,20.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1731,-0.58650000000000002,15.2201,0.085709999999999995,11.978999999999999,12.926,13.999000000000001,15.22,16.619,18.234000000000002,20.111999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1732,-0.58750000000000002,15.219799999999999,0.085730000000000001,11.978,12.926,13.999000000000001,15.22,16.619,18.234999999999999,20.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1733,-0.58860000000000001,15.2194,0.085739999999999997,11.978,12.926,13.997999999999999,15.218999999999999,16.619,18.234999999999999,20.114999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1734,-0.58960000000000001,15.219099999999999,0.085750000000000007,11.978,12.925000000000001,13.997999999999999,15.218999999999999,16.619,18.234999999999999,20.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1735,-0.59060000000000001,15.2188,0.085769999999999999,11.977,12.925000000000001,13.997,15.218999999999999,16.619,18.236000000000001,20.117999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1736,-0.59160000000000001,15.218400000000001,0.085779999999999995,11.977,12.923999999999999,13.997,15.218,16.619,18.236000000000001,20.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1737,-0.5927,15.2181,0.085790000000000005,11.977,12.923999999999999,13.996,15.218,16.619,18.236999999999998,20.120999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1738,-0.59370000000000001,15.2178,0.085809999999999997,11.976000000000001,12.923,13.996,15.218,16.619,18.236999999999998,20.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1739,-0.59470000000000001,15.217499999999999,0.085819999999999994,11.976000000000001,12.923,13.996,15.218,16.619,18.238,20.123999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1740,-0.5958,15.2171,0.085830000000000004,11.976000000000001,12.923,13.994999999999999,15.217000000000001,16.619,18.238,20.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1741,-0.5968,15.216799999999999,0.085849999999999996,11.975,12.922000000000001,13.994999999999999,15.217000000000001,16.619,18.239000000000001,20.126999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1742,-0.5978,15.2165,0.085860000000000006,11.975,12.922000000000001,13.994,15.215999999999999,16.619,18.239000000000001,20.128 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1743,-0.59889999999999999,15.216200000000001,0.085870000000000002,11.975,12.920999999999999,13.994,15.215999999999999,16.619,18.239000000000001,20.129000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1744,-0.59989999999999999,15.2158,0.085889999999999994,11.974,12.920999999999999,13.993,15.215999999999999,16.617999999999999,18.239999999999998,20.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1745,-0.60089999999999999,15.2155,0.085900000000000004,11.974,12.920999999999999,13.993,15.215999999999999,16.617999999999999,18.239999999999998,20.132000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1746,-0.60199999999999998,15.215199999999999,0.08591,11.974,12.92,13.993,15.215,16.617999999999999,18.241,20.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1747,-0.60299999999999998,15.2149,0.085930000000000006,11.973000000000001,12.92,13.992000000000001,15.215,16.617999999999999,18.242000000000001,20.135000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1748,-0.60399999999999998,15.214499999999999,0.085940000000000003,11.973000000000001,12.919,13.992000000000001,15.214,16.617999999999999,18.242000000000001,20.135999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1749,-0.60509999999999997,15.2142,0.085949999999999999,11.973000000000001,12.919,13.991,15.214,16.617999999999999,18.242000000000001,20.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1750,-0.60609999999999997,15.213900000000001,0.085970000000000005,11.972,12.917999999999999,13.991,15.214,16.617999999999999,18.242999999999999,20.138999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1751,-0.60719999999999996,15.2136,0.085980000000000001,11.972,12.917999999999999,13.991,15.214,16.617999999999999,18.242999999999999,20.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1752,-0.60819999999999996,15.2133,0.085989999999999997,11.972,12.917999999999999,13.99,15.212999999999999,16.617999999999999,18.244,20.140999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1753,-0.60929999999999995,15.212999999999999,0.086010000000000003,11.971,12.917,13.99,15.212999999999999,16.617999999999999,18.245000000000001,20.143000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1754,-0.61029999999999995,15.2126,0.086019999999999999,11.971,12.917,13.989000000000001,15.212999999999999,16.617999999999999,18.245000000000001,20.143999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1755,-0.61140000000000005,15.212300000000001,0.086029999999999995,11.971,12.917,13.989000000000001,15.212,16.617999999999999,18.245000000000001,20.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1756,-0.61240000000000006,15.212,0.086050000000000001,11.97,12.916,13.988,15.212,16.617999999999999,18.245999999999999,20.148 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1757,-0.61350000000000005,15.2117,0.086059999999999998,11.97,12.916,13.988,15.212,16.617999999999999,18.245999999999999,20.149000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1758,-0.61450000000000005,15.211399999999999,0.086080000000000004,11.968999999999999,12.914999999999999,13.988,15.211,16.617999999999999,18.247,20.151 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1759,-0.61560000000000004,15.2111,0.08609,11.968999999999999,12.914999999999999,13.987,15.211,16.617999999999999,18.248000000000001,20.152000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1760,-0.61660000000000004,15.210800000000001,0.086099999999999996,11.968999999999999,12.914,13.987,15.211,16.617999999999999,18.248000000000001,20.152999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1761,-0.61770000000000003,15.2104,0.086120000000000002,11.968,12.914,13.986000000000001,15.21,16.617999999999999,18.248999999999999,20.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1762,-0.61870000000000003,15.210100000000001,0.086129999999999998,11.968,12.914,13.986000000000001,15.21,16.617999999999999,18.248999999999999,20.155999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1763,-0.61980000000000002,15.2098,0.086139999999999994,11.968,12.913,13.984999999999999,15.21,16.617999999999999,18.248999999999999,20.157 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1764,-0.62090000000000001,15.2095,0.08616,11.968,12.913,13.984999999999999,15.21,16.617999999999999,18.25,20.158999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1765,-0.62190000000000001,15.209199999999999,0.086169999999999997,11.967000000000001,12.912000000000001,13.984999999999999,15.209,16.617999999999999,18.251000000000001,20.161000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1766,-0.623,15.2089,0.086180000000000007,11.967000000000001,12.912000000000001,13.984,15.209,16.617999999999999,18.251000000000001,20.161999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1767,-0.62409999999999999,15.208600000000001,0.086199999999999999,11.967000000000001,12.912000000000001,13.984,15.209,16.617999999999999,18.251999999999999,20.164000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1768,-0.62509999999999999,15.208299999999999,0.086209999999999995,11.965999999999999,12.911,13.983000000000001,15.208,16.617999999999999,18.251999999999999,20.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1769,-0.62619999999999998,15.208,0.086220000000000005,11.965999999999999,12.911,13.983000000000001,15.208,16.617999999999999,18.251999999999999,20.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1770,-0.62729999999999997,15.207700000000001,0.086239999999999997,11.965999999999999,12.91,13.983000000000001,15.208,16.617999999999999,18.253,20.167999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1771,-0.62829999999999997,15.2074,0.086249999999999993,11.965999999999999,12.91,13.981999999999999,15.207000000000001,16.617999999999999,18.254000000000001,20.169 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1772,-0.62939999999999996,15.207100000000001,0.086260000000000003,11.965,12.91,13.981999999999999,15.207000000000001,16.617000000000001,18.254000000000001,20.170999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1773,-0.63049999999999995,15.206799999999999,0.086279999999999996,11.965,12.909000000000001,13.981,15.207000000000001,16.617999999999999,18.254999999999999,20.172999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1774,-0.63149999999999995,15.2065,0.086290000000000006,11.965,12.909000000000001,13.981,15.206,16.617000000000001,18.254999999999999,20.173999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1775,-0.63260000000000005,15.206099999999999,0.086300000000000002,11.964,12.907999999999999,13.981,15.206,16.617000000000001,18.256,20.175000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1776,-0.63370000000000004,15.2058,0.086319999999999994,11.964,12.907999999999999,13.98,15.206,16.617000000000001,18.256,20.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1777,-0.63480000000000003,15.205500000000001,0.086330000000000004,11.964,12.907999999999999,13.98,15.206,16.617000000000001,18.257000000000001,20.178000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1778,-0.63580000000000003,15.2052,0.08634,11.962999999999999,12.907,13.978999999999999,15.205,16.617000000000001,18.257000000000001,20.178999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1779,-0.63690000000000002,15.2049,0.086360000000000006,11.962999999999999,12.907,13.978999999999999,15.205,16.617000000000001,18.257999999999999,20.181000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1780,-0.63800000000000001,15.204700000000001,0.086370000000000002,11.962999999999999,12.907,13.978999999999999,15.205,16.617000000000001,18.257999999999999,20.183 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1781,-0.6391,15.2044,0.086389999999999995,11.962,12.906000000000001,13.978,15.204000000000001,16.617000000000001,18.259,20.184999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1782,-0.64019999999999999,15.2041,0.086400000000000005,11.962,12.906000000000001,13.978,15.204000000000001,16.617000000000001,18.260000000000002,20.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1783,-0.64119999999999999,15.203799999999999,0.086410000000000001,11.962,12.904999999999999,13.977,15.204000000000001,16.617000000000001,18.260000000000002,20.187000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1784,-0.64229999999999998,15.2035,0.086430000000000007,11.962,12.904999999999999,13.977,15.204000000000001,16.617000000000001,18.260999999999999,20.189 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1785,-0.64339999999999997,15.203200000000001,0.086440000000000003,11.961,12.904999999999999,13.977,15.202999999999999,16.617000000000001,18.260999999999999,20.190999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1786,-0.64449999999999996,15.2029,0.086449999999999999,11.961,12.904,13.976000000000001,15.202999999999999,16.617000000000001,18.262,20.192 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1787,-0.64559999999999995,15.2026,0.086470000000000005,11.961,12.904,13.976000000000001,15.202999999999999,16.617000000000001,18.262,20.193999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1788,-0.64670000000000005,15.202299999999999,0.086480000000000001,11.96,12.903,13.975,15.202,16.617000000000001,18.263000000000002,20.195 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1789,-0.64780000000000004,15.202,0.086489999999999997,11.96,12.903,13.975,15.202,16.617000000000001,18.263000000000002,20.196000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1790,-0.64880000000000004,15.201700000000001,0.086510000000000004,11.96,12.903,13.975,15.202,16.617000000000001,18.263999999999999,20.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1791,-0.64990000000000003,15.2014,0.08652,11.96,12.901999999999999,13.974,15.201000000000001,16.617000000000001,18.263999999999999,20.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1792,-0.65100000000000002,15.2011,0.086529999999999996,11.959,12.901999999999999,13.974,15.201000000000001,16.617000000000001,18.265000000000001,20.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1793,-0.65210000000000001,15.200799999999999,0.086550000000000002,11.959,12.901,13.973000000000001,15.201000000000001,16.617000000000001,18.265999999999998,20.202999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1794,-0.6532,15.2005,0.086559999999999998,11.959,12.901,13.973000000000001,15.2,16.617000000000001,18.265999999999998,20.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1795,-0.65429999999999999,15.2003,0.086569999999999994,11.959,12.901,13.973000000000001,15.2,16.617000000000001,18.266999999999999,20.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1796,-0.65539999999999998,15.2,0.08659,11.958,12.9,13.972,15.2,16.617000000000001,18.266999999999999,20.207999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1797,-0.65649999999999997,15.1997,0.086599999999999996,11.958,12.9,13.972,15.2,16.617000000000001,18.268000000000001,20.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1798,-0.65759999999999996,15.199400000000001,0.086620000000000003,11.957000000000001,12.9,13.971,15.199,16.617000000000001,18.268999999999998,20.210999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1799,-0.65869999999999995,15.1991,0.086629999999999999,11.957000000000001,12.898999999999999,13.971,15.199,16.617000000000001,18.268999999999998,20.212 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1800,-0.65980000000000005,15.1988,0.086639999999999995,11.957000000000001,12.898999999999999,13.971,15.199,16.617000000000001,18.268999999999998,20.213999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1801,-0.66090000000000004,15.198499999999999,0.086660000000000001,11.957000000000001,12.898,13.97,15.198,16.617000000000001,18.27,20.216000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1802,-0.66200000000000003,15.1983,0.086669999999999997,11.956,12.898,13.97,15.198,16.617000000000001,18.271000000000001,20.216999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1803,-0.66310000000000002,15.198,0.086679999999999993,11.956,12.898,13.97,15.198,16.617000000000001,18.271000000000001,20.218 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1804,-0.66420000000000001,15.197699999999999,0.086699999999999999,11.956,12.897,13.968999999999999,15.198,16.617000000000001,18.271999999999998,20.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1805,-0.6653,15.1974,0.086709999999999995,11.956,12.897,13.968999999999999,15.196999999999999,16.617000000000001,18.271999999999998,20.222000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1806,-0.66649999999999998,15.197100000000001,0.086720000000000005,11.955,12.897,13.968,15.196999999999999,16.617000000000001,18.273,20.222999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1807,-0.66759999999999997,15.196899999999999,0.086739999999999998,11.955,12.896000000000001,13.968,15.196999999999999,16.617000000000001,18.274000000000001,20.225000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1808,-0.66869999999999996,15.1966,0.086749999999999994,11.955,12.896000000000001,13.968,15.196999999999999,16.617000000000001,18.274000000000001,20.225999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1809,-0.66979999999999995,15.196300000000001,0.086760000000000004,11.955,12.896000000000001,13.967000000000001,15.196,16.617000000000001,18.274999999999999,20.228000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1810,-0.67090000000000005,15.196,0.086779999999999996,11.954000000000001,12.895,13.967000000000001,15.196,16.617000000000001,18.274999999999999,20.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1811,-0.67200000000000004,15.1958,0.086790000000000006,11.954000000000001,12.895,13.967000000000001,15.196,16.617000000000001,18.276,20.231000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1812,-0.67310000000000003,15.195499999999999,0.086800000000000002,11.954000000000001,12.895,13.965999999999999,15.196,16.617000000000001,18.276,20.233000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1813,-0.67430000000000001,15.1952,0.086819999999999994,11.952999999999999,12.894,13.965999999999999,15.195,16.617000000000001,18.277000000000001,20.234999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1814,-0.6754,15.194900000000001,0.086830000000000004,11.952999999999999,12.894,13.965,15.195,16.617000000000001,18.277999999999999,20.236000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1815,-0.67649999999999999,15.194699999999999,0.086849999999999997,11.952999999999999,12.893000000000001,13.965,15.195,16.617000000000001,18.279,20.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1816,-0.67759999999999998,15.1944,0.086860000000000007,11.952999999999999,12.893000000000001,13.965,15.194000000000001,16.617000000000001,18.279,20.239999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1817,-0.67869999999999997,15.194100000000001,0.086870000000000003,11.952999999999999,12.893000000000001,13.964,15.194000000000001,16.617000000000001,18.279,20.241 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1818,-0.67989999999999995,15.1938,0.086889999999999995,11.952,12.891999999999999,13.964,15.194000000000001,16.617000000000001,18.28,20.242999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1819,-0.68100000000000005,15.1936,0.086900000000000005,11.952,12.891999999999999,13.964,15.194000000000001,16.617000000000001,18.280999999999999,20.244 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1820,-0.68210000000000004,15.193300000000001,0.086910000000000001,11.952,12.891999999999999,13.962999999999999,15.193,16.617000000000001,18.280999999999999,20.245999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1821,-0.68330000000000002,15.193,0.086929999999999993,11.951000000000001,12.891,13.962999999999999,15.193,16.617000000000001,18.282,20.248000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1822,-0.68440000000000001,15.1928,0.086940000000000003,11.951000000000001,12.891,13.962,15.193,16.617000000000001,18.283000000000001,20.248999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1823,-0.6855,15.192500000000001,0.08695,11.951000000000001,12.891,13.962,15.192,16.617000000000001,18.283000000000001,20.251000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1824,-0.68659999999999999,15.1922,0.086970000000000006,11.951000000000001,12.89,13.962,15.192,16.617999999999999,18.283999999999999,20.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1825,-0.68779999999999997,15.192,0.086980000000000002,11.951000000000001,12.89,13.961,15.192,16.617999999999999,18.283999999999999,20.254000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1826,-0.68889999999999996,15.191700000000001,0.086989999999999998,11.95,12.89,13.961,15.192,16.617000000000001,18.285,20.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1827,-0.69,15.1914,0.087010000000000004,11.95,12.888999999999999,13.96,15.191000000000001,16.617999999999999,18.286000000000001,20.257999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1828,-0.69120000000000004,15.1912,0.08702,11.95,12.888999999999999,13.96,15.191000000000001,16.617999999999999,18.286000000000001,20.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1829,-0.69230000000000003,15.190899999999999,0.087040000000000006,11.949,12.888,13.96,15.191000000000001,16.617999999999999,18.286999999999999,20.260999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1830,-0.69350000000000001,15.1906,0.087050000000000002,11.949,12.888,13.959,15.191000000000001,16.617999999999999,18.288,20.263000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1831,-0.6946,15.1904,0.087059999999999998,11.949,12.888,13.959,15.19,16.617999999999999,18.288,20.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1832,-0.69569999999999999,15.190099999999999,0.087080000000000005,11.949,12.887,13.959,15.19,16.617999999999999,18.289000000000001,20.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1833,-0.69689999999999996,15.1899,0.087090000000000001,11.948,12.887,13.958,15.19,16.617999999999999,18.289000000000001,20.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1834,-0.69799999999999995,15.1896,0.087099999999999997,11.948,12.887,13.958,15.19,16.617999999999999,18.29,20.268999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1835,-0.69920000000000004,15.189299999999999,0.087120000000000003,11.948,12.885999999999999,13.958,15.189,16.617999999999999,18.291,20.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1836,-0.70030000000000003,15.1891,0.087129999999999999,11.948,12.885999999999999,13.957000000000001,15.189,16.617999999999999,18.291,20.273 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1837,-0.70150000000000001,15.188800000000001,0.087139999999999995,11.948,12.885999999999999,13.957000000000001,15.189,16.617999999999999,18.292000000000002,20.274000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1838,-0.7026,15.188599999999999,0.087160000000000001,11.946999999999999,12.885,13.957000000000001,15.189,16.617999999999999,18.292999999999999,20.276 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1839,-0.70379999999999998,15.1883,0.087169999999999997,11.946999999999999,12.885,13.956,15.188000000000001,16.617999999999999,18.292999999999999,20.277999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1840,-0.70489999999999997,15.188000000000001,0.087179999999999994,11.946999999999999,12.885,13.956,15.188000000000001,16.617999999999999,18.294,20.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1841,-0.70609999999999995,15.187799999999999,0.0872,11.946,12.884,13.955,15.188000000000001,16.617999999999999,18.295000000000002,20.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1842,-0.70720000000000005,15.1875,0.087209999999999996,11.946,12.884,13.955,15.188000000000001,16.617999999999999,18.295000000000002,20.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1843,-0.70840000000000003,15.1873,0.087220000000000006,11.946,12.884,13.955,15.186999999999999,16.617999999999999,18.295999999999999,20.283999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1844,-0.70950000000000002,15.186999999999999,0.087239999999999998,11.946,12.882999999999999,13.954000000000001,15.186999999999999,16.617999999999999,18.295999999999999,20.286999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1845,-0.7107,15.1868,0.087249999999999994,11.946,12.882999999999999,13.954000000000001,15.186999999999999,16.617999999999999,18.297000000000001,20.288 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1846,-0.71179999999999999,15.186500000000001,0.08727,11.945,12.882999999999999,13.954000000000001,15.186,16.617999999999999,18.297999999999998,20.29 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1847,-0.71299999999999997,15.186299999999999,0.087279999999999996,11.945,12.882999999999999,13.952999999999999,15.186,16.617999999999999,18.297999999999998,20.292000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1848,-0.71409999999999996,15.186,0.087290000000000006,11.945,12.882,13.952999999999999,15.186,16.617999999999999,18.298999999999999,20.292999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1849,-0.71530000000000005,15.1858,0.087309999999999999,11.945,12.882,13.952999999999999,15.186,16.617999999999999,18.3,20.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1850,-0.71650000000000003,15.185499999999999,0.087319999999999995,11.944000000000001,12.882,13.952,15.186,16.617999999999999,18.3,20.297000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1851,-0.71760000000000002,15.1853,0.087330000000000005,11.944000000000001,12.881,13.952,15.185,16.617999999999999,18.300999999999998,20.297999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1852,-0.71879999999999999,15.185,0.087349999999999997,11.944000000000001,12.881,13.952,15.185,16.619,18.302,20.300999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1853,-0.72,15.184799999999999,0.087359999999999993,11.944000000000001,12.881,13.951000000000001,15.185,16.619,18.302,20.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1854,-0.72109999999999996,15.1845,0.087370000000000003,11.944000000000001,12.88,13.951000000000001,15.183999999999999,16.619,18.303000000000001,20.303999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1855,-0.72230000000000005,15.1843,0.087389999999999995,11.943,12.88,13.951000000000001,15.183999999999999,16.619,18.303999999999998,20.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/body-mass-index-for-age/expanded-tables/bfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1856,-0.72350000000000003,15.183999999999999,0.087400000000000005,11.943,12.88,13.95,15.183999999999999,16.619,18.303999999999998,20.306999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/bmi-for-age-(5-19-years)/bmi-boys-z-who-2007-exp.xlsx,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,male,month,228,-0.84189999999999998,22.188300000000002,0.12948000000000001,15.855,17.553999999999998,19.622,22.187999999999999,25.449000000000002,29.716000000000001,35.515999999999998 diff --git a/priv/growth/indicators/head_circumference_for_age.csv b/priv/growth/indicators/head_circumference_for_age.csv new file mode 100644 index 0000000..4b98616 --- /dev/null +++ b/priv/growth/indicators/head_circumference_for_age.csv @@ -0,0 +1,3865 @@ +source,category,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,male,month,60,1,50.737499999999997,0.02946,46.3,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/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,0,1,33.878700000000002,0.034959999999999998,30.326000000000001,31.51,32.694000000000003,33.878999999999998,35.063000000000002,36.247,37.432000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1,1,33.975000000000001,0.034790000000000001,30.428999999999998,31.611000000000001,32.792999999999999,33.975000000000001,35.156999999999996,36.338999999999999,37.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,2,1,34.071399999999997,0.034610000000000002,30.533999999999999,31.713000000000001,32.892000000000003,34.070999999999998,35.250999999999998,36.43,37.609000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,3,1,34.167700000000004,0.034439999999999998,30.637,31.814,32.991,34.167999999999999,35.344000000000001,36.521000000000001,37.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,4,1,34.264000000000003,0.034259999999999999,30.742000000000001,31.916,33.090000000000003,34.264000000000003,35.438000000000002,36.612000000000002,37.786000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,5,1,34.360300000000002,0.034090000000000002,30.846,32.018000000000001,33.189,34.36,35.531999999999996,36.703000000000003,37.874000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,6,1,34.456600000000002,0.033910000000000003,30.951000000000001,32.119999999999997,33.287999999999997,34.457000000000001,35.625,36.792999999999999,37.962000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,7,1,34.552900000000001,0.033739999999999999,31.055,32.220999999999997,33.387,34.552999999999997,35.719000000000001,36.884999999999998,38.049999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,8,1,34.649299999999997,0.03356,31.161000000000001,32.323999999999998,33.485999999999997,34.649000000000001,35.811999999999998,36.975000000000001,38.137999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,9,1,34.745600000000003,0.033390000000000003,31.265000000000001,32.424999999999997,33.585000000000001,34.746000000000002,35.905999999999999,37.066000000000003,38.225999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,10,1,34.841900000000003,0.033210000000000003,31.370999999999999,32.527999999999999,33.685000000000002,34.841999999999999,35.999000000000002,37.155999999999999,38.313000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,11,1,34.938200000000002,0.03304,31.475000000000001,32.628999999999998,33.783999999999999,34.938000000000002,36.093000000000004,37.247,38.401000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,12,1,35.034500000000001,0.03286,31.581,32.731999999999999,33.883000000000003,35.033999999999999,36.186,37.337000000000003,38.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,13,1,35.130899999999997,0.032689999999999997,31.686,32.834000000000003,33.981999999999999,35.131,36.279000000000003,37.427999999999997,38.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,14,1,35.227200000000003,0.032509999999999997,31.791,32.936999999999998,34.082000000000001,35.226999999999997,36.372,37.518000000000001,38.662999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,15,1,35.321100000000001,0.032480000000000002,31.879000000000001,33.027000000000001,34.173999999999999,35.320999999999998,36.468000000000004,37.616,38.762999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,16,1,35.412999999999997,0.03245,31.966000000000001,33.115000000000002,34.264000000000003,35.412999999999997,36.561999999999998,37.710999999999999,38.86 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,17,1,35.502800000000001,0.032419999999999997,32.049999999999997,33.201000000000001,34.351999999999997,35.503,36.654000000000003,37.805,38.956000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,18,1,35.590600000000002,0.032390000000000002,32.131999999999998,33.284999999999997,34.438000000000002,35.591000000000001,36.743000000000002,37.896000000000001,39.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,19,1,35.676600000000001,0.03236,32.213000000000001,33.368000000000002,34.521999999999998,35.677,36.831000000000003,37.985999999999997,39.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,20,1,35.7607,0.032329999999999998,32.292000000000002,33.448,34.604999999999997,35.761000000000003,36.917000000000002,38.073,39.228999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,21,1,35.843000000000004,0.032309999999999998,32.369,33.527000000000001,34.685000000000002,35.843000000000004,37.000999999999998,38.158999999999999,39.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,22,1,35.923699999999997,0.032280000000000003,32.445,33.603999999999999,34.764000000000003,35.923999999999999,37.082999999999998,38.243000000000002,39.402999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,23,1,36.002800000000001,0.032259999999999997,32.518000000000001,33.68,34.841000000000001,36.003,37.164000000000001,38.326000000000001,39.487000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,24,1,36.080300000000001,0.032230000000000002,32.591999999999999,33.755000000000003,34.917000000000002,36.08,37.243000000000002,38.405999999999999,39.569000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,25,1,36.156300000000002,0.032210000000000003,32.662999999999997,33.826999999999998,34.991999999999997,36.155999999999999,37.320999999999998,38.484999999999999,39.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,26,1,36.230899999999998,0.032190000000000003,32.731999999999999,33.898000000000003,35.064999999999998,36.231000000000002,37.396999999999998,38.563000000000002,39.729999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,27,1,36.304200000000002,0.032169999999999997,32.799999999999997,33.968000000000004,35.136000000000003,36.304000000000002,37.472000000000001,38.64,39.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,28,1,36.376100000000001,0.032149999999999998,32.868000000000002,34.036999999999999,35.207000000000001,36.375999999999998,37.545999999999999,38.715000000000003,39.884999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,29,1,36.446800000000003,0.032129999999999999,32.933999999999997,34.104999999999997,35.276000000000003,36.447000000000003,37.618000000000002,38.789000000000001,39.96 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,30,1,36.516300000000001,0.03211,32.999000000000002,34.170999999999999,35.344000000000001,36.515999999999998,37.689,38.860999999999997,40.033999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,31,1,36.584600000000002,0.03209,33.063000000000002,34.237000000000002,35.411000000000001,36.585000000000001,37.759,38.933,40.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,32,1,36.651899999999998,0.032070000000000001,33.125999999999998,34.301000000000002,35.475999999999999,36.652000000000001,37.826999999999998,39.003,40.177999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,33,1,36.718000000000004,0.032059999999999998,33.186,34.363999999999997,35.540999999999997,36.718000000000004,37.895000000000003,39.072000000000003,40.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,34,1,36.783099999999997,0.032039999999999999,33.247999999999998,34.426000000000002,35.604999999999997,36.783000000000001,37.962000000000003,39.14,40.319000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,35,1,36.847200000000001,0.03202,33.308,34.488,35.667000000000002,36.847000000000001,38.027000000000001,39.207000000000001,40.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,36,1,36.910400000000003,0.032000000000000001,33.366999999999997,34.548000000000002,35.728999999999999,36.909999999999997,38.091999999999999,39.273000000000003,40.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,37,1,36.9726,0.031989999999999998,33.423999999999999,34.606999999999999,35.79,36.972999999999999,38.155000000000001,39.338000000000001,40.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,38,1,37.033999999999999,0.031969999999999998,33.481999999999999,34.665999999999997,35.85,37.033999999999999,38.218000000000004,39.402000000000001,40.585999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,39,1,37.094499999999996,0.031960000000000002,33.537999999999997,34.722999999999999,35.908999999999999,37.094000000000001,38.28,39.466000000000001,40.651000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,40,1,37.1541,0.031940000000000003,33.594000000000001,34.780999999999999,35.966999999999999,37.154000000000003,38.341000000000001,39.527999999999999,40.713999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,41,1,37.213000000000001,0.03193,33.648000000000003,34.837000000000003,36.024999999999999,37.213000000000001,38.401000000000003,39.588999999999999,40.777999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,42,1,37.271099999999997,0.031910000000000001,33.703000000000003,34.892000000000003,36.082000000000001,37.271000000000001,38.46,39.65,40.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,43,1,37.328400000000002,0.031899999999999998,33.756,34.947000000000003,36.137999999999998,37.328000000000003,38.518999999999998,39.71,40.901000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,44,1,37.385100000000001,0.031879999999999999,33.81,35.000999999999998,36.192999999999998,37.384999999999998,38.576999999999998,39.768999999999998,40.960999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,45,1,37.441099999999999,0.031870000000000002,33.860999999999997,35.055,36.247999999999998,37.441000000000003,38.634,39.828000000000003,41.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,46,1,37.496400000000001,0.031859999999999999,33.911999999999999,35.106999999999999,36.302,37.496000000000002,38.691000000000003,39.886000000000003,41.08 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,47,1,37.551000000000002,0.03184,33.963999999999999,35.159999999999997,36.354999999999997,37.551000000000002,38.747,39.942,41.137999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,48,1,37.604999999999997,0.031829999999999997,34.014000000000003,35.210999999999999,36.408000000000001,37.604999999999997,38.802,39.999000000000002,41.195999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,49,1,37.6584,0.031820000000000001,34.064,35.262,36.46,37.658000000000001,38.856999999999999,40.055,41.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,50,1,37.711199999999998,0.031800000000000002,34.113999999999997,35.313000000000002,36.512,37.710999999999999,38.909999999999997,40.11,41.308999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,51,1,37.763500000000001,0.031789999999999999,34.161999999999999,35.362000000000002,36.563000000000002,37.764000000000003,38.963999999999999,40.164999999999999,41.365000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,52,1,37.815199999999997,0.031780000000000003,34.21,35.411999999999999,36.613,37.814999999999998,39.017000000000003,40.219000000000001,41.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,53,1,37.866300000000003,0.03177,34.256999999999998,35.46,36.662999999999997,37.866,39.069000000000003,40.271999999999998,41.475000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,54,1,37.916899999999998,0.031759999999999997,34.304000000000002,35.508000000000003,36.713000000000001,37.917000000000002,39.121000000000002,40.325000000000003,41.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,55,1,37.967100000000002,0.031739999999999997,34.351999999999997,35.557000000000002,36.762,37.966999999999999,39.171999999999997,40.377000000000002,41.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,56,1,38.0167,0.031730000000000001,34.398000000000003,35.603999999999999,36.81,38.017000000000003,39.222999999999999,40.429000000000002,41.636000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,57,1,38.065800000000003,0.031719999999999998,34.442999999999998,35.651000000000003,36.857999999999997,38.066000000000003,39.273000000000003,40.481000000000002,41.688000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,58,1,38.1145,0.031710000000000002,34.488999999999997,35.697000000000003,36.905999999999999,38.113999999999997,39.323,40.531999999999996,41.74 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,59,1,38.162799999999997,0.031699999999999999,34.533999999999999,35.743000000000002,36.953000000000003,38.162999999999997,39.372999999999998,40.582000000000001,41.792000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,60,1,38.210599999999999,0.031690000000000003,34.578000000000003,35.789000000000001,37,38.210999999999999,39.420999999999999,40.631999999999998,41.843000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,61,1,38.258000000000003,0.03168,34.622,35.834000000000003,37.045999999999999,38.258000000000003,39.47,40.682000000000002,41.893999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,62,1,38.305,0.031669999999999997,34.665999999999997,35.878999999999998,37.091999999999999,38.305,39.518000000000001,40.731000000000002,41.944000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,63,1,38.351599999999998,0.031660000000000001,34.709000000000003,35.923000000000002,37.137,38.351999999999997,39.566000000000003,40.78,41.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,64,1,38.397799999999997,0.031640000000000001,34.753,35.968000000000004,37.183,38.398000000000003,39.613,40.828000000000003,42.042999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,65,1,38.4437,0.031629999999999998,34.795999999999999,36.012,37.228000000000002,38.444000000000003,39.659999999999997,40.875999999999998,42.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,66,1,38.489100000000001,0.031620000000000002,34.838000000000001,36.055,37.271999999999998,38.488999999999997,39.706000000000003,40.923000000000002,42.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,67,1,38.534199999999998,0.031609999999999999,34.880000000000003,36.097999999999999,37.316000000000003,38.533999999999999,39.752000000000002,40.97,42.188000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,68,1,38.578899999999997,0.031600000000000003,34.921999999999997,36.140999999999998,37.36,38.579000000000001,39.798000000000002,41.017000000000003,42.235999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,69,1,38.6233,0.03159,34.963000000000001,36.183,37.402999999999999,38.622999999999998,39.843000000000004,41.064,42.283999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,70,1,38.667299999999997,0.031579999999999997,35.003999999999998,36.225000000000001,37.445999999999998,38.667000000000002,39.887999999999998,41.11,42.331000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,71,1,38.710999999999999,0.031579999999999997,35.043999999999997,36.265999999999998,37.488999999999997,38.710999999999999,39.933,41.155999999999999,42.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,72,1,38.754300000000001,0.031570000000000001,35.084000000000003,36.307000000000002,37.530999999999999,38.753999999999998,39.978000000000002,41.201000000000001,42.424999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,73,1,38.7973,0.031559999999999998,35.124000000000002,36.347999999999999,37.573,38.796999999999997,40.021999999999998,41.246000000000002,42.470999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,74,1,38.840000000000003,0.031550000000000002,35.164000000000001,36.389000000000003,37.615000000000002,38.840000000000003,40.064999999999998,41.290999999999997,42.515999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,75,1,38.882300000000001,0.031539999999999999,35.203000000000003,36.43,37.655999999999999,38.881999999999998,40.109000000000002,41.335000000000001,42.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,76,1,38.924399999999999,0.031530000000000002,35.243000000000002,36.47,37.697000000000003,38.923999999999999,40.152000000000001,41.378999999999998,42.606000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,77,1,38.966099999999997,0.031519999999999999,35.280999999999999,36.51,37.738,38.966000000000001,40.194000000000003,41.423000000000002,42.651000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,78,1,39.0075,0.031510000000000003,35.32,36.548999999999999,37.777999999999999,39.008000000000003,40.237000000000002,41.466000000000001,42.695 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,79,1,39.048699999999997,0.0315,35.359000000000002,36.588999999999999,37.819000000000003,39.048999999999999,40.279000000000003,41.509,42.738999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,80,1,39.089500000000001,0.031489999999999997,35.396999999999998,36.628,37.859000000000002,39.090000000000003,40.32,41.551000000000002,42.781999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,81,1,39.130099999999999,0.031489999999999997,35.433,36.665999999999997,37.898000000000003,39.130000000000003,40.362000000000002,41.594999999999999,42.826999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,82,1,39.170400000000001,0.031480000000000001,35.470999999999997,36.704000000000001,37.936999999999998,39.17,40.402999999999999,41.637,42.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,83,1,39.2104,0.031469999999999998,35.509,36.741999999999997,37.975999999999999,39.21,40.444000000000003,41.677999999999997,42.911999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,84,1,39.250100000000003,0.031460000000000002,35.545999999999999,36.78,38.015000000000001,39.25,40.484999999999999,41.72,42.954999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,85,1,39.2896,0.031449999999999999,35.582999999999998,36.817999999999998,38.054000000000002,39.29,40.524999999999999,41.761000000000003,42.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,86,1,39.328800000000001,0.031440000000000003,35.619,36.856000000000002,38.091999999999999,39.329000000000001,40.564999999999998,41.802,43.037999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,87,1,39.367699999999999,0.031440000000000003,35.655000000000001,36.892000000000003,38.130000000000003,39.368000000000002,40.604999999999997,41.843000000000004,43.081000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,88,1,39.406399999999998,0.03143,35.691000000000003,36.929000000000002,38.167999999999999,39.405999999999999,40.645000000000003,41.883000000000003,43.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,89,1,39.444800000000001,0.031419999999999997,35.726999999999997,36.966000000000001,38.204999999999998,39.445,40.683999999999997,41.923999999999999,43.162999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,90,1,39.482999999999997,0.03141,35.762999999999998,37.003,38.243000000000002,39.482999999999997,40.722999999999999,41.963000000000001,43.203000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,91,1,39.521000000000001,0.031399999999999997,35.798000000000002,37.039000000000001,38.28,39.521000000000001,40.762,42.003,43.244 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,92,1,39.558700000000002,0.031399999999999997,35.832000000000001,37.073999999999998,38.317,39.558999999999997,40.801000000000002,42.042999999999999,43.284999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,93,1,39.596200000000003,0.031390000000000001,35.866999999999997,37.11,38.353000000000002,39.595999999999997,40.838999999999999,42.082000000000001,43.325000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,94,1,39.633499999999998,0.031379999999999998,35.902000000000001,37.146000000000001,38.39,39.634,40.877000000000002,42.121000000000002,43.365000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,95,1,39.670499999999997,0.031370000000000002,35.936999999999998,37.182000000000002,38.426000000000002,39.67,40.914999999999999,42.158999999999999,43.404000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,96,1,39.707299999999996,0.031370000000000002,35.97,37.216000000000001,38.462000000000003,39.707000000000001,40.953000000000003,42.198999999999998,43.444000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,97,1,39.7438,0.031359999999999999,36.005000000000003,37.250999999999998,38.497,39.744,40.99,42.237000000000002,43.482999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,98,1,39.780200000000001,0.031350000000000003,36.039000000000001,37.286000000000001,38.533000000000001,39.78,41.027000000000001,42.274000000000001,43.521999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,99,1,39.816299999999998,0.03134,36.073,37.320999999999998,38.567999999999998,39.816000000000003,41.064,42.311999999999998,43.56 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,100,1,39.852200000000003,0.03134,36.104999999999997,37.353999999999999,38.603000000000002,39.851999999999997,41.100999999999999,42.35,43.598999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,101,1,39.887900000000002,0.031329999999999997,36.139000000000003,37.389000000000003,38.637999999999998,39.887999999999998,41.137999999999998,42.387,43.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,102,1,39.923299999999998,0.031320000000000001,36.171999999999997,37.423000000000002,38.673000000000002,39.923000000000002,41.173999999999999,42.423999999999999,43.673999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,103,1,39.958599999999997,0.031309999999999998,36.204999999999998,37.456000000000003,38.707000000000001,39.959000000000003,41.21,42.460999999999999,43.712000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,104,1,39.993600000000001,0.031309999999999998,36.237000000000002,37.488999999999997,38.741,39.994,41.246000000000002,42.497999999999998,43.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,105,1,40.028399999999998,0.031300000000000001,36.270000000000003,37.523000000000003,38.776000000000003,40.027999999999999,41.280999999999999,42.533999999999999,43.786999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,106,1,40.063000000000002,0.031289999999999998,36.302,37.555999999999997,38.808999999999997,40.063000000000002,41.317,42.57,43.823999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,107,1,40.0974,0.031289999999999998,36.332999999999998,37.588000000000001,38.843000000000004,40.097000000000001,41.351999999999997,42.606999999999999,43.860999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,108,1,40.131599999999999,0.031280000000000002,36.366,37.621000000000002,38.875999999999998,40.131999999999998,41.387,42.642000000000003,43.898000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,109,1,40.165599999999998,0.031269999999999999,36.398000000000003,37.654000000000003,38.909999999999997,40.165999999999997,41.421999999999997,42.677999999999997,43.933999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,110,1,40.199399999999997,0.031269999999999999,36.427999999999997,37.685000000000002,38.942,40.198999999999998,41.456000000000003,42.713000000000001,43.970999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,111,1,40.232999999999997,0.031260000000000003,36.46,37.718000000000004,38.975000000000001,40.232999999999997,41.491,42.747999999999998,44.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,112,1,40.266399999999997,0.03125,36.491,37.75,39.008000000000003,40.265999999999998,41.524999999999999,42.783000000000001,44.040999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,113,1,40.299500000000002,0.03125,36.521000000000001,37.780999999999999,39.04,40.299999999999997,41.558999999999997,42.817999999999998,44.078000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,114,1,40.332500000000003,0.03124,36.552999999999997,37.813000000000002,39.073,40.332000000000001,41.591999999999999,42.851999999999997,44.112000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,115,1,40.365299999999998,0.031230000000000001,36.582999999999998,37.844000000000001,39.104999999999997,40.365000000000002,41.625999999999998,42.887,44.146999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,116,1,40.3979,0.031230000000000001,36.613,37.875,39.136000000000003,40.398000000000003,41.66,42.920999999999999,44.183 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,117,1,40.430300000000003,0.031220000000000001,36.643999999999998,37.905999999999999,39.167999999999999,40.43,41.692999999999998,42.954999999999998,44.216999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,118,1,40.462499999999999,0.031210000000000002,36.673999999999999,37.936999999999998,39.200000000000003,40.462000000000003,41.725000000000001,42.988,44.250999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,119,1,40.494599999999998,0.031210000000000002,36.703000000000003,37.966999999999999,39.231000000000002,40.494999999999997,41.758000000000003,43.021999999999998,44.286000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,120,1,40.526400000000002,0.031199999999999999,36.732999999999997,37.997999999999998,39.262,40.526000000000003,41.790999999999997,43.055,44.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,121,1,40.558100000000003,0.031199999999999999,36.762,38.027000000000001,39.292999999999999,40.558,41.823999999999998,43.088999999999999,44.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,122,1,40.589500000000001,0.031189999999999999,36.792000000000002,38.058,39.323999999999998,40.590000000000003,41.854999999999997,43.121000000000002,44.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,123,1,40.620800000000003,0.031179999999999999,36.820999999999998,38.088000000000001,39.353999999999999,40.621000000000002,41.887,43.154000000000003,44.42 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,124,1,40.651899999999998,0.031179999999999999,36.848999999999997,38.116999999999997,39.384,40.652000000000001,41.918999999999997,43.186999999999998,44.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,125,1,40.682899999999997,0.03117,36.878999999999998,38.146999999999998,39.414999999999999,40.683,41.951000000000001,43.219000000000001,44.487000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,126,1,40.7136,0.03117,36.905999999999999,38.176000000000002,39.445,40.713999999999999,41.982999999999997,43.252000000000002,44.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,127,1,40.744199999999999,0.03116,36.935000000000002,38.204999999999998,39.475000000000001,40.744,42.014000000000003,43.283000000000001,44.552999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,128,1,40.7746,0.031150000000000001,36.963999999999999,38.234000000000002,39.503999999999998,40.774999999999999,42.045000000000002,43.314999999999998,44.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,129,1,40.8048,0.031150000000000001,36.991999999999997,38.262999999999998,39.533999999999999,40.805,42.076000000000001,43.347000000000001,44.618000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,130,1,40.834800000000001,0.031140000000000001,37.020000000000003,38.292000000000002,39.563000000000002,40.835000000000001,42.106000000000002,43.378,44.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,131,1,40.864699999999999,0.031140000000000001,37.046999999999997,38.32,39.591999999999999,40.865000000000002,42.137,43.41,44.682000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,132,1,40.894399999999997,0.031130000000000001,37.075000000000003,38.347999999999999,39.621000000000002,40.893999999999998,42.167000000000002,43.44,44.713999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,133,1,40.923900000000003,0.031119999999999998,37.103000000000002,38.377000000000002,39.65,40.923999999999999,42.197000000000003,43.470999999999997,44.744999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,134,1,40.953299999999999,0.031119999999999998,37.130000000000003,38.404000000000003,39.679000000000002,40.953000000000003,42.228000000000002,43.502000000000002,44.777000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,135,1,40.982399999999998,0.031109999999999999,37.158000000000001,38.432000000000002,39.707000000000001,40.981999999999999,42.256999999999998,43.531999999999996,44.807000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,136,1,41.011499999999998,0.031109999999999999,37.183999999999997,38.46,39.735999999999997,41.012,42.286999999999999,43.563000000000002,44.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,137,1,41.040300000000002,0.031099999999999999,37.210999999999999,38.488,39.764000000000003,41.04,42.317,43.593000000000004,44.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,138,1,41.069000000000003,0.031099999999999999,37.237000000000002,38.515000000000001,39.792000000000002,41.069000000000003,42.345999999999997,43.622999999999998,44.901000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,139,1,41.097499999999997,0.03109,37.264000000000003,38.542000000000002,39.82,41.097999999999999,42.375,43.652999999999999,44.930999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,140,1,41.125900000000001,0.03108,37.290999999999997,38.57,39.847999999999999,41.125999999999998,42.404000000000003,43.682000000000002,44.96 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,141,1,41.1541,0.03108,37.317,38.595999999999997,39.875,41.154000000000003,42.433,43.712000000000003,44.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,142,1,41.182099999999998,0.03107,37.344000000000001,38.622999999999998,39.902999999999999,41.182000000000002,42.462000000000003,43.741,45.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,143,1,41.21,0.03107,37.369,38.649000000000001,39.93,41.21,42.49,43.771000000000001,45.051000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,144,1,41.2378,0.031060000000000001,37.395000000000003,38.676000000000002,39.957000000000001,41.238,42.518999999999998,43.798999999999999,45.08 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,145,1,41.265300000000003,0.031060000000000001,37.42,38.701999999999998,39.984000000000002,41.265000000000001,42.546999999999997,43.829000000000001,45.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,146,1,41.292700000000004,0.031050000000000001,37.445999999999998,38.728000000000002,40.011000000000003,41.292999999999999,42.575000000000003,43.856999999999999,45.139000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,147,1,41.32,0.031050000000000001,37.470999999999997,38.753999999999998,40.036999999999999,41.32,42.603000000000002,43.886000000000003,45.168999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,148,1,41.347099999999998,0.031040000000000002,37.497,38.78,40.064,41.347000000000001,42.631,43.914000000000001,45.197000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,149,1,41.374099999999999,0.031040000000000002,37.521000000000001,38.805999999999997,40.090000000000003,41.374000000000002,42.658000000000001,43.942999999999998,45.226999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,150,1,41.4009,0.031029999999999999,37.546999999999997,38.832000000000001,40.116,41.401000000000003,42.686,43.97,45.255000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,151,1,41.427500000000002,0.031029999999999999,37.570999999999998,38.856999999999999,40.142000000000003,41.427999999999997,42.713000000000001,43.997999999999998,45.283999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,152,1,41.454000000000001,0.031019999999999999,37.595999999999997,38.881999999999998,40.167999999999999,41.454000000000001,42.74,44.026000000000003,45.311999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,153,1,41.480400000000003,0.031019999999999999,37.619999999999997,38.906999999999996,40.194000000000003,41.48,42.767000000000003,44.054000000000002,45.341000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,154,1,41.506599999999999,0.031009999999999999,37.645000000000003,38.932000000000002,40.219000000000001,41.506999999999998,42.793999999999997,44.081000000000003,45.368000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,155,1,41.532699999999998,0.031009999999999999,37.668999999999997,38.957000000000001,40.244999999999997,41.533000000000001,42.820999999999998,44.109000000000002,45.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,156,1,41.558599999999998,0.031,37.694000000000003,38.981999999999999,40.270000000000003,41.558999999999997,42.847000000000001,44.134999999999998,45.423999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,157,1,41.584400000000002,0.03099,37.718000000000004,39.006999999999998,40.295999999999999,41.584000000000003,42.872999999999998,44.161999999999999,45.451000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,158,1,41.61,0.03099,37.741999999999997,39.030999999999999,40.320999999999998,41.61,42.899000000000001,44.189,45.478000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,159,1,41.6355,0.030980000000000001,37.765999999999998,39.055999999999997,40.345999999999997,41.636000000000003,42.924999999999997,44.215000000000003,45.505000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,160,1,41.660899999999998,0.030980000000000001,37.789000000000001,39.08,40.369999999999997,41.661000000000001,42.951999999999998,44.241999999999997,45.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,161,1,41.686100000000003,0.030980000000000001,37.811999999999998,39.103000000000002,40.395000000000003,41.686,42.978000000000002,44.268999999999998,45.56 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,162,1,41.711199999999998,0.030970000000000001,37.835999999999999,39.128,40.418999999999997,41.710999999999999,43.003,44.295000000000002,45.587000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,163,1,41.736199999999997,0.030970000000000001,37.857999999999997,39.151000000000003,40.444000000000003,41.735999999999997,43.029000000000003,44.320999999999998,45.613999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,164,1,41.761000000000003,0.030960000000000001,37.881999999999998,39.174999999999997,40.468000000000004,41.761000000000003,43.054000000000002,44.347000000000001,45.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,165,1,41.785699999999999,0.030960000000000001,37.905000000000001,39.198,40.491999999999997,41.786000000000001,43.079000000000001,44.372999999999998,45.667000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,166,1,41.810200000000002,0.030949999999999998,37.927999999999997,39.222000000000001,40.515999999999998,41.81,43.103999999999999,44.398000000000003,45.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,167,1,41.834600000000002,0.030949999999999998,37.950000000000003,39.244999999999997,40.54,41.835000000000001,43.128999999999998,44.423999999999999,45.719000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,168,1,41.858899999999998,0.030939999999999999,37.973999999999997,39.268999999999998,40.564,41.859000000000002,43.154000000000003,44.448999999999998,45.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,169,1,41.883099999999999,0.030939999999999999,37.996000000000002,39.290999999999997,40.587000000000003,41.883000000000003,43.179000000000002,44.475000000000001,45.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,170,1,41.9071,0.030929999999999999,38.018999999999998,39.314999999999998,40.610999999999997,41.906999999999996,43.203000000000003,44.499000000000002,45.795999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,171,1,41.930999999999997,0.030929999999999999,38.04,39.337000000000003,40.634,41.930999999999997,43.228000000000002,44.524999999999999,45.822000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,172,1,41.954799999999999,0.03092,38.063000000000002,39.36,40.658000000000001,41.954999999999998,43.252000000000002,44.548999999999999,45.847000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,173,1,41.978400000000001,0.03092,38.084000000000003,39.381999999999998,40.68,41.978000000000002,43.276000000000003,44.573999999999998,45.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,174,1,42.001899999999999,0.03091,38.106999999999999,39.405000000000001,40.704000000000001,42.002000000000002,43.3,44.597999999999999,45.896999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,175,1,42.025300000000001,0.03091,38.128,39.427,40.725999999999999,42.024999999999999,43.323999999999998,44.622999999999998,45.921999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,176,1,42.048499999999997,0.0309,38.151000000000003,39.450000000000003,40.749000000000002,42.048000000000002,43.347999999999999,44.646999999999998,45.945999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,177,1,42.0717,0.0309,38.171999999999997,39.472000000000001,40.771999999999998,42.072000000000003,43.372,44.671999999999997,45.972000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,178,1,42.094700000000003,0.030890000000000001,38.194000000000003,39.494,40.793999999999997,42.094999999999999,43.395000000000003,44.695,45.996000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,179,1,42.117600000000003,0.030890000000000001,38.215000000000003,39.515999999999998,40.817,42.118000000000002,43.418999999999997,44.72,46.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,180,1,42.140300000000003,0.030890000000000001,38.234999999999999,39.536999999999999,40.838999999999999,42.14,43.442,44.744,46.045000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,181,1,42.162999999999997,0.030880000000000001,38.256999999999998,39.558999999999997,40.860999999999997,42.162999999999997,43.465000000000003,44.767000000000003,46.069000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,182,1,42.185499999999998,0.030880000000000001,38.277000000000001,39.58,40.883000000000003,42.186,43.488,44.790999999999997,46.094000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,183,1,42.207900000000002,0.030870000000000002,38.298999999999999,39.601999999999997,40.905000000000001,42.207999999999998,43.511000000000003,44.814,46.116999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,184,1,42.230200000000004,0.030870000000000002,38.319000000000003,39.622999999999998,40.927,42.23,43.533999999999999,44.837000000000003,46.140999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,185,1,42.252299999999998,0.030859999999999999,38.341000000000001,39.643999999999998,40.948,42.252000000000002,43.555999999999997,44.86,46.164000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,186,1,42.2744,0.030859999999999999,38.360999999999997,39.664999999999999,40.97,42.274000000000001,43.579000000000001,44.884,46.188000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,187,1,42.296300000000002,0.030849999999999999,38.381999999999998,39.686999999999998,40.991,42.295999999999999,43.600999999999999,44.905999999999999,46.210999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,188,1,42.318100000000001,0.030849999999999999,38.402000000000001,39.707000000000001,41.012999999999998,42.317999999999998,43.624000000000002,44.929000000000002,46.234999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,189,1,42.339799999999997,0.030849999999999999,38.420999999999999,39.726999999999997,41.033999999999999,42.34,43.646000000000001,44.951999999999998,46.258000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,190,1,42.361400000000003,0.030839999999999999,38.442,39.749000000000002,41.055,42.360999999999997,43.667999999999999,44.973999999999997,46.280999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,191,1,42.382899999999999,0.030839999999999999,38.462000000000003,39.768999999999998,41.076000000000001,42.383000000000003,43.69,44.997,46.304000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,192,1,42.404200000000003,0.03083,38.481999999999999,39.79,41.097000000000001,42.404000000000003,43.712000000000003,45.018999999999998,46.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,193,1,42.4255,0.03083,38.502000000000002,39.81,41.118000000000002,42.426000000000002,43.732999999999997,45.040999999999997,46.348999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,194,1,42.446599999999997,0.03082,38.521999999999998,39.83,41.137999999999998,42.447000000000003,43.755000000000003,45.063000000000002,46.371000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,195,1,42.467599999999997,0.03082,38.540999999999997,39.85,41.158999999999999,42.468000000000004,43.776000000000003,45.085000000000001,46.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,196,1,42.488500000000002,0.03082,38.56,39.869999999999997,41.179000000000002,42.488,43.798000000000002,45.106999999999999,46.417000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,197,1,42.509300000000003,0.030810000000000001,38.58,39.89,41.2,42.509,43.819000000000003,45.128999999999998,46.438000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,198,1,42.53,0.030810000000000001,38.598999999999997,39.908999999999999,41.22,42.53,43.84,45.151000000000003,46.460999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,199,1,42.550600000000003,0.030800000000000001,38.619,39.929000000000002,41.24,42.551000000000002,43.860999999999997,45.171999999999997,46.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,200,1,42.571100000000001,0.030800000000000001,38.637999999999998,39.948999999999998,41.26,42.570999999999998,43.881999999999998,45.192999999999998,46.505000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,201,1,42.591500000000003,0.030790000000000001,38.656999999999996,39.969000000000001,41.28,42.591999999999999,43.902999999999999,45.213999999999999,46.526000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,202,1,42.611699999999999,0.030790000000000001,38.676000000000002,39.988,41.3,42.612000000000002,43.923999999999999,45.235999999999997,46.548000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,203,1,42.631900000000002,0.030790000000000001,38.694000000000003,40.006999999999998,41.319000000000003,42.631999999999998,43.945,45.256999999999998,46.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,204,1,42.651899999999998,0.030779999999999998,38.713000000000001,40.026000000000003,41.338999999999999,42.652000000000001,43.965000000000003,45.277999999999999,46.59 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,205,1,42.671900000000001,0.030779999999999998,38.731999999999999,40.045000000000002,41.357999999999997,42.671999999999997,43.984999999999999,45.298999999999999,46.612000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,206,1,42.691699999999997,0.030769999999999999,38.750999999999998,40.064,41.378,42.692,44.005000000000003,45.319000000000003,46.633000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,207,1,42.711500000000001,0.030769999999999999,38.768999999999998,40.082999999999998,41.396999999999998,42.712000000000003,44.026000000000003,45.34,46.654000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,208,1,42.731099999999998,0.030769999999999999,38.786999999999999,40.100999999999999,41.415999999999997,42.731000000000002,44.045999999999999,45.360999999999997,46.676000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,209,1,42.750700000000002,0.030759999999999999,38.805999999999997,40.121000000000002,41.436,42.750999999999998,44.066000000000003,45.381,46.695999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,210,1,42.770099999999999,0.030759999999999999,38.823,40.139000000000003,41.454000000000001,42.77,44.085999999999999,45.401000000000003,46.716999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,211,1,42.789400000000001,0.03075,38.841999999999999,40.158000000000001,41.473999999999997,42.789000000000001,44.104999999999997,45.420999999999999,46.737000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,212,1,42.808700000000002,0.03075,38.86,40.176000000000002,41.491999999999997,42.808999999999997,44.125,45.441000000000003,46.758000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,213,1,42.827800000000003,0.03075,38.877000000000002,40.194000000000003,41.511000000000003,42.828000000000003,44.145000000000003,45.462000000000003,46.779000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,214,1,42.846899999999998,0.03074,38.896000000000001,40.213000000000001,41.53,42.847000000000001,44.164000000000001,45.481000000000002,46.798000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,215,1,42.8658,0.03074,38.912999999999997,40.229999999999997,41.548000000000002,42.866,44.183,45.500999999999998,46.819000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,216,1,42.884599999999999,0.03073,38.930999999999997,40.249000000000002,41.567,42.884999999999998,44.201999999999998,45.52,46.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,217,1,42.903399999999998,0.03073,38.948,40.267000000000003,41.585000000000001,42.902999999999999,44.222000000000001,45.54,46.859000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,218,1,42.921999999999997,0.03073,38.965000000000003,40.283999999999999,41.603000000000002,42.921999999999997,44.241,45.56,46.878999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,219,1,42.940600000000003,0.030720000000000001,38.982999999999997,40.302,41.621000000000002,42.941000000000003,44.26,45.579000000000001,46.898000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,220,1,42.959099999999999,0.030720000000000001,39,40.32,41.639000000000003,42.959000000000003,44.279000000000003,45.598999999999997,46.917999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,221,1,42.977400000000003,0.030720000000000001,39.017000000000003,40.337000000000003,41.656999999999996,42.976999999999997,44.298000000000002,45.618000000000002,46.938000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,222,1,42.995699999999999,0.030710000000000001,39.034999999999997,40.354999999999997,41.674999999999997,42.996000000000002,44.316000000000003,45.636000000000003,46.957000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,223,1,43.0139,0.030710000000000001,39.051000000000002,40.372,41.692999999999998,43.014000000000003,44.335000000000001,45.655999999999999,46.976999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,224,1,43.031999999999996,0.030700000000000002,39.069000000000003,40.39,41.710999999999999,43.031999999999996,44.353000000000002,45.673999999999999,46.994999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,225,1,43.05,0.030700000000000002,39.085000000000001,40.406999999999996,41.728000000000002,43.05,44.372,45.692999999999998,47.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,226,1,43.067900000000002,0.030700000000000002,39.100999999999999,40.423999999999999,41.746000000000002,43.067999999999998,44.39,45.712000000000003,47.033999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,227,1,43.085700000000003,0.030689999999999999,39.119,40.441000000000003,41.762999999999998,43.085999999999999,44.408000000000001,45.73,47.052999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,228,1,43.103400000000001,0.030689999999999999,39.134999999999998,40.457999999999998,41.780999999999999,43.103000000000002,44.426000000000002,45.749000000000002,47.072000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,229,1,43.121099999999998,0.030689999999999999,39.151000000000003,40.473999999999997,41.798000000000002,43.121000000000002,44.444000000000003,45.768000000000001,47.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,230,1,43.138599999999997,0.030679999999999999,39.167999999999999,40.491999999999997,41.814999999999998,43.139000000000003,44.462000000000003,45.786000000000001,47.109000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,231,1,43.156100000000002,0.030679999999999999,39.183999999999997,40.508000000000003,41.832000000000001,43.155999999999999,44.48,45.804000000000002,47.128 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,232,1,43.173400000000001,0.030669999999999999,39.201000000000001,40.524999999999999,41.848999999999997,43.173000000000002,44.497999999999998,45.822000000000003,47.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,233,1,43.1907,0.030669999999999999,39.216999999999999,40.540999999999997,41.866,43.191000000000003,44.515000000000001,45.84,47.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,234,1,43.207900000000002,0.030669999999999999,39.231999999999999,40.558,41.883000000000003,43.207999999999998,44.533000000000001,45.857999999999997,47.183 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,235,1,43.225000000000001,0.03066,39.249000000000002,40.573999999999998,41.9,43.225000000000001,44.55,45.875999999999998,47.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,236,1,43.242100000000001,0.03066,39.265000000000001,40.590000000000003,41.915999999999997,43.241999999999997,44.567999999999998,45.893999999999998,47.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,237,1,43.259,0.03066,39.28,40.606000000000002,41.933,43.259,44.585000000000001,45.911999999999999,47.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,238,1,43.2759,0.03065,39.296999999999997,40.622999999999998,41.948999999999998,43.276000000000003,44.601999999999997,45.929000000000002,47.255000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,239,1,43.2926,0.03065,39.311999999999998,40.639000000000003,41.966000000000001,43.292999999999999,44.62,45.945999999999998,47.273000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,240,1,43.3093,0.03065,39.326999999999998,40.654000000000003,41.981999999999999,43.308999999999997,44.637,45.963999999999999,47.292000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,241,1,43.325899999999997,0.030640000000000001,39.343000000000004,40.670999999999999,41.997999999999998,43.326000000000001,44.652999999999999,45.981000000000002,47.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,242,1,43.342399999999998,0.030640000000000001,39.357999999999997,40.686,42.014000000000003,43.341999999999999,44.67,45.997999999999998,47.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,243,1,43.358899999999998,0.030630000000000001,39.375,40.703000000000003,42.030999999999999,43.359000000000002,44.686999999999998,46.015000000000001,47.343000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,244,1,43.375300000000003,0.030630000000000001,39.39,40.718000000000004,42.046999999999997,43.375,44.704000000000001,46.031999999999996,47.360999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,245,1,43.391500000000001,0.030630000000000001,39.404000000000003,40.732999999999997,42.061999999999998,43.392000000000003,44.720999999999997,46.05,47.378999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,246,1,43.407699999999998,0.030620000000000001,39.42,40.749000000000002,42.079000000000001,43.408000000000001,44.737000000000002,46.066000000000003,47.395000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,247,1,43.423900000000003,0.030620000000000001,39.435000000000002,40.765000000000001,42.094000000000001,43.423999999999999,44.753999999999998,46.082999999999998,47.412999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,248,1,43.439900000000002,0.030620000000000001,39.450000000000003,40.78,42.11,43.44,44.77,46.1,47.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,249,1,43.4559,0.030609999999999998,39.465000000000003,40.795999999999999,42.125999999999998,43.456000000000003,44.786000000000001,46.116,47.445999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,250,1,43.471699999999998,0.030609999999999998,39.479999999999997,40.81,42.140999999999998,43.472000000000001,44.802,46.133000000000003,47.463999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,251,1,43.4876,0.030609999999999998,39.494,40.825000000000003,42.155999999999999,43.488,44.819000000000003,46.15,47.481000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,252,1,43.503300000000003,0.030599999999999999,39.51,40.841000000000001,42.171999999999997,43.503,44.835000000000001,46.165999999999997,47.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,253,1,43.518900000000002,0.030599999999999999,39.524000000000001,40.856000000000002,42.186999999999998,43.518999999999998,44.850999999999999,46.182000000000002,47.514000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,254,1,43.534500000000001,0.030599999999999999,39.537999999999997,40.869999999999997,42.201999999999998,43.533999999999999,44.866999999999997,46.198999999999998,47.530999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,255,1,43.55,0.030589999999999999,39.552999999999997,40.886000000000003,42.218000000000004,43.55,44.881999999999998,46.213999999999999,47.546999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,256,1,43.565399999999997,0.030589999999999999,39.567,40.9,42.232999999999997,43.564999999999998,44.898000000000003,46.231000000000002,47.563000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,257,1,43.580800000000004,0.030589999999999999,39.581000000000003,40.914999999999999,42.247999999999998,43.581000000000003,44.914000000000001,46.247,47.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,258,1,43.5961,0.03058,39.597000000000001,40.93,42.262999999999998,43.595999999999997,44.929000000000002,46.262,47.595999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,259,1,43.6113,0.03058,39.61,40.944000000000003,42.277999999999999,43.610999999999997,44.945,46.279000000000003,47.612000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,260,1,43.626399999999997,0.03058,39.624000000000002,40.957999999999998,42.292000000000002,43.625999999999998,44.96,46.295000000000002,47.628999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,261,1,43.641500000000001,0.03057,39.639000000000003,40.972999999999999,42.307000000000002,43.642000000000003,44.975999999999999,46.31,47.643999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,262,1,43.656399999999998,0.03057,39.652999999999999,40.987000000000002,42.322000000000003,43.655999999999999,44.991,46.326000000000001,47.66 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,263,1,43.671399999999998,0.03057,39.665999999999997,41.000999999999998,42.335999999999999,43.670999999999999,45.006,46.341000000000001,47.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,264,1,43.686199999999999,0.03056,39.680999999999997,41.015999999999998,42.350999999999999,43.686,45.021000000000001,46.356000000000002,47.691000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,265,1,43.701000000000001,0.03056,39.694000000000003,41.03,42.365000000000002,43.701000000000001,45.036999999999999,46.372,47.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,266,1,43.715699999999998,0.03056,39.707999999999998,41.043999999999997,42.38,43.716000000000001,45.052,46.387999999999998,47.723999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,267,1,43.7303,0.030550000000000001,39.722000000000001,41.058,42.393999999999998,43.73,45.066000000000003,46.402000000000001,47.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,268,1,43.744900000000001,0.030550000000000001,39.735999999999997,41.072000000000003,42.408000000000001,43.744999999999997,45.081000000000003,46.417999999999999,47.753999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,269,1,43.759399999999999,0.030550000000000001,39.749000000000002,41.085999999999999,42.423000000000002,43.759,45.095999999999997,46.433,47.77 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,270,1,43.773800000000001,0.030540000000000001,39.762999999999998,41.1,42.436999999999998,43.774000000000001,45.110999999999997,46.448,47.783999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,271,1,43.788200000000003,0.030540000000000001,39.776000000000003,41.113999999999997,42.451000000000001,43.787999999999997,45.125,46.463000000000001,47.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,272,1,43.802500000000002,0.030540000000000001,39.789000000000001,41.127000000000002,42.465000000000003,43.802,45.14,46.478000000000002,47.816000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,273,1,43.816699999999997,0.030530000000000002,39.804000000000002,41.140999999999998,42.478999999999999,43.817,45.154000000000003,46.491999999999997,47.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,274,1,43.8309,0.030530000000000002,39.816000000000003,41.155000000000001,42.493000000000002,43.831000000000003,45.168999999999997,46.506999999999998,47.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,275,1,43.844999999999999,0.030530000000000002,39.829000000000001,41.167999999999999,42.506,43.844999999999999,45.183999999999997,46.521999999999998,47.860999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,276,1,43.859000000000002,0.030519999999999999,39.843000000000004,41.182000000000002,42.52,43.859000000000002,45.198,46.536000000000001,47.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,277,1,43.872999999999998,0.030519999999999999,39.856000000000002,41.195,42.533999999999999,43.872999999999998,45.212000000000003,46.551000000000002,47.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,278,1,43.886899999999997,0.030519999999999999,39.869,41.207999999999998,42.546999999999997,43.887,45.225999999999999,46.566000000000003,47.905000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,279,1,43.900700000000001,0.030509999999999999,39.881999999999998,41.222000000000001,42.561,43.901000000000003,45.24,46.58,47.918999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,280,1,43.914499999999997,0.030509999999999999,39.895000000000003,41.234999999999999,42.575000000000003,43.914000000000001,45.253999999999998,46.594000000000001,47.933999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,281,1,43.928199999999997,0.030509999999999999,39.906999999999996,41.247999999999998,42.588000000000001,43.927999999999997,45.268000000000001,46.609000000000002,47.948999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,282,1,43.941899999999997,0.030499999999999999,39.920999999999999,41.261000000000003,42.601999999999997,43.942,45.281999999999996,46.622,47.963000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,283,1,43.955500000000001,0.030499999999999999,39.933999999999997,41.274000000000001,42.615000000000002,43.956000000000003,45.295999999999999,46.637,47.976999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,284,1,43.969000000000001,0.030499999999999999,39.945999999999998,41.286999999999999,42.628,43.969000000000001,45.31,46.651000000000003,47.991999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,285,1,43.982399999999998,0.03049,39.959000000000003,41.3,42.640999999999998,43.981999999999999,45.323,46.664000000000001,48.005000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,286,1,43.995899999999999,0.03049,39.972000000000001,41.313000000000002,42.654000000000003,43.996000000000002,45.337000000000003,46.679000000000002,48.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,287,1,44.0092,0.03049,39.984000000000002,41.326000000000001,42.667000000000002,44.009,45.350999999999999,46.692999999999998,48.034999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,288,1,44.022500000000001,0.03049,39.996000000000002,41.338000000000001,42.68,44.021999999999998,45.365000000000002,46.707000000000001,48.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,289,1,44.035699999999999,0.03048,40.009,41.350999999999999,42.692999999999998,44.036000000000001,45.378,46.72,48.061999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,290,1,44.048900000000003,0.03048,40.021000000000001,41.363999999999997,42.706000000000003,44.048999999999999,45.392000000000003,46.734000000000002,48.076999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,291,1,44.061999999999998,0.03048,40.033000000000001,41.375999999999998,42.719000000000001,44.061999999999998,45.405000000000001,46.747999999999998,48.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,292,1,44.075099999999999,0.030470000000000001,40.045999999999999,41.389000000000003,42.731999999999999,44.075000000000003,45.417999999999999,46.761000000000003,48.103999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,293,1,44.088000000000001,0.030470000000000001,40.058,41.401000000000003,42.744999999999997,44.088000000000001,45.430999999999997,46.774999999999999,48.118000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,294,1,44.100999999999999,0.030470000000000001,40.07,41.412999999999997,42.756999999999998,44.100999999999999,45.445,46.789000000000001,48.131999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,295,1,44.113900000000001,0.030460000000000001,40.082999999999998,41.426000000000002,42.77,44.113999999999997,45.457999999999998,46.801000000000002,48.145000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,296,1,44.1267,0.030460000000000001,40.094000000000001,41.439,42.783000000000001,44.127000000000002,45.470999999999997,46.814999999999998,48.158999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,297,1,44.139499999999998,0.030460000000000001,40.106000000000002,41.451000000000001,42.795000000000002,44.14,45.484000000000002,46.828000000000003,48.173000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,298,1,44.152200000000001,0.030450000000000001,40.119,41.463000000000001,42.808,44.152000000000001,45.497,46.841000000000001,48.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,299,1,44.1648,0.030450000000000001,40.130000000000003,41.475000000000001,42.82,44.164999999999999,45.51,46.853999999999999,48.198999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,300,1,44.177399999999999,0.030450000000000001,40.142000000000003,41.487000000000002,42.832000000000001,44.177,45.523000000000003,46.868000000000002,48.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,301,1,44.19,0.030450000000000001,40.152999999999999,41.499000000000002,42.844000000000001,44.19,45.536000000000001,46.881,48.226999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,302,1,44.202500000000001,0.030439999999999998,40.165999999999997,41.511000000000003,42.856999999999999,44.201999999999998,45.548000000000002,46.893999999999998,48.238999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,303,1,44.2149,0.030439999999999998,40.177,41.523000000000003,42.869,44.215000000000003,45.561,46.906999999999996,48.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,304,1,44.2273,0.030439999999999998,40.188000000000002,41.534999999999997,42.881,44.226999999999997,45.573999999999998,46.92,48.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,305,1,44.239600000000003,0.030429999999999999,40.201000000000001,41.546999999999997,42.893000000000001,44.24,45.585999999999999,46.932000000000002,48.277999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,306,1,44.251899999999999,0.030429999999999999,40.212000000000003,41.558999999999997,42.905000000000001,44.252000000000002,45.597999999999999,46.945,48.292000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,307,1,44.264099999999999,0.030429999999999999,40.222999999999999,41.57,42.917000000000002,44.264000000000003,45.610999999999997,46.957999999999998,48.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,308,1,44.276299999999999,0.030429999999999999,40.234000000000002,41.582000000000001,42.929000000000002,44.276000000000003,45.624000000000002,46.970999999999997,48.317999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,309,1,44.288400000000003,0.030419999999999999,40.247,41.594000000000001,42.941000000000003,44.287999999999997,45.636000000000003,46.982999999999997,48.33 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,310,1,44.3005,0.030419999999999999,40.258000000000003,41.604999999999997,42.953000000000003,44.3,45.648000000000003,46.996000000000002,48.343000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,311,1,44.3125,0.030419999999999999,40.268999999999998,41.616999999999997,42.965000000000003,44.311999999999998,45.66,47.008000000000003,48.356000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,312,1,44.3245,0.03041,40.280999999999999,41.628999999999998,42.976999999999997,44.323999999999998,45.671999999999997,47.02,48.368000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,313,1,44.336399999999998,0.03041,40.292000000000002,41.64,42.988,44.335999999999999,45.685000000000002,47.033000000000001,48.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,314,1,44.348300000000002,0.03041,40.302,41.651000000000003,43,44.347999999999999,45.697000000000003,47.045999999999999,48.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,315,1,44.360100000000003,0.0304,40.314,41.662999999999997,43.012,44.36,45.709000000000003,47.057000000000002,48.405999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,316,1,44.371899999999997,0.0304,40.325000000000003,41.673999999999999,43.023000000000003,44.372,45.720999999999997,47.07,48.418999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,317,1,44.383600000000001,0.0304,40.335999999999999,41.685000000000002,43.033999999999999,44.384,45.732999999999997,47.082000000000001,48.430999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,318,1,44.395200000000003,0.0304,40.345999999999997,41.695999999999998,43.045999999999999,44.395000000000003,45.744999999999997,47.094000000000001,48.444000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,319,1,44.4069,0.03039,40.357999999999997,41.707999999999998,43.057000000000002,44.406999999999996,45.756,47.106000000000002,48.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,320,1,44.418399999999998,0.03039,40.369,41.719000000000001,43.069000000000003,44.417999999999999,45.768000000000001,47.118000000000002,48.468000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,321,1,44.43,0.03039,40.378999999999998,41.73,43.08,44.43,45.78,47.13,48.481000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,322,1,44.441400000000002,0.030380000000000001,40.390999999999998,41.741,43.091000000000001,44.441000000000003,45.792000000000002,47.142000000000003,48.491999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,323,1,44.4529,0.030380000000000001,40.401000000000003,41.752000000000002,43.101999999999997,44.453000000000003,45.802999999999997,47.154000000000003,48.503999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,324,1,44.464300000000001,0.030380000000000001,40.411999999999999,41.762999999999998,43.113,44.463999999999999,45.814999999999998,47.165999999999997,48.517000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,325,1,44.4756,0.030380000000000001,40.421999999999997,41.773000000000003,43.124000000000002,44.475999999999999,45.826999999999998,47.177999999999997,48.529000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,326,1,44.486899999999999,0.030370000000000001,40.433999999999997,41.784999999999997,43.136000000000003,44.487000000000002,45.838000000000001,47.189,48.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,327,1,44.498100000000001,0.030370000000000001,40.444000000000003,41.795000000000002,43.146999999999998,44.497999999999998,45.85,47.201000000000001,48.552 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,328,1,44.509300000000003,0.030370000000000001,40.454000000000001,41.805999999999997,43.158000000000001,44.509,45.860999999999997,47.213000000000001,48.564999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,329,1,44.520499999999998,0.030370000000000001,40.463999999999999,41.816000000000003,43.167999999999999,44.52,45.872999999999998,47.225000000000001,48.576999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,330,1,44.531599999999997,0.030360000000000002,40.475999999999999,41.828000000000003,43.18,44.531999999999996,45.884,47.235999999999997,48.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,331,1,44.542700000000004,0.030360000000000002,40.485999999999997,41.838000000000001,43.19,44.542999999999999,45.895000000000003,47.247,48.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,332,1,44.553699999999999,0.030360000000000002,40.496000000000002,41.847999999999999,43.201000000000001,44.554000000000002,45.905999999999999,47.259,48.612000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,333,1,44.564599999999999,0.030349999999999999,40.506999999999998,41.86,43.212000000000003,44.564999999999998,45.917000000000002,47.27,48.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,334,1,44.575600000000001,0.030349999999999999,40.517000000000003,41.87,43.222999999999999,44.576000000000001,45.927999999999997,47.280999999999999,48.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,335,1,44.586500000000001,0.030349999999999999,40.527000000000001,41.88,43.232999999999997,44.585999999999999,45.94,47.292999999999999,48.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,336,1,44.597299999999997,0.030349999999999999,40.536999999999999,41.89,43.244,44.597000000000001,45.951000000000001,47.304000000000002,48.658000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,337,1,44.6081,0.030339999999999999,40.548000000000002,41.901000000000003,43.255000000000003,44.607999999999997,45.962000000000003,47.314999999999998,48.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,338,1,44.618899999999996,0.030339999999999999,40.558,41.911000000000001,43.265000000000001,44.619,45.972999999999999,47.326000000000001,48.68 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,339,1,44.629600000000003,0.030339999999999999,40.567,41.920999999999999,43.276000000000003,44.63,45.984000000000002,47.338000000000001,48.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,340,1,44.6402,0.030339999999999999,40.576999999999998,41.930999999999997,43.286000000000001,44.64,45.994999999999997,47.348999999999997,48.703000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,341,1,44.6509,0.030329999999999999,40.588000000000001,41.942,43.296999999999997,44.651000000000003,46.005000000000003,47.359000000000002,48.713999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,342,1,44.661499999999997,0.030329999999999999,40.597999999999999,41.951999999999998,43.307000000000002,44.661999999999999,46.015999999999998,47.371000000000002,48.725000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,343,1,44.671999999999997,0.030329999999999999,40.606999999999999,41.962000000000003,43.317,44.671999999999997,46.027000000000001,47.381999999999998,48.737000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,344,1,44.682499999999997,0.03032,40.618000000000002,41.972999999999999,43.328000000000003,44.682000000000002,46.036999999999999,47.392000000000003,48.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,345,1,44.692999999999998,0.03032,40.628,41.982999999999997,43.338000000000001,44.692999999999998,46.048000000000002,47.402999999999999,48.758000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,346,1,44.703400000000002,0.03032,40.637,41.993000000000002,43.347999999999999,44.703000000000003,46.058999999999997,47.414000000000001,48.77 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,347,1,44.713799999999999,0.03032,40.646999999999998,42.002000000000002,43.357999999999997,44.713999999999999,46.07,47.424999999999997,48.780999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,348,1,44.7241,0.03031,40.656999999999996,42.012999999999998,43.369,44.723999999999997,46.08,47.435000000000002,48.790999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,349,1,44.734400000000001,0.03031,40.667000000000002,42.023000000000003,43.378999999999998,44.734000000000002,46.09,47.445999999999998,48.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,350,1,44.744700000000002,0.03031,40.676000000000002,42.031999999999996,43.387999999999998,44.744999999999997,46.100999999999999,47.457000000000001,48.813000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,351,1,44.754899999999999,0.03031,40.685000000000002,42.042000000000002,43.398000000000003,44.755000000000003,46.110999999999997,47.468000000000004,48.823999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,352,1,44.765099999999997,0.030300000000000001,40.695999999999998,42.052,43.408999999999999,44.765000000000001,46.121000000000002,47.478000000000002,48.834000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,353,1,44.775199999999998,0.030300000000000001,40.704999999999998,42.061999999999998,43.418999999999997,44.774999999999999,46.131999999999998,47.488999999999997,48.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,354,1,44.785299999999999,0.030300000000000001,40.713999999999999,42.070999999999998,43.427999999999997,44.784999999999997,46.142000000000003,47.499000000000002,48.856000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,355,1,44.795400000000001,0.030300000000000001,40.722999999999999,42.081000000000003,43.438000000000002,44.795000000000002,46.152999999999999,47.51,48.866999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,356,1,44.805399999999999,0.030290000000000001,40.734000000000002,42.091000000000001,43.448,44.805,46.162999999999997,47.52,48.877000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,357,1,44.815399999999997,0.030290000000000001,40.743000000000002,42.1,43.457999999999998,44.814999999999998,46.173000000000002,47.53,48.887999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,358,1,44.825400000000002,0.030290000000000001,40.752000000000002,42.11,43.468000000000004,44.825000000000003,46.183,47.540999999999997,48.899000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,359,1,44.835299999999997,0.030280000000000001,40.762,42.12,43.478000000000002,44.835000000000001,46.192999999999998,47.551000000000002,48.908000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,360,1,44.845199999999998,0.030280000000000001,40.771000000000001,42.128999999999998,43.487000000000002,44.844999999999999,46.203000000000003,47.561,48.918999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,361,1,44.854999999999997,0.030280000000000001,40.78,42.139000000000003,43.497,44.854999999999997,46.213000000000001,47.570999999999998,48.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,362,1,44.864800000000002,0.030280000000000001,40.789000000000001,42.148000000000003,43.506,44.865000000000002,46.222999999999999,47.582000000000001,48.94 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,363,1,44.874600000000001,0.030269999999999998,40.799999999999997,42.158000000000001,43.515999999999998,44.875,46.232999999999997,47.591000000000001,48.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,364,1,44.884399999999999,0.030269999999999998,40.808,42.167000000000002,43.526000000000003,44.884,46.243000000000002,47.601999999999997,48.96 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,365,1,44.893999999999998,0.030269999999999998,40.817,42.176000000000002,43.534999999999997,44.893999999999998,46.253,47.612000000000002,48.970999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,366,1,44.903700000000001,0.030269999999999998,40.826000000000001,42.185000000000002,43.543999999999997,44.904000000000003,46.262999999999998,47.622,48.981000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,367,1,44.9133,0.030259999999999999,40.835999999999999,42.195,43.554000000000002,44.912999999999997,46.271999999999998,47.631,48.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,368,1,44.922899999999998,0.030259999999999999,40.844999999999999,42.204000000000001,43.564,44.923000000000002,46.281999999999996,47.642000000000003,49.000999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,369,1,44.932499999999997,0.030259999999999999,40.853999999999999,42.213000000000001,43.573,44.932000000000002,46.292000000000002,47.652000000000001,49.011000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,370,1,44.942,0.030259999999999999,40.862000000000002,42.222000000000001,43.582000000000001,44.942,46.302,47.661999999999999,49.021999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,371,1,44.951500000000003,0.030249999999999999,40.872,42.231999999999999,43.591999999999999,44.951999999999998,46.311,47.670999999999999,49.030999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,372,1,44.960900000000002,0.030249999999999999,40.881,42.241,43.600999999999999,44.960999999999999,46.320999999999998,47.680999999999997,49.040999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,373,1,44.970399999999998,0.030249999999999999,40.889000000000003,42.25,43.61,44.97,46.331000000000003,47.691000000000003,49.051000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,374,1,44.979700000000001,0.030249999999999999,40.898000000000003,42.258000000000003,43.619,44.98,46.34,47.701000000000001,49.061999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,375,1,44.989100000000001,0.03024,40.908000000000001,42.268000000000001,43.628999999999998,44.988999999999997,46.35,47.71,49.070999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,376,1,44.998399999999997,0.03024,40.915999999999997,42.277000000000001,43.637999999999998,44.997999999999998,46.359000000000002,47.72,49.081000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,377,1,45.0077,0.03024,40.924999999999997,42.286000000000001,43.646999999999998,45.008000000000003,46.369,47.73,49.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,378,1,45.0169,0.03024,40.933,42.293999999999997,43.655999999999999,45.017000000000003,46.378,47.74,49.100999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,379,1,45.026200000000003,0.03023,40.942999999999998,42.304000000000002,43.664999999999999,45.026000000000003,46.387,47.747999999999998,49.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,380,1,45.035299999999999,0.03023,40.951000000000001,42.311999999999998,43.673999999999999,45.034999999999997,46.396999999999998,47.758000000000003,49.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,381,1,45.044499999999999,0.03023,40.959000000000003,42.320999999999998,43.683,45.043999999999997,46.405999999999999,47.768000000000001,49.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,382,1,45.053600000000003,0.03023,40.968000000000004,42.33,43.692,45.054000000000002,46.415999999999997,47.777999999999999,49.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,383,1,45.0627,0.03022,40.976999999999997,42.338999999999999,43.701000000000001,45.063000000000002,46.423999999999999,47.786000000000001,49.148000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,384,1,45.0717,0.03022,40.984999999999999,42.347999999999999,43.71,45.072000000000003,46.433999999999997,47.795999999999999,49.158000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,385,1,45.080800000000004,0.03022,40.994,42.356000000000002,43.718000000000004,45.081000000000003,46.442999999999998,47.805,49.167999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,386,1,45.089700000000001,0.03022,41.002000000000002,42.363999999999997,43.726999999999997,45.09,46.451999999999998,47.814999999999998,49.177999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,387,1,45.098700000000001,0.030210000000000001,41.011000000000003,42.374000000000002,43.735999999999997,45.098999999999997,46.460999999999999,47.823999999999998,49.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,388,1,45.107599999999998,0.030210000000000001,41.018999999999998,42.381999999999998,43.744999999999997,45.107999999999997,46.47,47.832999999999998,49.195999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,389,1,45.116500000000002,0.030210000000000001,41.027999999999999,42.390999999999998,43.753999999999998,45.116,46.478999999999999,47.841999999999999,49.204999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,390,1,45.125399999999999,0.030210000000000001,41.036000000000001,42.399000000000001,43.762,45.125,46.488999999999997,47.851999999999997,49.215000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,391,1,45.1342,0.030200000000000001,41.045000000000002,42.408000000000001,43.771000000000001,45.134,46.497,47.86,49.222999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,392,1,45.143000000000001,0.030200000000000001,41.052999999999997,42.415999999999997,43.78,45.143000000000001,46.506,47.87,49.232999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,393,1,45.151800000000001,0.030200000000000001,41.061,42.424999999999997,43.787999999999997,45.152000000000001,46.515000000000001,47.878999999999998,49.243000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,394,1,45.160499999999999,0.030200000000000001,41.069000000000003,42.433,43.796999999999997,45.16,46.524000000000001,47.887999999999998,49.252000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,395,1,45.169199999999996,0.030190000000000002,41.078000000000003,42.442,43.805999999999997,45.168999999999997,46.533000000000001,47.896999999999998,49.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,396,1,45.177900000000001,0.030190000000000002,41.085999999999999,42.45,43.814,45.177999999999997,46.542000000000002,47.905999999999999,49.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,397,1,45.186599999999999,0.030190000000000002,41.094000000000001,42.457999999999998,43.822000000000003,45.186999999999998,46.551000000000002,47.914999999999999,49.279000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,398,1,45.1952,0.030190000000000002,41.101999999999997,42.466000000000001,43.831000000000003,45.195,46.56,47.923999999999999,49.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,399,1,45.203800000000001,0.030190000000000002,41.11,42.473999999999997,43.838999999999999,45.204000000000001,46.569000000000003,47.933,49.298000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,400,1,45.212400000000002,0.030179999999999998,41.119,42.482999999999997,43.847999999999999,45.212000000000003,46.576999999999998,47.941000000000003,49.305999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,401,1,45.2209,0.030179999999999998,41.127000000000002,42.491,43.856000000000002,45.220999999999997,46.585999999999999,47.95,49.314999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,402,1,45.229399999999998,0.030179999999999998,41.134,42.499000000000002,43.863999999999997,45.228999999999999,46.594000000000001,47.959000000000003,49.323999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,403,1,45.237900000000003,0.030179999999999998,41.142000000000003,42.506999999999998,43.872999999999998,45.238,46.603000000000002,47.968000000000004,49.334000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,404,1,45.246299999999998,0.030169999999999999,41.151000000000003,42.515999999999998,43.881,45.246000000000002,46.610999999999997,47.975999999999999,49.341999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,405,1,45.254800000000003,0.030169999999999999,41.158999999999999,42.524000000000001,43.889000000000003,45.255000000000003,46.62,47.984999999999999,49.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,406,1,45.263199999999998,0.030169999999999999,41.165999999999997,42.531999999999996,43.898000000000003,45.262999999999998,46.628999999999998,47.994,49.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,407,1,45.271500000000003,0.030169999999999999,41.173999999999999,42.54,43.905999999999999,45.271999999999998,46.637,48.003,49.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,408,1,45.279899999999998,0.030159999999999999,41.183,42.548999999999999,43.914000000000001,45.28,46.646000000000001,48.011000000000003,49.377000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,409,1,45.288200000000003,0.030159999999999999,41.191000000000003,42.555999999999997,43.921999999999997,45.287999999999997,46.654000000000003,48.02,49.386000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,410,1,45.296500000000002,0.030159999999999999,41.198,42.564,43.93,45.295999999999999,46.662999999999997,48.029000000000003,49.395000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,411,1,45.304699999999997,0.030159999999999999,41.206000000000003,42.572000000000003,43.938000000000002,45.305,46.670999999999999,48.036999999999999,49.404000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,412,1,45.313000000000002,0.03015,41.213999999999999,42.581000000000003,43.947000000000003,45.313000000000002,46.679000000000002,48.045000000000002,49.411999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,413,1,45.321199999999997,0.03015,41.222000000000001,42.588000000000001,43.954999999999998,45.320999999999998,46.688000000000002,48.054000000000002,49.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,414,1,45.3294,0.03015,41.228999999999999,42.595999999999997,43.963000000000001,45.329000000000001,46.695999999999998,48.063000000000002,49.429000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,415,1,45.337499999999999,0.03015,41.237000000000002,42.603999999999999,43.970999999999997,45.338000000000001,46.704000000000001,48.070999999999998,49.438000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,416,1,45.345599999999997,0.03015,41.244,42.610999999999997,43.978000000000002,45.345999999999997,46.713000000000001,48.08,49.447000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,417,1,45.353700000000003,0.03014,41.253,42.62,43.987000000000002,45.353999999999999,46.720999999999997,48.088000000000001,49.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,418,1,45.361800000000002,0.03014,41.26,42.627000000000002,43.994999999999997,45.362000000000002,46.728999999999999,48.095999999999997,49.463000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,419,1,45.369900000000001,0.03014,41.268000000000001,42.634999999999998,44.002000000000002,45.37,46.737000000000002,48.104999999999997,49.472000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,420,1,45.377899999999997,0.03014,41.274999999999999,42.643000000000001,44.01,45.378,46.746000000000002,48.113,49.481000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,421,1,45.385899999999999,0.030130000000000001,41.283000000000001,42.651000000000003,44.018000000000001,45.386000000000003,46.753,48.121000000000002,49.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,422,1,45.393900000000002,0.030130000000000001,41.290999999999997,42.658000000000001,44.026000000000003,45.393999999999998,46.762,48.128999999999998,49.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,423,1,45.401800000000001,0.030130000000000001,41.298000000000002,42.665999999999997,44.033999999999999,45.402000000000001,46.77,48.137999999999998,49.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,424,1,45.409700000000001,0.030130000000000001,41.305,42.673000000000002,44.042000000000002,45.41,46.777999999999999,48.146000000000001,49.514000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,425,1,45.4176,0.030130000000000001,41.311999999999998,42.680999999999997,44.048999999999999,45.417999999999999,46.786000000000001,48.154000000000003,49.523000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,426,1,45.4255,0.030120000000000001,41.320999999999998,42.689,44.057000000000002,45.426000000000002,46.793999999999997,48.161999999999999,49.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,427,1,45.433399999999999,0.030120000000000001,41.328000000000003,42.695999999999998,44.064999999999998,45.433,46.802,48.17,49.539000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,428,1,45.441200000000002,0.030120000000000001,41.335000000000001,42.704000000000001,44.073,45.441000000000003,46.81,48.179000000000002,49.546999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,429,1,45.448999999999998,0.030120000000000001,41.341999999999999,42.710999999999999,44.08,45.448999999999998,46.817999999999998,48.186999999999998,49.555999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,430,1,45.456800000000001,0.030110000000000001,41.350999999999999,42.719000000000001,44.088000000000001,45.457000000000001,46.826000000000001,48.194000000000003,49.563000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,431,1,45.464500000000001,0.030110000000000001,41.357999999999997,42.726999999999997,44.095999999999997,45.463999999999999,46.832999999999998,48.201999999999998,49.570999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,432,1,45.472200000000001,0.030110000000000001,41.365000000000002,42.734000000000002,44.103000000000002,45.472000000000001,46.841000000000001,48.210999999999999,49.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,433,1,45.48,0.030110000000000001,41.372,42.741,44.110999999999997,45.48,46.848999999999997,48.219000000000001,49.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,434,1,45.4876,0.030099999999999998,41.38,42.749000000000002,44.118000000000002,45.488,46.856999999999999,48.225999999999999,49.594999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,435,1,45.4953,0.030099999999999998,41.387,42.756,44.125999999999998,45.494999999999997,46.865000000000002,48.234000000000002,49.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,436,1,45.502899999999997,0.030099999999999998,41.393999999999998,42.764000000000003,44.133000000000003,45.503,46.872999999999998,48.241999999999997,49.612000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,437,1,45.5105,0.030099999999999998,41.401000000000003,42.771000000000001,44.140999999999998,45.51,46.88,48.25,49.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,438,1,45.518099999999997,0.030099999999999998,41.408000000000001,42.777999999999999,44.148000000000003,45.518000000000001,46.887999999999998,48.258000000000003,49.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,439,1,45.525700000000001,0.030089999999999999,41.415999999999997,42.786000000000001,44.155999999999999,45.526000000000003,46.896000000000001,48.265000000000001,49.634999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,440,1,45.533200000000001,0.030089999999999999,41.423000000000002,42.792999999999999,44.162999999999997,45.533000000000001,46.902999999999999,48.273000000000003,49.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,441,1,45.540799999999997,0.030089999999999999,41.43,42.8,44.17,45.540999999999997,46.911000000000001,48.280999999999999,49.652000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,442,1,45.548299999999998,0.030089999999999999,41.436999999999998,42.807000000000002,44.177999999999997,45.548000000000002,46.918999999999997,48.289000000000001,49.66 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,443,1,45.555799999999998,0.030079999999999999,41.445,42.814999999999998,44.185000000000002,45.555999999999997,46.926000000000002,48.295999999999999,49.667000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,444,1,45.563200000000002,0.030079999999999999,41.451999999999998,42.822000000000003,44.192999999999998,45.563000000000002,46.933999999999997,48.304000000000002,49.674999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,445,1,45.570599999999999,0.030079999999999999,41.457999999999998,42.829000000000001,44.2,45.570999999999998,46.941000000000003,48.311999999999998,49.683 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,446,1,45.578099999999999,0.030079999999999999,41.465000000000003,42.835999999999999,44.207000000000001,45.578000000000003,46.948999999999998,48.32,49.691000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,447,1,45.5854,0.030079999999999999,41.472000000000001,42.843000000000004,44.213999999999999,45.585000000000001,46.957000000000001,48.328000000000003,49.698999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,448,1,45.592799999999997,0.03007,41.48,42.850999999999999,44.222000000000001,45.593000000000004,46.963999999999999,48.335000000000001,49.706000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,449,1,45.600200000000001,0.03007,41.487000000000002,42.857999999999997,44.228999999999999,45.6,46.970999999999997,48.343000000000004,49.713999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,450,1,45.607500000000002,0.03007,41.493000000000002,42.865000000000002,44.235999999999997,45.607999999999997,46.978999999999999,48.35,49.722000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,451,1,45.614800000000002,0.03007,41.5,42.872,44.243000000000002,45.615000000000002,46.985999999999997,48.357999999999997,49.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,452,1,45.622100000000003,0.03007,41.506999999999998,42.878,44.25,45.622,46.994,48.366,49.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,453,1,45.629300000000001,0.03006,41.514000000000003,42.886000000000003,44.258000000000003,45.628999999999998,47.000999999999998,48.372999999999998,49.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,454,1,45.636600000000001,0.03006,41.521000000000001,42.893000000000001,44.265000000000001,45.637,47.008000000000003,48.38,49.752000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,455,1,45.643799999999999,0.03006,41.527999999999999,42.9,44.271999999999998,45.643999999999998,47.015999999999998,48.387999999999998,49.76 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,456,1,45.651000000000003,0.03006,41.533999999999999,42.905999999999999,44.279000000000003,45.651000000000003,47.023000000000003,48.396000000000001,49.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,457,1,45.658200000000001,0.03005,41.542000000000002,42.914000000000001,44.286000000000001,45.658000000000001,47.03,48.402000000000001,49.774000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,458,1,45.665399999999998,0.03005,41.548999999999999,42.920999999999999,44.292999999999999,45.664999999999999,47.037999999999997,48.41,49.781999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,459,1,45.672499999999999,0.03005,41.555,42.927999999999997,44.3,45.671999999999997,47.045000000000002,48.417000000000002,49.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,460,1,45.679600000000001,0.03005,41.561999999999998,42.933999999999997,44.307000000000002,45.68,47.052,48.424999999999997,49.798000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,461,1,45.686700000000002,0.03005,41.567999999999998,42.941000000000003,44.314,45.686999999999998,47.06,48.432000000000002,49.805 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,462,1,45.693800000000003,0.030040000000000001,41.576000000000001,42.948999999999998,44.320999999999998,45.694000000000003,47.066000000000003,48.439,49.811999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,463,1,45.700899999999997,0.030040000000000001,41.582000000000001,42.954999999999998,44.328000000000003,45.701000000000001,47.073999999999998,48.447000000000003,49.819000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,464,1,45.707900000000002,0.030040000000000001,41.588999999999999,42.962000000000003,44.335000000000001,45.707999999999998,47.081000000000003,48.454000000000001,49.826999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,465,1,45.715000000000003,0.030040000000000001,41.594999999999999,42.968000000000004,44.341999999999999,45.715000000000003,47.088000000000001,48.462000000000003,49.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,466,1,45.722000000000001,0.030040000000000001,41.601999999999997,42.975000000000001,44.348999999999997,45.722000000000001,47.094999999999999,48.469000000000001,49.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,467,1,45.728999999999999,0.030030000000000001,41.609000000000002,42.982999999999997,44.356000000000002,45.728999999999999,47.101999999999997,48.475000000000001,49.848999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,468,1,45.735900000000001,0.030030000000000001,41.616,42.988999999999997,44.362000000000002,45.735999999999997,47.109000000000002,48.482999999999997,49.856000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,469,1,45.742899999999999,0.030030000000000001,41.622,42.996000000000002,44.369,45.743000000000002,47.116999999999997,48.49,49.863999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,470,1,45.7498,0.030030000000000001,41.628,43.002000000000002,44.375999999999998,45.75,47.124000000000002,48.497999999999998,49.871000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,471,1,45.756700000000002,0.030030000000000001,41.634,43.009,44.383000000000003,45.756999999999998,47.131,48.505000000000003,49.878999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,472,1,45.763599999999997,0.030020000000000002,41.642000000000003,43.015999999999998,44.39,45.764000000000003,47.137,48.511000000000003,49.884999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,473,1,45.770499999999998,0.030020000000000002,41.648000000000003,43.021999999999998,44.396000000000001,45.77,47.145000000000003,48.518999999999998,49.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,474,1,45.7774,0.030020000000000002,41.655000000000001,43.029000000000003,44.402999999999999,45.777000000000001,47.152000000000001,48.526000000000003,49.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,475,1,45.784199999999998,0.030020000000000002,41.661000000000001,43.034999999999997,44.41,45.783999999999999,47.158999999999999,48.533000000000001,49.908000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,476,1,45.790999999999997,0.030009999999999998,41.667999999999999,43.042999999999999,44.417000000000002,45.790999999999997,47.164999999999999,48.539000000000001,49.914000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,477,1,45.797800000000002,0.030009999999999998,41.674999999999997,43.048999999999999,44.423000000000002,45.798000000000002,47.171999999999997,48.546999999999997,49.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,478,1,45.804600000000001,0.030009999999999998,41.680999999999997,43.055,44.43,45.805,47.179000000000002,48.554000000000002,49.927999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,479,1,45.811399999999999,0.030009999999999998,41.686999999999998,43.061999999999998,44.436999999999998,45.811,47.186,48.561,49.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,480,1,45.818199999999997,0.030009999999999998,41.692999999999998,43.067999999999998,44.442999999999998,45.817999999999998,47.192999999999998,48.567999999999998,49.942999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,481,1,45.8249,0.03,41.701000000000001,43.075000000000003,44.45,45.825000000000003,47.2,48.573999999999998,49.948999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,482,1,45.831600000000002,0.03,41.707000000000001,43.082000000000001,44.457000000000001,45.832000000000001,47.207000000000001,48.581000000000003,49.956000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,483,1,45.838299999999997,0.03,41.713000000000001,43.088000000000001,44.463000000000001,45.838000000000001,47.213000000000001,48.588999999999999,49.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,484,1,45.844999999999999,0.03,41.719000000000001,43.094000000000001,44.47,45.844999999999999,47.22,48.595999999999997,49.970999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,485,1,45.851700000000001,0.03,41.725000000000001,43.100999999999999,44.475999999999999,45.851999999999997,47.226999999999997,48.603000000000002,49.978000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,486,1,45.8583,0.029989999999999999,41.731999999999999,43.107999999999997,44.482999999999997,45.857999999999997,47.234000000000002,48.609000000000002,49.984000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,487,1,45.865000000000002,0.029989999999999999,41.738999999999997,43.113999999999997,44.49,45.865000000000002,47.24,48.616,49.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,488,1,45.871600000000001,0.029989999999999999,41.744999999999997,43.12,44.496000000000002,45.872,47.247,48.622999999999998,49.999000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,489,1,45.8782,0.029989999999999999,41.750999999999998,43.125999999999998,44.502000000000002,45.878,47.253999999999998,48.63,50.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,490,1,45.884799999999998,0.029989999999999999,41.756999999999998,43.133000000000003,44.509,45.884999999999998,47.261000000000003,48.637,50.012999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,491,1,45.891399999999997,0.02998,41.764000000000003,43.14,44.515999999999998,45.890999999999998,47.267000000000003,48.643000000000001,50.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,492,1,45.8979,0.02998,41.77,43.146000000000001,44.521999999999998,45.898000000000003,47.274000000000001,48.65,50.026000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,493,1,45.904499999999999,0.02998,41.776000000000003,43.152000000000001,44.527999999999999,45.904000000000003,47.280999999999999,48.656999999999996,50.033000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,494,1,45.911000000000001,0.02998,41.781999999999996,43.158000000000001,44.534999999999997,45.911000000000001,47.286999999999999,48.664000000000001,50.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,495,1,45.917499999999997,0.02998,41.787999999999997,43.164000000000001,44.540999999999997,45.917999999999999,47.293999999999997,48.670999999999999,50.046999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,496,1,45.923999999999999,0.02997,41.795000000000002,43.170999999999999,44.548000000000002,45.923999999999999,47.3,48.677,50.052999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,497,1,45.930500000000002,0.02997,41.801000000000002,43.177,44.554000000000002,45.93,47.307000000000002,48.683999999999997,50.06 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,498,1,45.936999999999998,0.02997,41.807000000000002,43.183999999999997,44.56,45.936999999999998,47.314,48.69,50.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,499,1,45.943399999999997,0.02997,41.813000000000002,43.19,44.566000000000003,45.942999999999998,47.32,48.697000000000003,50.073999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,500,1,45.9499,0.02997,41.819000000000003,43.195999999999998,44.573,45.95,47.326999999999998,48.704000000000001,50.081000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,501,1,45.956299999999999,0.029960000000000001,41.826000000000001,43.203000000000003,44.579000000000001,45.956000000000003,47.332999999999998,48.71,50.087000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,502,1,45.962699999999998,0.029960000000000001,41.832000000000001,43.209000000000003,44.585999999999999,45.963000000000001,47.34,48.716999999999999,50.094000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,503,1,45.969099999999997,0.029960000000000001,41.837000000000003,43.215000000000003,44.591999999999999,45.969000000000001,47.345999999999997,48.723999999999997,50.100999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,504,1,45.975499999999997,0.029960000000000001,41.843000000000004,43.220999999999997,44.597999999999999,45.975999999999999,47.353000000000002,48.73,50.107999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,505,1,45.9818,0.029960000000000001,41.848999999999997,43.226999999999997,44.603999999999999,45.981999999999999,47.359000000000002,48.737000000000002,50.115000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,506,1,45.988199999999999,0.029950000000000001,41.856000000000002,43.234000000000002,44.610999999999997,45.988,47.366,48.743000000000002,50.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,507,1,45.994500000000002,0.029950000000000001,41.862000000000002,43.238999999999997,44.616999999999997,45.994,47.372,48.75,50.127000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,508,1,46.000799999999998,0.029950000000000001,41.868000000000002,43.244999999999997,44.622999999999998,46.000999999999998,47.378999999999998,48.756,50.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,509,1,46.007100000000001,0.029950000000000001,41.872999999999998,43.250999999999998,44.628999999999998,46.006999999999998,47.384999999999998,48.762999999999998,50.140999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,510,1,46.013399999999997,0.029950000000000001,41.878999999999998,43.256999999999998,44.634999999999998,46.012999999999998,47.392000000000003,48.77,50.148000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,511,1,46.0197,0.029940000000000001,41.886000000000003,43.264000000000003,44.642000000000003,46.02,47.398000000000003,48.774999999999999,50.152999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,512,1,46.026000000000003,0.029940000000000001,41.892000000000003,43.27,44.648000000000003,46.026000000000003,47.404000000000003,48.781999999999996,50.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,513,1,46.032200000000003,0.029940000000000001,41.898000000000003,43.276000000000003,44.654000000000003,46.031999999999996,47.41,48.789000000000001,50.167000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,514,1,46.038499999999999,0.029940000000000001,41.902999999999999,43.281999999999996,44.66,46.037999999999997,47.417000000000002,48.795000000000002,50.173999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,515,1,46.044699999999999,0.029940000000000001,41.908999999999999,43.287999999999997,44.665999999999997,46.045000000000002,47.423000000000002,48.802,50.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,516,1,46.050899999999999,0.029929999999999998,41.915999999999997,43.293999999999997,44.673000000000002,46.051000000000002,47.429000000000002,48.808,50.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,517,1,46.057099999999998,0.029929999999999998,41.921999999999997,43.3,44.679000000000002,46.057000000000002,47.436,48.814,50.192999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,518,1,46.063299999999998,0.029929999999999998,41.927,43.305999999999997,44.685000000000002,46.063000000000002,47.442,48.820999999999998,50.198999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,519,1,46.069400000000002,0.029929999999999998,41.933,43.311999999999998,44.691000000000003,46.069000000000003,47.448,48.826999999999998,50.206000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,520,1,46.075600000000001,0.029929999999999998,41.938000000000002,43.317999999999998,44.697000000000003,46.076000000000001,47.454999999999998,48.834000000000003,50.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,521,1,46.081800000000001,0.029919999999999999,41.945,43.323999999999998,44.703000000000003,46.082000000000001,47.460999999999999,48.838999999999999,50.218000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,522,1,46.087899999999998,0.029919999999999999,41.951000000000001,43.33,44.709000000000003,46.088000000000001,47.466999999999999,48.845999999999997,50.225000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,523,1,46.094000000000001,0.029919999999999999,41.957000000000001,43.335999999999999,44.715000000000003,46.094000000000001,47.472999999999999,48.851999999999997,50.231000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,524,1,46.100099999999998,0.029919999999999999,41.962000000000003,43.341000000000001,44.720999999999997,46.1,47.478999999999999,48.859000000000002,50.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,525,1,46.106200000000001,0.029919999999999999,41.968000000000004,43.347000000000001,44.726999999999997,46.106000000000002,47.485999999999997,48.865000000000002,50.244999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,526,1,46.112299999999998,0.029919999999999999,41.972999999999999,43.353000000000002,44.732999999999997,46.112000000000002,47.491999999999997,48.872,50.250999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,527,1,46.118400000000001,0.029909999999999999,41.98,43.36,44.738999999999997,46.118000000000002,47.497999999999998,48.877000000000002,50.256999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,528,1,46.124400000000001,0.029909999999999999,41.985999999999997,43.365000000000002,44.744999999999997,46.124000000000002,47.503999999999998,48.884,50.262999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,529,1,46.130499999999998,0.029909999999999999,41.991,43.371000000000002,44.750999999999998,46.13,47.51,48.89,50.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,530,1,46.136499999999998,0.029909999999999999,41.997,43.377000000000002,44.756999999999998,46.136000000000003,47.515999999999998,48.896000000000001,50.276000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,531,1,46.142499999999998,0.029909999999999999,42.002000000000002,43.381999999999998,44.762,46.142000000000003,47.523000000000003,48.902999999999999,50.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,532,1,46.148499999999999,0.029899999999999999,42.009,43.389000000000003,44.768999999999998,46.148000000000003,47.527999999999999,48.908000000000001,50.287999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,533,1,46.154499999999999,0.029899999999999999,42.014000000000003,43.393999999999998,44.774000000000001,46.154000000000003,47.534999999999997,48.914999999999999,50.295000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,534,1,46.160499999999999,0.029899999999999999,42.02,43.4,44.78,46.16,47.540999999999997,48.920999999999999,50.301000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,535,1,46.166499999999999,0.029899999999999999,42.024999999999999,43.405999999999999,44.786000000000001,46.165999999999997,47.546999999999997,48.927,50.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,536,1,46.172499999999999,0.029899999999999999,42.030999999999999,43.411000000000001,44.792000000000002,46.171999999999997,47.552999999999997,48.933999999999997,50.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,537,1,46.178400000000003,0.02989,42.037999999999997,43.417999999999999,44.798000000000002,46.177999999999997,47.558999999999997,48.939,50.319000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,538,1,46.1843,0.02989,42.042999999999999,43.423000000000002,44.804000000000002,46.183999999999997,47.564999999999998,48.945,50.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,539,1,46.190300000000001,0.02989,42.048000000000002,43.429000000000002,44.81,46.19,47.570999999999998,48.951999999999998,50.332000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,540,1,46.196199999999997,0.02989,42.054000000000002,43.435000000000002,44.814999999999998,46.195999999999998,47.576999999999998,48.957999999999998,50.338999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,541,1,46.202100000000002,0.02989,42.058999999999997,43.44,44.820999999999998,46.201999999999998,47.582999999999998,48.963999999999999,50.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,542,1,46.207999999999998,0.02989,42.064999999999998,43.445999999999998,44.826999999999998,46.207999999999998,47.588999999999999,48.97,50.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,543,1,46.213900000000002,0.02988,42.070999999999998,43.451999999999998,44.832999999999998,46.213999999999999,47.594999999999999,48.975999999999999,50.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,544,1,46.219700000000003,0.02988,42.076999999999998,43.457999999999998,44.838999999999999,46.22,47.600999999999999,48.981999999999999,50.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,545,1,46.2256,0.02988,42.082000000000001,43.463000000000001,44.844000000000001,46.225999999999999,47.606999999999999,48.988,50.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,546,1,46.231499999999997,0.02988,42.087000000000003,43.469000000000001,44.85,46.231999999999999,47.613,48.994,50.375999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,547,1,46.237299999999998,0.02988,42.093000000000004,43.473999999999997,44.856000000000002,46.237000000000002,47.619,49,50.381999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,548,1,46.243099999999998,0.029870000000000001,42.098999999999997,43.481000000000002,44.862000000000002,46.243000000000002,47.624000000000002,49.006,50.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,549,1,46.249000000000002,0.029870000000000001,42.104999999999997,43.485999999999997,44.868000000000002,46.249000000000002,47.63,49.012,50.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,550,1,46.254800000000003,0.029870000000000001,42.11,43.491999999999997,44.872999999999998,46.255000000000003,47.636000000000003,49.018000000000001,50.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,551,1,46.260599999999997,0.029870000000000001,42.115000000000002,43.497,44.878999999999998,46.261000000000003,47.642000000000003,49.024000000000001,50.405999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,552,1,46.266300000000001,0.029870000000000001,42.12,43.502000000000002,44.884,46.265999999999998,47.648000000000003,49.03,50.411999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,553,1,46.272100000000002,0.029860000000000001,42.127000000000002,43.509,44.89,46.271999999999998,47.654000000000003,49.034999999999997,50.417000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,554,1,46.277900000000002,0.029860000000000001,42.131999999999998,43.514000000000003,44.896000000000001,46.277999999999999,47.66,49.042000000000002,50.423000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,555,1,46.283700000000003,0.029860000000000001,42.137999999999998,43.52,44.902000000000001,46.283999999999999,47.665999999999997,49.048000000000002,50.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,556,1,46.289400000000001,0.029860000000000001,42.143000000000001,43.524999999999999,44.906999999999996,46.289000000000001,47.671999999999997,49.054000000000002,50.436 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,557,1,46.295099999999998,0.029860000000000001,42.148000000000003,43.53,44.912999999999997,46.295000000000002,47.677,49.06,50.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,558,1,46.300899999999999,0.029860000000000001,42.152999999999999,43.536000000000001,44.917999999999999,46.301000000000002,47.683,49.066000000000003,50.448999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,559,1,46.306600000000003,0.029850000000000002,42.16,43.542000000000002,44.923999999999999,46.307000000000002,47.689,49.070999999999998,50.453000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,560,1,46.3123,0.029850000000000002,42.164999999999999,43.546999999999997,44.93,46.311999999999998,47.695,49.076999999999998,50.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,561,1,46.317999999999998,0.029850000000000002,42.17,43.552999999999997,44.935000000000002,46.317999999999998,47.701000000000001,49.082999999999998,50.466000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,562,1,46.323700000000002,0.029850000000000002,42.174999999999997,43.558,44.941000000000003,46.323999999999998,47.706000000000003,49.088999999999999,50.472000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,563,1,46.3294,0.029850000000000002,42.180999999999997,43.564,44.945999999999998,46.329000000000001,47.712000000000003,49.094999999999999,50.478000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,564,1,46.335000000000001,0.029839999999999998,42.186999999999998,43.57,44.951999999999998,46.335000000000001,47.718000000000004,49.1,50.482999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,565,1,46.340699999999998,0.029839999999999998,42.192,43.575000000000003,44.957999999999998,46.341000000000001,47.723999999999997,49.106000000000002,50.488999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,566,1,46.346299999999999,0.029839999999999998,42.197000000000003,43.58,44.963000000000001,46.345999999999997,47.728999999999999,49.112000000000002,50.494999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,567,1,46.351999999999997,0.029839999999999998,42.203000000000003,43.585999999999999,44.969000000000001,46.351999999999997,47.734999999999999,49.118000000000002,50.500999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,568,1,46.357599999999998,0.029839999999999998,42.207999999999998,43.591000000000001,44.973999999999997,46.357999999999997,47.741,49.124000000000002,50.508000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,569,1,46.363199999999999,0.029839999999999998,42.213000000000001,43.595999999999997,44.98,46.363,47.747,49.13,50.514000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,570,1,46.368899999999996,0.029829999999999999,42.219000000000001,43.603000000000002,44.985999999999997,46.369,47.752000000000002,49.134999999999998,50.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,571,1,46.374499999999998,0.029829999999999999,42.223999999999997,43.607999999999997,44.991,46.374000000000002,47.758000000000003,49.140999999999998,50.524999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,572,1,46.380099999999999,0.029829999999999999,42.23,43.613,44.997,46.38,47.764000000000003,49.146999999999998,50.530999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,573,1,46.3857,0.029829999999999999,42.234999999999999,43.618000000000002,45.002000000000002,46.386000000000003,47.768999999999998,49.152999999999999,50.536999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,574,1,46.391199999999998,0.029829999999999999,42.24,43.624000000000002,45.006999999999998,46.390999999999998,47.774999999999999,49.158999999999999,50.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,575,1,46.396799999999999,0.029829999999999999,42.244999999999997,43.628999999999998,45.012999999999998,46.396999999999998,47.780999999999999,49.164999999999999,50.548999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,576,1,46.4024,0.029819999999999999,42.250999999999998,43.634999999999998,45.018999999999998,46.402000000000001,47.786000000000001,49.17,50.554000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,577,1,46.407899999999998,0.029819999999999999,42.256,43.64,45.024000000000001,46.408000000000001,47.792000000000002,49.176000000000002,50.56 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,578,1,46.413499999999999,0.029819999999999999,42.261000000000003,43.645000000000003,45.029000000000003,46.414000000000001,47.798000000000002,49.182000000000002,50.566000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,579,1,46.418999999999997,0.029819999999999999,42.265999999999998,43.651000000000003,45.034999999999997,46.418999999999997,47.802999999999997,49.186999999999998,50.572000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,580,1,46.424500000000002,0.029819999999999999,42.271000000000001,43.655999999999999,45.04,46.423999999999999,47.808999999999997,49.192999999999998,50.578000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,581,1,46.430100000000003,0.02981,42.277999999999999,43.661999999999999,45.045999999999999,46.43,47.814,49.198,50.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,582,1,46.435600000000001,0.02981,42.283000000000001,43.667000000000002,45.051000000000002,46.436,47.82,49.204000000000001,50.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,583,1,46.441099999999999,0.02981,42.287999999999997,43.671999999999997,45.057000000000002,46.441000000000003,47.826000000000001,49.21,50.594000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,584,1,46.446599999999997,0.02981,42.292999999999999,43.677,45.061999999999998,46.447000000000003,47.831000000000003,49.216000000000001,50.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,585,1,46.452100000000002,0.02981,42.298000000000002,43.683,45.067,46.451999999999998,47.837000000000003,49.222000000000001,50.606000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,586,1,46.457500000000003,0.02981,42.302999999999997,43.688000000000002,45.073,46.457999999999998,47.841999999999999,49.226999999999997,50.612000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,587,1,46.463000000000001,0.0298,42.308999999999997,43.694000000000003,45.078000000000003,46.463000000000001,47.847999999999999,49.231999999999999,50.616999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,588,1,46.468499999999999,0.0298,42.314,43.698999999999998,45.084000000000003,46.468000000000004,47.853000000000002,49.238,50.622999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,589,1,46.4739,0.0298,42.319000000000003,43.704000000000001,45.088999999999999,46.473999999999997,47.859000000000002,49.244,50.628999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,590,1,46.479399999999998,0.0298,42.323999999999998,43.709000000000003,45.094000000000001,46.478999999999999,47.863999999999997,49.25,50.634999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,591,1,46.4848,0.0298,42.329000000000001,43.713999999999999,45.1,46.484999999999999,47.87,49.255000000000003,50.640999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,592,1,46.490200000000002,0.0298,42.334000000000003,43.719000000000001,45.104999999999997,46.49,47.875999999999998,49.261000000000003,50.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,593,1,46.495699999999999,0.029790000000000001,42.34,43.725000000000001,45.110999999999997,46.496000000000002,47.881,49.265999999999998,50.651000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,594,1,46.501100000000001,0.029790000000000001,42.344999999999999,43.731000000000002,45.116,46.500999999999998,47.886000000000003,49.271999999999998,50.656999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,595,1,46.506500000000003,0.029790000000000001,42.35,43.735999999999997,45.121000000000002,46.506,47.892000000000003,49.277000000000001,50.662999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,596,1,46.511899999999997,0.029790000000000001,42.354999999999997,43.741,45.125999999999998,46.512,47.896999999999998,49.283000000000001,50.668999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,597,1,46.517299999999999,0.029790000000000001,42.36,43.746000000000002,45.131999999999998,46.517000000000003,47.902999999999999,49.289000000000001,50.674999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,598,1,46.5227,0.029780000000000001,42.366,43.752000000000002,45.137,46.523000000000003,47.908000000000001,49.293999999999997,50.679000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,599,1,46.527999999999999,0.029780000000000001,42.371000000000002,43.756999999999998,45.142000000000003,46.527999999999999,47.914000000000001,49.298999999999999,50.685000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,600,1,46.5334,0.029780000000000001,42.375999999999998,43.762,45.148000000000003,46.533000000000001,47.918999999999997,49.305,50.691000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,601,1,46.538800000000002,0.029780000000000001,42.381,43.767000000000003,45.152999999999999,46.539000000000001,47.924999999999997,49.311,50.697000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,602,1,46.5441,0.029780000000000001,42.386000000000003,43.771999999999998,45.158000000000001,46.543999999999997,47.93,49.316000000000003,50.701999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,603,1,46.549500000000002,0.029780000000000001,42.390999999999998,43.777000000000001,45.162999999999997,46.55,47.936,49.322000000000003,50.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,604,1,46.5548,0.029770000000000001,42.396999999999998,43.783000000000001,45.168999999999997,46.555,47.941000000000003,49.326999999999998,50.713000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,605,1,46.560099999999998,0.029770000000000001,42.402000000000001,43.787999999999997,45.173999999999999,46.56,47.945999999999998,49.332000000000001,50.718000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,606,1,46.5655,0.029770000000000001,42.406999999999996,43.792999999999999,45.179000000000002,46.566000000000003,47.951999999999998,49.338000000000001,50.723999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,607,1,46.570799999999998,0.029770000000000001,42.411999999999999,43.798000000000002,45.183999999999997,46.570999999999998,47.957000000000001,49.344000000000001,50.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,608,1,46.576099999999997,0.029770000000000001,42.415999999999997,43.802999999999997,45.19,46.576000000000001,47.963000000000001,49.348999999999997,50.735999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,609,1,46.581400000000002,0.029770000000000001,42.420999999999999,43.808,45.195,46.581000000000003,47.968000000000004,49.354999999999997,50.741999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,610,1,46.5867,0.029760000000000002,42.427,43.814,45.2,46.587000000000003,47.972999999999999,49.36,50.746000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,611,1,46.591999999999999,0.029760000000000002,42.432000000000002,43.819000000000003,45.204999999999998,46.591999999999999,47.978999999999999,49.365000000000002,50.752000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,612,1,46.597299999999997,0.029760000000000002,42.436999999999998,43.823999999999998,45.210999999999999,46.597000000000001,47.984000000000002,49.371000000000002,50.758000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,613,1,46.602600000000002,0.029760000000000002,42.442,43.829000000000001,45.216000000000001,46.603000000000002,47.988999999999997,49.375999999999998,50.762999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,614,1,46.607799999999997,0.029760000000000002,42.447000000000003,43.834000000000003,45.220999999999997,46.607999999999997,47.994999999999997,49.381999999999998,50.768999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,615,1,46.613100000000003,0.029760000000000002,42.451000000000001,43.838999999999999,45.225999999999999,46.613,48,49.387999999999998,50.774999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,616,1,46.618299999999998,0.029749999999999999,42.457999999999998,43.844999999999999,45.231000000000002,46.618000000000002,48.005000000000003,49.392000000000003,50.779000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,617,1,46.623600000000003,0.029749999999999999,42.462000000000003,43.848999999999997,45.237000000000002,46.624000000000002,48.011000000000003,49.398000000000003,50.784999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,618,1,46.628799999999998,0.029749999999999999,42.466999999999999,43.853999999999999,45.241999999999997,46.628999999999998,48.015999999999998,49.402999999999999,50.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,619,1,46.634099999999997,0.029749999999999999,42.472000000000001,43.859000000000002,45.247,46.634,48.021000000000001,49.408999999999999,50.795999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,620,1,46.639299999999999,0.029749999999999999,42.476999999999997,43.863999999999997,45.252000000000002,46.639000000000003,48.027000000000001,49.414000000000001,50.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,621,1,46.644500000000001,0.029749999999999999,42.481000000000002,43.869,45.256999999999998,46.643999999999998,48.031999999999996,49.42,50.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,622,1,46.649700000000003,0.029739999999999999,42.488,43.875,45.262,46.65,48.036999999999999,49.423999999999999,50.811999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,623,1,46.655000000000001,0.029739999999999999,42.491999999999997,43.88,45.267000000000003,46.655000000000001,48.042999999999999,49.43,50.817999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,624,1,46.660200000000003,0.029739999999999999,42.497,43.884999999999998,45.273000000000003,46.66,48.048000000000002,49.436,50.823 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,625,1,46.665399999999998,0.029739999999999999,42.502000000000002,43.89,45.277999999999999,46.664999999999999,48.052999999999997,49.441000000000003,50.829000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,626,1,46.6706,0.029739999999999999,42.506999999999998,43.895000000000003,45.283000000000001,46.670999999999999,48.058999999999997,49.447000000000003,50.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,627,1,46.675699999999999,0.029739999999999999,42.511000000000003,43.899000000000001,45.287999999999997,46.676000000000002,48.064,49.451999999999998,50.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,628,1,46.680900000000001,0.029729999999999999,42.517000000000003,43.905000000000001,45.292999999999999,46.680999999999997,48.069000000000003,49.457000000000001,50.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,629,1,46.686100000000003,0.029729999999999999,42.521999999999998,43.91,45.298000000000002,46.686,48.073999999999998,49.462000000000003,50.85 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,630,1,46.691299999999998,0.029729999999999999,42.527000000000001,43.914999999999999,45.302999999999997,46.691000000000003,48.079000000000001,49.468000000000004,50.856000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,631,1,46.696399999999997,0.029729999999999999,42.531999999999996,43.92,45.308,46.695999999999998,48.085000000000001,49.472999999999999,50.860999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,632,1,46.701599999999999,0.029729999999999999,42.536000000000001,43.924999999999997,45.313000000000002,46.701999999999998,48.09,49.478000000000002,50.866999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,633,1,46.706699999999998,0.029729999999999999,42.540999999999997,43.93,45.317999999999998,46.707000000000001,48.094999999999999,49.484000000000002,50.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,634,1,46.7119,0.02972,42.546999999999997,43.935000000000002,45.323999999999998,46.712000000000003,48.1,49.488,50.877000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,635,1,46.716999999999999,0.02972,42.552,43.94,45.329000000000001,46.716999999999999,48.104999999999997,49.494,50.881999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,636,1,46.722099999999998,0.02972,42.555999999999997,43.945,45.334000000000003,46.722000000000001,48.110999999999997,49.499000000000002,50.887999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,637,1,46.7273,0.02972,42.561,43.95,45.338999999999999,46.726999999999997,48.116,49.505000000000003,50.893999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,638,1,46.732399999999998,0.02972,42.566000000000003,43.954999999999998,45.344000000000001,46.731999999999999,48.121000000000002,49.51,50.899000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,639,1,46.737499999999997,0.02972,42.57,43.959000000000003,45.347999999999999,46.738,48.127000000000002,49.515999999999998,50.905000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,640,1,46.742600000000003,0.02971,42.576000000000001,43.965000000000003,45.353999999999999,46.743000000000002,48.131,49.52,50.908999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,641,1,46.747700000000002,0.02971,42.581000000000003,43.97,45.359000000000002,46.747999999999998,48.137,49.524999999999999,50.914000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,642,1,46.752800000000001,0.02971,42.585999999999999,43.975000000000001,45.363999999999997,46.753,48.142000000000003,49.530999999999999,50.92 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,643,1,46.757899999999999,0.02971,42.59,43.98,45.369,46.758000000000003,48.146999999999998,49.536000000000001,50.924999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,644,1,46.762999999999998,0.02971,42.594999999999999,43.984000000000002,45.374000000000002,46.762999999999998,48.152000000000001,49.542000000000002,50.930999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,645,1,46.768000000000001,0.02971,42.6,43.988999999999997,45.378999999999998,46.768000000000001,48.156999999999996,49.546999999999997,50.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,646,1,46.773099999999999,0.029700000000000001,42.606000000000002,43.994999999999997,45.384,46.773000000000003,48.161999999999999,49.551000000000002,50.941000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,647,1,46.778199999999998,0.029700000000000001,42.61,44,45.389000000000003,46.777999999999999,48.167999999999999,49.557000000000002,50.945999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,648,1,46.783200000000001,0.029700000000000001,42.615000000000002,44.003999999999998,45.393999999999998,46.783000000000001,48.173000000000002,49.561999999999998,50.951999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,649,1,46.7883,0.029700000000000001,42.619,44.009,45.399000000000001,46.787999999999997,48.177999999999997,49.567999999999998,50.957000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,650,1,46.793300000000002,0.029700000000000001,42.624000000000002,44.014000000000003,45.404000000000003,46.792999999999999,48.183,49.573,50.963000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,651,1,46.798400000000001,0.029700000000000001,42.628999999999998,44.018999999999998,45.408000000000001,46.798000000000002,48.188000000000002,49.578000000000003,50.968000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,652,1,46.803400000000003,0.029700000000000001,42.633000000000003,44.023000000000003,45.412999999999997,46.802999999999997,48.192999999999998,49.584000000000003,50.973999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,653,1,46.808399999999999,0.029690000000000001,42.639000000000003,44.029000000000003,45.418999999999997,46.808,48.198,49.588000000000001,50.978000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,654,1,46.813499999999998,0.029690000000000001,42.643999999999998,44.033999999999999,45.423999999999999,46.814,48.203000000000003,49.593000000000004,50.982999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,655,1,46.8185,0.029690000000000001,42.648000000000003,44.037999999999997,45.427999999999997,46.817999999999998,48.209000000000003,49.598999999999997,50.988999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,656,1,46.823500000000003,0.029690000000000001,42.652999999999999,44.042999999999999,45.433,46.823999999999998,48.213999999999999,49.603999999999999,50.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,657,1,46.828499999999998,0.029690000000000001,42.656999999999996,44.048000000000002,45.438000000000002,46.828000000000003,48.219000000000001,49.609000000000002,51 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,658,1,46.833500000000001,0.029690000000000001,42.661999999999999,44.052999999999997,45.442999999999998,46.834000000000003,48.223999999999997,49.613999999999997,51.005000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,659,1,46.838500000000003,0.029680000000000002,42.667999999999999,44.058,45.448,46.838000000000001,48.228999999999999,49.619,51.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,660,1,46.843499999999999,0.029680000000000002,42.673000000000002,44.063000000000002,45.453000000000003,46.844000000000001,48.234000000000002,49.624000000000002,51.014000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,661,1,46.848500000000001,0.029680000000000002,42.677,44.067999999999998,45.457999999999998,46.847999999999999,48.238999999999997,49.628999999999998,51.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,662,1,46.853499999999997,0.029680000000000002,42.682000000000002,44.072000000000003,45.463000000000001,46.853999999999999,48.244,49.634999999999998,51.024999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,663,1,46.858400000000003,0.029680000000000002,42.686,44.076999999999998,45.468000000000004,46.857999999999997,48.249000000000002,49.64,51.030999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,664,1,46.863399999999999,0.029680000000000002,42.691000000000003,44.082000000000001,45.472000000000001,46.863,48.253999999999998,49.645000000000003,51.036000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,665,1,46.868400000000001,0.029669999999999998,42.697000000000003,44.087000000000003,45.478000000000002,46.868000000000002,48.259,49.65,51.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,666,1,46.8733,0.029669999999999998,42.701000000000001,44.091999999999999,45.482999999999997,46.872999999999998,48.264000000000003,49.655000000000001,51.045000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,667,1,46.878300000000003,0.029669999999999998,42.706000000000003,44.097000000000001,45.487000000000002,46.878,48.268999999999998,49.66,51.051000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,668,1,46.883200000000002,0.029669999999999998,42.71,44.100999999999999,45.491999999999997,46.883000000000003,48.274000000000001,49.664999999999999,51.055999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,669,1,46.888199999999998,0.029669999999999998,42.715000000000003,44.106000000000002,45.497,46.887999999999998,48.279000000000003,49.670999999999999,51.061999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,670,1,46.893099999999997,0.029669999999999998,42.719000000000001,44.11,45.502000000000002,46.893000000000001,48.283999999999999,49.676000000000002,51.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,671,1,46.898099999999999,0.029659999999999999,42.725000000000001,44.116,45.506999999999998,46.898000000000003,48.289000000000001,49.68,51.070999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,672,1,46.902999999999999,0.029659999999999999,42.73,44.121000000000002,45.512,46.902999999999999,48.293999999999997,49.685000000000002,51.076000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,673,1,46.907899999999998,0.029659999999999999,42.734000000000002,44.125,45.517000000000003,46.908000000000001,48.298999999999999,49.69,51.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,674,1,46.912799999999997,0.029659999999999999,42.738,44.13,45.521000000000001,46.912999999999997,48.304000000000002,49.695999999999998,51.087000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,675,1,46.917700000000004,0.029659999999999999,42.743000000000002,44.134999999999998,45.526000000000003,46.917999999999999,48.308999999999997,49.701000000000001,51.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,676,1,46.922699999999999,0.029659999999999999,42.747999999999998,44.139000000000003,45.530999999999999,46.923000000000002,48.314,49.706000000000003,51.097999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,677,1,46.927599999999998,0.029659999999999999,42.752000000000002,44.143999999999998,45.536000000000001,46.927999999999997,48.319000000000003,49.710999999999999,51.103000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,678,1,46.932499999999997,0.029649999999999999,42.758000000000003,44.149000000000001,45.540999999999997,46.932000000000002,48.323999999999998,49.716000000000001,51.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,679,1,46.9373,0.029649999999999999,42.762,44.154000000000003,45.545999999999999,46.936999999999998,48.329000000000001,49.720999999999997,51.112000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,680,1,46.9422,0.029649999999999999,42.767000000000003,44.158999999999999,45.55,46.942,48.334000000000003,49.725999999999999,51.118000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,681,1,46.947099999999999,0.029649999999999999,42.771000000000001,44.162999999999997,45.555,46.947000000000003,48.338999999999999,49.731000000000002,51.122999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,682,1,46.951999999999998,0.029649999999999999,42.776000000000003,44.167999999999999,45.56,46.951999999999998,48.344000000000001,49.735999999999997,51.128 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,683,1,46.956899999999997,0.029649999999999999,42.78,44.171999999999997,45.564999999999998,46.957000000000001,48.348999999999997,49.741,51.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,684,1,46.9617,0.02964,42.786000000000001,44.177999999999997,45.57,46.962000000000003,48.353999999999999,49.746000000000002,51.137999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,685,1,46.9666,0.02964,42.79,44.182000000000002,45.575000000000003,46.966999999999999,48.359000000000002,49.750999999999998,51.143000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,686,1,46.971400000000003,0.02964,42.795000000000002,44.186999999999998,45.579000000000001,46.970999999999997,48.363999999999997,49.756,51.148000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,687,1,46.976300000000002,0.02964,42.798999999999999,44.192,45.584000000000003,46.975999999999999,48.369,49.761000000000003,51.152999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,688,1,46.981099999999998,0.02964,42.804000000000002,44.195999999999998,45.588999999999999,46.981000000000002,48.374000000000002,49.765999999999998,51.158999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,689,1,46.985999999999997,0.02964,42.808,44.201000000000001,45.593000000000004,46.985999999999997,48.378999999999998,49.771000000000001,51.164000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,690,1,46.9908,0.02964,42.811999999999998,44.204999999999998,45.597999999999999,46.991,48.384,49.776000000000003,51.168999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,691,1,46.995600000000003,0.02963,42.817999999999998,44.210999999999999,45.603000000000002,46.996000000000002,48.387999999999998,49.780999999999999,51.173000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,692,1,47.000399999999999,0.02963,42.823,44.215000000000003,45.607999999999997,47,48.393000000000001,49.786000000000001,51.177999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,693,1,47.005299999999998,0.02963,42.826999999999998,44.22,45.613,47.005000000000003,48.398000000000003,49.790999999999997,51.183999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,694,1,47.010100000000001,0.02963,42.831000000000003,44.223999999999997,45.616999999999997,47.01,48.402999999999999,49.795999999999999,51.189 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,695,1,47.014899999999997,0.02963,42.835999999999999,44.228999999999999,45.622,47.015000000000001,48.408000000000001,49.801000000000002,51.194000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,696,1,47.0197,0.02963,42.84,44.232999999999997,45.627000000000002,47.02,48.412999999999997,49.805999999999997,51.198999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,697,1,47.024500000000003,0.02962,42.845999999999997,44.238999999999997,45.631999999999998,47.024000000000001,48.417000000000002,49.81,51.203000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,698,1,47.029299999999999,0.02962,42.85,44.243000000000002,45.636000000000003,47.029000000000003,48.421999999999997,49.814999999999998,51.207999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,699,1,47.034100000000002,0.02962,42.854999999999997,44.247999999999998,45.640999999999998,47.033999999999999,48.427,49.82,51.213999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,700,1,47.038800000000002,0.02962,42.859000000000002,44.252000000000002,45.646000000000001,47.039000000000001,48.432000000000002,49.825000000000003,51.219000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,701,1,47.043599999999998,0.02962,42.863,44.256999999999998,45.65,47.043999999999997,48.436999999999998,49.83,51.223999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,702,1,47.048400000000001,0.02962,42.868000000000002,44.261000000000003,45.655000000000001,47.048000000000002,48.442,49.835999999999999,51.228999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,703,1,47.053199999999997,0.02962,42.872,44.265999999999998,45.658999999999999,47.052999999999997,48.447000000000003,49.841000000000001,51.234000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,704,1,47.057899999999997,0.029610000000000001,42.878,44.271000000000001,45.664999999999999,47.058,48.451000000000001,49.844999999999999,51.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,705,1,47.0627,0.029610000000000001,42.881999999999998,44.276000000000003,45.668999999999997,47.063000000000002,48.456000000000003,49.85,51.243000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,706,1,47.067399999999999,0.029610000000000001,42.886000000000003,44.28,45.673999999999999,47.067,48.460999999999999,49.854999999999997,51.247999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,707,1,47.072200000000002,0.029610000000000001,42.890999999999998,44.284999999999997,45.677999999999997,47.072000000000003,48.466000000000001,49.86,51.253999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,708,1,47.076900000000002,0.029610000000000001,42.895000000000003,44.289000000000001,45.683,47.076999999999998,48.470999999999997,49.865000000000002,51.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,709,1,47.081600000000002,0.029610000000000001,42.899000000000001,44.292999999999999,45.688000000000002,47.082000000000001,48.475999999999999,49.87,51.264000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,710,1,47.086399999999998,0.029610000000000001,42.904000000000003,44.298000000000002,45.692,47.085999999999999,48.481000000000002,49.875,51.268999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,711,1,47.091099999999997,0.029600000000000001,42.908999999999999,44.302999999999997,45.697000000000003,47.091000000000001,48.484999999999999,49.878999999999998,51.273000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,712,1,47.095799999999997,0.029600000000000001,42.914000000000001,44.308,45.701999999999998,47.095999999999997,48.49,49.884,51.277999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,713,1,47.100499999999997,0.029600000000000001,42.917999999999999,44.311999999999998,45.706000000000003,47.1,48.494999999999997,49.889000000000003,51.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,714,1,47.105200000000004,0.029600000000000001,42.921999999999997,44.317,45.710999999999999,47.104999999999997,48.5,49.893999999999998,51.287999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,715,1,47.109900000000003,0.029600000000000001,42.927,44.320999999999998,45.715000000000003,47.11,48.503999999999998,49.899000000000001,51.292999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,716,1,47.114600000000003,0.029600000000000001,42.930999999999997,44.325000000000003,45.72,47.115000000000002,48.509,49.904000000000003,51.298000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,717,1,47.119300000000003,0.029590000000000002,42.936999999999998,44.331000000000003,45.725000000000001,47.119,48.514000000000003,49.908000000000001,51.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,718,1,47.124000000000002,0.029590000000000002,42.941000000000003,44.335000000000001,45.73,47.124000000000002,48.518000000000001,49.912999999999997,51.307000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,719,1,47.128700000000002,0.029590000000000002,42.945,44.34,45.734000000000002,47.128999999999998,48.523000000000003,49.917999999999999,51.311999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,720,1,47.133400000000002,0.029590000000000002,42.948999999999998,44.344000000000001,45.738999999999997,47.133000000000003,48.527999999999999,49.923000000000002,51.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,721,1,47.137999999999998,0.029590000000000002,42.954000000000001,44.347999999999999,45.743000000000002,47.137999999999998,48.533000000000001,49.927999999999997,51.322000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,722,1,47.142699999999998,0.029590000000000002,42.957999999999998,44.353000000000002,45.747999999999998,47.143000000000001,48.537999999999997,49.933,51.328000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,723,1,47.147399999999998,0.029590000000000002,42.962000000000003,44.356999999999999,45.752000000000002,47.146999999999998,48.542000000000002,49.938000000000002,51.332999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,724,1,47.152000000000001,0.029579999999999999,42.968000000000004,44.362000000000002,45.756999999999998,47.152000000000001,48.546999999999997,49.942,51.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,725,1,47.156700000000001,0.029579999999999999,42.972000000000001,44.366999999999997,45.762,47.156999999999996,48.552,49.945999999999998,51.341000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,726,1,47.161299999999997,0.029579999999999999,42.975999999999999,44.371000000000002,45.765999999999998,47.161000000000001,48.555999999999997,49.951000000000001,51.345999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,727,1,47.165999999999997,0.029579999999999999,42.98,44.375999999999998,45.771000000000001,47.165999999999997,48.561,49.956000000000003,51.351999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,728,1,47.1706,0.029579999999999999,42.984999999999999,44.38,45.774999999999999,47.170999999999999,48.566000000000003,49.960999999999999,51.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,729,1,47.175199999999997,0.029579999999999999,42.988999999999997,44.384,45.78,47.174999999999997,48.570999999999998,49.966000000000001,51.362000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,730,1,47.179900000000004,0.029579999999999999,42.993000000000002,44.389000000000003,45.783999999999999,47.18,48.575000000000003,49.970999999999997,51.366999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,731,1,47.1845,0.029569999999999999,42.999000000000002,44.393999999999998,45.789000000000001,47.183999999999997,48.58,49.975000000000001,51.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,732,1,47.189100000000003,0.029569999999999999,43.003,44.398000000000003,45.793999999999997,47.189,48.584000000000003,49.98,51.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,733,1,47.1937,0.029569999999999999,43.006999999999998,44.402999999999999,45.798000000000002,47.194000000000003,48.588999999999999,49.984999999999999,51.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,734,1,47.198300000000003,0.029569999999999999,43.011000000000003,44.406999999999996,45.802999999999997,47.198,48.594000000000001,49.99,51.384999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,735,1,47.2029,0.029569999999999999,43.015999999999998,44.411000000000001,45.807000000000002,47.203000000000003,48.598999999999997,49.994,51.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,736,1,47.207500000000003,0.029569999999999999,43.02,44.415999999999997,45.811999999999998,47.207999999999998,48.603000000000002,49.999000000000002,51.395000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,737,1,47.2121,0.029569999999999999,43.024000000000001,44.42,45.816000000000003,47.212000000000003,48.607999999999997,50.003999999999998,51.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,738,1,47.216700000000003,0.029559999999999999,43.03,44.424999999999997,45.820999999999998,47.216999999999999,48.612000000000002,50.008000000000003,51.404000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,739,1,47.221299999999999,0.029559999999999999,43.033999999999999,44.43,45.825000000000003,47.220999999999997,48.616999999999997,50.012999999999998,51.408999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,740,1,47.2258,0.029559999999999999,43.037999999999997,44.433999999999997,45.83,47.225999999999999,48.622,50.018000000000001,51.414000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,741,1,47.230400000000003,0.029559999999999999,43.042000000000002,44.438000000000002,45.834000000000003,47.23,48.627000000000002,50.023000000000003,51.418999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,742,1,47.234999999999999,0.029559999999999999,43.045999999999999,44.442,45.838999999999999,47.234999999999999,48.631,50.027999999999999,51.423999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,743,1,47.2395,0.029559999999999999,43.05,44.447000000000003,45.843000000000004,47.24,48.636000000000003,50.031999999999996,51.429000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,744,1,47.244100000000003,0.02955,43.055999999999997,44.451999999999998,45.847999999999999,47.244,48.64,50.036000000000001,51.432000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,745,1,47.248600000000003,0.02955,43.06,44.456000000000003,45.851999999999997,47.249000000000002,48.645000000000003,50.040999999999997,51.436999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,746,1,47.2532,0.02955,43.064,44.460999999999999,45.856999999999999,47.253,48.65,50.045999999999999,51.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,747,1,47.2577,0.02955,43.067999999999998,44.465000000000003,45.860999999999997,47.258000000000003,48.654000000000003,50.051000000000002,51.447000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,748,1,47.2622,0.02955,43.072000000000003,44.469000000000001,45.866,47.262,48.658999999999999,50.055,51.451999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,749,1,47.266800000000003,0.02955,43.076999999999998,44.472999999999999,45.87,47.267000000000003,48.664000000000001,50.06,51.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,750,1,47.271299999999997,0.02955,43.081000000000003,44.478000000000002,45.874000000000002,47.271000000000001,48.667999999999999,50.064999999999998,51.462000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,751,1,47.275799999999997,0.02954,43.085999999999999,44.482999999999997,45.878999999999998,47.276000000000003,48.671999999999997,50.069000000000003,51.465000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,752,1,47.280299999999997,0.02954,43.09,44.487000000000002,45.884,47.28,48.677,50.073999999999998,51.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,753,1,47.284799999999997,0.02954,43.094000000000001,44.491,45.887999999999998,47.284999999999997,48.682000000000002,50.078000000000003,51.475000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,754,1,47.289299999999997,0.02954,43.098999999999997,44.494999999999997,45.892000000000003,47.289000000000001,48.686,50.082999999999998,51.48 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,755,1,47.293799999999997,0.02954,43.103000000000002,44.5,45.896999999999998,47.293999999999997,48.691000000000003,50.088000000000001,51.484999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,756,1,47.298299999999998,0.02954,43.106999999999999,44.503999999999998,45.901000000000003,47.298000000000002,48.695,50.093000000000004,51.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,757,1,47.302799999999998,0.02954,43.110999999999997,44.508000000000003,45.905000000000001,47.302999999999997,48.7,50.097000000000001,51.494999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,758,1,47.307299999999998,0.029530000000000001,43.116,44.512999999999998,45.91,47.307000000000002,48.704000000000001,50.100999999999999,51.497999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,759,1,47.311700000000002,0.029530000000000001,43.12,44.517000000000003,45.914999999999999,47.311999999999998,48.709000000000003,50.106000000000002,51.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,760,1,47.316200000000002,0.029530000000000001,43.124000000000002,44.521999999999998,45.918999999999997,47.316000000000003,48.713000000000001,50.110999999999997,51.508000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,761,1,47.320700000000002,0.029530000000000001,43.128999999999998,44.526000000000003,45.923000000000002,47.320999999999998,48.718000000000004,50.115000000000002,51.512999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,762,1,47.325099999999999,0.029530000000000001,43.133000000000003,44.53,45.927999999999997,47.325000000000003,48.722999999999999,50.12,51.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,763,1,47.329599999999999,0.029530000000000001,43.137,44.533999999999999,45.932000000000002,47.33,48.726999999999997,50.125,51.523000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,764,1,47.334000000000003,0.029530000000000001,43.140999999999998,44.537999999999997,45.936,47.334000000000003,48.731999999999999,50.13,51.527000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,765,1,47.338500000000003,0.029520000000000001,43.146000000000001,44.543999999999997,45.941000000000003,47.338000000000001,48.735999999999997,50.133000000000003,51.530999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,766,1,47.3429,0.029520000000000001,43.15,44.548000000000002,45.945,47.343000000000004,48.74,50.137999999999998,51.536000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,767,1,47.347299999999997,0.029520000000000001,43.154000000000003,44.552,45.95,47.347000000000001,48.744999999999997,50.143000000000001,51.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,768,1,47.351700000000001,0.029520000000000001,43.158000000000001,44.555999999999997,45.954000000000001,47.351999999999997,48.75,50.146999999999998,51.545000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,769,1,47.356200000000001,0.029520000000000001,43.161999999999999,44.56,45.957999999999998,47.356000000000002,48.753999999999998,50.152000000000001,51.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,770,1,47.360599999999998,0.029520000000000001,43.165999999999997,44.564,45.963000000000001,47.360999999999997,48.759,50.156999999999996,51.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,771,1,47.365000000000002,0.029520000000000001,43.17,44.569000000000003,45.966999999999999,47.365000000000002,48.762999999999998,50.161000000000001,51.56 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,772,1,47.369399999999999,0.029520000000000001,43.173999999999999,44.573,45.970999999999997,47.369,48.768000000000001,50.165999999999997,51.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,773,1,47.373800000000003,0.029510000000000002,43.18,44.578000000000003,45.975999999999999,47.374000000000002,48.771999999999998,50.17,51.567999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,774,1,47.3782,0.029510000000000002,43.183999999999997,44.582000000000001,45.98,47.378,48.776000000000003,50.173999999999999,51.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,775,1,47.382599999999996,0.029510000000000002,43.188000000000002,44.585999999999999,45.984000000000002,47.383000000000003,48.780999999999999,50.179000000000002,51.576999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,776,1,47.387,0.029510000000000002,43.192,44.59,45.988999999999997,47.387,48.784999999999997,50.183999999999997,51.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,777,1,47.391300000000001,0.029510000000000002,43.195999999999998,44.594000000000001,45.993000000000002,47.390999999999998,48.79,50.188000000000002,51.587000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,778,1,47.395699999999998,0.029510000000000002,43.2,44.597999999999999,45.997,47.396000000000001,48.793999999999997,50.192999999999998,51.591999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,779,1,47.400100000000002,0.029510000000000002,43.204000000000001,44.603000000000002,46.000999999999998,47.4,48.798999999999999,50.198,51.595999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,780,1,47.404400000000003,0.029499999999999998,43.209000000000003,44.607999999999997,46.006,47.404000000000003,48.802999999999997,50.201000000000001,51.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,781,1,47.408799999999999,0.029499999999999998,43.213000000000001,44.612000000000002,46.01,47.408999999999999,48.807000000000002,50.206000000000003,51.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,782,1,47.4131,0.029499999999999998,43.216999999999999,44.616,46.014000000000003,47.412999999999997,48.811999999999998,50.21,51.609000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,783,1,47.417499999999997,0.029499999999999998,43.220999999999997,44.62,46.018999999999998,47.417999999999999,48.816000000000003,50.215000000000003,51.613999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,784,1,47.421799999999998,0.029499999999999998,43.225000000000001,44.624000000000002,46.023000000000003,47.421999999999997,48.820999999999998,50.22,51.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,785,1,47.426099999999998,0.029499999999999998,43.228999999999999,44.628,46.027000000000001,47.426000000000002,48.825000000000003,50.223999999999997,51.622999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,786,1,47.430500000000002,0.029499999999999998,43.232999999999997,44.631999999999998,46.030999999999999,47.43,48.83,50.228999999999999,51.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,787,1,47.434800000000003,0.029489999999999999,43.238,44.637,46.036000000000001,47.435000000000002,48.834000000000003,50.232999999999997,51.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,788,1,47.439100000000003,0.029489999999999999,43.241999999999997,44.640999999999998,46.04,47.439,48.838000000000001,50.237000000000002,51.636000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,789,1,47.443399999999997,0.029489999999999999,43.246000000000002,44.645000000000003,46.043999999999997,47.442999999999998,48.843000000000004,50.241999999999997,51.640999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,790,1,47.447699999999998,0.029489999999999999,43.25,44.649000000000001,46.048000000000002,47.448,48.847000000000001,50.246000000000002,51.645000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,791,1,47.451999999999998,0.029489999999999999,43.253999999999998,44.652999999999999,46.052999999999997,47.451999999999998,48.850999999999999,50.250999999999998,51.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,792,1,47.456299999999999,0.029489999999999999,43.258000000000003,44.656999999999996,46.057000000000002,47.456000000000003,48.856000000000002,50.255000000000003,51.655000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,793,1,47.460599999999999,0.029489999999999999,43.262,44.661000000000001,46.061,47.460999999999999,48.86,50.26,51.658999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,794,1,47.4649,0.029479999999999999,43.267000000000003,44.665999999999997,46.066000000000003,47.465000000000003,48.863999999999997,50.262999999999998,51.662999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,795,1,47.469200000000001,0.029479999999999999,43.271000000000001,44.67,46.07,47.469000000000001,48.869,50.268000000000001,51.667000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,796,1,47.473399999999998,0.029479999999999999,43.274999999999999,44.673999999999999,46.073999999999998,47.472999999999999,48.872999999999998,50.271999999999998,51.671999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,797,1,47.477699999999999,0.029479999999999999,43.279000000000003,44.677999999999997,46.078000000000003,47.478000000000002,48.877000000000002,50.277000000000001,51.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,798,1,47.481999999999999,0.029479999999999999,43.283000000000001,44.682000000000002,46.082000000000001,47.481999999999999,48.881999999999998,50.281999999999996,51.680999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,799,1,47.486199999999997,0.029479999999999999,43.286999999999999,44.686,46.085999999999999,47.485999999999997,48.886000000000003,50.286000000000001,51.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,800,1,47.490499999999997,0.029479999999999999,43.29,44.69,46.09,47.49,48.890999999999998,50.290999999999997,51.691000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,801,1,47.494700000000002,0.02947,43.295999999999999,44.695,46.094999999999999,47.494999999999997,48.893999999999998,50.293999999999997,51.694000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,802,1,47.498899999999999,0.02947,43.3,44.698999999999998,46.098999999999997,47.499000000000002,48.899000000000001,50.298000000000002,51.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,803,1,47.5032,0.02947,43.302999999999997,44.703000000000003,46.103000000000002,47.503,48.902999999999999,50.302999999999997,51.703000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,804,1,47.507399999999997,0.02947,43.307000000000002,44.707000000000001,46.106999999999999,47.506999999999998,48.906999999999996,50.307000000000002,51.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,805,1,47.511600000000001,0.02947,43.311,44.710999999999999,46.110999999999997,47.512,48.911999999999999,50.311999999999998,51.712000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,806,1,47.515799999999999,0.02947,43.314999999999998,44.715000000000003,46.116,47.515999999999998,48.915999999999997,50.316000000000003,51.716999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,807,1,47.52,0.02947,43.319000000000003,44.719000000000001,46.12,47.52,48.92,50.320999999999998,51.720999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,808,1,47.5242,0.02947,43.323,44.722999999999999,46.124000000000002,47.524000000000001,48.924999999999997,50.325000000000003,51.725999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,809,1,47.528399999999998,0.02946,43.328000000000003,44.728000000000002,46.128,47.527999999999999,48.929000000000002,50.329000000000001,51.728999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,810,1,47.532600000000002,0.02946,43.332000000000001,44.731999999999999,46.131999999999998,47.533000000000001,48.933,50.332999999999998,51.734000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,811,1,47.536799999999999,0.02946,43.335000000000001,44.735999999999997,46.136000000000003,47.536999999999999,48.936999999999998,50.338000000000001,51.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,812,1,47.540999999999997,0.02946,43.338999999999999,44.74,46.14,47.540999999999997,48.942,50.341999999999999,51.743000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,813,1,47.545200000000001,0.02946,43.343000000000004,44.744,46.145000000000003,47.545000000000002,48.945999999999998,50.347000000000001,51.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,814,1,47.549300000000002,0.02946,43.347000000000001,44.747999999999998,46.148000000000003,47.548999999999999,48.95,50.350999999999999,51.752000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,815,1,47.5535,0.02946,43.350999999999999,44.752000000000002,46.152999999999999,47.554000000000002,48.954000000000001,50.354999999999997,51.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,816,1,47.557699999999997,0.02945,43.356000000000002,44.756999999999998,46.156999999999996,47.558,48.957999999999998,50.359000000000002,51.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,817,1,47.561799999999998,0.02945,43.36,44.76,46.161000000000001,47.561999999999998,48.962000000000003,50.363,51.764000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,818,1,47.566000000000003,0.02945,43.363999999999997,44.764000000000003,46.164999999999999,47.566000000000003,48.966999999999999,50.368000000000002,51.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,819,1,47.570099999999996,0.02945,43.366999999999997,44.768000000000001,46.168999999999997,47.57,48.970999999999997,50.372,51.773000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,820,1,47.574199999999998,0.02945,43.371000000000002,44.771999999999998,46.173000000000002,47.573999999999998,48.975000000000001,50.375999999999998,51.777000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,821,1,47.578400000000002,0.02945,43.375,44.776000000000003,46.177,47.578000000000003,48.98,50.381,51.781999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,822,1,47.582500000000003,0.02945,43.378999999999998,44.78,46.180999999999997,47.582000000000001,48.984000000000002,50.384999999999998,51.786000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,823,1,47.586599999999997,0.02945,43.381999999999998,44.783999999999999,46.185000000000002,47.587000000000003,48.988,50.389000000000003,51.790999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,824,1,47.590699999999998,0.029440000000000001,43.387,44.789000000000001,46.19,47.591000000000001,48.991999999999997,50.393000000000001,51.793999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,825,1,47.594799999999999,0.029440000000000001,43.390999999999998,44.792000000000002,46.194000000000003,47.594999999999999,48.996000000000002,50.396999999999998,51.798000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,826,1,47.5989,0.029440000000000001,43.395000000000003,44.795999999999999,46.198,47.598999999999997,49,50.402000000000001,51.802999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,827,1,47.603000000000002,0.029440000000000001,43.399000000000001,44.8,46.201999999999998,47.603000000000002,49.003999999999998,50.405999999999999,51.807000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,828,1,47.607100000000003,0.029440000000000001,43.402000000000001,44.804000000000002,46.206000000000003,47.606999999999999,49.009,50.41,51.811999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,829,1,47.611199999999997,0.029440000000000001,43.405999999999999,44.808,46.21,47.610999999999997,49.012999999999998,50.414999999999999,51.816000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,830,1,47.615299999999998,0.029440000000000001,43.41,44.811999999999998,46.213999999999999,47.615000000000002,49.017000000000003,50.418999999999997,51.820999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,831,1,47.619300000000003,0.029430000000000001,43.414999999999999,44.816000000000003,46.218000000000004,47.619,49.021000000000001,50.421999999999997,51.823999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,832,1,47.623399999999997,0.029430000000000001,43.418999999999997,44.82,46.222000000000001,47.622999999999998,49.024999999999999,50.427,51.828000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,833,1,47.627499999999998,0.029430000000000001,43.421999999999997,44.823999999999998,46.225999999999999,47.628,49.029000000000003,50.430999999999997,51.832999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,834,1,47.631500000000003,0.029430000000000001,43.426000000000002,44.828000000000003,46.23,47.631999999999998,49.033000000000001,50.435000000000002,51.837000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,835,1,47.635599999999997,0.029430000000000001,43.43,44.832000000000001,46.234000000000002,47.636000000000003,49.037999999999997,50.439,51.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,836,1,47.639600000000002,0.029430000000000001,43.433,44.835999999999999,46.238,47.64,49.042000000000002,50.444000000000003,51.845999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,837,1,47.643599999999999,0.029430000000000001,43.436999999999998,44.838999999999999,46.241,47.643999999999998,49.045999999999999,50.448,51.85 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,838,1,47.6477,0.029430000000000001,43.441000000000003,44.843000000000004,46.244999999999997,47.648000000000003,49.05,50.451999999999998,51.854999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,839,1,47.651699999999998,0.029420000000000002,43.445999999999998,44.847999999999999,46.25,47.652000000000001,49.054000000000002,50.456000000000003,51.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,840,1,47.655700000000003,0.029420000000000002,43.45,44.851999999999997,46.253999999999998,47.655999999999999,49.058,50.46,51.862000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,841,1,47.659700000000001,0.029420000000000002,43.453000000000003,44.854999999999997,46.258000000000003,47.66,49.061999999999998,50.463999999999999,51.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,842,1,47.663699999999999,0.029420000000000002,43.457000000000001,44.859000000000002,46.261000000000003,47.664000000000001,49.066000000000003,50.468000000000004,51.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,843,1,47.667700000000004,0.029420000000000002,43.460999999999999,44.863,46.265000000000001,47.667999999999999,49.07,50.472000000000001,51.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,844,1,47.671700000000001,0.029420000000000002,43.463999999999999,44.866999999999997,46.268999999999998,47.671999999999997,49.073999999999998,50.476999999999997,51.878999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,845,1,47.675699999999999,0.029420000000000002,43.468000000000004,44.87,46.273000000000003,47.676000000000002,49.078000000000003,50.481000000000002,51.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,846,1,47.679699999999997,0.029409999999999999,43.472999999999999,44.875,46.277000000000001,47.68,49.082000000000001,50.484000000000002,51.886000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,847,1,47.683700000000002,0.029409999999999999,43.476999999999997,44.878999999999998,46.280999999999999,47.683999999999997,49.085999999999999,50.488,51.890999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,848,1,47.6877,0.029409999999999999,43.48,44.883000000000003,46.284999999999997,47.688000000000002,49.09,50.493000000000002,51.895000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,849,1,47.691600000000001,0.029409999999999999,43.484000000000002,44.886000000000003,46.289000000000001,47.692,49.094000000000001,50.497,51.899000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,850,1,47.695599999999999,0.029409999999999999,43.487000000000002,44.89,46.292999999999999,47.695999999999998,49.097999999999999,50.500999999999998,51.904000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,851,1,47.6995,0.029409999999999999,43.491,44.893999999999998,46.296999999999997,47.7,49.101999999999997,50.505000000000003,51.908000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,852,1,47.703499999999998,0.029409999999999999,43.494999999999997,44.898000000000003,46.301000000000002,47.704000000000001,49.106000000000002,50.509,51.911999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,853,1,47.7074,0.029409999999999999,43.497999999999998,44.901000000000003,46.304000000000002,47.707000000000001,49.11,50.514000000000003,51.917000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,854,1,47.711399999999998,0.029399999999999999,43.503,44.905999999999999,46.308999999999997,47.710999999999999,49.113999999999997,50.517000000000003,51.92 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,855,1,47.715299999999999,0.029399999999999999,43.506999999999998,44.91,46.311999999999998,47.715000000000003,49.118000000000002,50.521000000000001,51.923999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,856,1,47.719200000000001,0.029399999999999999,43.51,44.912999999999997,46.316000000000003,47.719000000000001,49.122,50.524999999999999,51.927999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,857,1,47.723199999999999,0.029399999999999999,43.514000000000003,44.917000000000002,46.32,47.722999999999999,49.125999999999998,50.529000000000003,51.932000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,858,1,47.7271,0.029399999999999999,43.518000000000001,44.920999999999999,46.323999999999998,47.726999999999997,49.13,50.533000000000001,51.936999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,859,1,47.731000000000002,0.029399999999999999,43.521000000000001,44.923999999999999,46.328000000000003,47.731000000000002,49.134,50.537999999999997,51.941000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,860,1,47.734900000000003,0.029399999999999999,43.524999999999999,44.927999999999997,46.331000000000003,47.734999999999999,49.137999999999998,50.542000000000002,51.945 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,861,1,47.738799999999998,0.029399999999999999,43.527999999999999,44.932000000000002,46.335000000000001,47.738999999999997,49.142000000000003,50.545999999999999,51.948999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,862,1,47.742699999999999,0.029389999999999999,43.533000000000001,44.936,46.34,47.743000000000002,49.146000000000001,50.548999999999999,51.951999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,863,1,47.746600000000001,0.029389999999999999,43.536999999999999,44.94,46.343000000000004,47.747,49.15,50.552999999999997,51.956000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,864,1,47.750399999999999,0.029389999999999999,43.54,44.944000000000003,46.347000000000001,47.75,49.154000000000003,50.557000000000002,51.960999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,865,1,47.754300000000001,0.029389999999999999,43.543999999999997,44.947000000000003,46.350999999999999,47.753999999999998,49.158000000000001,50.561,51.965000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,866,1,47.758200000000002,0.029389999999999999,43.546999999999997,44.951000000000001,46.354999999999997,47.758000000000003,49.161999999999999,50.564999999999998,51.969000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,867,1,47.762,0.029389999999999999,43.551000000000002,44.954999999999998,46.357999999999997,47.762,49.165999999999997,50.569000000000003,51.972999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,868,1,47.765900000000002,0.029389999999999999,43.554000000000002,44.957999999999998,46.362000000000002,47.765999999999998,49.17,50.573999999999998,51.976999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,869,1,47.769799999999996,0.029389999999999999,43.558,44.962000000000003,46.366,47.77,49.173999999999999,50.578000000000003,51.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,870,1,47.773600000000002,0.02938,43.563000000000002,44.966000000000001,46.37,47.774000000000001,49.177,50.581000000000003,51.984000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,871,1,47.7774,0.02938,43.566000000000003,44.97,46.374000000000002,47.777000000000001,49.180999999999997,50.585000000000001,51.988999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,872,1,47.781300000000002,0.02938,43.57,44.973999999999997,46.377000000000002,47.780999999999999,49.185000000000002,50.588999999999999,51.993000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,873,1,47.7851,0.02938,43.573,44.976999999999997,46.381,47.784999999999997,49.189,50.593000000000004,51.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,874,1,47.788899999999998,0.02938,43.576999999999998,44.981000000000002,46.384999999999998,47.789000000000001,49.192999999999998,50.597000000000001,52.000999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,875,1,47.792700000000004,0.02938,43.58,44.984000000000002,46.389000000000003,47.792999999999999,49.197000000000003,50.600999999999999,52.005000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,876,1,47.796599999999998,0.02938,43.584000000000003,44.988,46.392000000000003,47.796999999999997,49.201000000000001,50.604999999999997,52.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,877,1,47.800400000000003,0.02938,43.587000000000003,44.991999999999997,46.396000000000001,47.8,49.204999999999998,50.609000000000002,52.014000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,878,1,47.804200000000002,0.02937,43.591999999999999,44.996000000000002,46.4,47.804000000000002,49.207999999999998,50.612000000000002,52.015999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,879,1,47.808,0.02937,43.595999999999997,45,46.404000000000003,47.808,49.212000000000003,50.616,52.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,880,1,47.811700000000002,0.02937,43.598999999999997,45.003,46.406999999999996,47.811999999999998,49.216000000000001,50.62,52.024000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,881,1,47.8155,0.02937,43.601999999999997,45.006999999999998,46.411000000000001,47.816000000000003,49.22,50.624000000000002,52.029000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,882,1,47.819299999999998,0.02937,43.606000000000002,45.01,46.414999999999999,47.819000000000003,49.223999999999997,50.628,52.033000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,883,1,47.823099999999997,0.02937,43.609000000000002,45.014000000000003,46.418999999999997,47.823,49.228000000000002,50.631999999999998,52.036999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,884,1,47.826799999999999,0.02937,43.613,45.017000000000003,46.421999999999997,47.826999999999998,49.231000000000002,50.636000000000003,52.040999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,885,1,47.830599999999997,0.02937,43.616,45.021000000000001,46.426000000000002,47.831000000000003,49.234999999999999,50.64,52.045000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,886,1,47.834400000000002,0.029360000000000001,43.621000000000002,45.026000000000003,46.43,47.834000000000003,49.238999999999997,50.643000000000001,52.048000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,887,1,47.838099999999997,0.029360000000000001,43.625,45.029000000000003,46.433999999999997,47.838000000000001,49.243000000000002,50.646999999999998,52.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,888,1,47.841799999999999,0.029360000000000001,43.628,45.033000000000001,46.436999999999998,47.841999999999999,49.246000000000002,50.651000000000003,52.055999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,889,1,47.845599999999997,0.029360000000000001,43.631,45.036000000000001,46.441000000000003,47.845999999999997,49.25,50.655000000000001,52.06 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,890,1,47.849299999999999,0.029360000000000001,43.634999999999998,45.04,46.444000000000003,47.848999999999997,49.253999999999998,50.658999999999999,52.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,891,1,47.853000000000002,0.029360000000000001,43.637999999999998,45.042999999999999,46.448,47.853000000000002,49.258000000000003,50.662999999999997,52.067999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,892,1,47.8568,0.029360000000000001,43.642000000000003,45.046999999999997,46.451999999999998,47.856999999999999,49.262,50.667000000000002,52.072000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,893,1,47.860500000000002,0.029350000000000001,43.646000000000001,45.051000000000002,46.456000000000003,47.86,49.265000000000001,50.67,52.075000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,894,1,47.864199999999997,0.029350000000000001,43.65,45.055,46.459000000000003,47.863999999999997,49.268999999999998,50.673999999999999,52.079000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,895,1,47.867899999999999,0.029350000000000001,43.652999999999999,45.058,46.463000000000001,47.868000000000002,49.273000000000003,50.677999999999997,52.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,896,1,47.871600000000001,0.029350000000000001,43.656999999999996,45.061999999999998,46.466999999999999,47.872,49.277000000000001,50.682000000000002,52.087000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,897,1,47.875300000000003,0.029350000000000001,43.66,45.064999999999998,46.47,47.875,49.28,50.686,52.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,898,1,47.878999999999998,0.029350000000000001,43.662999999999997,45.069000000000003,46.473999999999997,47.878999999999998,49.283999999999999,50.689,52.094999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,899,1,47.882599999999996,0.029350000000000001,43.667000000000002,45.072000000000003,46.476999999999997,47.883000000000003,49.287999999999997,50.692999999999998,52.098999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,900,1,47.886299999999999,0.029350000000000001,43.67,45.075000000000003,46.481000000000002,47.886000000000003,49.292000000000002,50.697000000000003,52.103000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,901,1,47.89,0.029350000000000001,43.673000000000002,45.079000000000001,46.484000000000002,47.89,49.295999999999999,50.701000000000001,52.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,902,1,47.893599999999999,0.029340000000000001,43.677999999999997,45.082999999999998,46.488,47.893999999999998,49.298999999999999,50.704000000000001,52.109000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,903,1,47.897300000000001,0.029340000000000001,43.680999999999997,45.087000000000003,46.491999999999997,47.896999999999998,49.302999999999997,50.707999999999998,52.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,904,1,47.9009,0.029340000000000001,43.685000000000002,45.09,46.494999999999997,47.901000000000003,49.305999999999997,50.712000000000003,52.116999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,905,1,47.904600000000002,0.029340000000000001,43.688000000000002,45.094000000000001,46.499000000000002,47.905000000000001,49.31,50.716000000000001,52.121000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,906,1,47.908200000000001,0.029340000000000001,43.691000000000003,45.097000000000001,46.503,47.908000000000001,49.314,50.719000000000001,52.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,907,1,47.911900000000003,0.029340000000000001,43.695,45.1,46.506,47.911999999999999,49.317999999999998,50.722999999999999,52.128999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,908,1,47.915500000000002,0.029340000000000001,43.698,45.103999999999999,46.51,47.915999999999997,49.320999999999998,50.726999999999997,52.133000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,909,1,47.9191,0.029340000000000001,43.701000000000001,45.106999999999999,46.512999999999998,47.918999999999997,49.325000000000003,50.731000000000002,52.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,910,1,47.922699999999999,0.029329999999999998,43.706000000000003,45.112000000000002,46.517000000000003,47.923000000000002,49.328000000000003,50.734000000000002,52.139000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,911,1,47.926400000000001,0.029329999999999998,43.709000000000003,45.115000000000002,46.521000000000001,47.926000000000002,49.332000000000001,50.738,52.143000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,912,1,47.93,0.029329999999999998,43.713000000000001,45.118000000000002,46.524000000000001,47.93,49.335999999999999,50.741999999999997,52.146999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,913,1,47.933599999999998,0.029329999999999998,43.716000000000001,45.122,46.527999999999999,47.933999999999997,49.338999999999999,50.744999999999997,52.151000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,914,1,47.937199999999997,0.029329999999999998,43.719000000000001,45.125,46.530999999999999,47.936999999999998,49.343000000000004,50.749000000000002,52.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,915,1,47.9407,0.029329999999999998,43.722000000000001,45.128,46.534999999999997,47.941000000000003,49.347000000000001,50.753,52.158999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,916,1,47.944299999999998,0.029329999999999998,43.725999999999999,45.131999999999998,46.537999999999997,47.944000000000003,49.350999999999999,50.756999999999998,52.162999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,917,1,47.947899999999997,0.029329999999999998,43.728999999999999,45.134999999999998,46.542000000000002,47.948,49.353999999999999,50.761000000000003,52.167000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,918,1,47.951500000000003,0.029319999999999999,43.734000000000002,45.14,46.545999999999999,47.951999999999998,49.356999999999999,50.762999999999998,52.168999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,919,1,47.955100000000002,0.029319999999999999,43.737000000000002,45.143000000000001,46.548999999999999,47.954999999999998,49.360999999999997,50.767000000000003,52.173000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,920,1,47.958599999999997,0.029319999999999999,43.74,45.146000000000001,46.552,47.959000000000003,49.365000000000002,50.771000000000001,52.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,921,1,47.962200000000003,0.029319999999999999,43.743000000000002,45.15,46.555999999999997,47.962000000000003,49.368000000000002,50.774999999999999,52.180999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,922,1,47.965699999999998,0.029319999999999999,43.747,45.152999999999999,46.558999999999997,47.966000000000001,49.372,50.777999999999999,52.185000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,923,1,47.969299999999997,0.029319999999999999,43.75,45.155999999999999,46.563000000000002,47.969000000000001,49.375999999999998,50.781999999999996,52.189 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,924,1,47.972799999999999,0.029319999999999999,43.753,45.16,46.566000000000003,47.972999999999999,49.378999999999998,50.786000000000001,52.192 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,925,1,47.976399999999998,0.029319999999999999,43.756,45.162999999999997,46.57,47.975999999999999,49.383000000000003,50.79,52.195999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,926,1,47.979900000000001,0.029309999999999999,43.761000000000003,45.167000000000002,46.573999999999998,47.98,49.386000000000003,50.792000000000002,52.198999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,927,1,47.983400000000003,0.029309999999999999,43.764000000000003,45.170999999999999,46.576999999999998,47.982999999999997,49.39,50.795999999999999,52.203000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,928,1,47.986899999999999,0.029309999999999999,43.767000000000003,45.173999999999999,46.58,47.987000000000002,49.393000000000001,50.8,52.206000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,929,1,47.990400000000001,0.029309999999999999,43.771000000000001,45.177,46.584000000000003,47.99,49.396999999999998,50.804000000000002,52.21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,930,1,47.993899999999996,0.029309999999999999,43.774000000000001,45.18,46.587000000000003,47.994,49.401000000000003,50.807000000000002,52.213999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,931,1,47.997500000000002,0.029309999999999999,43.777000000000001,45.183999999999997,46.591000000000001,47.997999999999998,49.404000000000003,50.811,52.218000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,932,1,48.000900000000001,0.029309999999999999,43.78,45.186999999999998,46.594000000000001,48.000999999999998,49.408000000000001,50.814999999999998,52.222000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,933,1,48.004399999999997,0.029309999999999999,43.783000000000001,45.19,46.597000000000001,48.003999999999998,49.411000000000001,50.817999999999998,52.225000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,934,1,48.007899999999999,0.0293,43.787999999999997,45.195,46.600999999999999,48.008000000000003,49.414999999999999,50.820999999999998,52.228000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,935,1,48.011400000000002,0.0293,43.790999999999997,45.198,46.604999999999997,48.011000000000003,49.417999999999999,50.825000000000003,52.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,936,1,48.014899999999997,0.0293,43.793999999999997,45.201000000000001,46.607999999999997,48.015000000000001,49.421999999999997,50.829000000000001,52.234999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,937,1,48.0184,0.0293,43.798000000000002,45.204999999999998,46.610999999999997,48.018000000000001,49.424999999999997,50.832000000000001,52.238999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,938,1,48.021799999999999,0.0293,43.801000000000002,45.207999999999998,46.615000000000002,48.021999999999998,49.429000000000002,50.835999999999999,52.243000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,939,1,48.025300000000001,0.0293,43.804000000000002,45.210999999999999,46.618000000000002,48.024999999999999,49.432000000000002,50.84,52.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,940,1,48.028700000000001,0.0293,43.807000000000002,45.213999999999999,46.621000000000002,48.029000000000003,49.436,50.843000000000004,52.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,941,1,48.032200000000003,0.0293,43.81,45.218000000000004,46.625,48.031999999999996,49.44,50.847000000000001,52.253999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,942,1,48.035600000000002,0.0293,43.813000000000002,45.220999999999997,46.628,48.036000000000001,49.442999999999998,50.85,52.258000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,943,1,48.039099999999998,0.02929,43.817999999999998,45.225000000000001,46.631999999999998,48.039000000000001,49.445999999999998,50.853000000000002,52.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,944,1,48.042499999999997,0.02929,43.820999999999998,45.228000000000002,46.634999999999998,48.042000000000002,49.45,50.856999999999999,52.264000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,945,1,48.045900000000003,0.02929,43.823999999999998,45.231000000000002,46.639000000000003,48.045999999999999,49.453000000000003,50.86,52.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,946,1,48.049399999999999,0.02929,43.826999999999998,45.234999999999999,46.642000000000003,48.048999999999999,49.457000000000001,50.863999999999997,52.271999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,947,1,48.052799999999998,0.02929,43.83,45.238,46.645000000000003,48.052999999999997,49.46,50.868000000000002,52.274999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,948,1,48.056199999999997,0.02929,43.834000000000003,45.241,46.649000000000001,48.055999999999997,49.463999999999999,50.871000000000002,52.279000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,949,1,48.059600000000003,0.02929,43.837000000000003,45.244,46.652000000000001,48.06,49.466999999999999,50.875,52.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,950,1,48.063000000000002,0.02929,43.84,45.247,46.655000000000001,48.063000000000002,49.470999999999997,50.878999999999998,52.286000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,951,1,48.066400000000002,0.02928,43.844000000000001,45.252000000000002,46.658999999999999,48.066000000000003,49.473999999999997,50.881,52.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,952,1,48.069800000000001,0.02928,43.847000000000001,45.255000000000003,46.661999999999999,48.07,49.476999999999997,50.884999999999998,52.292000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,953,1,48.0732,0.02928,43.85,45.258000000000003,46.665999999999997,48.073,49.481000000000002,50.887999999999998,52.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,954,1,48.076599999999999,0.02928,43.853999999999999,45.261000000000003,46.668999999999997,48.076999999999998,49.484000000000002,50.892000000000003,52.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,955,1,48.08,0.02928,43.856999999999999,45.264000000000003,46.671999999999997,48.08,49.488,50.896000000000001,52.302999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,956,1,48.083300000000001,0.02928,43.86,45.268000000000001,46.674999999999997,48.082999999999998,49.491,50.899000000000001,52.307000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,957,1,48.0867,0.02928,43.863,45.271000000000001,46.679000000000002,48.087000000000003,49.494999999999997,50.902999999999999,52.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,958,1,48.0901,0.02928,43.866,45.274000000000001,46.682000000000002,48.09,49.497999999999998,50.905999999999999,52.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,959,1,48.093400000000003,0.029270000000000001,43.87,45.277999999999999,46.686,48.093000000000004,49.500999999999998,50.908999999999999,52.316000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,960,1,48.096800000000002,0.029270000000000001,43.872999999999998,45.280999999999999,46.689,48.097000000000001,49.505000000000003,50.911999999999999,52.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,961,1,48.100099999999998,0.029270000000000001,43.875999999999998,45.283999999999999,46.692,48.1,49.508000000000003,50.915999999999997,52.323999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,962,1,48.103499999999997,0.029270000000000001,43.88,45.287999999999997,46.695999999999998,48.103999999999999,49.511000000000003,50.918999999999997,52.326999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,963,1,48.1068,0.029270000000000001,43.883000000000003,45.290999999999997,46.698999999999998,48.106999999999999,49.515000000000001,50.923000000000002,52.331000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,964,1,48.110100000000003,0.029270000000000001,43.886000000000003,45.293999999999997,46.701999999999998,48.11,49.518000000000001,50.926000000000002,52.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,965,1,48.113500000000002,0.029270000000000001,43.889000000000003,45.296999999999997,46.704999999999998,48.113999999999997,49.521999999999998,50.93,52.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,966,1,48.116799999999998,0.029270000000000001,43.892000000000003,45.3,46.707999999999998,48.116999999999997,49.524999999999999,50.933999999999997,52.341999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,967,1,48.120100000000001,0.029270000000000001,43.895000000000003,45.302999999999997,46.712000000000003,48.12,49.529000000000003,50.936999999999998,52.345999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,968,1,48.123399999999997,0.029260000000000001,43.899000000000001,45.307000000000002,46.715000000000003,48.122999999999998,49.530999999999999,50.94,52.347999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,969,1,48.1267,0.029260000000000001,43.902000000000001,45.31,46.719000000000001,48.127000000000002,49.534999999999997,50.942999999999998,52.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,970,1,48.13,0.029260000000000001,43.905000000000001,45.313000000000002,46.722000000000001,48.13,49.537999999999997,50.947000000000003,52.354999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,971,1,48.133299999999998,0.029260000000000001,43.908000000000001,45.317,46.725000000000001,48.133000000000003,49.542000000000002,50.95,52.357999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,972,1,48.136600000000001,0.029260000000000001,43.911000000000001,45.32,46.728000000000002,48.137,49.545000000000002,50.954000000000001,52.362000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,973,1,48.139899999999997,0.029260000000000001,43.914000000000001,45.323,46.731000000000002,48.14,49.548000000000002,50.957000000000001,52.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,974,1,48.1432,0.029260000000000001,43.917000000000002,45.326000000000001,46.734999999999999,48.143000000000001,49.552,50.960999999999999,52.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,975,1,48.146500000000003,0.029260000000000001,43.92,45.329000000000001,46.738,48.146000000000001,49.555,50.963999999999999,52.372999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,976,1,48.149700000000003,0.029250000000000002,43.924999999999997,45.332999999999998,46.741,48.15,49.558,50.966000000000001,52.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,977,1,48.152999999999999,0.029250000000000002,43.927999999999997,45.335999999999999,46.744999999999997,48.152999999999999,49.561,50.97,52.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,978,1,48.156300000000002,0.029250000000000002,43.930999999999997,45.338999999999999,46.747999999999998,48.155999999999999,49.564999999999998,50.972999999999999,52.381999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,979,1,48.159500000000001,0.029250000000000002,43.933999999999997,45.341999999999999,46.750999999999998,48.16,49.567999999999998,50.976999999999997,52.384999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,980,1,48.162799999999997,0.029250000000000002,43.936999999999998,45.344999999999999,46.753999999999998,48.162999999999997,49.572000000000003,50.98,52.389000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,981,1,48.165999999999997,0.029250000000000002,43.939,45.347999999999999,46.756999999999998,48.165999999999997,49.575000000000003,50.984000000000002,52.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,982,1,48.1693,0.029250000000000002,43.942,45.350999999999999,46.76,48.168999999999997,49.578000000000003,50.987000000000002,52.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,983,1,48.172499999999999,0.029250000000000002,43.945,45.353999999999999,46.762999999999998,48.171999999999997,49.582000000000001,50.991,52.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,984,1,48.175699999999999,0.029250000000000002,43.948,45.356999999999999,46.767000000000003,48.176000000000002,49.585000000000001,50.994,52.402999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,985,1,48.179000000000002,0.029239999999999999,43.953000000000003,45.360999999999997,46.77,48.179000000000002,49.588000000000001,50.997,52.405000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,986,1,48.182200000000002,0.029239999999999999,43.956000000000003,45.365000000000002,46.773000000000003,48.182000000000002,49.591000000000001,51,52.408999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,987,1,48.185400000000001,0.029239999999999999,43.959000000000003,45.368000000000002,46.776000000000003,48.185000000000002,49.594000000000001,51.003,52.411999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,988,1,48.188600000000001,0.029239999999999999,43.960999999999999,45.371000000000002,46.78,48.189,49.597999999999999,51.006999999999998,52.415999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,989,1,48.191899999999997,0.029239999999999999,43.965000000000003,45.374000000000002,46.783000000000001,48.192,49.600999999999999,51.01,52.418999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,990,1,48.195099999999996,0.029239999999999999,43.966999999999999,45.377000000000002,46.786000000000001,48.195,49.603999999999999,51.014000000000003,52.423000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,991,1,48.198300000000003,0.029239999999999999,43.97,45.38,46.789000000000001,48.198,49.607999999999997,51.017000000000003,52.426000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,992,1,48.201500000000003,0.029239999999999999,43.972999999999999,45.383000000000003,46.792000000000002,48.201999999999998,49.610999999999997,51.02,52.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,993,1,48.204700000000003,0.029239999999999999,43.975999999999999,45.386000000000003,46.795000000000002,48.204999999999998,49.613999999999997,51.024000000000001,52.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,994,1,48.207799999999999,0.029229999999999999,43.98,45.39,46.798999999999999,48.207999999999998,49.616999999999997,51.026000000000003,52.435000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,995,1,48.210999999999999,0.029229999999999999,43.982999999999997,45.393000000000001,46.802,48.210999999999999,49.62,51.029000000000003,52.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,996,1,48.214199999999998,0.029229999999999999,43.985999999999997,45.396000000000001,46.805,48.213999999999999,49.624000000000002,51.033000000000001,52.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,997,1,48.217399999999998,0.029229999999999999,43.988999999999997,45.399000000000001,46.808,48.216999999999999,49.627000000000002,51.036000000000001,52.445999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,998,1,48.220500000000001,0.029229999999999999,43.991999999999997,45.402000000000001,46.811,48.22,49.63,51.039000000000001,52.448999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,999,1,48.223700000000001,0.029229999999999999,43.994999999999997,45.405000000000001,46.814,48.223999999999997,49.633000000000003,51.042999999999999,52.451999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1000,1,48.226900000000001,0.029229999999999999,43.997999999999998,45.408000000000001,46.817,48.226999999999997,49.637,51.045999999999999,52.456000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1001,1,48.23,0.029229999999999999,44.000999999999998,45.41,46.82,48.23,49.64,51.05,52.459000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1002,1,48.233199999999997,0.029229999999999999,44.003999999999998,45.412999999999997,46.823,48.232999999999997,49.643000000000001,51.052999999999997,52.463000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1003,1,48.2363,0.029219999999999999,44.008000000000003,45.417000000000002,46.826999999999998,48.235999999999997,49.646000000000001,51.055,52.465000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1004,1,48.2395,0.029219999999999999,44.011000000000003,45.42,46.83,48.24,49.649000000000001,51.058999999999997,52.468000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1005,1,48.242600000000003,0.029219999999999999,44.014000000000003,45.423000000000002,46.832999999999998,48.243000000000002,49.652000000000001,51.061999999999998,52.472000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1006,1,48.245699999999999,0.029219999999999999,44.015999999999998,45.426000000000002,46.835999999999999,48.246000000000002,49.655000000000001,51.064999999999998,52.475000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1007,1,48.248899999999999,0.029219999999999999,44.018999999999998,45.429000000000002,46.838999999999999,48.249000000000002,49.658999999999999,51.069000000000003,52.478000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1008,1,48.252000000000002,0.029219999999999999,44.021999999999998,45.432000000000002,46.841999999999999,48.252000000000002,49.661999999999999,51.072000000000003,52.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1009,1,48.255099999999999,0.029219999999999999,44.024999999999999,45.435000000000002,46.844999999999999,48.255000000000003,49.664999999999999,51.075000000000003,52.484999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1010,1,48.258200000000002,0.029219999999999999,44.027999999999999,45.438000000000002,46.847999999999999,48.258000000000003,49.667999999999999,51.078000000000003,52.488999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1011,1,48.261299999999999,0.02921,44.031999999999996,45.442,46.851999999999997,48.261000000000003,49.670999999999999,51.081000000000003,52.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1012,1,48.264400000000002,0.02921,44.034999999999997,45.445,46.854999999999997,48.264000000000003,49.673999999999999,51.084000000000003,52.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1013,1,48.267600000000002,0.02921,44.037999999999997,45.448,46.857999999999997,48.268000000000001,49.677,51.087000000000003,52.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1014,1,48.270600000000002,0.02921,44.040999999999997,45.451000000000001,46.860999999999997,48.271000000000001,49.680999999999997,51.091000000000001,52.500999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1015,1,48.273699999999998,0.02921,44.042999999999999,45.454000000000001,46.863999999999997,48.274000000000001,49.683999999999997,51.094000000000001,52.503999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1016,1,48.276800000000001,0.02921,44.045999999999999,45.456000000000003,46.866999999999997,48.277000000000001,49.686999999999998,51.097000000000001,52.506999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1017,1,48.279899999999998,0.02921,44.048999999999999,45.459000000000003,46.87,48.28,49.69,51.1,52.511000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1018,1,48.283000000000001,0.02921,44.052,45.462000000000003,46.872999999999998,48.283000000000001,49.692999999999998,51.103999999999999,52.514000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1019,1,48.286099999999998,0.02921,44.055,45.465000000000003,46.875999999999998,48.286000000000001,49.697000000000003,51.106999999999999,52.517000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1020,1,48.289099999999998,0.0292,44.058999999999997,45.469000000000001,46.878999999999998,48.289000000000001,49.698999999999998,51.109000000000002,52.518999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1021,1,48.292200000000001,0.0292,44.061999999999998,45.472000000000001,46.881999999999998,48.292000000000002,49.701999999999998,51.112000000000002,52.523000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1022,1,48.295299999999997,0.0292,44.064999999999998,45.475000000000001,46.884999999999998,48.295000000000002,49.706000000000003,51.116,52.526000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1023,1,48.298299999999998,0.0292,44.067,45.478000000000002,46.887999999999998,48.298000000000002,49.709000000000003,51.119,52.529000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1024,1,48.301400000000001,0.0292,44.07,45.481000000000002,46.890999999999998,48.301000000000002,49.712000000000003,51.122,52.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1025,1,48.304400000000001,0.0292,44.073,45.482999999999997,46.893999999999998,48.304000000000002,49.715000000000003,51.125,52.536000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1026,1,48.307499999999997,0.0292,44.076000000000001,45.485999999999997,46.896999999999998,48.308,49.718000000000004,51.128999999999998,52.539000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1027,1,48.310499999999998,0.0292,44.079000000000001,45.488999999999997,46.9,48.31,49.720999999999997,51.131999999999998,52.542000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1028,1,48.313600000000001,0.0292,44.081000000000003,45.491999999999997,46.902999999999999,48.314,49.723999999999997,51.134999999999998,52.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1029,1,48.316600000000001,0.029190000000000001,44.085999999999999,45.496000000000002,46.905999999999999,48.317,49.726999999999997,51.137,52.548000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1030,1,48.319600000000001,0.029190000000000001,44.088000000000001,45.499000000000002,46.908999999999999,48.32,49.73,51.14,52.551000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1031,1,48.322600000000001,0.029190000000000001,44.091000000000001,45.502000000000002,46.911999999999999,48.323,49.732999999999997,51.143999999999998,52.554000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1032,1,48.325699999999998,0.029190000000000001,44.094000000000001,45.503999999999998,46.914999999999999,48.326000000000001,49.735999999999997,51.146999999999998,52.558 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1033,1,48.328699999999998,0.029190000000000001,44.097000000000001,45.506999999999998,46.917999999999999,48.329000000000001,49.738999999999997,51.15,52.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1034,1,48.331699999999998,0.029190000000000001,44.098999999999997,45.51,46.920999999999999,48.332000000000001,49.743000000000002,51.152999999999999,52.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1035,1,48.334699999999998,0.029190000000000001,44.101999999999997,45.512999999999998,46.923999999999999,48.335000000000001,49.746000000000002,51.155999999999999,52.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1036,1,48.337699999999998,0.029190000000000001,44.104999999999997,45.515999999999998,46.927,48.338000000000001,49.749000000000002,51.16,52.570999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1037,1,48.340699999999998,0.029190000000000001,44.107999999999997,45.518999999999998,46.93,48.341000000000001,49.752000000000002,51.162999999999997,52.573999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1038,1,48.343699999999998,0.029180000000000001,44.112000000000002,45.521999999999998,46.933,48.344000000000001,49.753999999999998,51.164999999999999,52.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1039,1,48.346699999999998,0.029180000000000001,44.113999999999997,45.524999999999999,46.936,48.347000000000001,49.756999999999998,51.167999999999999,52.579000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1040,1,48.349699999999999,0.029180000000000001,44.116999999999997,45.527999999999999,46.939,48.35,49.761000000000003,51.170999999999999,52.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1041,1,48.352699999999999,0.029180000000000001,44.12,45.530999999999999,46.942,48.353000000000002,49.764000000000003,51.174999999999997,52.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1042,1,48.355600000000003,0.029180000000000001,44.122999999999998,45.533999999999999,46.945,48.356000000000002,49.767000000000003,51.177999999999997,52.588999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1043,1,48.358600000000003,0.029180000000000001,44.125,45.536000000000001,46.947000000000003,48.359000000000002,49.77,51.180999999999997,52.591999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1044,1,48.361600000000003,0.029180000000000001,44.128,45.539000000000001,46.95,48.362000000000002,49.773000000000003,51.183999999999997,52.594999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1045,1,48.3645,0.029180000000000001,44.131,45.542000000000002,46.953000000000003,48.363999999999997,49.776000000000003,51.186999999999998,52.597999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1046,1,48.3675,0.029180000000000001,44.133000000000003,45.545000000000002,46.956000000000003,48.368000000000002,49.779000000000003,51.19,52.601999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1047,1,48.3705,0.029170000000000001,44.137999999999998,45.548999999999999,46.96,48.37,49.780999999999999,51.192,52.603000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1048,1,48.373399999999997,0.029170000000000001,44.14,45.551000000000002,46.962000000000003,48.372999999999998,49.783999999999999,51.195999999999998,52.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1049,1,48.376399999999997,0.029170000000000001,44.143000000000001,45.554000000000002,46.965000000000003,48.375999999999998,49.787999999999997,51.198999999999998,52.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1050,1,48.379300000000001,0.029170000000000001,44.146000000000001,45.557000000000002,46.968000000000004,48.378999999999998,49.790999999999997,51.201999999999998,52.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1051,1,48.382300000000001,0.029170000000000001,44.148000000000003,45.56,46.970999999999997,48.381999999999998,49.793999999999997,51.204999999999998,52.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1052,1,48.385199999999998,0.029170000000000001,44.151000000000003,45.561999999999998,46.973999999999997,48.384999999999998,49.796999999999997,51.207999999999998,52.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1053,1,48.388100000000001,0.029170000000000001,44.154000000000003,45.564999999999998,46.976999999999997,48.387999999999998,49.8,51.210999999999999,52.622999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1054,1,48.391100000000002,0.029170000000000001,44.155999999999999,45.567999999999998,46.98,48.390999999999998,49.802999999999997,51.213999999999999,52.625999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1055,1,48.393999999999998,0.029170000000000001,44.158999999999999,45.570999999999998,46.981999999999999,48.393999999999998,49.805999999999997,51.216999999999999,52.628999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1056,1,48.396900000000002,0.029159999999999998,44.162999999999997,45.573999999999998,46.985999999999997,48.396999999999998,49.808,51.219000000000001,52.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1057,1,48.399799999999999,0.029159999999999998,44.165999999999997,45.576999999999998,46.988,48.4,49.811,51.222000000000001,52.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1058,1,48.402700000000003,0.029159999999999998,44.167999999999999,45.58,46.991,48.402999999999999,49.814,51.225999999999999,52.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1059,1,48.4056,0.029159999999999998,44.170999999999999,45.582999999999998,46.994,48.405999999999999,49.817,51.228999999999999,52.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1060,1,48.408499999999997,0.029159999999999998,44.173999999999999,45.585000000000001,46.997,48.408000000000001,49.82,51.231999999999999,52.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1061,1,48.4114,0.029159999999999998,44.176000000000002,45.588000000000001,47,48.411000000000001,49.823,51.234999999999999,52.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1062,1,48.414299999999997,0.029159999999999998,44.179000000000002,45.591000000000001,47.003,48.414000000000001,49.826000000000001,51.238,52.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1063,1,48.417200000000001,0.029159999999999998,44.182000000000002,45.594000000000001,47.005000000000003,48.417000000000002,49.829000000000001,51.241,52.652999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1064,1,48.420099999999998,0.029159999999999998,44.183999999999997,45.595999999999997,47.008000000000003,48.42,49.832000000000001,51.244,52.655999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1065,1,48.423000000000002,0.029159999999999998,44.186999999999998,45.598999999999997,47.011000000000003,48.423000000000002,49.835000000000001,51.247,52.658999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1066,1,48.425899999999999,0.029149999999999999,44.191000000000003,45.603000000000002,47.014000000000003,48.426000000000002,49.838000000000001,51.249000000000002,52.661000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1067,1,48.428800000000003,0.029149999999999999,44.194000000000003,45.604999999999997,47.017000000000003,48.429000000000002,49.84,51.252000000000002,52.664000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1068,1,48.431699999999999,0.029149999999999999,44.195999999999998,45.607999999999997,47.02,48.432000000000002,49.843000000000004,51.255000000000003,52.667000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1069,1,48.4345,0.029149999999999999,44.198999999999998,45.610999999999997,47.023000000000003,48.433999999999997,49.845999999999997,51.258000000000003,52.67 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1070,1,48.437399999999997,0.029149999999999999,44.201999999999998,45.613,47.024999999999999,48.436999999999998,49.848999999999997,51.261000000000003,52.673000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1071,1,48.440300000000001,0.029149999999999999,44.204000000000001,45.616,47.027999999999999,48.44,49.851999999999997,51.264000000000003,52.676000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1072,1,48.443100000000001,0.029149999999999999,44.207000000000001,45.619,47.030999999999999,48.442999999999998,49.854999999999997,51.267000000000003,52.679000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1073,1,48.445999999999998,0.029149999999999999,44.209000000000003,45.622,47.033999999999999,48.445999999999998,49.857999999999997,51.27,52.683 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1074,1,48.448799999999999,0.029149999999999999,44.212000000000003,45.624000000000002,47.036999999999999,48.448999999999998,49.860999999999997,51.273000000000003,52.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1075,1,48.451700000000002,0.029139999999999999,44.216000000000001,45.628,47.04,48.451999999999998,49.863999999999997,51.274999999999999,52.686999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1076,1,48.454500000000003,0.029139999999999999,44.219000000000001,45.631,47.042999999999999,48.454000000000001,49.866,51.277999999999999,52.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1077,1,48.4574,0.029139999999999999,44.220999999999997,45.633000000000003,47.045000000000002,48.457000000000001,49.869,51.280999999999999,52.694000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1078,1,48.4602,0.029139999999999999,44.223999999999997,45.636000000000003,47.048000000000002,48.46,49.872,51.283999999999999,52.697000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1079,1,48.463000000000001,0.029139999999999999,44.225999999999999,45.639000000000003,47.051000000000002,48.463000000000001,49.875,51.286999999999999,52.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1080,1,48.465899999999998,0.029139999999999999,44.228999999999999,45.640999999999998,47.054000000000002,48.466000000000001,49.878,51.29,52.703000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1081,1,48.468699999999998,0.029139999999999999,44.231999999999999,45.643999999999998,47.055999999999997,48.469000000000001,49.881,51.292999999999999,52.706000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1082,1,48.471499999999999,0.029139999999999999,44.234000000000002,45.646999999999998,47.058999999999997,48.472000000000001,49.884,51.295999999999999,52.709000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1083,1,48.474299999999999,0.029139999999999999,44.237000000000002,45.649000000000001,47.061999999999998,48.473999999999997,49.887,51.298999999999999,52.712000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1084,1,48.4771,0.02913,44.241,45.652999999999999,47.064999999999998,48.476999999999997,49.889000000000003,51.301000000000002,52.713999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1085,1,48.479900000000001,0.02913,44.243000000000002,45.655000000000001,47.067999999999998,48.48,49.892000000000003,51.304000000000002,52.716999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1086,1,48.482799999999997,0.02913,44.246000000000002,45.658000000000001,47.07,48.482999999999997,49.895000000000003,51.307000000000002,52.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1087,1,48.485599999999998,0.02913,44.247999999999998,45.661000000000001,47.073,48.485999999999997,49.898000000000003,51.31,52.722999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1088,1,48.488399999999999,0.02913,44.250999999999998,45.662999999999997,47.076000000000001,48.488,49.901000000000003,51.313000000000002,52.725999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1089,1,48.491199999999999,0.02913,44.253999999999998,45.665999999999997,47.079000000000001,48.491,49.904000000000003,51.316000000000003,52.728999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1090,1,48.493899999999996,0.02913,44.256,45.668999999999997,47.081000000000003,48.494,49.906999999999996,51.319000000000003,52.731999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1091,1,48.496699999999997,0.02913,44.259,45.670999999999999,47.084000000000003,48.497,49.908999999999999,51.322000000000003,52.734999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1092,1,48.499499999999998,0.02913,44.261000000000003,45.673999999999999,47.087000000000003,48.5,49.911999999999999,51.325000000000003,52.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1093,1,48.502299999999998,0.02912,44.265000000000001,45.677999999999997,47.09,48.502000000000002,49.914999999999999,51.326999999999998,52.738999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1094,1,48.505099999999999,0.02912,44.268000000000001,45.68,47.093000000000004,48.505000000000003,49.917999999999999,51.33,52.743000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1095,1,48.507899999999999,0.02912,44.27,45.683,47.094999999999999,48.508000000000003,49.92,51.332999999999998,52.746000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1096,1,48.510599999999997,0.02912,44.273000000000003,45.685000000000002,47.097999999999999,48.511000000000003,49.923000000000002,51.335999999999999,52.747999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1097,1,48.513399999999997,0.02912,44.274999999999999,45.688000000000002,47.100999999999999,48.512999999999998,49.926000000000002,51.338999999999999,52.752000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1098,1,48.516199999999998,0.02912,44.277999999999999,45.691000000000003,47.103000000000002,48.515999999999998,49.929000000000002,51.341999999999999,52.755000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1099,1,48.518900000000002,0.02912,44.28,45.692999999999998,47.106000000000002,48.518999999999998,49.932000000000002,51.344999999999999,52.758000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1100,1,48.521700000000003,0.02912,44.283000000000001,45.695999999999998,47.109000000000002,48.521999999999998,49.935000000000002,51.347999999999999,52.761000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1101,1,48.5244,0.02912,44.284999999999997,45.698,47.110999999999997,48.524000000000001,49.936999999999998,51.35,52.762999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1102,1,48.527200000000001,0.02912,44.287999999999997,45.701000000000001,47.113999999999997,48.527000000000001,49.94,51.353000000000002,52.767000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1103,1,48.529899999999998,0.02911,44.292000000000002,45.704000000000001,47.116999999999997,48.53,49.942999999999998,51.354999999999997,52.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1104,1,48.532699999999998,0.02911,44.293999999999997,45.707000000000001,47.12,48.533000000000001,49.945,51.357999999999997,52.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1105,1,48.535400000000003,0.02911,44.296999999999997,45.71,47.122999999999998,48.534999999999997,49.948,51.360999999999997,52.774000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1106,1,48.5381,0.02911,44.298999999999999,45.712000000000003,47.125,48.537999999999997,49.951000000000001,51.363999999999997,52.777000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1107,1,48.540900000000001,0.02911,44.302,45.715000000000003,47.128,48.540999999999997,49.954000000000001,51.366999999999997,52.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1108,1,48.543599999999998,0.02911,44.304000000000002,45.716999999999999,47.13,48.543999999999997,49.957000000000001,51.37,52.783000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1109,1,48.546300000000002,0.02911,44.307000000000002,45.72,47.133000000000003,48.545999999999999,49.959000000000003,51.372999999999998,52.786000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1110,1,48.549100000000003,0.02911,44.308999999999997,45.722999999999999,47.136000000000003,48.548999999999999,49.962000000000003,51.375999999999998,52.789000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1111,1,48.5518,0.02911,44.311999999999998,45.725000000000001,47.137999999999998,48.552,49.965000000000003,51.378,52.792000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1112,1,48.554499999999997,0.029100000000000001,44.316000000000003,45.728999999999999,47.142000000000003,48.554000000000002,49.966999999999999,51.38,52.792999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1113,1,48.557200000000002,0.029100000000000001,44.317999999999998,45.731000000000002,47.143999999999998,48.557000000000002,49.97,51.383000000000003,52.795999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1114,1,48.559899999999999,0.029100000000000001,44.320999999999998,45.734000000000002,47.146999999999998,48.56,49.972999999999999,51.386000000000003,52.798999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1115,1,48.562600000000003,0.029100000000000001,44.323,45.735999999999997,47.149000000000001,48.563000000000002,49.975999999999999,51.389000000000003,52.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1116,1,48.565300000000001,0.029100000000000001,44.326000000000001,45.738999999999997,47.152000000000001,48.564999999999998,49.978999999999999,51.392000000000003,52.805 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1117,1,48.567999999999998,0.029100000000000001,44.328000000000003,45.741,47.155000000000001,48.567999999999998,49.981000000000002,51.395000000000003,52.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1118,1,48.570700000000002,0.029100000000000001,44.33,45.744,47.156999999999996,48.570999999999998,49.984000000000002,51.398000000000003,52.811 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1119,1,48.573399999999999,0.029100000000000001,44.332999999999998,45.746000000000002,47.16,48.573,49.987000000000002,51.4,52.814 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1120,1,48.576099999999997,0.029100000000000001,44.335000000000001,45.749000000000002,47.162999999999997,48.576000000000001,49.99,51.402999999999999,52.817 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1121,1,48.578800000000001,0.029100000000000001,44.338000000000001,45.752000000000002,47.164999999999999,48.579000000000001,49.991999999999997,51.405999999999999,52.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1122,1,48.581400000000002,0.029090000000000001,44.341999999999999,45.755000000000003,47.167999999999999,48.581000000000003,49.994999999999997,51.408000000000001,52.820999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1123,1,48.584099999999999,0.029090000000000001,44.344000000000001,45.756999999999998,47.170999999999999,48.584000000000003,49.997,51.411000000000001,52.823999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1124,1,48.586799999999997,0.029090000000000001,44.347000000000001,45.76,47.173000000000002,48.587000000000003,50,51.414000000000001,52.826999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1125,1,48.589500000000001,0.029090000000000001,44.348999999999997,45.762999999999998,47.176000000000002,48.59,50.003,51.415999999999997,52.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1126,1,48.592100000000002,0.029090000000000001,44.350999999999999,45.765000000000001,47.179000000000002,48.591999999999999,50.006,51.418999999999997,52.832999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1127,1,48.594799999999999,0.029090000000000001,44.353999999999999,45.768000000000001,47.180999999999997,48.594999999999999,50.008000000000003,51.421999999999997,52.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1128,1,48.5974,0.029090000000000001,44.356000000000002,45.77,47.183999999999997,48.597000000000001,50.011000000000003,51.424999999999997,52.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1129,1,48.600099999999998,0.029090000000000001,44.359000000000002,45.773000000000003,47.186,48.6,50.014000000000003,51.427999999999997,52.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1130,1,48.602800000000002,0.029090000000000001,44.360999999999997,45.774999999999999,47.189,48.603000000000002,50.017000000000003,51.430999999999997,52.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1131,1,48.605400000000003,0.029090000000000001,44.363999999999997,45.777999999999999,47.191000000000003,48.604999999999997,50.018999999999998,51.433,52.847000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1132,1,48.6081,0.029080000000000002,44.368000000000002,45.780999999999999,47.195,48.607999999999997,50.021999999999998,51.435000000000002,52.848999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1133,1,48.610700000000001,0.029080000000000002,44.37,45.783999999999999,47.197000000000003,48.610999999999997,50.024000000000001,51.438000000000002,52.850999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1134,1,48.613300000000002,0.029080000000000002,44.372,45.786000000000001,47.2,48.613,50.027000000000001,51.441000000000003,52.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1135,1,48.616,0.029080000000000002,44.375,45.787999999999997,47.201999999999998,48.616,50.03,51.444000000000003,52.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1136,1,48.618600000000001,0.029080000000000002,44.377000000000002,45.790999999999997,47.204999999999998,48.619,50.031999999999996,51.445999999999998,52.86 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1137,1,48.621200000000002,0.029080000000000002,44.378999999999998,45.792999999999999,47.207000000000001,48.621000000000002,50.034999999999997,51.448999999999998,52.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1138,1,48.623899999999999,0.029080000000000002,44.381999999999998,45.795999999999999,47.21,48.624000000000002,50.037999999999997,51.451999999999998,52.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1139,1,48.6265,0.029080000000000002,44.384,45.798000000000002,47.212000000000003,48.625999999999998,50.040999999999997,51.454999999999998,52.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1140,1,48.629100000000001,0.029080000000000002,44.387,45.801000000000002,47.215000000000003,48.628999999999998,50.042999999999999,51.457000000000001,52.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1141,1,48.631700000000002,0.029069999999999999,44.390999999999998,45.804000000000002,47.218000000000004,48.631999999999998,50.045000000000002,51.459000000000003,52.872999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1142,1,48.634300000000003,0.029069999999999999,44.393000000000001,45.807000000000002,47.220999999999997,48.634,50.048000000000002,51.462000000000003,52.875999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1143,1,48.637,0.029069999999999999,44.395000000000003,45.808999999999997,47.222999999999999,48.637,50.051000000000002,51.465000000000003,52.878999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1144,1,48.639600000000002,0.029069999999999999,44.398000000000003,45.811999999999998,47.225999999999999,48.64,50.054000000000002,51.468000000000004,52.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1145,1,48.642200000000003,0.029069999999999999,44.4,45.814,47.228000000000002,48.642000000000003,50.055999999999997,51.47,52.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1146,1,48.644799999999996,0.029069999999999999,44.402000000000001,45.817,47.231000000000002,48.645000000000003,50.058999999999997,51.472999999999999,52.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1147,1,48.647399999999998,0.029069999999999999,44.405000000000001,45.819000000000003,47.232999999999997,48.646999999999998,50.061999999999998,51.475999999999999,52.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1148,1,48.65,0.029069999999999999,44.406999999999996,45.820999999999998,47.235999999999997,48.65,50.064,51.478999999999999,52.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1149,1,48.652500000000003,0.029069999999999999,44.41,45.823999999999998,47.238,48.652000000000001,50.067,51.481000000000002,52.895000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1150,1,48.655099999999997,0.029069999999999999,44.411999999999999,45.826000000000001,47.241,48.655000000000001,50.07,51.484000000000002,52.898000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1151,1,48.657699999999998,0.029059999999999999,44.415999999999997,45.83,47.244,48.658000000000001,50.072000000000003,51.485999999999997,52.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1152,1,48.660299999999999,0.029059999999999999,44.417999999999999,45.832000000000001,47.246000000000002,48.66,50.073999999999998,51.488,52.902999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1153,1,48.6629,0.029059999999999999,44.42,45.835000000000001,47.249000000000002,48.662999999999997,50.076999999999998,51.491,52.905000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1154,1,48.665500000000002,0.029059999999999999,44.423000000000002,45.837000000000003,47.250999999999998,48.665999999999997,50.08,51.494,52.908000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1155,1,48.667999999999999,0.029059999999999999,44.424999999999997,45.838999999999999,47.253999999999998,48.667999999999999,50.082000000000001,51.497,52.911000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1156,1,48.6706,0.029059999999999999,44.427,45.841999999999999,47.256,48.670999999999999,50.085000000000001,51.499000000000002,52.914000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1157,1,48.673200000000001,0.029059999999999999,44.43,45.844000000000001,47.259,48.673000000000002,50.088000000000001,51.502000000000002,52.917000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1158,1,48.675699999999999,0.029059999999999999,44.432000000000002,45.847000000000001,47.261000000000003,48.676000000000002,50.09,51.505000000000003,52.918999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1159,1,48.6783,0.029059999999999999,44.435000000000002,45.848999999999997,47.264000000000003,48.677999999999997,50.093000000000004,51.506999999999998,52.921999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1160,1,48.680799999999998,0.029059999999999999,44.436999999999998,45.850999999999999,47.265999999999998,48.680999999999997,50.094999999999999,51.51,52.924999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1161,1,48.683399999999999,0.029049999999999999,44.441000000000003,45.854999999999997,47.268999999999998,48.683,50.097999999999999,51.512,52.926000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1162,1,48.686,0.029049999999999999,44.442999999999998,45.856999999999999,47.271999999999998,48.686,50.1,51.515000000000001,52.929000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1163,1,48.688499999999998,0.029049999999999999,44.445,45.86,47.274000000000001,48.688000000000002,50.103000000000002,51.517000000000003,52.932000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1164,1,48.691000000000003,0.029049999999999999,44.448,45.862000000000002,47.277000000000001,48.691000000000003,50.104999999999997,51.52,52.933999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1165,1,48.693600000000004,0.029049999999999999,44.45,45.865000000000002,47.279000000000003,48.694000000000003,50.107999999999997,51.523000000000003,52.936999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1166,1,48.696100000000001,0.029049999999999999,44.451999999999998,45.866999999999997,47.280999999999999,48.695999999999998,50.110999999999997,51.524999999999999,52.94 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1167,1,48.698700000000002,0.029049999999999999,44.454999999999998,45.869,47.283999999999999,48.698999999999998,50.113,51.527999999999999,52.942999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1168,1,48.7012,0.029049999999999999,44.457000000000001,45.872,47.286000000000001,48.701000000000001,50.116,51.530999999999999,52.945999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1169,1,48.703699999999998,0.029049999999999999,44.459000000000003,45.874000000000002,47.289000000000001,48.704000000000001,50.119,51.533000000000001,52.948 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1170,1,48.706200000000003,0.029049999999999999,44.460999999999999,45.875999999999998,47.290999999999997,48.706000000000003,50.121000000000002,51.536000000000001,52.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1171,1,48.708799999999997,0.02904,44.465000000000003,45.88,47.293999999999997,48.709000000000003,50.122999999999998,51.537999999999997,52.951999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1172,1,48.711300000000001,0.02904,44.468000000000004,45.881999999999998,47.296999999999997,48.710999999999999,50.125999999999998,51.54,52.954999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1173,1,48.713799999999999,0.02904,44.47,45.884999999999998,47.298999999999999,48.713999999999999,50.128,51.542999999999999,52.957999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1174,1,48.716299999999997,0.02904,44.472000000000001,45.887,47.302,48.716000000000001,50.131,51.545999999999999,52.96 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1175,1,48.718800000000002,0.02904,44.473999999999997,45.889000000000003,47.304000000000002,48.719000000000001,50.134,51.548000000000002,52.963000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1176,1,48.721299999999999,0.02904,44.476999999999997,45.892000000000003,47.305999999999997,48.720999999999997,50.136000000000003,51.551000000000002,52.966000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1177,1,48.723799999999997,0.02904,44.478999999999999,45.893999999999998,47.308999999999997,48.723999999999997,50.139000000000003,51.554000000000002,52.969000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1178,1,48.726300000000002,0.02904,44.481000000000002,45.896000000000001,47.311,48.725999999999999,50.140999999999998,51.555999999999997,52.970999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1179,1,48.7288,0.02904,44.484000000000002,45.899000000000001,47.314,48.728999999999999,50.143999999999998,51.558999999999997,52.973999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1180,1,48.731299999999997,0.02904,44.485999999999997,45.901000000000003,47.316000000000003,48.731000000000002,50.146000000000001,51.561999999999998,52.976999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1181,1,48.733800000000002,0.02903,44.49,45.904000000000003,47.319000000000003,48.734000000000002,50.149000000000001,51.563000000000002,52.978000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1182,1,48.7363,0.02903,44.491999999999997,45.906999999999996,47.320999999999998,48.735999999999997,50.151000000000003,51.566000000000003,52.981000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1183,1,48.738799999999998,0.02903,44.494,45.908999999999999,47.323999999999998,48.738999999999997,50.154000000000003,51.569000000000003,52.982999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1184,1,48.741300000000003,0.02903,44.496000000000002,45.911000000000001,47.326000000000001,48.741,50.155999999999999,51.570999999999998,52.985999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1185,1,48.7438,0.02903,44.499000000000002,45.914000000000001,47.329000000000001,48.744,50.158999999999999,51.573999999999998,52.988999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1186,1,48.746299999999998,0.02903,44.500999999999998,45.915999999999997,47.331000000000003,48.746000000000002,50.161000000000001,51.576999999999998,52.991999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1187,1,48.748699999999999,0.02903,44.503,45.917999999999999,47.334000000000003,48.749000000000002,50.164000000000001,51.579000000000001,52.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1188,1,48.751199999999997,0.02903,44.505000000000003,45.920999999999999,47.335999999999999,48.750999999999998,50.165999999999997,51.582000000000001,52.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1189,1,48.753700000000002,0.02903,44.508000000000003,45.923000000000002,47.338000000000001,48.753999999999998,50.168999999999997,51.584000000000003,53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1190,1,48.756100000000004,0.02903,44.51,45.924999999999997,47.341000000000001,48.756,50.170999999999999,51.587000000000003,53.002000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1191,1,48.758600000000001,0.029020000000000001,44.514000000000003,45.929000000000002,47.344000000000001,48.759,50.173999999999999,51.588999999999999,53.003999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1192,1,48.761099999999999,0.029020000000000001,44.515999999999998,45.930999999999997,47.345999999999997,48.761000000000003,50.176000000000002,51.591000000000001,53.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1193,1,48.763500000000001,0.029020000000000001,44.518000000000001,45.933,47.347999999999999,48.764000000000003,50.179000000000002,51.594000000000001,53.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1194,1,48.765999999999998,0.029020000000000001,44.52,45.936,47.350999999999999,48.765999999999998,50.180999999999997,51.595999999999997,53.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1195,1,48.7684,0.029020000000000001,44.523000000000003,45.938000000000002,47.353000000000002,48.768000000000001,50.183999999999997,51.598999999999997,53.014000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1196,1,48.770899999999997,0.029020000000000001,44.524999999999999,45.94,47.356000000000002,48.771000000000001,50.186,51.601999999999997,53.017000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1197,1,48.773299999999999,0.029020000000000001,44.527000000000001,45.942,47.357999999999997,48.773000000000003,50.189,51.603999999999999,53.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1198,1,48.775799999999997,0.029020000000000001,44.529000000000003,45.945,47.36,48.776000000000003,50.191000000000003,51.606999999999999,53.021999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1199,1,48.778199999999998,0.029020000000000001,44.531999999999996,45.947000000000003,47.363,48.777999999999999,50.194000000000003,51.609000000000002,53.024999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1200,1,48.7806,0.029020000000000001,44.533999999999999,45.948999999999998,47.365000000000002,48.780999999999999,50.195999999999998,51.612000000000002,53.027000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1201,1,48.783099999999997,0.029010000000000001,44.537999999999997,45.953000000000003,47.368000000000002,48.783000000000001,50.198,51.613,53.029000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1202,1,48.785499999999999,0.029010000000000001,44.54,45.954999999999998,47.37,48.786000000000001,50.201000000000001,51.616,53.030999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1203,1,48.7879,0.029010000000000001,44.542000000000002,45.957000000000001,47.372999999999998,48.787999999999997,50.203000000000003,51.619,53.033999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1204,1,48.790300000000002,0.029010000000000001,44.543999999999997,45.959000000000003,47.375,48.79,50.206000000000003,51.621000000000002,53.036999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1205,1,48.7928,0.029010000000000001,44.545999999999999,45.962000000000003,47.377000000000002,48.792999999999999,50.207999999999998,51.624000000000002,53.039000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1206,1,48.795200000000001,0.029010000000000001,44.548999999999999,45.963999999999999,47.38,48.795000000000002,50.210999999999999,51.625999999999998,53.042000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1207,1,48.797600000000003,0.029010000000000001,44.551000000000002,45.966000000000001,47.381999999999998,48.798000000000002,50.213000000000001,51.628999999999998,53.043999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1208,1,48.8,0.029010000000000001,44.552999999999997,45.969000000000001,47.384,48.8,50.216000000000001,51.631,53.046999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1209,1,48.802399999999999,0.029010000000000001,44.555,45.970999999999997,47.387,48.802,50.218000000000004,51.634,53.05 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1210,1,48.8048,0.029010000000000001,44.557000000000002,45.972999999999999,47.389000000000003,48.805,50.220999999999997,51.636000000000003,53.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1211,1,48.807200000000002,0.029000000000000001,44.561,45.975999999999999,47.392000000000003,48.807000000000002,50.222999999999999,51.637999999999998,53.052999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1212,1,48.809600000000003,0.029000000000000001,44.563000000000002,45.978999999999999,47.393999999999998,48.81,50.225000000000001,51.640999999999998,53.055999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1213,1,48.811999999999998,0.029000000000000001,44.564999999999998,45.981000000000002,47.396000000000001,48.811999999999998,50.228000000000002,51.643000000000001,53.058999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1214,1,48.814399999999999,0.029000000000000001,44.567999999999998,45.982999999999997,47.399000000000001,48.814,50.23,51.646000000000001,53.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1215,1,48.816800000000001,0.029000000000000001,44.57,45.984999999999999,47.401000000000003,48.817,50.231999999999999,51.648000000000003,53.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1216,1,48.819200000000002,0.029000000000000001,44.572000000000003,45.988,47.402999999999999,48.819000000000003,50.234999999999999,51.651000000000003,53.066000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1217,1,48.821599999999997,0.029000000000000001,44.573999999999998,45.99,47.405999999999999,48.822000000000003,50.237000000000002,51.652999999999999,53.069000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1218,1,48.823999999999998,0.029000000000000001,44.576000000000001,45.991999999999997,47.408000000000001,48.823999999999998,50.24,51.655999999999999,53.072000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1219,1,48.8264,0.029000000000000001,44.579000000000001,45.994,47.41,48.826000000000001,50.241999999999997,51.658000000000001,53.073999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1220,1,48.828800000000001,0.029000000000000001,44.581000000000003,45.997,47.412999999999997,48.829000000000001,50.244999999999997,51.661000000000001,53.076999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1221,1,48.831099999999999,0.028989999999999998,44.584000000000003,46,47.414999999999999,48.831000000000003,50.247,51.661999999999999,53.078000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1222,1,48.833500000000001,0.028989999999999998,44.585999999999999,46.002000000000002,47.417999999999999,48.834000000000003,50.249000000000002,51.664999999999999,53.081000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1223,1,48.835900000000002,0.028989999999999998,44.588999999999999,46.003999999999998,47.42,48.835999999999999,50.252000000000002,51.667000000000002,53.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1224,1,48.838200000000001,0.028989999999999998,44.591000000000001,46.006999999999998,47.421999999999997,48.838000000000001,50.253999999999998,51.67,53.085999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1225,1,48.840600000000002,0.028989999999999998,44.593000000000004,46.009,47.424999999999997,48.841000000000001,50.256,51.671999999999997,53.088000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1226,1,48.843000000000004,0.028989999999999998,44.594999999999999,46.011000000000003,47.427,48.843000000000004,50.259,51.674999999999997,53.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1227,1,48.845300000000002,0.028989999999999998,44.597000000000001,46.012999999999998,47.429000000000002,48.844999999999999,50.261000000000003,51.677,53.093000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1228,1,48.847700000000003,0.028989999999999998,44.598999999999997,46.015999999999998,47.432000000000002,48.847999999999999,50.264000000000003,51.68,53.095999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1229,1,48.85,0.028989999999999998,44.601999999999997,46.018000000000001,47.433999999999997,48.85,50.265999999999998,51.682000000000002,53.097999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1230,1,48.852400000000003,0.028989999999999998,44.603999999999999,46.02,47.436,48.851999999999997,50.268999999999998,51.685000000000002,53.100999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1231,1,48.854700000000001,0.028989999999999998,44.606000000000002,46.021999999999998,47.438000000000002,48.854999999999997,50.271000000000001,51.686999999999998,53.103999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1232,1,48.857100000000003,0.028979999999999999,44.609000000000002,46.024999999999999,47.441000000000003,48.856999999999999,50.273000000000003,51.689,53.104999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1233,1,48.859400000000001,0.028979999999999999,44.612000000000002,46.027999999999999,47.442999999999998,48.859000000000002,50.274999999999999,51.691000000000003,53.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1234,1,48.861800000000002,0.028979999999999999,44.613999999999997,46.03,47.445999999999998,48.862000000000002,50.277999999999999,51.694000000000003,53.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1235,1,48.864100000000001,0.028979999999999999,44.616,46.031999999999996,47.448,48.863999999999997,50.28,51.695999999999998,53.112000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1236,1,48.866399999999999,0.028979999999999999,44.618000000000002,46.033999999999999,47.45,48.866,50.283000000000001,51.698999999999998,53.115000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1237,1,48.8688,0.028979999999999999,44.62,46.036000000000001,47.453000000000003,48.869,50.284999999999997,51.701000000000001,53.116999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1238,1,48.871099999999998,0.028979999999999999,44.622,46.039000000000001,47.454999999999998,48.871000000000002,50.286999999999999,51.704000000000001,53.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1239,1,48.873399999999997,0.028979999999999999,44.624000000000002,46.040999999999997,47.457000000000001,48.872999999999998,50.29,51.706000000000003,53.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1240,1,48.875700000000002,0.028979999999999999,44.625999999999998,46.042999999999999,47.459000000000003,48.875999999999998,50.292000000000002,51.709000000000003,53.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1241,1,48.878100000000003,0.028979999999999999,44.628999999999998,46.045000000000002,47.462000000000003,48.878,50.295000000000002,51.710999999999999,53.128 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1242,1,48.880400000000002,0.028969999999999999,44.631999999999998,46.048000000000002,47.463999999999999,48.88,50.295999999999999,51.713000000000001,53.128999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1243,1,48.8827,0.028969999999999999,44.634,46.05,47.466999999999999,48.883000000000003,50.298999999999999,51.715000000000003,53.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1244,1,48.884999999999998,0.028969999999999999,44.636000000000003,46.052999999999997,47.469000000000001,48.884999999999998,50.301000000000002,51.716999999999999,53.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1245,1,48.887300000000003,0.028969999999999999,44.639000000000003,46.055,47.470999999999997,48.887,50.304000000000002,51.72,53.136000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1246,1,48.889600000000002,0.028969999999999999,44.640999999999998,46.057000000000002,47.472999999999999,48.89,50.305999999999997,51.722000000000001,53.139000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1247,1,48.8919,0.028969999999999999,44.643000000000001,46.058999999999997,47.475999999999999,48.892000000000003,50.308,51.725000000000001,53.140999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1248,1,48.894199999999998,0.028969999999999999,44.645000000000003,46.061,47.478000000000002,48.893999999999998,50.311,51.726999999999997,53.143999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1249,1,48.896500000000003,0.028969999999999999,44.646999999999998,46.063000000000002,47.48,48.896000000000001,50.313000000000002,51.73,53.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1250,1,48.898800000000001,0.028969999999999999,44.649000000000001,46.066000000000003,47.481999999999999,48.899000000000001,50.314999999999998,51.731999999999999,53.149000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1251,1,48.9011,0.028969999999999999,44.651000000000003,46.067999999999998,47.484000000000002,48.901000000000003,50.317999999999998,51.734000000000002,53.151000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1252,1,48.903399999999998,0.028969999999999999,44.652999999999999,46.07,47.487000000000002,48.902999999999999,50.32,51.737000000000002,53.154000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1253,1,48.905700000000003,0.02896,44.656999999999996,46.073,47.488999999999997,48.905999999999999,50.322000000000003,51.738,53.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1254,1,48.908000000000001,0.02896,44.658999999999999,46.075000000000003,47.491999999999997,48.908000000000001,50.323999999999998,51.741,53.156999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1255,1,48.910299999999999,0.02896,44.661000000000001,46.076999999999998,47.494,48.91,50.326999999999998,51.743000000000002,53.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1256,1,48.912599999999998,0.02896,44.662999999999997,46.08,47.496000000000002,48.912999999999997,50.329000000000001,51.746000000000002,53.161999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1257,1,48.9148,0.02896,44.664999999999999,46.082000000000001,47.497999999999998,48.914999999999999,50.331000000000003,51.747999999999998,53.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1258,1,48.917099999999998,0.02896,44.667000000000002,46.084000000000003,47.5,48.917000000000002,50.334000000000003,51.75,53.167000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1259,1,48.919400000000003,0.02896,44.668999999999997,46.085999999999999,47.503,48.918999999999997,50.335999999999999,51.753,53.17 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1260,1,48.921700000000001,0.02896,44.670999999999999,46.088000000000001,47.505000000000003,48.921999999999997,50.338000000000001,51.755000000000003,53.171999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1261,1,48.923900000000003,0.02896,44.673000000000002,46.09,47.506999999999998,48.923999999999999,50.341000000000001,51.758000000000003,53.173999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1262,1,48.926200000000001,0.02896,44.674999999999997,46.091999999999999,47.509,48.926000000000002,50.343000000000004,51.76,53.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1263,1,48.928400000000003,0.02895,44.679000000000002,46.094999999999999,47.512,48.927999999999997,50.344999999999999,51.761000000000003,53.177999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1264,1,48.930700000000002,0.02895,44.680999999999997,46.097999999999999,47.514000000000003,48.930999999999997,50.347000000000001,51.764000000000003,53.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1265,1,48.933,0.02895,44.683,46.1,47.515999999999998,48.933,50.35,51.765999999999998,53.183 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1266,1,48.935200000000002,0.02895,44.685000000000002,46.101999999999997,47.518999999999998,48.935000000000002,50.351999999999997,51.768999999999998,53.185000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1267,1,48.9375,0.02895,44.686999999999998,46.103999999999999,47.521000000000001,48.938000000000002,50.353999999999999,51.771000000000001,53.188000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1268,1,48.939700000000002,0.02895,44.689,46.106000000000002,47.523000000000003,48.94,50.356999999999999,51.773000000000003,53.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1269,1,48.942,0.02895,44.691000000000003,46.107999999999997,47.524999999999999,48.942,50.359000000000002,51.776000000000003,53.192999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1270,1,48.944200000000002,0.02895,44.692999999999998,46.11,47.527000000000001,48.944000000000003,50.360999999999997,51.777999999999999,53.195 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1271,1,48.9465,0.02895,44.695,46.112000000000002,47.529000000000003,48.945999999999998,50.363999999999997,51.780999999999999,53.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1272,1,48.948700000000002,0.02895,44.698,46.115000000000002,47.531999999999996,48.948999999999998,50.366,51.783000000000001,53.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1273,1,48.950899999999997,0.02895,44.7,46.116999999999997,47.533999999999999,48.951000000000001,50.368000000000002,51.784999999999997,53.201999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1274,1,48.953200000000002,0.02894,44.703000000000003,46.12,47.536000000000001,48.953000000000003,50.37,51.786999999999999,53.203000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1275,1,48.955399999999997,0.02894,44.704999999999998,46.122,47.539000000000001,48.954999999999998,50.372,51.789000000000001,53.206000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1276,1,48.957599999999999,0.02894,44.707000000000001,46.124000000000002,47.540999999999997,48.957999999999998,50.374000000000002,51.790999999999997,53.207999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1277,1,48.959800000000001,0.02894,44.709000000000003,46.125999999999998,47.542999999999999,48.96,50.377000000000002,51.793999999999997,53.21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1278,1,48.9621,0.02894,44.710999999999999,46.128,47.545000000000002,48.962000000000003,50.378999999999998,51.795999999999999,53.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1279,1,48.964300000000001,0.02894,44.713000000000001,46.13,47.546999999999997,48.963999999999999,50.381,51.798000000000002,53.215000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1280,1,48.966500000000003,0.02894,44.715000000000003,46.131999999999998,47.548999999999999,48.966000000000001,50.384,51.801000000000002,53.218000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1281,1,48.968699999999998,0.02894,44.716999999999999,46.134,47.552,48.969000000000001,50.386000000000003,51.802999999999997,53.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1282,1,48.9709,0.02894,44.719000000000001,46.136000000000003,47.554000000000002,48.970999999999997,50.387999999999998,51.805,53.222999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1283,1,48.973199999999999,0.02894,44.720999999999997,46.139000000000003,47.555999999999997,48.972999999999999,50.39,51.808,53.225000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1284,1,48.9754,0.028930000000000001,44.725000000000001,46.142000000000003,47.558999999999997,48.975000000000001,50.392000000000003,51.808999999999997,53.225999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1285,1,48.977600000000002,0.028930000000000001,44.726999999999997,46.143999999999998,47.561,48.978000000000002,50.395000000000003,51.811,53.228000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1286,1,48.979799999999997,0.028930000000000001,44.728999999999999,46.146000000000001,47.563000000000002,48.98,50.396999999999998,51.814,53.231000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1287,1,48.981999999999999,0.028930000000000001,44.731000000000002,46.148000000000003,47.564999999999998,48.981999999999999,50.399000000000001,51.816000000000003,53.232999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1288,1,48.984200000000001,0.028930000000000001,44.732999999999997,46.15,47.567,48.984000000000002,50.401000000000003,51.817999999999998,53.235999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1289,1,48.986400000000003,0.028930000000000001,44.734999999999999,46.152000000000001,47.569000000000003,48.985999999999997,50.404000000000003,51.820999999999998,53.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1290,1,48.988599999999998,0.028930000000000001,44.737000000000002,46.154000000000003,47.570999999999998,48.988999999999997,50.405999999999999,51.823,53.24 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1291,1,48.9908,0.028930000000000001,44.738999999999997,46.155999999999999,47.573,48.991,50.408000000000001,51.825000000000003,53.243000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1292,1,48.992899999999999,0.028930000000000001,44.741,46.158000000000001,47.576000000000001,48.993000000000002,50.41,51.828000000000003,53.244999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1293,1,48.995100000000001,0.028930000000000001,44.743000000000002,46.16,47.578000000000003,48.994999999999997,50.412999999999997,51.83,53.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1294,1,48.997300000000003,0.028930000000000001,44.744999999999997,46.161999999999999,47.58,48.997,50.414999999999999,51.832000000000001,53.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1295,1,48.999499999999998,0.028920000000000001,44.747999999999998,46.164999999999999,47.582000000000001,49,50.417000000000002,51.834000000000003,53.250999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1296,1,49.0017,0.028920000000000001,44.75,46.167000000000002,47.585000000000001,49.002000000000002,50.418999999999997,51.835999999999999,53.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1297,1,49.003900000000002,0.028920000000000001,44.752000000000002,46.17,47.587000000000003,49.003999999999998,50.420999999999999,51.838000000000001,53.255000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1298,1,49.006,0.028920000000000001,44.753999999999998,46.170999999999999,47.588999999999999,49.006,50.423000000000002,51.841000000000001,53.258000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1299,1,49.008200000000002,0.028920000000000001,44.756,46.173999999999999,47.591000000000001,49.008000000000003,50.426000000000002,51.843000000000004,53.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1300,1,49.010399999999997,0.028920000000000001,44.758000000000003,46.176000000000002,47.593000000000004,49.01,50.427999999999997,51.844999999999999,53.262999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1301,1,49.012500000000003,0.028920000000000001,44.76,46.177999999999997,47.594999999999999,49.012,50.43,51.847000000000001,53.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1302,1,49.014699999999998,0.028920000000000001,44.762,46.18,47.597000000000001,49.015000000000001,50.432000000000002,51.85,53.267000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1303,1,49.0169,0.028920000000000001,44.764000000000003,46.182000000000002,47.598999999999997,49.017000000000003,50.433999999999997,51.851999999999997,53.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1304,1,49.018999999999998,0.028920000000000001,44.765999999999998,46.183999999999997,47.600999999999999,49.018999999999998,50.436999999999998,51.853999999999999,53.271999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1305,1,49.0212,0.028920000000000001,44.768000000000001,46.186,47.603999999999999,49.021000000000001,50.439,51.856999999999999,53.274000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1306,1,49.023299999999999,0.028910000000000002,44.771999999999998,46.189,47.606000000000002,49.023000000000003,50.441000000000003,51.857999999999997,53.274999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1307,1,49.025500000000001,0.028910000000000002,44.774000000000001,46.191000000000003,47.607999999999997,49.026000000000003,50.442999999999998,51.86,53.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1308,1,49.0276,0.028910000000000002,44.774999999999999,46.192999999999998,47.61,49.027999999999999,50.445,51.862000000000002,53.28 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1309,1,49.029800000000002,0.028910000000000002,44.777000000000001,46.195,47.612000000000002,49.03,50.447000000000003,51.865000000000002,53.281999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1310,1,49.0319,0.028910000000000002,44.779000000000003,46.197000000000003,47.613999999999997,49.031999999999996,50.448999999999998,51.866999999999997,53.283999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1311,1,49.034100000000002,0.028910000000000002,44.780999999999999,46.198999999999998,47.616999999999997,49.033999999999999,50.451999999999998,51.869,53.286999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1312,1,49.036200000000001,0.028910000000000002,44.783000000000001,46.201000000000001,47.619,49.036000000000001,50.454000000000001,51.871000000000002,53.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1313,1,49.038400000000003,0.028910000000000002,44.784999999999997,46.203000000000003,47.621000000000002,49.037999999999997,50.456000000000003,51.874000000000002,53.292000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1314,1,49.040500000000002,0.028910000000000002,44.786999999999999,46.204999999999998,47.622999999999998,49.04,50.457999999999998,51.875999999999998,53.293999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1315,1,49.0426,0.028910000000000002,44.789000000000001,46.207000000000001,47.625,49.042999999999999,50.46,51.878,53.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1316,1,49.044800000000002,0.028910000000000002,44.790999999999997,46.209000000000003,47.627000000000002,49.045000000000002,50.463000000000001,51.881,53.298000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1317,1,49.046900000000001,0.028899999999999999,44.795000000000002,46.212000000000003,47.628999999999998,49.046999999999997,50.463999999999999,51.881999999999998,53.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1318,1,49.048999999999999,0.028899999999999999,44.795999999999999,46.213999999999999,47.631,49.048999999999999,50.466999999999999,51.884,53.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1319,1,49.051099999999998,0.028899999999999999,44.798000000000002,46.216000000000001,47.634,49.051000000000002,50.469000000000001,51.886000000000003,53.304000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1320,1,49.0533,0.028899999999999999,44.8,46.218000000000004,47.636000000000003,49.052999999999997,50.470999999999997,51.889000000000003,53.305999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1321,1,49.055399999999999,0.028899999999999999,44.802,46.22,47.637999999999998,49.055,50.472999999999999,51.890999999999998,53.308999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1322,1,49.057499999999997,0.028899999999999999,44.804000000000002,46.222000000000001,47.64,49.058,50.475000000000001,51.893000000000001,53.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1323,1,49.059600000000003,0.028899999999999999,44.805999999999997,46.223999999999997,47.642000000000003,49.06,50.476999999999997,51.895000000000003,53.313000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1324,1,49.061700000000002,0.028899999999999999,44.808,46.225999999999999,47.643999999999998,49.061999999999998,50.48,51.896999999999998,53.314999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1325,1,49.063800000000001,0.028899999999999999,44.81,46.228000000000002,47.646000000000001,49.064,50.481999999999999,51.9,53.317999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1326,1,49.066000000000003,0.028899999999999999,44.811999999999998,46.23,47.648000000000003,49.066000000000003,50.484000000000002,51.902000000000001,53.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1327,1,49.068100000000001,0.028899999999999999,44.814,46.231999999999999,47.65,49.067999999999998,50.485999999999997,51.904000000000003,53.322000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1328,1,49.0702,0.028889999999999999,44.817,46.234999999999999,47.652999999999999,49.07,50.488,51.905000000000001,53.323 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1329,1,49.072299999999998,0.028889999999999999,44.819000000000003,46.237000000000002,47.655000000000001,49.072000000000003,50.49,51.908000000000001,53.325000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1330,1,49.074399999999997,0.028889999999999999,44.820999999999998,46.238999999999997,47.656999999999996,49.073999999999998,50.491999999999997,51.91,53.328000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1331,1,49.076500000000003,0.028889999999999999,44.823,46.241,47.658999999999999,49.076000000000001,50.494,51.911999999999999,53.33 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1332,1,49.078600000000002,0.028889999999999999,44.825000000000003,46.243000000000002,47.661000000000001,49.079000000000001,50.496000000000002,51.914000000000001,53.332000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1333,1,49.0807,0.028889999999999999,44.826999999999998,46.244999999999997,47.662999999999997,49.081000000000003,50.499000000000002,51.917000000000002,53.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1334,1,49.082799999999999,0.028889999999999999,44.829000000000001,46.247,47.664999999999999,49.082999999999998,50.500999999999998,51.918999999999997,53.337000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1335,1,49.084800000000001,0.028889999999999999,44.831000000000003,46.249000000000002,47.667000000000002,49.085000000000001,50.503,51.920999999999999,53.338999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1336,1,49.0869,0.028889999999999999,44.832999999999998,46.250999999999998,47.668999999999997,49.087000000000003,50.505000000000003,51.923000000000002,53.341000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1337,1,49.088999999999999,0.028889999999999999,44.834000000000003,46.253,47.670999999999999,49.088999999999999,50.506999999999998,51.924999999999997,53.344000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1338,1,49.091099999999997,0.028889999999999999,44.835999999999999,46.255000000000003,47.673000000000002,49.091000000000001,50.509,51.927999999999997,53.345999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1339,1,49.093200000000003,0.028879999999999999,44.84,46.258000000000003,47.674999999999997,49.093000000000004,50.511000000000003,51.929000000000002,53.347000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1340,1,49.095300000000002,0.028879999999999999,44.841999999999999,46.26,47.677,49.094999999999999,50.512999999999998,51.930999999999997,53.348999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1341,1,49.097299999999997,0.028879999999999999,44.844000000000001,46.261000000000003,47.679000000000002,49.097000000000001,50.515000000000001,51.933,53.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1342,1,49.099400000000003,0.028879999999999999,44.844999999999999,46.262999999999998,47.680999999999997,49.098999999999997,50.517000000000003,51.935000000000002,53.353000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1343,1,49.101500000000001,0.028879999999999999,44.847000000000001,46.265000000000001,47.683,49.101999999999997,50.52,51.938000000000002,53.356000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1344,1,49.103499999999997,0.028879999999999999,44.848999999999997,46.267000000000003,47.685000000000002,49.103999999999999,50.521999999999998,51.94,53.357999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1345,1,49.105600000000003,0.028879999999999999,44.850999999999999,46.268999999999998,47.686999999999998,49.106000000000002,50.524000000000001,51.942,53.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1346,1,49.107700000000001,0.028879999999999999,44.853000000000002,46.271000000000001,47.689,49.107999999999997,50.526000000000003,51.944000000000003,53.362000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1347,1,49.109699999999997,0.028879999999999999,44.854999999999997,46.273000000000003,47.691000000000003,49.11,50.527999999999999,51.945999999999998,53.365000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1348,1,49.111800000000002,0.028879999999999999,44.856999999999999,46.274999999999999,47.692999999999998,49.112000000000002,50.53,51.948,53.366999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1349,1,49.113900000000001,0.028879999999999999,44.859000000000002,46.277000000000001,47.695,49.113999999999997,50.531999999999996,51.951000000000001,53.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1350,1,49.115900000000003,0.02887,44.862000000000002,46.28,47.698,49.116,50.533999999999999,51.951999999999998,53.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1351,1,49.118000000000002,0.02887,44.863999999999997,46.281999999999996,47.7,49.118000000000002,50.536000000000001,51.954000000000001,53.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1352,1,49.12,0.02887,44.866,46.283999999999999,47.701999999999998,49.12,50.537999999999997,51.956000000000003,53.374000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1353,1,49.122100000000003,0.02887,44.868000000000002,46.286000000000001,47.704000000000001,49.122,50.54,51.957999999999998,53.377000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1354,1,49.124099999999999,0.02887,44.869,46.287999999999997,47.706000000000003,49.124000000000002,50.542000000000002,51.960999999999999,53.378999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1355,1,49.126199999999997,0.02887,44.871000000000002,46.29,47.707999999999998,49.125999999999998,50.543999999999997,51.963000000000001,53.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1356,1,49.1282,0.02887,44.872999999999998,46.292000000000002,47.71,49.128,50.546999999999997,51.965000000000003,53.383000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1357,1,49.130299999999998,0.02887,44.875,46.293999999999997,47.712000000000003,49.13,50.548999999999999,51.966999999999999,53.384999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1358,1,49.132300000000001,0.02887,44.877000000000002,46.295000000000002,47.713999999999999,49.131999999999998,50.551000000000002,51.969000000000001,53.387999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1359,1,49.134300000000003,0.02887,44.878999999999998,46.296999999999997,47.716000000000001,49.134,50.552999999999997,51.970999999999997,53.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1360,1,49.136400000000002,0.02887,44.881,46.298999999999999,47.718000000000004,49.136000000000003,50.555,51.973999999999997,53.392000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1361,1,49.138399999999997,0.02886,44.884,46.302,47.72,49.137999999999998,50.557000000000002,51.975000000000001,53.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1362,1,49.1404,0.02886,44.886000000000003,46.304000000000002,47.722000000000001,49.14,50.558999999999997,51.976999999999997,53.395000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1363,1,49.142499999999998,0.02886,44.887999999999998,46.305999999999997,47.723999999999997,49.142000000000003,50.561,51.978999999999999,53.396999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1364,1,49.144500000000001,0.02886,44.89,46.308,47.725999999999999,49.143999999999998,50.563000000000002,51.981000000000002,53.399000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1365,1,49.146500000000003,0.02886,44.890999999999998,46.31,47.728000000000002,49.146000000000001,50.564999999999998,51.982999999999997,53.402000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1366,1,49.148499999999999,0.02886,44.893000000000001,46.311999999999998,47.73,49.148000000000003,50.567,51.984999999999999,53.404000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1367,1,49.150599999999997,0.02886,44.895000000000003,46.314,47.731999999999999,49.151000000000003,50.569000000000003,51.988,53.405999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1368,1,49.1526,0.02886,44.896999999999998,46.316000000000003,47.734000000000002,49.152999999999999,50.570999999999998,51.99,53.408000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1369,1,49.154600000000002,0.02886,44.899000000000001,46.317,47.735999999999997,49.155000000000001,50.573,51.991999999999997,53.41 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1370,1,49.156599999999997,0.02886,44.901000000000003,46.319000000000003,47.738,49.156999999999996,50.575000000000003,51.994,53.412999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1371,1,49.1586,0.02886,44.902000000000001,46.320999999999998,47.74,49.158999999999999,50.576999999999998,51.996000000000002,53.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1372,1,49.160699999999999,0.028850000000000001,44.905999999999999,46.323999999999998,47.741999999999997,49.161000000000001,50.579000000000001,51.997,53.415999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1373,1,49.162700000000001,0.028850000000000001,44.908000000000001,46.326000000000001,47.744,49.162999999999997,50.581000000000003,51.999000000000002,53.417999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1374,1,49.164700000000003,0.028850000000000001,44.908999999999999,46.328000000000003,47.746000000000002,49.164999999999999,50.582999999999998,52.002000000000002,53.42 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1375,1,49.166699999999999,0.028850000000000001,44.911000000000001,46.33,47.747999999999998,49.167000000000002,50.585000000000001,52.003999999999998,53.421999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1376,1,49.168700000000001,0.028850000000000001,44.912999999999997,46.332000000000001,47.75,49.168999999999997,50.587000000000003,52.006,53.423999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1377,1,49.170699999999997,0.028850000000000001,44.914999999999999,46.334000000000003,47.752000000000002,49.170999999999999,50.588999999999999,52.008000000000003,53.426000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1378,1,49.172699999999999,0.028850000000000001,44.917000000000002,46.335000000000001,47.753999999999998,49.173000000000002,50.591000000000001,52.01,53.429000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1379,1,49.174700000000001,0.028850000000000001,44.918999999999997,46.337000000000003,47.756,49.174999999999997,50.593000000000004,52.012,53.430999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1380,1,49.176699999999997,0.028850000000000001,44.92,46.338999999999999,47.758000000000003,49.177,50.594999999999999,52.014000000000003,53.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1381,1,49.178699999999999,0.028850000000000001,44.921999999999997,46.341000000000001,47.76,49.179000000000002,50.597999999999999,52.015999999999998,53.435000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1382,1,49.180700000000002,0.028850000000000001,44.923999999999999,46.343000000000004,47.762,49.180999999999997,50.6,52.018000000000001,53.436999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1383,1,49.182600000000001,0.028850000000000001,44.926000000000002,46.344999999999999,47.764000000000003,49.183,50.601999999999997,52.02,53.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1384,1,49.184600000000003,0.028840000000000001,44.929000000000002,46.347999999999999,47.765999999999998,49.185000000000002,50.603000000000002,52.021999999999998,53.44 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1385,1,49.186599999999999,0.028840000000000001,44.930999999999997,46.35,47.768000000000001,49.186999999999998,50.604999999999997,52.024000000000001,53.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1386,1,49.188600000000001,0.028840000000000001,44.933,46.350999999999999,47.77,49.189,50.606999999999999,52.026000000000003,53.444000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1387,1,49.190600000000003,0.028840000000000001,44.935000000000002,46.353000000000002,47.771999999999998,49.191000000000003,50.609000000000002,52.027999999999999,53.447000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1388,1,49.192599999999999,0.028840000000000001,44.936,46.354999999999997,47.774000000000001,49.192999999999998,50.610999999999997,52.03,53.448999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1389,1,49.194499999999998,0.028840000000000001,44.938000000000002,46.356999999999999,47.776000000000003,49.194000000000003,50.613,52.031999999999996,53.451000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1390,1,49.1965,0.028840000000000001,44.94,46.359000000000002,47.777999999999999,49.195999999999998,50.615000000000002,52.033999999999999,53.453000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1391,1,49.198500000000003,0.028840000000000001,44.942,46.360999999999997,47.78,49.198,50.616999999999997,52.036000000000001,53.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1392,1,49.200499999999998,0.028840000000000001,44.944000000000003,46.363,47.781999999999996,49.2,50.619,52.037999999999997,53.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1393,1,49.202399999999997,0.028840000000000001,44.945,46.363999999999997,47.783000000000001,49.201999999999998,50.621000000000002,52.04,53.459000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1394,1,49.2044,0.028840000000000001,44.947000000000003,46.366,47.784999999999997,49.204000000000001,50.622999999999998,52.042999999999999,53.462000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1395,1,49.206400000000002,0.028830000000000001,44.951000000000001,46.369,47.787999999999997,49.206000000000003,50.625,52.043999999999997,53.462000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1396,1,49.208300000000001,0.028830000000000001,44.951999999999998,46.371000000000002,47.79,49.207999999999998,50.627000000000002,52.045999999999999,53.463999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1397,1,49.210299999999997,0.028830000000000001,44.954000000000001,46.372999999999998,47.792000000000002,49.21,50.628999999999998,52.048000000000002,53.466000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1398,1,49.212299999999999,0.028830000000000001,44.956000000000003,46.375,47.793999999999997,49.212000000000003,50.631,52.05,53.469000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1399,1,49.214199999999998,0.028830000000000001,44.957999999999998,46.377000000000002,47.795000000000002,49.213999999999999,50.633000000000003,52.052,53.470999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1400,1,49.216200000000001,0.028830000000000001,44.959000000000003,46.378,47.796999999999997,49.216000000000001,50.634999999999998,52.054000000000002,53.472999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1401,1,49.2181,0.028830000000000001,44.960999999999999,46.38,47.798999999999999,49.218000000000004,50.637,52.055999999999997,53.475000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1402,1,49.220100000000002,0.028830000000000001,44.963000000000001,46.381999999999998,47.801000000000002,49.22,50.639000000000003,52.058,53.476999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1403,1,49.222000000000001,0.028830000000000001,44.965000000000003,46.384,47.802999999999997,49.222000000000001,50.640999999999998,52.06,53.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1404,1,49.223999999999997,0.028830000000000001,44.966999999999999,46.386000000000003,47.805,49.223999999999997,50.643000000000001,52.061999999999998,53.481000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1405,1,49.225900000000003,0.028830000000000001,44.968000000000004,46.387999999999998,47.807000000000002,49.225999999999999,50.645000000000003,52.064,53.482999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1406,1,49.227899999999998,0.028830000000000001,44.97,46.389000000000003,47.808999999999997,49.228000000000002,50.646999999999998,52.066000000000003,53.485999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1407,1,49.229799999999997,0.028819999999999998,44.972999999999999,46.392000000000003,47.811,49.23,50.649000000000001,52.067,53.485999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1408,1,49.2318,0.028819999999999998,44.975000000000001,46.393999999999998,47.813000000000002,49.231999999999999,50.651000000000003,52.07,53.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1409,1,49.233699999999999,0.028819999999999998,44.976999999999997,46.396000000000001,47.814999999999998,49.234000000000002,50.652999999999999,52.072000000000003,53.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1410,1,49.235599999999998,0.028819999999999998,44.978999999999999,46.398000000000003,47.817,49.235999999999997,50.655000000000001,52.073999999999998,53.493000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1411,1,49.2376,0.028819999999999998,44.981000000000002,46.4,47.819000000000003,49.238,50.656999999999996,52.076000000000001,53.494999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1412,1,49.2395,0.028819999999999998,44.981999999999999,46.401000000000003,47.82,49.24,50.658999999999999,52.078000000000003,53.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1413,1,49.241399999999999,0.028819999999999998,44.984000000000002,46.402999999999999,47.822000000000003,49.241,50.661000000000001,52.08,53.499000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1414,1,49.243400000000001,0.028819999999999998,44.985999999999997,46.405000000000001,47.823999999999998,49.243000000000002,50.662999999999997,52.082000000000001,53.500999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1415,1,49.2453,0.028819999999999998,44.988,46.406999999999996,47.826000000000001,49.244999999999997,50.664999999999999,52.084000000000003,53.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1416,1,49.247199999999999,0.028819999999999998,44.988999999999997,46.408999999999999,47.828000000000003,49.247,50.667000000000002,52.085999999999999,53.505000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1417,1,49.249200000000002,0.028819999999999998,44.991,46.41,47.83,49.249000000000002,50.668999999999997,52.088000000000001,53.506999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1418,1,49.251100000000001,0.028809999999999999,44.994,46.412999999999997,47.832000000000001,49.250999999999998,50.67,52.088999999999999,53.508000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1419,1,49.253,0.028809999999999999,44.996000000000002,46.414999999999999,47.834000000000003,49.253,50.671999999999997,52.091000000000001,53.51 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1420,1,49.254899999999999,0.028809999999999999,44.997999999999998,46.417000000000002,47.835999999999999,49.255000000000003,50.673999999999999,52.093000000000004,53.512 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1421,1,49.256799999999998,0.028809999999999999,45,46.418999999999997,47.838000000000001,49.256999999999998,50.676000000000002,52.094999999999999,53.514000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1422,1,49.258800000000001,0.028809999999999999,45.000999999999998,46.420999999999999,47.84,49.259,50.677999999999997,52.097000000000001,53.515999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1423,1,49.2607,0.028809999999999999,45.003,46.421999999999997,47.841000000000001,49.261000000000003,50.68,52.098999999999997,53.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1424,1,49.262599999999999,0.028809999999999999,45.005000000000003,46.423999999999999,47.843000000000004,49.262999999999998,50.682000000000002,52.100999999999999,53.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1425,1,49.264499999999998,0.028809999999999999,45.006999999999998,46.426000000000002,47.844999999999999,49.264000000000003,50.683999999999997,52.103000000000002,53.521999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1426,1,49.266399999999997,0.028809999999999999,45.008000000000003,46.427999999999997,47.847000000000001,49.265999999999998,50.686,52.104999999999997,53.524000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1427,1,49.268300000000004,0.028809999999999999,45.01,46.429000000000002,47.848999999999997,49.268000000000001,50.688000000000002,52.106999999999999,53.527000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1428,1,49.270200000000003,0.028809999999999999,45.012,46.430999999999997,47.850999999999999,49.27,50.69,52.109000000000002,53.529000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1429,1,49.272100000000002,0.028809999999999999,45.014000000000003,46.433,47.853000000000002,49.271999999999998,50.692,52.110999999999997,53.530999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1430,1,49.274000000000001,0.028799999999999999,45.017000000000003,46.436,47.854999999999997,49.274000000000001,50.692999999999998,52.112000000000002,53.530999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1431,1,49.2759,0.028799999999999999,45.018000000000001,46.438000000000002,47.856999999999999,49.276000000000003,50.695,52.113999999999997,53.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1432,1,49.277799999999999,0.028799999999999999,45.02,46.439,47.859000000000002,49.277999999999999,50.697000000000003,52.116,53.534999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1433,1,49.279699999999998,0.028799999999999999,45.021999999999998,46.441000000000003,47.86,49.28,50.698999999999998,52.118000000000002,53.536999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1434,1,49.281599999999997,0.028799999999999999,45.024000000000001,46.442999999999998,47.862000000000002,49.281999999999996,50.701000000000001,52.12,53.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1435,1,49.283499999999997,0.028799999999999999,45.024999999999999,46.445,47.863999999999997,49.283999999999999,50.703000000000003,52.122,53.542000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1436,1,49.285400000000003,0.028799999999999999,45.027000000000001,46.447000000000003,47.866,49.284999999999997,50.704999999999998,52.124000000000002,53.543999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1437,1,49.287300000000002,0.028799999999999999,45.029000000000003,46.448,47.868000000000002,49.286999999999999,50.707000000000001,52.125999999999998,53.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1438,1,49.289200000000001,0.028799999999999999,45.030999999999999,46.45,47.87,49.289000000000001,50.709000000000003,52.128,53.548000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1439,1,49.2911,0.028799999999999999,45.031999999999996,46.451999999999998,47.872,49.290999999999997,50.710999999999999,52.13,53.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1440,1,49.292900000000003,0.028799999999999999,45.033999999999999,46.454000000000001,47.872999999999998,49.292999999999999,50.713000000000001,52.131999999999998,53.552 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1441,1,49.294800000000002,0.028799999999999999,45.036000000000001,46.454999999999998,47.875,49.295000000000002,50.713999999999999,52.134,53.554000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1442,1,49.296700000000001,0.02879,45.039000000000001,46.457999999999998,47.877000000000002,49.296999999999997,50.716000000000001,52.134999999999998,53.554000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1443,1,49.2986,0.02879,45.040999999999997,46.46,47.878999999999998,49.298999999999999,50.718000000000004,52.137,53.557000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1444,1,49.3005,0.02879,45.042000000000002,46.462000000000003,47.881,49.3,50.72,52.139000000000003,53.558999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1445,1,49.302300000000002,0.02879,45.043999999999997,46.463000000000001,47.883000000000003,49.302,50.722000000000001,52.140999999999998,53.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1446,1,49.304200000000002,0.02879,45.045999999999999,46.465000000000003,47.884999999999998,49.304000000000002,50.723999999999997,52.143000000000001,53.563000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1447,1,49.306100000000001,0.02879,45.048000000000002,46.466999999999999,47.887,49.305999999999997,50.725999999999999,52.145000000000003,53.564999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1448,1,49.308,0.02879,45.048999999999999,46.469000000000001,47.887999999999998,49.308,50.728000000000002,52.146999999999998,53.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1449,1,49.309800000000003,0.02879,45.051000000000002,46.470999999999997,47.89,49.31,50.728999999999999,52.149000000000001,53.569000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1450,1,49.311700000000002,0.02879,45.052999999999997,46.472000000000001,47.892000000000003,49.311999999999998,50.731000000000002,52.151000000000003,53.570999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1451,1,49.313600000000001,0.02879,45.054000000000002,46.473999999999997,47.893999999999998,49.314,50.732999999999997,52.152999999999999,53.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1452,1,49.315399999999997,0.02879,45.055999999999997,46.475999999999999,47.896000000000001,49.314999999999998,50.734999999999999,52.155000000000001,53.575000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1453,1,49.317300000000003,0.02878,45.058999999999997,46.478999999999999,47.898000000000003,49.317,50.737000000000002,52.155999999999999,53.575000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1454,1,49.319099999999999,0.02878,45.061,46.48,47.9,49.319000000000003,50.738999999999997,52.158000000000001,53.576999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1455,1,49.320999999999998,0.02878,45.063000000000002,46.481999999999999,47.902000000000001,49.320999999999998,50.74,52.16,53.579000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1456,1,49.322899999999997,0.02878,45.064,46.484000000000002,47.902999999999999,49.323,50.741999999999997,52.161999999999999,53.581000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1457,1,49.3247,0.02878,45.066000000000003,46.485999999999997,47.905000000000001,49.325000000000003,50.744,52.164000000000001,53.582999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1458,1,49.326599999999999,0.02878,45.067999999999998,46.487000000000002,47.906999999999996,49.326999999999998,50.746000000000002,52.165999999999997,53.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1459,1,49.328400000000002,0.02878,45.069000000000003,46.488999999999997,47.908999999999999,49.328000000000003,50.747999999999998,52.167999999999999,53.587000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1460,1,49.330300000000001,0.02878,45.070999999999998,46.491,47.911000000000001,49.33,50.75,52.17,53.588999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1461,1,49.332099999999997,0.02878,45.073,46.493000000000002,47.911999999999999,49.332000000000001,50.752000000000002,52.171999999999997,53.591000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1462,1,49.334000000000003,0.02878,45.075000000000003,46.494,47.914000000000001,49.334000000000003,50.753999999999998,52.173999999999999,53.593000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1463,1,49.335799999999999,0.02878,45.076000000000001,46.496000000000002,47.915999999999997,49.335999999999999,50.756,52.176000000000002,53.594999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1464,1,49.337699999999998,0.02878,45.078000000000003,46.497999999999998,47.917999999999999,49.338000000000001,50.758000000000003,52.177999999999997,53.597999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1465,1,49.339500000000001,0.02877,45.081000000000003,46.500999999999998,47.92,49.34,50.759,52.177999999999997,53.597999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1466,1,49.3414,0.02877,45.082999999999998,46.502000000000002,47.921999999999997,49.341000000000001,50.761000000000003,52.180999999999997,53.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1467,1,49.343200000000003,0.02877,45.084000000000003,46.503999999999998,47.923999999999999,49.343000000000004,50.762999999999998,52.182000000000002,53.601999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1468,1,49.344999999999999,0.02877,45.085999999999999,46.506,47.924999999999997,49.344999999999999,50.765000000000001,52.183999999999997,53.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1469,1,49.346899999999998,0.02877,45.088000000000001,46.506999999999998,47.927,49.347000000000001,50.767000000000003,52.186,53.606000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1470,1,49.348700000000001,0.02877,45.088999999999999,46.509,47.929000000000002,49.348999999999997,50.768000000000001,52.188000000000002,53.607999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1471,1,49.350499999999997,0.02877,45.091000000000001,46.511000000000003,47.930999999999997,49.35,50.77,52.19,53.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1472,1,49.352400000000003,0.02877,45.093000000000004,46.512999999999998,47.933,49.351999999999997,50.771999999999998,52.192,53.612000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1473,1,49.354199999999999,0.02877,45.094000000000001,46.514000000000003,47.933999999999997,49.353999999999999,50.774000000000001,52.194000000000003,53.613999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1474,1,49.356000000000002,0.02877,45.095999999999997,46.515999999999998,47.936,49.356000000000002,50.776000000000003,52.195999999999998,53.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1475,1,49.357900000000001,0.02877,45.097999999999999,46.518000000000001,47.938000000000002,49.357999999999997,50.777999999999999,52.198,53.618000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1476,1,49.359699999999997,0.02877,45.098999999999997,46.52,47.94,49.36,50.78,52.2,53.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1477,1,49.361499999999999,0.028760000000000001,45.103000000000002,46.521999999999998,47.942,49.362000000000002,50.780999999999999,52.201000000000001,53.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1478,1,49.363300000000002,0.028760000000000001,45.103999999999999,46.524000000000001,47.944000000000003,49.363,50.783000000000001,52.203000000000003,53.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1479,1,49.365200000000002,0.028760000000000001,45.106000000000002,46.526000000000003,47.945,49.365000000000002,50.784999999999997,52.204999999999998,53.624000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1480,1,49.366999999999997,0.028760000000000001,45.107999999999997,46.527000000000001,47.947000000000003,49.366999999999997,50.786999999999999,52.207000000000001,53.625999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1481,1,49.3688,0.028760000000000001,45.109000000000002,46.529000000000003,47.948999999999998,49.369,50.789000000000001,52.207999999999998,53.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1482,1,49.370600000000003,0.028760000000000001,45.110999999999997,46.530999999999999,47.951000000000001,49.371000000000002,50.79,52.21,53.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1483,1,49.372399999999999,0.028760000000000001,45.113,46.531999999999996,47.951999999999998,49.372,50.792000000000002,52.212000000000003,53.631999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1484,1,49.374200000000002,0.028760000000000001,45.113999999999997,46.533999999999999,47.954000000000001,49.374000000000002,50.793999999999997,52.213999999999999,53.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1485,1,49.376100000000001,0.028760000000000001,45.116,46.536000000000001,47.956000000000003,49.375999999999998,50.795999999999999,52.216000000000001,53.636000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1486,1,49.377899999999997,0.028760000000000001,45.118000000000002,46.537999999999997,47.957999999999998,49.378,50.798000000000002,52.218000000000004,53.637999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1487,1,49.3797,0.028760000000000001,45.119,46.539000000000001,47.96,49.38,50.8,52.22,53.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1488,1,49.381500000000003,0.028760000000000001,45.121000000000002,46.540999999999997,47.960999999999999,49.381999999999998,50.802,52.222000000000001,53.642000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1489,1,49.383299999999998,0.028750000000000001,45.124000000000002,46.543999999999997,47.963999999999999,49.383000000000003,50.802999999999997,52.222999999999999,53.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1490,1,49.385100000000001,0.028750000000000001,45.125999999999998,46.545000000000002,47.965000000000003,49.384999999999998,50.805,52.225000000000001,53.645000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1491,1,49.386899999999997,0.028750000000000001,45.127000000000002,46.546999999999997,47.966999999999999,49.387,50.807000000000002,52.226999999999997,53.646999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1492,1,49.3887,0.028750000000000001,45.128999999999998,46.548999999999999,47.969000000000001,49.389000000000003,50.808999999999997,52.228999999999999,53.648000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1493,1,49.390500000000003,0.028750000000000001,45.131,46.551000000000002,47.970999999999997,49.39,50.81,52.23,53.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1494,1,49.392299999999999,0.028750000000000001,45.131999999999998,46.552,47.972000000000001,49.392000000000003,50.811999999999998,52.231999999999999,53.652000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1495,1,49.394100000000002,0.028750000000000001,45.134,46.554000000000002,47.973999999999997,49.393999999999998,50.814,52.234000000000002,53.654000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1496,1,49.395899999999997,0.028750000000000001,45.136000000000003,46.555999999999997,47.975999999999999,49.396000000000001,50.816000000000003,52.235999999999997,53.655999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1497,1,49.3977,0.028750000000000001,45.137,46.557000000000002,47.978000000000002,49.398000000000003,50.817999999999998,52.238,53.658000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1498,1,49.399500000000003,0.028750000000000001,45.139000000000003,46.558999999999997,47.978999999999999,49.4,50.82,52.24,53.66 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1499,1,49.401299999999999,0.028750000000000001,45.14,46.561,47.981000000000002,49.401000000000003,50.822000000000003,52.241999999999997,53.661999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1500,1,49.403100000000002,0.028750000000000001,45.142000000000003,46.561999999999998,47.982999999999997,49.402999999999999,50.823,52.244,53.664000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1501,1,49.404800000000002,0.028740000000000002,45.145000000000003,46.564999999999998,47.984999999999999,49.405000000000001,50.825000000000003,52.244999999999997,53.664000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1502,1,49.406599999999997,0.028740000000000002,45.146999999999998,46.567,47.987000000000002,49.406999999999996,50.826999999999998,52.246000000000002,53.665999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1503,1,49.4084,0.028740000000000002,45.148000000000003,46.567999999999998,47.988,49.408000000000001,50.828000000000003,52.247999999999998,53.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1504,1,49.410200000000003,0.028740000000000002,45.15,46.57,47.99,49.41,50.83,52.25,53.67 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1505,1,49.411999999999999,0.028740000000000002,45.152000000000001,46.572000000000003,47.991999999999997,49.411999999999999,50.832000000000001,52.252000000000002,53.671999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1506,1,49.413800000000002,0.028740000000000002,45.152999999999999,46.573,47.994,49.414000000000001,50.834000000000003,52.253999999999998,53.673999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1507,1,49.415500000000002,0.028740000000000002,45.155000000000001,46.575000000000003,47.994999999999997,49.415999999999997,50.835999999999999,52.256,53.676000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1508,1,49.417299999999997,0.028740000000000002,45.156999999999996,46.576999999999998,47.997,49.417000000000002,50.838000000000001,52.258000000000003,53.677999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1509,1,49.4191,0.028740000000000002,45.158000000000001,46.578000000000003,47.999000000000002,49.418999999999997,50.838999999999999,52.26,53.68 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1510,1,49.420900000000003,0.028740000000000002,45.16,46.58,48.000999999999998,49.420999999999999,50.841000000000001,52.262,53.682000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1511,1,49.422699999999999,0.028740000000000002,45.161000000000001,46.582000000000001,48.002000000000002,49.423000000000002,50.843000000000004,52.264000000000003,53.683999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1512,1,49.424399999999999,0.028740000000000002,45.162999999999997,46.582999999999998,48.003999999999998,49.423999999999999,50.844999999999999,52.265000000000001,53.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1513,1,49.426200000000001,0.028729999999999999,45.165999999999997,46.585999999999999,48.006,49.426000000000002,50.845999999999997,52.265999999999998,53.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1514,1,49.427999999999997,0.028729999999999999,45.167999999999999,46.588000000000001,48.008000000000003,49.427999999999997,50.847999999999999,52.268000000000001,53.688000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1515,1,49.429699999999997,0.028729999999999999,45.168999999999997,46.588999999999999,48.01,49.43,50.85,52.27,53.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1516,1,49.4315,0.028729999999999999,45.170999999999999,46.591000000000001,48.011000000000003,49.432000000000002,50.851999999999997,52.271999999999998,53.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1517,1,49.433300000000003,0.028729999999999999,45.173000000000002,46.593000000000004,48.012999999999998,49.433,50.853999999999999,52.274000000000001,53.694000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1518,1,49.435000000000002,0.028729999999999999,45.173999999999999,46.594000000000001,48.015000000000001,49.435000000000002,50.854999999999997,52.276000000000003,53.695999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1519,1,49.436799999999998,0.028729999999999999,45.176000000000002,46.595999999999997,48.015999999999998,49.436999999999998,50.856999999999999,52.277000000000001,53.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1520,1,49.438600000000001,0.028729999999999999,45.177,46.597999999999999,48.018000000000001,49.439,50.859000000000002,52.279000000000003,53.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1521,1,49.440300000000001,0.028729999999999999,45.179000000000002,46.598999999999997,48.02,49.44,50.860999999999997,52.280999999999999,53.701999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1522,1,49.442100000000003,0.028729999999999999,45.180999999999997,46.600999999999999,48.021999999999998,49.442,50.863,52.283000000000001,53.704000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1523,1,49.443800000000003,0.028729999999999999,45.182000000000002,46.603000000000002,48.023000000000003,49.444000000000003,50.863999999999997,52.284999999999997,53.704999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1524,1,49.445599999999999,0.028729999999999999,45.183999999999997,46.603999999999999,48.024999999999999,49.445999999999998,50.866,52.286999999999999,53.707000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1525,1,49.447299999999998,0.028729999999999999,45.185000000000002,46.606000000000002,48.027000000000001,49.447000000000003,50.868000000000002,52.289000000000001,53.709000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1526,1,49.449100000000001,0.028719999999999999,45.189,46.609000000000002,48.029000000000003,49.448999999999998,50.869,52.289000000000001,53.71 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1527,1,49.450800000000001,0.028719999999999999,45.19,46.61,48.030999999999999,49.451000000000001,50.871000000000002,52.290999999999997,53.710999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1528,1,49.452599999999997,0.028719999999999999,45.192,46.612000000000002,48.031999999999996,49.453000000000003,50.872999999999998,52.292999999999999,53.713000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1529,1,49.454300000000003,0.028719999999999999,45.192999999999998,46.613999999999997,48.033999999999999,49.454000000000001,50.875,52.295000000000002,53.715000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1530,1,49.456099999999999,0.028719999999999999,45.195,46.615000000000002,48.036000000000001,49.456000000000003,50.875999999999998,52.296999999999997,53.716999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1531,1,49.457799999999999,0.028719999999999999,45.197000000000003,46.616999999999997,48.036999999999999,49.457999999999998,50.878,52.298999999999999,53.719000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1532,1,49.459600000000002,0.028719999999999999,45.198,46.619,48.039000000000001,49.46,50.88,52.301000000000002,53.720999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1533,1,49.461300000000001,0.028719999999999999,45.2,46.62,48.040999999999997,49.460999999999999,50.881999999999998,52.302,53.722999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1534,1,49.463099999999997,0.028719999999999999,45.201000000000001,46.622,48.042999999999999,49.463000000000001,50.884,52.304000000000002,53.725000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1535,1,49.464799999999997,0.028719999999999999,45.203000000000003,46.624000000000002,48.043999999999997,49.465000000000003,50.884999999999998,52.305999999999997,53.726999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1536,1,49.4666,0.028719999999999999,45.204999999999998,46.625,48.045999999999999,49.466999999999999,50.887,52.308,53.728999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1537,1,49.468299999999999,0.028719999999999999,45.206000000000003,46.627000000000002,48.048000000000002,49.468000000000004,50.889000000000003,52.31,53.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1538,1,49.47,0.028709999999999999,45.209000000000003,46.628999999999998,48.05,49.47,50.89,52.311,53.731000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1539,1,49.471800000000002,0.028709999999999999,45.210999999999999,46.631,48.051000000000002,49.472000000000001,50.892000000000003,52.311999999999998,53.732999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1540,1,49.473500000000001,0.028709999999999999,45.212000000000003,46.633000000000003,48.052999999999997,49.473999999999997,50.893999999999998,52.314,53.734999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1541,1,49.475200000000001,0.028709999999999999,45.213999999999999,46.634,48.055,49.475000000000001,50.896000000000001,52.316000000000003,53.735999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1542,1,49.476999999999997,0.028709999999999999,45.216000000000001,46.636000000000003,48.057000000000002,49.476999999999997,50.896999999999998,52.317999999999998,53.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1543,1,49.478700000000003,0.028709999999999999,45.216999999999999,46.637999999999998,48.058,49.478999999999999,50.899000000000001,52.32,53.74 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1544,1,49.480400000000003,0.028709999999999999,45.219000000000001,46.639000000000003,48.06,49.48,50.901000000000003,52.322000000000003,53.741999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1545,1,49.482100000000003,0.028709999999999999,45.22,46.640999999999998,48.061,49.481999999999999,50.902999999999999,52.323,53.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1546,1,49.483899999999998,0.028709999999999999,45.222000000000001,46.643000000000001,48.063000000000002,49.484000000000002,50.905000000000001,52.325000000000003,53.746000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1547,1,49.485599999999998,0.028709999999999999,45.222999999999999,46.643999999999998,48.064999999999998,49.485999999999997,50.905999999999999,52.326999999999998,53.747999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1548,1,49.487299999999998,0.028709999999999999,45.225000000000001,46.646000000000001,48.067,49.487000000000002,50.908000000000001,52.329000000000001,53.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1549,1,49.488999999999997,0.028709999999999999,45.226999999999997,46.646999999999998,48.067999999999998,49.488999999999997,50.91,52.331000000000003,53.750999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1550,1,49.4908,0.0287,45.23,46.65,48.07,49.491,50.911000000000001,52.332000000000001,53.752000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1551,1,49.4925,0.0287,45.231000000000002,46.652000000000001,48.072000000000003,49.491999999999997,50.912999999999997,52.332999999999998,53.753999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1552,1,49.494199999999999,0.0287,45.232999999999997,46.652999999999999,48.073999999999998,49.494,50.914999999999999,52.335000000000001,53.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1553,1,49.495899999999999,0.0287,45.234000000000002,46.655000000000001,48.075000000000003,49.496000000000002,50.915999999999997,52.337000000000003,53.756999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1554,1,49.497599999999998,0.0287,45.235999999999997,46.655999999999999,48.076999999999998,49.497999999999998,50.917999999999999,52.338999999999999,53.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1555,1,49.499299999999998,0.0287,45.237000000000002,46.658000000000001,48.079000000000001,49.499000000000002,50.92,52.341000000000001,53.761000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1556,1,49.501100000000001,0.0287,45.238999999999997,46.66,48.08,49.500999999999998,50.921999999999997,52.341999999999999,53.762999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1557,1,49.502800000000001,0.0287,45.241,46.661000000000001,48.082000000000001,49.503,50.923999999999999,52.344000000000001,53.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1558,1,49.5045,0.0287,45.241999999999997,46.662999999999997,48.084000000000003,49.503999999999998,50.924999999999997,52.345999999999997,53.767000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1559,1,49.5062,0.0287,45.244,46.664999999999999,48.085000000000001,49.506,50.927,52.347999999999999,53.768999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1560,1,49.507899999999999,0.0287,45.244999999999997,46.665999999999997,48.087000000000003,49.508000000000003,50.929000000000002,52.35,53.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1561,1,49.509599999999999,0.0287,45.247,46.667999999999999,48.088999999999999,49.51,50.930999999999997,52.350999999999999,53.771999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1562,1,49.511299999999999,0.0287,45.247999999999998,46.668999999999997,48.09,49.511000000000003,50.932000000000002,52.353000000000002,53.774000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1563,1,49.512999999999998,0.02869,45.250999999999998,46.671999999999997,48.091999999999999,49.512999999999998,50.933999999999997,52.353999999999999,53.774999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1564,1,49.514699999999998,0.02869,45.253,46.673999999999999,48.094000000000001,49.515000000000001,50.935000000000002,52.356000000000002,53.776000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1565,1,49.516399999999997,0.02869,45.255000000000003,46.674999999999997,48.095999999999997,49.515999999999998,50.936999999999998,52.357999999999997,53.777999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1566,1,49.518099999999997,0.02869,45.256,46.677,48.097000000000001,49.518000000000001,50.939,52.359000000000002,53.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1567,1,49.519799999999996,0.02869,45.258000000000003,46.677999999999997,48.098999999999997,49.52,50.941000000000003,52.360999999999997,53.781999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1568,1,49.521500000000003,0.02869,45.259,46.68,48.100999999999999,49.521999999999998,50.942,52.363,53.783999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1569,1,49.523200000000003,0.02869,45.261000000000003,46.682000000000002,48.101999999999997,49.523000000000003,50.944000000000003,52.365000000000002,53.786000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1570,1,49.524900000000002,0.02869,45.262,46.683,48.103999999999999,49.524999999999999,50.945999999999998,52.366999999999997,53.787999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1571,1,49.526600000000002,0.02869,45.264000000000003,46.685000000000002,48.106000000000002,49.527000000000001,50.948,52.368000000000002,53.789000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1572,1,49.528300000000002,0.02869,45.265000000000001,46.686,48.106999999999999,49.527999999999999,50.948999999999998,52.37,53.790999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1573,1,49.53,0.02869,45.267000000000003,46.688000000000002,48.109000000000002,49.53,50.951000000000001,52.372,53.792999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1574,1,49.531700000000001,0.02869,45.268999999999998,46.69,48.110999999999997,49.531999999999996,50.953000000000003,52.374000000000002,53.795000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1575,1,49.5334,0.028680000000000001,45.271999999999998,46.692,48.113,49.533000000000001,50.954000000000001,52.375,53.795000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1576,1,49.5351,0.028680000000000001,45.273000000000003,46.694000000000003,48.113999999999997,49.534999999999997,50.956000000000003,52.375999999999998,53.796999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1577,1,49.536700000000003,0.028680000000000001,45.274999999999999,46.695,48.116,49.536999999999999,50.957000000000001,52.378,53.798999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1578,1,49.538400000000003,0.028680000000000001,45.276000000000003,46.697000000000003,48.118000000000002,49.537999999999997,50.959000000000003,52.38,53.801000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1579,1,49.540100000000002,0.028680000000000001,45.277999999999999,46.698,48.119,49.54,50.960999999999999,52.381999999999998,53.802999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1580,1,49.541800000000002,0.028680000000000001,45.279000000000003,46.7,48.121000000000002,49.542000000000002,50.963000000000001,52.384,53.804000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1581,1,49.543500000000002,0.028680000000000001,45.280999999999999,46.701999999999998,48.122999999999998,49.543999999999997,50.963999999999999,52.384999999999998,53.805999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1582,1,49.545200000000001,0.028680000000000001,45.281999999999996,46.703000000000003,48.124000000000002,49.545000000000002,50.966000000000001,52.387,53.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1583,1,49.546799999999998,0.028680000000000001,45.283999999999999,46.704999999999998,48.125999999999998,49.546999999999997,50.968000000000004,52.389000000000003,53.81 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1584,1,49.548499999999997,0.028680000000000001,45.284999999999997,46.706000000000003,48.127000000000002,49.548000000000002,50.97,52.390999999999998,53.811999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1585,1,49.550199999999997,0.028680000000000001,45.286999999999999,46.707999999999998,48.128999999999998,49.55,50.970999999999997,52.392000000000003,53.813000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1586,1,49.551900000000003,0.028680000000000001,45.287999999999997,46.71,48.131,49.552,50.972999999999999,52.393999999999998,53.814999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1587,1,49.5535,0.028680000000000001,45.29,46.710999999999999,48.131999999999998,49.554000000000002,50.975000000000001,52.396000000000001,53.817 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1588,1,49.555199999999999,0.028670000000000001,45.292999999999999,46.713999999999999,48.134,49.555,50.975999999999999,52.396999999999998,53.817 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1589,1,49.556899999999999,0.028670000000000001,45.295000000000002,46.715000000000003,48.136000000000003,49.557000000000002,50.978000000000002,52.398000000000003,53.819000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1590,1,49.558500000000002,0.028670000000000001,45.295999999999999,46.716999999999999,48.137999999999998,49.558,50.978999999999999,52.4,53.820999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1591,1,49.560200000000002,0.028670000000000001,45.298000000000002,46.718000000000004,48.139000000000003,49.56,50.981000000000002,52.402000000000001,53.823 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1592,1,49.561900000000001,0.028670000000000001,45.298999999999999,46.72,48.140999999999998,49.561999999999998,50.982999999999997,52.404000000000003,53.825000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1593,1,49.563600000000001,0.028670000000000001,45.301000000000002,46.722000000000001,48.143000000000001,49.564,50.984999999999999,52.405999999999999,53.826999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1594,1,49.565199999999997,0.028670000000000001,45.302,46.722999999999999,48.143999999999998,49.564999999999998,50.985999999999997,52.406999999999996,53.828000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1595,1,49.566899999999997,0.028670000000000001,45.304000000000002,46.725000000000001,48.146000000000001,49.567,50.988,52.408999999999999,53.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1596,1,49.5685,0.028670000000000001,45.305,46.725999999999999,48.146999999999998,49.567999999999998,50.99,52.411000000000001,53.832000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1597,1,49.5702,0.028670000000000001,45.307000000000002,46.728000000000002,48.149000000000001,49.57,50.991,52.412999999999997,53.834000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1598,1,49.571899999999999,0.028670000000000001,45.308,46.728999999999999,48.151000000000003,49.572000000000003,50.993000000000002,52.414000000000001,53.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1599,1,49.573500000000003,0.028670000000000001,45.31,46.731000000000002,48.152000000000001,49.573999999999998,50.994999999999997,52.415999999999997,53.837000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1600,1,49.575200000000002,0.028670000000000001,45.311,46.732999999999997,48.154000000000003,49.575000000000003,50.997,52.417999999999999,53.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1601,1,49.576799999999999,0.028660000000000001,45.314,46.734999999999999,48.155999999999999,49.576999999999998,50.997999999999998,52.418999999999997,53.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1602,1,49.578499999999998,0.028660000000000001,45.316000000000003,46.737000000000002,48.158000000000001,49.578000000000003,50.999000000000002,52.42,53.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1603,1,49.580199999999998,0.028660000000000001,45.317,46.738,48.158999999999999,49.58,51.000999999999998,52.421999999999997,53.843000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1604,1,49.581800000000001,0.028660000000000001,45.319000000000003,46.74,48.161000000000001,49.582000000000001,51.003,52.423999999999999,53.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1605,1,49.583500000000001,0.028660000000000001,45.32,46.741,48.161999999999999,49.584000000000003,51.005000000000003,52.426000000000002,53.847000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1606,1,49.585099999999997,0.028660000000000001,45.322000000000003,46.743000000000002,48.164000000000001,49.585000000000001,51.006,52.427,53.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1607,1,49.586799999999997,0.028660000000000001,45.323,46.744,48.165999999999997,49.587000000000003,51.008000000000003,52.429000000000002,53.85 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1608,1,49.5884,0.028660000000000001,45.325000000000003,46.746000000000002,48.167000000000002,49.588000000000001,51.01,52.430999999999997,53.851999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1609,1,49.5901,0.028660000000000001,45.326000000000001,46.747999999999998,48.168999999999997,49.59,51.011000000000003,52.433,53.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1610,1,49.591700000000003,0.028660000000000001,45.328000000000003,46.749000000000002,48.17,49.591999999999999,51.012999999999998,52.433999999999997,53.856000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1611,1,49.593299999999999,0.028660000000000001,45.329000000000001,46.750999999999998,48.171999999999997,49.593000000000004,51.015000000000001,52.436,53.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1612,1,49.594999999999999,0.028660000000000001,45.331000000000003,46.752000000000002,48.173999999999999,49.594999999999999,51.015999999999998,52.438000000000002,53.859000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1613,1,49.596600000000002,0.028660000000000001,45.332000000000001,46.753999999999998,48.174999999999997,49.597000000000001,51.018000000000001,52.439,53.860999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1614,1,49.598300000000002,0.028649999999999998,45.335000000000001,46.756,48.177,49.597999999999999,51.018999999999998,52.44,53.860999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1615,1,49.599899999999998,0.028649999999999998,45.337000000000003,46.758000000000003,48.179000000000002,49.6,51.021000000000001,52.442,53.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1616,1,49.601500000000001,0.028649999999999998,45.338000000000001,46.759,48.18,49.601999999999997,51.023000000000003,52.444000000000003,53.865000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1617,1,49.603200000000001,0.028649999999999998,45.34,46.761000000000003,48.182000000000002,49.603000000000002,51.024000000000001,52.445,53.866999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1618,1,49.604799999999997,0.028649999999999998,45.341000000000001,46.762,48.183999999999997,49.604999999999997,51.026000000000003,52.447000000000003,53.868000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1619,1,49.606499999999997,0.028649999999999998,45.343000000000004,46.764000000000003,48.185000000000002,49.606000000000002,51.027999999999999,52.448999999999998,53.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1620,1,49.6081,0.028649999999999998,45.344000000000001,46.765999999999998,48.186999999999998,49.607999999999997,51.029000000000003,52.451000000000001,53.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1621,1,49.609699999999997,0.028649999999999998,45.345999999999997,46.767000000000003,48.188000000000002,49.61,51.030999999999999,52.451999999999998,53.874000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1622,1,49.611400000000003,0.028649999999999998,45.347000000000001,46.768999999999998,48.19,49.610999999999997,51.033000000000001,52.454000000000001,53.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1623,1,49.613,0.028649999999999998,45.348999999999997,46.77,48.192,49.613,51.033999999999999,52.456000000000003,53.877000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1624,1,49.614600000000003,0.028649999999999998,45.35,46.771999999999998,48.192999999999998,49.615000000000002,51.036000000000001,52.457999999999998,53.878999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1625,1,49.616199999999999,0.028649999999999998,45.351999999999997,46.773000000000003,48.195,49.616,51.037999999999997,52.459000000000003,53.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1626,1,49.617899999999999,0.028649999999999998,45.353000000000002,46.774999999999999,48.195999999999998,49.618000000000002,51.039000000000001,52.460999999999999,53.883000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1627,1,49.619500000000002,0.028639999999999999,45.356000000000002,46.777000000000001,48.198,49.62,51.040999999999997,52.462000000000003,53.883000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1628,1,49.621099999999998,0.028639999999999999,45.357999999999997,46.779000000000003,48.2,49.621000000000002,51.042000000000002,52.463000000000001,53.884999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1629,1,49.622700000000002,0.028639999999999999,45.359000000000002,46.78,48.201999999999998,49.622999999999998,51.043999999999997,52.465000000000003,53.886000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1630,1,49.624400000000001,0.028639999999999999,45.360999999999997,46.781999999999996,48.203000000000003,49.624000000000002,51.045999999999999,52.466999999999999,53.887999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1631,1,49.625999999999998,0.028639999999999999,45.362000000000002,46.783000000000001,48.204999999999998,49.625999999999998,51.046999999999997,52.469000000000001,53.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1632,1,49.627600000000001,0.028639999999999999,45.363999999999997,46.784999999999997,48.206000000000003,49.628,51.048999999999999,52.47,53.892000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1633,1,49.629199999999997,0.028639999999999999,45.365000000000002,46.786000000000001,48.207999999999998,49.628999999999998,51.051000000000002,52.472000000000001,53.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1634,1,49.630800000000001,0.028639999999999999,45.366999999999997,46.787999999999997,48.209000000000003,49.631,51.052,52.473999999999997,53.895000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1635,1,49.6325,0.028639999999999999,45.368000000000002,46.79,48.210999999999999,49.631999999999998,51.054000000000002,52.475000000000001,53.896999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1636,1,49.634099999999997,0.028639999999999999,45.37,46.790999999999997,48.213000000000001,49.634,51.055999999999997,52.476999999999997,53.899000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1637,1,49.6357,0.028639999999999999,45.371000000000002,46.792999999999999,48.213999999999999,49.636000000000003,51.057000000000002,52.478999999999999,53.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1638,1,49.637300000000003,0.028639999999999999,45.372,46.793999999999997,48.216000000000001,49.637,51.058999999999997,52.481000000000002,53.902000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1639,1,49.6389,0.028639999999999999,45.374000000000002,46.795999999999999,48.216999999999999,49.639000000000003,51.061,52.481999999999999,53.904000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1640,1,49.640500000000003,0.028629999999999999,45.377000000000002,46.798000000000002,48.219000000000001,49.64,51.061999999999998,52.482999999999997,53.904000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1641,1,49.642099999999999,0.028629999999999999,45.378,46.8,48.220999999999997,49.642000000000003,51.063000000000002,52.484999999999999,53.905999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1642,1,49.643700000000003,0.028629999999999999,45.38,46.801000000000002,48.222000000000001,49.643999999999998,51.064999999999998,52.485999999999997,53.908000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1643,1,49.645400000000002,0.028629999999999999,45.381,46.802999999999997,48.223999999999997,49.645000000000003,51.067,52.488,53.908999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1644,1,49.646999999999998,0.028629999999999999,45.383000000000003,46.804000000000002,48.225999999999999,49.646999999999998,51.067999999999998,52.49,53.911000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1645,1,49.648600000000002,0.028629999999999999,45.384,46.805999999999997,48.226999999999997,49.649000000000001,51.07,52.491,53.912999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1646,1,49.650199999999998,0.028629999999999999,45.386000000000003,46.807000000000002,48.228999999999999,49.65,51.072000000000003,52.493000000000002,53.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1647,1,49.651800000000001,0.028629999999999999,45.387,46.808999999999997,48.23,49.652000000000001,51.073,52.494999999999997,53.915999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1648,1,49.653399999999998,0.028629999999999999,45.389000000000003,46.81,48.231999999999999,49.652999999999999,51.075000000000003,52.497,53.917999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1649,1,49.655000000000001,0.028629999999999999,45.39,46.811999999999998,48.232999999999997,49.655000000000001,51.076999999999998,52.497999999999998,53.92 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1650,1,49.656599999999997,0.028629999999999999,45.392000000000003,46.813000000000002,48.234999999999999,49.656999999999996,51.078000000000003,52.5,53.921999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1651,1,49.658200000000001,0.028629999999999999,45.393000000000001,46.814999999999998,48.235999999999997,49.658000000000001,51.08,52.502000000000002,53.923000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1652,1,49.659799999999997,0.028629999999999999,45.395000000000003,46.816000000000003,48.238,49.66,51.082000000000001,52.503,53.924999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1653,1,49.6614,0.02862,45.396999999999998,46.819000000000003,48.24,49.661000000000001,51.082999999999998,52.503999999999998,53.924999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1654,1,49.662999999999997,0.02862,45.399000000000001,46.82,48.241999999999997,49.662999999999997,51.084000000000003,52.506,53.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1655,1,49.6646,0.02862,45.4,46.822000000000003,48.243000000000002,49.664999999999999,51.085999999999999,52.506999999999998,53.929000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1656,1,49.6661,0.02862,45.402000000000001,46.823,48.244999999999997,49.665999999999997,51.088000000000001,52.509,53.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1657,1,49.667700000000004,0.02862,45.402999999999999,46.825000000000003,48.246000000000002,49.667999999999999,51.088999999999999,52.511000000000003,53.932000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1658,1,49.6693,0.02862,45.405000000000001,46.826000000000001,48.247999999999998,49.668999999999997,51.091000000000001,52.512,53.933999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1659,1,49.670900000000003,0.02862,45.405999999999999,46.828000000000003,48.249000000000002,49.670999999999999,51.091999999999999,52.514000000000003,53.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1660,1,49.672499999999999,0.02862,45.408000000000001,46.829000000000001,48.250999999999998,49.671999999999997,51.094000000000001,52.515999999999998,53.936999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1661,1,49.674100000000003,0.02862,45.408999999999999,46.831000000000003,48.252000000000002,49.673999999999999,51.095999999999997,52.517000000000003,53.939 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1662,1,49.675699999999999,0.02862,45.411000000000001,46.832000000000001,48.253999999999998,49.676000000000002,51.097000000000001,52.518999999999998,53.941000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1663,1,49.677300000000002,0.02862,45.411999999999999,46.834000000000003,48.256,49.677,51.098999999999997,52.521000000000001,53.942999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1664,1,49.678800000000003,0.02862,45.412999999999997,46.835000000000001,48.256999999999998,49.679000000000002,51.100999999999999,52.521999999999998,53.944000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1665,1,49.680399999999999,0.02862,45.414999999999999,46.837000000000003,48.259,49.68,51.101999999999997,52.524000000000001,53.945999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1666,1,49.682000000000002,0.02861,45.417999999999999,46.838999999999999,48.261000000000003,49.682000000000002,51.103000000000002,52.524999999999999,53.945999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1667,1,49.683599999999998,0.02861,45.418999999999997,46.841000000000001,48.262,49.683999999999997,51.104999999999997,52.526000000000003,53.948 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1668,1,49.685200000000002,0.02861,45.420999999999999,46.841999999999999,48.264000000000003,49.685000000000002,51.106999999999999,52.527999999999999,53.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1669,1,49.686700000000002,0.02861,45.421999999999997,46.844000000000001,48.265000000000001,49.686999999999998,51.107999999999997,52.53,53.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1670,1,49.688299999999998,0.02861,45.423999999999999,46.844999999999999,48.267000000000003,49.688000000000002,51.11,52.530999999999999,53.953000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1671,1,49.689900000000002,0.02861,45.424999999999997,46.847000000000001,48.268000000000001,49.69,51.112000000000002,52.533000000000001,53.954999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1672,1,49.691499999999998,0.02861,45.426000000000002,46.847999999999999,48.27,49.692,51.113,52.534999999999997,53.957000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1673,1,49.693100000000001,0.02861,45.427999999999997,46.85,48.271000000000001,49.692999999999998,51.115000000000002,52.536999999999999,53.957999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1674,1,49.694600000000001,0.02861,45.429000000000002,46.850999999999999,48.273000000000003,49.695,51.116,52.537999999999997,53.96 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1675,1,49.696199999999997,0.02861,45.430999999999997,46.853000000000002,48.274000000000001,49.695999999999998,51.118000000000002,52.54,53.962000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1676,1,49.697800000000001,0.02861,45.432000000000002,46.853999999999999,48.276000000000003,49.698,51.12,52.542000000000002,53.963000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1677,1,49.699300000000001,0.02861,45.433999999999997,46.856000000000002,48.277000000000001,49.698999999999998,51.121000000000002,52.542999999999999,53.965000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1678,1,49.700899999999997,0.02861,45.435000000000002,46.856999999999999,48.279000000000003,49.701000000000001,51.122999999999998,52.545000000000002,53.966999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1679,1,49.702500000000001,0.0286,45.438000000000002,46.86,48.280999999999999,49.701999999999998,51.124000000000002,52.545000000000002,53.966999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1680,1,49.704000000000001,0.0286,45.439,46.860999999999997,48.281999999999996,49.704000000000001,51.125999999999998,52.546999999999997,53.969000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1681,1,49.705599999999997,0.0286,45.441000000000003,46.862000000000002,48.283999999999999,49.706000000000003,51.127000000000002,52.548999999999999,53.97 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1682,1,49.7072,0.0286,45.442,46.863999999999997,48.286000000000001,49.707000000000001,51.128999999999998,52.55,53.972000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1683,1,49.7087,0.0286,45.444000000000003,46.865000000000002,48.286999999999999,49.709000000000003,51.13,52.552,53.973999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1684,1,49.710299999999997,0.0286,45.445,46.866999999999997,48.289000000000001,49.71,51.131999999999998,52.554000000000002,53.975000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1685,1,49.7119,0.0286,45.447000000000003,46.868000000000002,48.29,49.712000000000003,51.134,52.555,53.976999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1686,1,49.7134,0.0286,45.448,46.87,48.292000000000002,49.713000000000001,51.134999999999998,52.557000000000002,53.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1687,1,49.715000000000003,0.0286,45.448999999999998,46.871000000000002,48.292999999999999,49.715000000000003,51.137,52.558999999999997,53.981000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1688,1,49.716500000000003,0.0286,45.451000000000001,46.872999999999998,48.295000000000002,49.716000000000001,51.137999999999998,52.56,53.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1689,1,49.7181,0.0286,45.451999999999998,46.874000000000002,48.295999999999999,49.718000000000004,51.14,52.561999999999998,53.984000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1690,1,49.7196,0.0286,45.454000000000001,46.875999999999998,48.298000000000002,49.72,51.142000000000003,52.564,53.985999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1691,1,49.721200000000003,0.0286,45.454999999999998,46.877000000000002,48.298999999999999,49.720999999999997,51.143000000000001,52.564999999999998,53.987000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1692,1,49.722799999999999,0.028590000000000001,45.457999999999998,46.88,48.301000000000002,49.722999999999999,51.143999999999998,52.566000000000003,53.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1693,1,49.724299999999999,0.028590000000000001,45.459000000000003,46.881,48.302999999999997,49.723999999999997,51.146000000000001,52.567999999999998,53.988999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1694,1,49.725900000000003,0.028590000000000001,45.460999999999999,46.883000000000003,48.304000000000002,49.725999999999999,51.148000000000003,52.569000000000003,53.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1695,1,49.727400000000003,0.028590000000000001,45.462000000000003,46.884,48.305999999999997,49.726999999999997,51.149000000000001,52.570999999999998,53.993000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1696,1,49.728999999999999,0.028590000000000001,45.463999999999999,46.884999999999998,48.307000000000002,49.728999999999999,51.151000000000003,52.573,53.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1697,1,49.730499999999999,0.028590000000000001,45.465000000000003,46.887,48.308999999999997,49.73,51.152000000000001,52.573999999999998,53.996000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1698,1,49.732100000000003,0.028590000000000001,45.466999999999999,46.887999999999998,48.31,49.731999999999999,51.154000000000003,52.576000000000001,53.997999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1699,1,49.733600000000003,0.028590000000000001,45.468000000000004,46.89,48.311999999999998,49.734000000000002,51.155000000000001,52.576999999999998,53.999000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1700,1,49.735199999999999,0.028590000000000001,45.469000000000001,46.890999999999998,48.313000000000002,49.734999999999999,51.156999999999996,52.579000000000001,54.000999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1701,1,49.736699999999999,0.028590000000000001,45.470999999999997,46.893000000000001,48.314999999999998,49.737000000000002,51.158999999999999,52.581000000000003,54.003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1702,1,49.738199999999999,0.028590000000000001,45.472000000000001,46.893999999999998,48.316000000000003,49.738,51.16,52.582000000000001,54.003999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1703,1,49.739800000000002,0.028590000000000001,45.473999999999997,46.896000000000001,48.317999999999998,49.74,51.161999999999999,52.584000000000003,54.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1704,1,49.741300000000003,0.028590000000000001,45.475000000000001,46.896999999999998,48.319000000000003,49.741,51.162999999999997,52.585999999999999,54.008000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1705,1,49.742899999999999,0.028590000000000001,45.475999999999999,46.899000000000001,48.320999999999998,49.743000000000002,51.164999999999999,52.587000000000003,54.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1706,1,49.744399999999999,0.028580000000000001,45.478999999999999,46.901000000000003,48.323,49.744,51.165999999999997,52.588000000000001,54.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1707,1,49.745899999999999,0.028580000000000001,45.481000000000002,46.902000000000001,48.323999999999998,49.746000000000002,51.167999999999999,52.588999999999999,54.011000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1708,1,49.747500000000002,0.028580000000000001,45.481999999999999,46.904000000000003,48.326000000000001,49.747999999999998,51.168999999999997,52.591000000000001,54.012999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1709,1,49.749000000000002,0.028580000000000001,45.484000000000002,46.905000000000001,48.326999999999998,49.749000000000002,51.170999999999999,52.593000000000004,54.014000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1710,1,49.750599999999999,0.028580000000000001,45.484999999999999,46.906999999999996,48.329000000000001,49.750999999999998,51.171999999999997,52.594000000000001,54.015999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1711,1,49.752099999999999,0.028580000000000001,45.485999999999997,46.908000000000001,48.33,49.752000000000002,51.173999999999999,52.595999999999997,54.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1712,1,49.753599999999999,0.028580000000000001,45.488,46.91,48.332000000000001,49.753999999999998,51.176000000000002,52.597999999999999,54.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1713,1,49.755200000000002,0.028580000000000001,45.488999999999997,46.911000000000001,48.332999999999998,49.755000000000003,51.177,52.598999999999997,54.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1714,1,49.756700000000002,0.028580000000000001,45.491,46.912999999999997,48.335000000000001,49.756999999999998,51.179000000000002,52.600999999999999,54.023000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1715,1,49.758200000000002,0.028580000000000001,45.491999999999997,46.914000000000001,48.335999999999999,49.758000000000003,51.18,52.601999999999997,54.024000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1716,1,49.759700000000002,0.028580000000000001,45.493000000000002,46.914999999999999,48.338000000000001,49.76,51.182000000000002,52.603999999999999,54.026000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1717,1,49.761299999999999,0.028580000000000001,45.494999999999997,46.917000000000002,48.338999999999999,49.761000000000003,51.183,52.606000000000002,54.027999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1718,1,49.762799999999999,0.028580000000000001,45.496000000000002,46.917999999999999,48.341000000000001,49.762999999999998,51.185000000000002,52.606999999999999,54.029000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1719,1,49.764299999999999,0.028570000000000002,45.499000000000002,46.920999999999999,48.343000000000004,49.764000000000003,51.186,52.607999999999997,54.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1720,1,49.765900000000002,0.028570000000000002,45.5,46.921999999999997,48.344000000000001,49.765999999999998,51.188000000000002,52.61,54.030999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1721,1,49.767400000000002,0.028570000000000002,45.502000000000002,46.923999999999999,48.345999999999997,49.767000000000003,51.189,52.610999999999997,54.033000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1722,1,49.768900000000002,0.028570000000000002,45.503,46.924999999999997,48.347000000000001,49.768999999999998,51.191000000000003,52.613,54.034999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1723,1,49.770400000000002,0.028570000000000002,45.505000000000003,46.927,48.347999999999999,49.77,51.192,52.613999999999997,54.036000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1724,1,49.771900000000002,0.028570000000000002,45.506,46.927999999999997,48.35,49.771999999999998,51.194000000000003,52.616,54.037999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1725,1,49.773499999999999,0.028570000000000002,45.506999999999998,46.929000000000002,48.350999999999999,49.774000000000001,51.195999999999998,52.618000000000002,54.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1726,1,49.774999999999999,0.028570000000000002,45.509,46.930999999999997,48.353000000000002,49.774999999999999,51.197000000000003,52.619,54.040999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1727,1,49.776499999999999,0.028570000000000002,45.51,46.932000000000002,48.353999999999999,49.776000000000003,51.198999999999998,52.621000000000002,54.042999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1728,1,49.777999999999999,0.028570000000000002,45.512,46.933999999999997,48.356000000000002,49.777999999999999,51.2,52.622,54.043999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1729,1,49.779499999999999,0.028570000000000002,45.512999999999998,46.935000000000002,48.356999999999999,49.78,51.201999999999998,52.624000000000002,54.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1730,1,49.781100000000002,0.028570000000000002,45.514000000000003,46.936999999999998,48.359000000000002,49.780999999999999,51.203000000000003,52.625999999999998,54.048000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1731,1,49.782600000000002,0.028570000000000002,45.515999999999998,46.938000000000002,48.36,49.783000000000001,51.204999999999998,52.627000000000002,54.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1732,1,49.784100000000002,0.028570000000000002,45.517000000000003,46.939,48.362000000000002,49.783999999999999,51.206000000000003,52.628999999999998,54.051000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1733,1,49.785600000000002,0.028559999999999999,45.52,46.942,48.363999999999997,49.786000000000001,51.207000000000001,52.628999999999998,54.051000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1734,1,49.787100000000002,0.028559999999999999,45.521000000000001,46.942999999999998,48.365000000000002,49.786999999999999,51.209000000000003,52.631,54.052999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1735,1,49.788600000000002,0.028559999999999999,45.523000000000003,46.945,48.366999999999997,49.789000000000001,51.210999999999999,52.633000000000003,54.054000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1736,1,49.790100000000002,0.028559999999999999,45.524000000000001,46.945999999999998,48.368000000000002,49.79,51.212000000000003,52.634,54.055999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1737,1,49.791600000000003,0.028559999999999999,45.524999999999999,46.948,48.37,49.792000000000002,51.213999999999999,52.636000000000003,54.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1738,1,49.793199999999999,0.028559999999999999,45.527000000000001,46.948999999999998,48.371000000000002,49.792999999999999,51.215000000000003,52.637,54.058999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1739,1,49.794699999999999,0.028559999999999999,45.527999999999999,46.95,48.372999999999998,49.795000000000002,51.216999999999999,52.639000000000003,54.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1740,1,49.796199999999999,0.028559999999999999,45.53,46.951999999999998,48.374000000000002,49.795999999999999,51.218000000000004,52.640999999999998,54.063000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1741,1,49.797699999999999,0.028559999999999999,45.530999999999999,46.953000000000003,48.375,49.798000000000002,51.22,52.642000000000003,54.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1742,1,49.799199999999999,0.028559999999999999,45.531999999999996,46.954999999999998,48.377000000000002,49.798999999999999,51.220999999999997,52.643999999999998,54.066000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1743,1,49.800699999999999,0.028559999999999999,45.533999999999999,46.956000000000003,48.378,49.801000000000002,51.222999999999999,52.645000000000003,54.067999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1744,1,49.802199999999999,0.028559999999999999,45.534999999999997,46.957000000000001,48.38,49.802,51.225000000000001,52.646999999999998,54.069000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1745,1,49.803699999999999,0.028559999999999999,45.536999999999999,46.959000000000003,48.381,49.804000000000002,51.225999999999999,52.648000000000003,54.070999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1746,1,49.805199999999999,0.028549999999999999,45.539000000000001,46.960999999999999,48.383000000000003,49.805,51.226999999999997,52.649000000000001,54.070999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1747,1,49.806699999999999,0.028549999999999999,45.540999999999997,46.963000000000001,48.384999999999998,49.807000000000002,51.228999999999999,52.651000000000003,54.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1748,1,49.808199999999999,0.028549999999999999,45.542000000000002,46.963999999999999,48.386000000000003,49.808,51.23,52.652000000000001,54.073999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1749,1,49.809699999999999,0.028549999999999999,45.542999999999999,46.966000000000001,48.387999999999998,49.81,51.231999999999999,52.654000000000003,54.076000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1750,1,49.811199999999999,0.028549999999999999,45.545000000000002,46.966999999999999,48.389000000000003,49.811,51.232999999999997,52.655000000000001,54.078000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1751,1,49.8127,0.028549999999999999,45.545999999999999,46.968000000000004,48.390999999999998,49.813000000000002,51.234999999999999,52.656999999999996,54.079000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1752,1,49.8142,0.028549999999999999,45.548000000000002,46.97,48.392000000000003,49.814,51.235999999999997,52.658999999999999,54.081000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1753,1,49.8157,0.028549999999999999,45.548999999999999,46.970999999999997,48.393000000000001,49.816000000000003,51.238,52.66,54.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1754,1,49.8172,0.028549999999999999,45.55,46.972999999999999,48.395000000000003,49.817,51.238999999999997,52.661999999999999,54.084000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1755,1,49.8187,0.028549999999999999,45.552,46.973999999999997,48.396000000000001,49.819000000000003,51.241,52.662999999999997,54.085999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1756,1,49.820099999999996,0.028549999999999999,45.552999999999997,46.975000000000001,48.398000000000003,49.82,51.241999999999997,52.664999999999999,54.087000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1757,1,49.821599999999997,0.028549999999999999,45.554000000000002,46.976999999999997,48.399000000000001,49.822000000000003,51.244,52.665999999999997,54.088999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1758,1,49.823099999999997,0.028549999999999999,45.555999999999997,46.978000000000002,48.401000000000003,49.823,51.246000000000002,52.667999999999999,54.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1759,1,49.824599999999997,0.028549999999999999,45.557000000000002,46.98,48.402000000000001,49.825000000000003,51.247,52.67,54.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1760,1,49.826099999999997,0.028539999999999999,45.56,46.981999999999999,48.404000000000003,49.826000000000001,51.247999999999998,52.67,54.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1761,1,49.827599999999997,0.028539999999999999,45.561,46.982999999999997,48.405999999999999,49.828000000000003,51.25,52.671999999999997,54.094000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1762,1,49.829099999999997,0.028539999999999999,45.563000000000002,46.984999999999999,48.406999999999996,49.829000000000001,51.250999999999998,52.673000000000002,54.094999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1763,1,49.830599999999997,0.028539999999999999,45.564,46.985999999999997,48.408000000000001,49.831000000000003,51.253,52.674999999999997,54.097000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1764,1,49.832099999999997,0.028539999999999999,45.564999999999998,46.988,48.41,49.832000000000001,51.253999999999998,52.677,54.098999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1765,1,49.833500000000001,0.028539999999999999,45.567,46.988999999999997,48.411000000000001,49.834000000000003,51.256,52.677999999999997,54.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1766,1,49.835000000000001,0.028539999999999999,45.567999999999998,46.99,48.412999999999997,49.835000000000001,51.256999999999998,52.68,54.101999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1767,1,49.836500000000001,0.028539999999999999,45.569000000000003,46.991999999999997,48.414000000000001,49.835999999999999,51.259,52.680999999999997,54.103999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1768,1,49.838000000000001,0.028539999999999999,45.570999999999998,46.993000000000002,48.415999999999997,49.838000000000001,51.26,52.683,54.104999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1769,1,49.839500000000001,0.028539999999999999,45.572000000000003,46.994999999999997,48.417000000000002,49.84,51.262,52.683999999999997,54.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1770,1,49.840899999999998,0.028539999999999999,45.573999999999998,46.996000000000002,48.417999999999999,49.841000000000001,51.262999999999998,52.686,54.107999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1771,1,49.842399999999998,0.028539999999999999,45.575000000000003,46.997,48.42,49.841999999999999,51.265000000000001,52.686999999999998,54.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1772,1,49.843899999999998,0.028539999999999999,45.576000000000001,46.999000000000002,48.420999999999999,49.844000000000001,51.265999999999998,52.689,54.112000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1773,1,49.845399999999998,0.028539999999999999,45.578000000000003,47,48.423000000000002,49.844999999999999,51.268000000000001,52.691000000000003,54.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1774,1,49.846899999999998,0.02853,45.581000000000003,47.003,48.424999999999997,49.847000000000001,51.268999999999998,52.691000000000003,54.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1775,1,49.848300000000002,0.02853,45.582000000000001,47.003999999999998,48.426000000000002,49.847999999999999,51.27,52.692999999999998,54.115000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1776,1,49.849800000000002,0.02853,45.582999999999998,47.005000000000003,48.427999999999997,49.85,51.271999999999998,52.694000000000003,54.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1777,1,49.851300000000002,0.02853,45.585000000000001,47.006999999999998,48.429000000000002,49.850999999999999,51.274000000000001,52.695999999999998,54.118000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1778,1,49.852800000000002,0.02853,45.585999999999999,47.008000000000003,48.43,49.853000000000002,51.274999999999999,52.697000000000003,54.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1779,1,49.854199999999999,0.02853,45.587000000000003,47.01,48.432000000000002,49.853999999999999,51.277000000000001,52.698999999999998,54.121000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1780,1,49.855699999999999,0.02853,45.588999999999999,47.011000000000003,48.433,49.856000000000002,51.277999999999999,52.7,54.122999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1781,1,49.857199999999999,0.02853,45.59,47.012,48.435000000000002,49.856999999999999,51.28,52.701999999999998,54.124000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1782,1,49.858600000000003,0.02853,45.591000000000001,47.014000000000003,48.436,49.859000000000002,51.280999999999999,52.704000000000001,54.125999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1783,1,49.860100000000003,0.02853,45.593000000000004,47.015000000000001,48.438000000000002,49.86,51.283000000000001,52.704999999999998,54.128 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1784,1,49.861600000000003,0.02853,45.594000000000001,47.015999999999998,48.439,49.862000000000002,51.283999999999999,52.707000000000001,54.128999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1785,1,49.863,0.02853,45.594999999999999,47.018000000000001,48.44,49.863,51.286000000000001,52.707999999999998,54.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1786,1,49.8645,0.02853,45.597000000000001,47.018999999999998,48.442,49.863999999999997,51.286999999999999,52.71,54.131999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1787,1,49.866,0.02853,45.597999999999999,47.021000000000001,48.442999999999998,49.866,51.289000000000001,52.710999999999999,54.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1788,1,49.867400000000004,0.02852,45.600999999999999,47.023000000000003,48.445,49.866999999999997,51.29,52.712000000000003,54.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1789,1,49.868899999999996,0.02852,45.601999999999997,47.024000000000001,48.447000000000003,49.869,51.290999999999997,52.713000000000001,54.136000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1790,1,49.870399999999997,0.02852,45.603000000000002,47.026000000000003,48.448,49.87,51.292999999999999,52.715000000000003,54.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1791,1,49.8718,0.02852,45.604999999999997,47.027000000000001,48.448999999999998,49.872,51.293999999999997,52.716000000000001,54.139000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1792,1,49.8733,0.02852,45.606000000000002,47.029000000000003,48.451000000000001,49.872999999999998,51.295999999999999,52.718000000000004,54.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1793,1,49.8748,0.02852,45.607999999999997,47.03,48.451999999999998,49.875,51.296999999999997,52.72,54.142000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1794,1,49.876199999999997,0.02852,45.609000000000002,47.030999999999999,48.454000000000001,49.875999999999998,51.298999999999999,52.720999999999997,54.143999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1795,1,49.877699999999997,0.02852,45.61,47.033000000000001,48.454999999999998,49.878,51.3,52.722999999999999,54.145000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1796,1,49.879100000000001,0.02852,45.610999999999997,47.033999999999999,48.457000000000001,49.878999999999998,51.302,52.723999999999997,54.146999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1797,1,49.880600000000001,0.02852,45.613,47.034999999999997,48.457999999999998,49.881,51.302999999999997,52.725999999999999,54.148000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1798,1,49.881999999999998,0.02852,45.613999999999997,47.036999999999999,48.459000000000003,49.881999999999998,51.305,52.726999999999997,54.15 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1799,1,49.883499999999998,0.02852,45.615000000000002,47.037999999999997,48.460999999999999,49.884,51.305999999999997,52.728999999999999,54.152000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1800,1,49.884999999999998,0.02852,45.616999999999997,47.04,48.462000000000003,49.884999999999998,51.308,52.73,54.152999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1801,1,49.886400000000002,0.02852,45.618000000000002,47.040999999999997,48.463999999999999,49.886000000000003,51.308999999999997,52.731999999999999,54.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1802,1,49.887900000000002,0.028510000000000001,45.621000000000002,47.042999999999999,48.466000000000001,49.887999999999998,51.31,52.732999999999997,54.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1803,1,49.889299999999999,0.028510000000000001,45.622,47.045000000000002,48.466999999999999,49.889000000000003,51.311999999999998,52.734000000000002,54.155999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1804,1,49.890799999999999,0.028510000000000001,45.624000000000002,47.045999999999999,48.468000000000004,49.890999999999998,51.313000000000002,52.735999999999997,54.158000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1805,1,49.892200000000003,0.028510000000000001,45.625,47.046999999999997,48.47,49.892000000000003,51.314999999999998,52.737000000000002,54.158999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1806,1,49.893700000000003,0.028510000000000001,45.625999999999998,47.048999999999999,48.470999999999997,49.893999999999998,51.316000000000003,52.738999999999997,54.161000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1807,1,49.895099999999999,0.028510000000000001,45.628,47.05,48.472999999999999,49.895000000000003,51.317999999999998,52.74,54.162999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1808,1,49.896599999999999,0.028510000000000001,45.628999999999998,47.051000000000002,48.473999999999997,49.896999999999998,51.319000000000003,52.741999999999997,54.164000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1809,1,49.898000000000003,0.028510000000000001,45.63,47.052999999999997,48.475000000000001,49.898000000000003,51.320999999999998,52.743000000000002,54.165999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1810,1,49.899500000000003,0.028510000000000001,45.631999999999998,47.054000000000002,48.476999999999997,49.9,51.322000000000003,52.744999999999997,54.167000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1811,1,49.9009,0.028510000000000001,45.633000000000003,47.055999999999997,48.478000000000002,49.901000000000003,51.323999999999998,52.746000000000002,54.168999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1812,1,49.9024,0.028510000000000001,45.634,47.057000000000002,48.48,49.902000000000001,51.325000000000003,52.747999999999998,54.170999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1813,1,49.903799999999997,0.028510000000000001,45.636000000000003,47.058,48.481000000000002,49.904000000000003,51.326999999999998,52.749000000000002,54.171999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1814,1,49.905200000000001,0.028510000000000001,45.637,47.06,48.481999999999999,49.905000000000001,51.328000000000003,52.750999999999998,54.173999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1815,1,49.906700000000001,0.028510000000000001,45.637999999999998,47.061,48.484000000000002,49.906999999999996,51.33,52.752000000000002,54.174999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1816,1,49.908099999999997,0.028500000000000001,45.640999999999998,47.063000000000002,48.485999999999997,49.908000000000001,51.33,52.753,54.174999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1817,1,49.909599999999998,0.028500000000000001,45.642000000000003,47.064999999999998,48.487000000000002,49.91,51.332000000000001,52.753999999999998,54.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1818,1,49.911000000000001,0.028500000000000001,45.643999999999998,47.066000000000003,48.488999999999997,49.911000000000001,51.332999999999998,52.756,54.177999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1819,1,49.912500000000001,0.028500000000000001,45.645000000000003,47.067,48.49,49.911999999999999,51.335000000000001,52.758000000000003,54.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1820,1,49.913899999999998,0.028500000000000001,45.646000000000001,47.069000000000003,48.491,49.914000000000001,51.335999999999999,52.759,54.182000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1821,1,49.915300000000002,0.028500000000000001,45.648000000000003,47.07,48.493000000000002,49.914999999999999,51.338000000000001,52.76,54.183 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1822,1,49.916800000000002,0.028500000000000001,45.649000000000001,47.072000000000003,48.494,49.917000000000002,51.338999999999999,52.762,54.185000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1823,1,49.918199999999999,0.028500000000000001,45.65,47.073,48.496000000000002,49.917999999999999,51.341000000000001,52.764000000000003,54.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1824,1,49.919600000000003,0.028500000000000001,45.651000000000003,47.073999999999998,48.497,49.92,51.341999999999999,52.765000000000001,54.188000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1825,1,49.921100000000003,0.028500000000000001,45.652999999999999,47.076000000000001,48.497999999999998,49.920999999999999,51.344000000000001,52.767000000000003,54.189 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1826,1,49.922499999999999,0.028500000000000001,45.654000000000003,47.076999999999998,48.5,49.921999999999997,51.344999999999999,52.768000000000001,54.191000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1827,1,49.923999999999999,0.028500000000000001,45.655000000000001,47.078000000000003,48.500999999999998,49.923999999999999,51.347000000000001,52.77,54.192999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1828,1,49.925400000000003,0.028500000000000001,45.656999999999996,47.08,48.503,49.924999999999997,51.347999999999999,52.771000000000001,54.194000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1829,1,49.9268,0.028500000000000001,45.658000000000001,47.081000000000003,48.503999999999998,49.927,51.35,52.773000000000003,54.195999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1830,1,49.928199999999997,0.028490000000000001,45.661000000000001,47.082999999999998,48.506,49.927999999999997,51.350999999999999,52.773000000000003,54.195999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1831,1,49.929699999999997,0.028490000000000001,45.661999999999999,47.085000000000001,48.506999999999998,49.93,51.351999999999997,52.774999999999999,54.197000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1832,1,49.931100000000001,0.028490000000000001,45.662999999999997,47.085999999999999,48.509,49.930999999999997,51.353999999999999,52.776000000000003,54.198999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1833,1,49.932499999999997,0.028490000000000001,45.664999999999999,47.087000000000003,48.51,49.932000000000002,51.354999999999997,52.777999999999999,54.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1834,1,49.933999999999997,0.028490000000000001,45.665999999999997,47.088999999999999,48.511000000000003,49.933999999999997,51.356999999999999,52.779000000000003,54.201999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1835,1,49.935400000000001,0.028490000000000001,45.667000000000002,47.09,48.512999999999998,49.935000000000002,51.357999999999997,52.780999999999999,54.203000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1836,1,49.936799999999998,0.028490000000000001,45.668999999999997,47.091000000000001,48.514000000000003,49.936999999999998,51.359000000000002,52.781999999999996,54.204999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1837,1,49.938299999999998,0.028490000000000001,45.67,47.093000000000004,48.515999999999998,49.938000000000002,51.360999999999997,52.783999999999999,54.207000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1838,1,49.939700000000002,0.028490000000000001,45.670999999999999,47.094000000000001,48.517000000000003,49.94,51.362000000000002,52.784999999999997,54.207999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1839,1,49.941099999999999,0.028490000000000001,45.673000000000002,47.094999999999999,48.518000000000001,49.941000000000003,51.363999999999997,52.786999999999999,54.21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1840,1,49.942500000000003,0.028490000000000001,45.673999999999999,47.097000000000001,48.52,49.942,51.365000000000002,52.787999999999997,54.210999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1841,1,49.944000000000003,0.028490000000000001,45.674999999999997,47.097999999999999,48.521000000000001,49.944000000000003,51.366999999999997,52.79,54.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1842,1,49.945399999999999,0.028490000000000001,45.677,47.1,48.521999999999998,49.945,51.368000000000002,52.790999999999997,54.213999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1843,1,49.946800000000003,0.028490000000000001,45.677999999999997,47.100999999999999,48.524000000000001,49.947000000000003,51.37,52.792999999999999,54.216000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1844,1,49.9482,0.028479999999999998,45.680999999999997,47.103000000000002,48.526000000000003,49.948,51.371000000000002,52.792999999999999,54.216000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1845,1,49.949599999999997,0.028479999999999998,45.682000000000002,47.103999999999999,48.527000000000001,49.95,51.372,52.795000000000002,54.216999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1846,1,49.951099999999997,0.028479999999999998,45.683,47.106000000000002,48.527999999999999,49.951000000000001,51.374000000000002,52.795999999999999,54.219000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1847,1,49.952500000000001,0.028479999999999998,45.685000000000002,47.106999999999999,48.53,49.951999999999998,51.375,52.798000000000002,54.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1848,1,49.953899999999997,0.028479999999999998,45.686,47.109000000000002,48.530999999999999,49.954000000000001,51.377000000000002,52.798999999999999,54.222000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1849,1,49.955300000000001,0.028479999999999998,45.686999999999998,47.11,48.533000000000001,49.954999999999998,51.378,52.801000000000002,54.222999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1850,1,49.956699999999998,0.028479999999999998,45.688000000000002,47.110999999999997,48.533999999999999,49.957000000000001,51.378999999999998,52.802,54.225000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1851,1,49.958199999999998,0.028479999999999998,45.69,47.113,48.534999999999997,49.957999999999998,51.381,52.804000000000002,54.226999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1852,1,49.959600000000002,0.028479999999999998,45.691000000000003,47.113999999999997,48.536999999999999,49.96,51.381999999999998,52.805,54.228000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1853,1,49.960999999999999,0.028479999999999998,45.692,47.115000000000002,48.537999999999997,49.960999999999999,51.384,52.807000000000002,54.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1854,1,49.962400000000002,0.028479999999999998,45.694000000000003,47.116999999999997,48.539000000000001,49.962000000000003,51.384999999999998,52.808,54.231000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1855,1,49.963799999999999,0.028479999999999998,45.695,47.118000000000002,48.540999999999997,49.963999999999999,51.387,52.81,54.232999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1856,1,49.965200000000003,0.028479999999999998,45.695999999999998,47.119,48.542000000000002,49.965000000000003,51.387999999999998,52.811,54.234000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,0,1,34.461799999999997,0.036859999999999997,30.651,31.920999999999999,33.192,34.462000000000003,35.731999999999999,37.002000000000002,38.273000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1,1,34.561999999999998,0.036560000000000002,30.771000000000001,32.034999999999997,33.298000000000002,34.561999999999998,35.826000000000001,37.088999999999999,38.353000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,2,1,34.662199999999999,0.036249999999999998,30.893000000000001,32.149000000000001,33.405999999999999,34.661999999999999,35.918999999999997,37.174999999999997,38.432000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,3,1,34.762500000000003,0.035950000000000003,31.013000000000002,32.262999999999998,33.512999999999998,34.762,36.012,37.262,38.512 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,4,1,34.862699999999997,0.035639999999999998,31.135000000000002,32.378,33.619999999999997,34.863,36.104999999999997,37.347999999999999,38.590000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,5,1,34.962899999999998,0.03533,31.257000000000001,32.491999999999997,33.728000000000002,34.963000000000001,36.198,37.433,38.668999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,6,1,35.063099999999999,0.035029999999999999,31.378,32.606999999999999,33.835000000000001,35.063000000000002,36.290999999999997,37.520000000000003,38.747999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,7,1,35.163400000000003,0.034720000000000001,31.501000000000001,32.722000000000001,33.942999999999998,35.162999999999997,36.384,37.604999999999997,38.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,8,1,35.263599999999997,0.034410000000000003,31.623000000000001,32.837000000000003,34.049999999999997,35.264000000000003,36.476999999999997,37.69,38.904000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,9,1,35.363799999999998,0.034110000000000001,31.745000000000001,32.951000000000001,34.158000000000001,35.363999999999997,36.57,37.776000000000003,38.982999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,10,1,35.463999999999999,0.033799999999999997,31.867999999999999,33.067,34.265000000000001,35.463999999999999,36.662999999999997,37.860999999999997,39.06 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,11,1,35.564300000000003,0.033500000000000002,31.99,33.180999999999997,34.372999999999998,35.564,36.756,37.947000000000003,39.139000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,12,1,35.664499999999997,0.033189999999999997,32.113,33.296999999999997,34.481000000000002,35.664000000000001,36.847999999999999,38.031999999999996,39.216000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,13,1,35.764699999999998,0.03288,32.237000000000002,33.412999999999997,34.588999999999999,35.765000000000001,36.941000000000003,38.116999999999997,39.292999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,14,1,35.864899999999999,0.032579999999999998,32.359000000000002,33.527999999999999,34.695999999999998,35.865000000000002,37.033000000000001,38.201999999999998,39.369999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,15,1,35.965200000000003,0.032480000000000002,32.460999999999999,33.628999999999998,34.796999999999997,35.965000000000003,37.133000000000003,38.301000000000002,39.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,16,1,36.063200000000002,0.032390000000000002,32.558999999999997,33.726999999999997,34.895000000000003,36.063000000000002,37.231000000000002,38.399000000000001,39.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,17,1,36.158999999999999,0.032300000000000002,32.655000000000001,33.823,34.991,36.158999999999999,37.326999999999998,38.494999999999997,39.662999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,18,1,36.252600000000001,0.032210000000000003,32.75,33.917000000000002,35.085000000000001,36.253,37.42,38.588000000000001,39.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,19,1,36.344099999999997,0.032129999999999999,32.841000000000001,34.009,35.176000000000002,36.344000000000001,37.512,38.68,39.847000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,20,1,36.433799999999998,0.032050000000000002,32.930999999999997,34.097999999999999,35.265999999999998,36.433999999999997,37.601999999999997,38.768999999999998,39.936999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,21,1,36.521599999999999,0.031969999999999998,33.018999999999998,34.186,35.353999999999999,36.521999999999998,37.689,38.856999999999999,40.024000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,22,1,36.607799999999997,0.031890000000000002,33.106000000000002,34.273000000000003,35.44,36.607999999999997,37.774999999999999,38.942999999999998,40.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,23,1,36.6922,0.031820000000000001,33.19,34.356999999999999,35.524999999999999,36.692,37.86,39.027000000000001,40.195 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,24,1,36.775100000000002,0.03175,33.271999999999998,34.44,35.606999999999999,36.774999999999999,37.942999999999998,39.11,40.277999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,25,1,36.8566,0.03168,33.353999999999999,34.521000000000001,35.689,36.856999999999999,38.024000000000001,39.192,40.359000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,26,1,36.936599999999999,0.031609999999999999,33.433999999999997,34.600999999999999,35.768999999999998,36.936999999999998,38.103999999999999,39.271999999999998,40.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,27,1,37.0152,0.031539999999999999,33.512999999999998,34.68,35.847999999999999,37.015000000000001,38.183,39.35,40.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,28,1,37.092599999999997,0.031480000000000001,33.590000000000003,34.756999999999998,35.924999999999997,37.093000000000004,38.26,39.427999999999997,40.595999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,29,1,37.168700000000001,0.03141,33.665999999999997,34.834000000000003,36.000999999999998,37.168999999999997,38.335999999999999,39.503999999999998,40.670999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,30,1,37.243499999999997,0.031350000000000003,33.741,34.908000000000001,36.076000000000001,37.244,38.411000000000001,39.579000000000001,40.746000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,31,1,37.3172,0.031289999999999998,33.814,34.981999999999999,36.15,37.317,38.484999999999999,39.652999999999999,40.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,32,1,37.389800000000001,0.031230000000000001,33.887,35.054000000000002,36.222000000000001,37.39,38.557000000000002,39.725000000000001,40.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,33,1,37.461199999999998,0.031179999999999999,33.957000000000001,35.125,36.292999999999999,37.460999999999999,38.628999999999998,39.796999999999997,40.965000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,34,1,37.531599999999997,0.031119999999999998,34.027999999999999,35.195999999999998,36.363999999999997,37.531999999999996,38.700000000000003,39.868000000000002,41.036000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,35,1,37.600999999999999,0.03107,34.095999999999997,35.264000000000003,36.433,37.600999999999999,38.768999999999998,39.938000000000002,41.106000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,36,1,37.669400000000003,0.031009999999999999,34.164999999999999,35.332999999999998,36.500999999999998,37.668999999999997,38.838000000000001,40.006,41.173999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,37,1,37.736800000000002,0.030960000000000001,34.231999999999999,35.4,36.567999999999998,37.737000000000002,38.905000000000001,40.073,41.241999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,38,1,37.803400000000003,0.03091,34.298000000000002,35.466000000000001,36.634999999999998,37.802999999999997,38.972000000000001,40.14,41.308999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,39,1,37.869,0.030859999999999999,34.363,35.531999999999996,36.700000000000003,37.869,39.037999999999997,40.206000000000003,41.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,40,1,37.933799999999998,0.030810000000000001,34.427999999999997,35.595999999999997,36.765000000000001,37.933999999999997,39.103000000000002,40.271000000000001,41.44 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,41,1,37.997799999999998,0.030759999999999999,34.491,35.659999999999997,36.829000000000001,37.997999999999998,39.167000000000002,40.335000000000001,41.503999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,42,1,38.060899999999997,0.030720000000000001,34.552999999999997,35.722000000000001,36.892000000000003,38.061,39.229999999999997,40.399000000000001,41.569000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,43,1,38.1233,0.030669999999999999,34.616,35.784999999999997,36.954000000000001,38.122999999999998,39.292999999999999,40.462000000000003,41.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,44,1,38.185000000000002,0.030620000000000001,34.677,35.847000000000001,37.015999999999998,38.185000000000002,39.353999999999999,40.523000000000003,41.692999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,45,1,38.245899999999999,0.03058,34.737000000000002,35.906999999999996,37.076000000000001,38.246000000000002,39.414999999999999,40.585000000000001,41.755000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,46,1,38.306100000000001,0.030540000000000001,34.795999999999999,35.966000000000001,37.136000000000003,38.305999999999997,39.475999999999999,40.646000000000001,41.816000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,47,1,38.365499999999997,0.03049,34.856000000000002,36.026000000000003,37.195999999999998,38.366,39.534999999999997,40.704999999999998,41.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,48,1,38.424300000000002,0.030450000000000001,34.914000000000001,36.084000000000003,37.253999999999998,38.423999999999999,39.594000000000001,40.764000000000003,41.933999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,49,1,38.482399999999998,0.03041,34.972000000000001,36.142000000000003,37.311999999999998,38.481999999999999,39.652999999999999,40.823,41.993000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,50,1,38.539900000000003,0.030370000000000001,35.029000000000003,36.198999999999998,37.369,38.54,39.71,40.881,42.051000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,51,1,38.596800000000002,0.030329999999999999,35.085000000000001,36.256,37.426000000000002,38.597000000000001,39.767000000000003,40.938000000000002,42.109000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,52,1,38.652999999999999,0.030290000000000001,35.140999999999998,36.311,37.481999999999999,38.652999999999999,39.823999999999998,40.994999999999997,42.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,53,1,38.7087,0.030249999999999999,35.195999999999998,36.366999999999997,37.537999999999997,38.709000000000003,39.880000000000003,41.051000000000002,42.222000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,54,1,38.763800000000003,0.030210000000000001,35.250999999999998,36.421999999999997,37.593000000000004,38.764000000000003,39.935000000000002,41.106000000000002,42.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,55,1,38.818300000000001,0.030179999999999998,35.304000000000002,36.475000000000001,37.646999999999998,38.817999999999998,39.99,41.161000000000001,42.332999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,56,1,38.872399999999999,0.03014,35.357999999999997,36.529000000000003,37.701000000000001,38.872,40.043999999999997,41.216000000000001,42.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,57,1,38.925800000000002,0.030099999999999998,35.411000000000001,36.582000000000001,37.753999999999998,38.926000000000002,40.097000000000001,41.268999999999998,42.441000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,58,1,38.9788,0.03007,35.463000000000001,36.634999999999998,37.807000000000002,38.978999999999999,40.151000000000003,41.323,42.494999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,59,1,39.031300000000002,0.030030000000000001,35.515000000000001,36.686999999999998,37.859000000000002,39.030999999999999,40.203000000000003,41.375999999999998,42.548000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,60,1,39.083399999999997,0.03,35.566000000000003,36.738,37.911000000000001,39.082999999999998,40.256,41.427999999999997,42.600999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,61,1,39.134900000000002,0.02997,35.616,36.789000000000001,37.962000000000003,39.134999999999998,40.308,41.481000000000002,42.654000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,62,1,39.186100000000003,0.029929999999999998,35.667999999999999,36.840000000000003,38.012999999999998,39.186,40.359000000000002,41.531999999999996,42.704999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,63,1,39.236800000000002,0.029899999999999999,35.716999999999999,36.89,38.064,39.237000000000002,40.409999999999997,41.582999999999998,42.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,64,1,39.287100000000002,0.029870000000000001,35.767000000000003,36.94,38.113999999999997,39.286999999999999,40.460999999999999,41.634,42.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,65,1,39.3369,0.029839999999999998,35.814999999999998,36.988999999999997,38.162999999999997,39.337000000000003,40.511000000000003,41.685000000000002,42.857999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,66,1,39.386299999999999,0.02981,35.863999999999997,37.037999999999997,38.212000000000003,39.386000000000003,40.56,41.734999999999999,42.908999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,67,1,39.435299999999998,0.029780000000000001,35.911999999999999,37.087000000000003,38.261000000000003,39.435000000000002,40.61,41.783999999999999,42.957999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,68,1,39.483800000000002,0.029749999999999999,35.96,37.134999999999998,38.308999999999997,39.484000000000002,40.658000000000001,41.832999999999998,43.008000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,69,1,39.531999999999996,0.02972,36.006999999999998,37.182000000000002,38.356999999999999,39.531999999999996,40.707000000000001,41.881999999999998,43.057000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,70,1,39.579700000000003,0.029690000000000001,36.054000000000002,37.228999999999999,38.405000000000001,39.58,40.755000000000003,41.93,43.104999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,71,1,39.627099999999999,0.029659999999999999,36.100999999999999,37.276000000000003,38.451999999999998,39.627000000000002,40.802,41.978000000000002,43.152999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,72,1,39.673999999999999,0.02963,36.146999999999998,37.323,38.497999999999998,39.673999999999999,40.85,42.024999999999999,43.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,73,1,39.720599999999997,0.029610000000000001,36.192,37.368000000000002,38.543999999999997,39.720999999999997,40.896999999999998,42.073,43.249000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,74,1,39.766800000000003,0.029579999999999999,36.238,37.414000000000001,38.590000000000003,39.767000000000003,40.942999999999998,42.119,43.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,75,1,39.8127,0.02955,36.283000000000001,37.46,38.636000000000003,39.813000000000002,40.988999999999997,42.165999999999997,43.341999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,76,1,39.8581,0.029530000000000001,36.326999999999998,37.503999999999998,38.680999999999997,39.857999999999997,41.034999999999997,42.212000000000003,43.389000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,77,1,39.903300000000002,0.029499999999999998,36.372,37.548999999999999,38.725999999999999,39.902999999999999,41.08,42.258000000000003,43.435000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,78,1,39.948,0.029479999999999999,36.414999999999999,37.593000000000004,38.770000000000003,39.948,41.125999999999998,42.302999999999997,43.481000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,79,1,39.992400000000004,0.02945,36.459000000000003,37.637,38.814999999999998,39.991999999999997,41.17,42.347999999999999,43.526000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,80,1,40.036499999999997,0.029430000000000001,36.502000000000002,37.68,38.857999999999997,40.036000000000001,41.215000000000003,42.393000000000001,43.570999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,81,1,40.080300000000001,0.029399999999999999,36.545000000000002,37.723999999999997,38.902000000000001,40.08,41.259,42.436999999999998,43.615000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,82,1,40.123699999999999,0.02938,36.587000000000003,37.765999999999998,38.945,40.124000000000002,41.302999999999997,42.481000000000002,43.66 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,83,1,40.166800000000002,0.029360000000000001,36.628999999999998,37.808,38.988,40.167000000000002,41.345999999999997,42.524999999999999,43.704999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,84,1,40.209600000000002,0.029329999999999998,36.671999999999997,37.850999999999999,39.03,40.21,41.389000000000003,42.567999999999998,43.747999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,85,1,40.252099999999999,0.029309999999999999,36.713000000000001,37.893000000000001,39.072000000000003,40.252000000000002,41.432000000000002,42.612000000000002,43.790999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,86,1,40.2943,0.02929,36.753999999999998,37.933999999999997,39.113999999999997,40.293999999999997,41.475000000000001,42.655000000000001,43.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,87,1,40.336199999999998,0.029270000000000001,36.793999999999997,37.975000000000001,39.155999999999999,40.335999999999999,41.517000000000003,42.697000000000003,43.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,88,1,40.377800000000001,0.029250000000000002,36.835000000000001,38.015999999999998,39.197000000000003,40.378,41.558999999999997,42.74,43.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,89,1,40.4191,0.029219999999999999,36.875999999999998,38.057000000000002,39.238,40.418999999999997,41.6,42.780999999999999,43.962000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,90,1,40.460099999999997,0.0292,36.915999999999997,38.097000000000001,39.279000000000003,40.46,41.642000000000003,42.823,44.003999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,91,1,40.500799999999998,0.029180000000000001,36.954999999999998,38.137,39.319000000000003,40.500999999999998,41.683,42.863999999999997,44.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,92,1,40.5413,0.029159999999999998,36.994999999999997,38.177,39.359000000000002,40.540999999999997,41.722999999999999,42.905999999999999,44.088000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,93,1,40.581499999999998,0.029139999999999999,37.033999999999999,38.216000000000001,39.399000000000001,40.582000000000001,41.764000000000003,42.947000000000003,44.128999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,94,1,40.621400000000001,0.02912,37.073,38.256,39.439,40.621000000000002,41.804000000000002,42.987000000000002,44.17 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,95,1,40.661099999999998,0.029100000000000001,37.110999999999997,38.295000000000002,39.478000000000002,40.661000000000001,41.844000000000001,43.027999999999999,44.210999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,96,1,40.700499999999998,0.029080000000000002,37.15,38.332999999999998,39.517000000000003,40.700000000000003,41.884,43.067999999999998,44.250999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,97,1,40.739600000000003,0.029069999999999999,37.186999999999998,38.371000000000002,39.555,40.74,41.923999999999999,43.107999999999997,44.292999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,98,1,40.778500000000001,0.029049999999999999,37.225000000000001,38.408999999999999,39.594000000000001,40.777999999999999,41.963000000000001,43.148000000000003,44.332000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,99,1,40.8172,0.02903,37.262,38.447000000000003,39.631999999999998,40.817,42.002000000000002,43.186999999999998,44.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,100,1,40.855499999999999,0.029010000000000001,37.299999999999997,38.484999999999999,39.67,40.856000000000002,42.040999999999997,43.225999999999999,44.411000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,101,1,40.893599999999999,0.028989999999999998,37.337000000000003,38.523000000000003,39.707999999999998,40.893999999999998,42.079000000000001,43.265000000000001,44.45 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,102,1,40.9315,0.028979999999999999,37.372999999999998,38.558999999999997,39.744999999999997,40.932000000000002,42.118000000000002,43.304000000000002,44.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,103,1,40.969099999999997,0.02896,37.409999999999997,38.595999999999997,39.783000000000001,40.969000000000001,42.155999999999999,43.341999999999999,44.527999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,104,1,41.006500000000003,0.02894,37.445999999999998,38.633000000000003,39.82,41.006,42.192999999999998,43.38,44.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,105,1,41.043599999999998,0.028930000000000001,37.481000000000002,38.668999999999997,39.856000000000002,41.043999999999997,42.231000000000002,43.417999999999999,44.606000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,106,1,41.080500000000001,0.028910000000000002,37.518000000000001,38.704999999999998,39.893000000000001,41.08,42.268000000000001,43.456000000000003,44.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,107,1,41.117199999999997,0.028889999999999999,37.554000000000002,38.741,39.929000000000002,41.116999999999997,42.305,43.493000000000002,44.680999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,108,1,41.153599999999997,0.028879999999999999,37.588000000000001,38.777000000000001,39.965000000000003,41.154000000000003,42.341999999999999,43.530999999999999,44.719000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,109,1,41.189799999999998,0.02886,37.624000000000002,38.811999999999998,40.000999999999998,41.19,42.378999999999998,43.567,44.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,110,1,41.225700000000003,0.028850000000000001,37.658000000000001,38.847000000000001,40.036000000000001,41.225999999999999,42.414999999999999,43.603999999999999,44.793999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,111,1,41.261499999999998,0.028830000000000001,37.692999999999998,38.881999999999998,40.072000000000003,41.262,42.451000000000001,43.640999999999998,44.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,112,1,41.296999999999997,0.028819999999999998,37.725999999999999,38.917000000000002,40.106999999999999,41.296999999999997,42.487000000000002,43.677,44.868000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,113,1,41.332299999999996,0.028799999999999999,37.761000000000003,38.951999999999998,40.142000000000003,41.332000000000001,42.523000000000003,43.713000000000001,44.902999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,114,1,41.3673,0.02879,37.793999999999997,38.984999999999999,40.176000000000002,41.366999999999997,42.558,43.749000000000002,44.94 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,115,1,41.402200000000001,0.02877,37.829000000000001,39.020000000000003,40.210999999999999,41.402000000000001,42.593000000000004,43.783999999999999,44.975999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,116,1,41.436799999999998,0.028760000000000001,37.862000000000002,39.052999999999997,40.244999999999997,41.436999999999998,42.628999999999998,43.82,45.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,117,1,41.471200000000003,0.028750000000000001,37.893999999999998,39.087000000000003,40.279000000000003,41.470999999999997,42.662999999999997,43.856000000000002,45.048000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,118,1,41.505400000000002,0.028729999999999999,37.927999999999997,39.119999999999997,40.313000000000002,41.505000000000003,42.698,43.89,45.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,119,1,41.539400000000001,0.028719999999999999,37.96,39.152999999999999,40.345999999999997,41.539000000000001,42.731999999999999,43.924999999999997,45.118000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,120,1,41.573099999999997,0.028709999999999999,37.991999999999997,39.186,40.380000000000003,41.573,42.767000000000003,43.96,45.154000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,121,1,41.606699999999996,0.02869,38.026000000000003,39.219000000000001,40.412999999999997,41.606999999999999,42.8,43.994,45.188000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,122,1,41.640099999999997,0.028680000000000001,38.057000000000002,39.252000000000002,40.445999999999998,41.64,42.834000000000003,44.029000000000003,45.222999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,123,1,41.673200000000001,0.028670000000000001,38.088999999999999,39.283999999999999,40.478000000000002,41.673000000000002,42.868000000000002,44.063000000000002,45.258000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,124,1,41.706200000000003,0.028649999999999998,38.122,39.316000000000003,40.511000000000003,41.706000000000003,42.901000000000003,44.095999999999997,45.290999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,125,1,41.738900000000001,0.028639999999999999,38.152999999999999,39.347999999999999,40.542999999999999,41.738999999999997,42.933999999999997,44.13,45.325000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,126,1,41.771500000000003,0.028629999999999999,38.183999999999997,39.380000000000003,40.576000000000001,41.771999999999998,42.966999999999999,44.162999999999997,45.359000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,127,1,41.803800000000003,0.02862,38.215000000000003,39.411000000000001,40.606999999999999,41.804000000000002,43,44.197000000000003,45.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,128,1,41.835999999999999,0.02861,38.244999999999997,39.442,40.639000000000003,41.835999999999999,43.033000000000001,44.23,45.427 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,129,1,41.868000000000002,0.028590000000000001,38.277000000000001,39.473999999999997,40.670999999999999,41.868000000000002,43.064999999999998,44.262,45.459000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,130,1,41.899700000000003,0.028580000000000001,38.307000000000002,39.505000000000003,40.701999999999998,41.9,43.097000000000001,44.295000000000002,45.491999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,131,1,41.9313,0.028570000000000002,38.337000000000003,39.534999999999997,40.732999999999997,41.930999999999997,43.128999999999998,44.326999999999998,45.524999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,132,1,41.962699999999998,0.028559999999999999,38.366999999999997,39.566000000000003,40.764000000000003,41.963000000000001,43.161000000000001,44.36,45.558 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,133,1,41.993899999999996,0.028549999999999999,38.396999999999998,39.595999999999997,40.795000000000002,41.994,43.192999999999998,44.392000000000003,45.591000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,134,1,42.024900000000002,0.028539999999999999,38.427,39.625999999999998,40.826000000000001,42.024999999999999,43.223999999999997,44.423999999999999,45.622999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,135,1,42.055700000000002,0.02853,38.456000000000003,39.655999999999999,40.856000000000002,42.055999999999997,43.256,44.454999999999998,45.655000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,136,1,42.086399999999998,0.02852,38.484999999999999,39.686,40.886000000000003,42.085999999999999,43.286999999999999,44.487000000000002,45.686999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,137,1,42.116799999999998,0.028510000000000001,38.515000000000001,39.715000000000003,40.915999999999997,42.116999999999997,43.317999999999998,44.518000000000001,45.719000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,138,1,42.147100000000002,0.028500000000000001,38.543999999999997,39.744999999999997,40.945999999999998,42.146999999999998,43.347999999999999,44.548999999999999,45.750999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,139,1,42.177199999999999,0.028490000000000001,38.572000000000003,39.774000000000001,40.975999999999999,42.177,43.378999999999998,44.58,45.781999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,140,1,42.207099999999997,0.028479999999999998,38.600999999999999,39.802999999999997,41.005000000000003,42.207000000000001,43.408999999999999,44.610999999999997,45.813000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,141,1,42.236800000000002,0.028469999999999999,38.628999999999998,39.832000000000001,41.033999999999999,42.237000000000002,43.439,44.642000000000003,45.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,142,1,42.266399999999997,0.028459999999999999,38.658000000000001,39.860999999999997,41.063000000000002,42.265999999999998,43.469000000000001,44.671999999999997,45.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,143,1,42.295699999999997,0.02845,38.686,39.889000000000003,41.091999999999999,42.295999999999999,43.499000000000002,44.701999999999998,45.905999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,144,1,42.3249,0.02844,38.713999999999999,39.917000000000002,41.121000000000002,42.325000000000003,43.529000000000003,44.731999999999999,45.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,145,1,42.353999999999999,0.02843,38.741999999999997,39.945999999999998,41.15,42.353999999999999,43.558,44.762,45.966000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,146,1,42.382800000000003,0.028420000000000001,38.768999999999998,39.973999999999997,41.177999999999997,42.383000000000003,43.587000000000003,44.792000000000002,45.996000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,147,1,42.411499999999997,0.028410000000000001,38.796999999999997,40.002000000000002,41.207000000000001,42.411999999999999,43.616,44.820999999999998,46.026000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,148,1,42.44,0.028400000000000002,38.823999999999998,40.029000000000003,41.234999999999999,42.44,43.645000000000003,44.850999999999999,46.055999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,149,1,42.468400000000003,0.028389999999999999,38.850999999999999,40.057000000000002,41.262999999999998,42.468000000000004,43.673999999999999,44.88,46.085000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,150,1,42.496499999999997,0.028389999999999999,38.877000000000002,40.084000000000003,41.29,42.496000000000002,43.703000000000003,44.908999999999999,46.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,151,1,42.5246,0.028379999999999999,38.904000000000003,40.110999999999997,41.317999999999998,42.524999999999999,43.731000000000002,44.938000000000002,46.145000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,152,1,42.552399999999999,0.028369999999999999,38.930999999999997,40.137999999999998,41.344999999999999,42.552,43.76,44.966999999999999,46.173999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,153,1,42.580100000000002,0.02836,38.957000000000001,40.164999999999999,41.372999999999998,42.58,43.787999999999997,44.994999999999997,46.203000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,154,1,42.607599999999998,0.02835,38.984000000000002,40.192,41.4,42.607999999999997,43.816000000000003,45.023000000000003,46.231000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,155,1,42.634900000000002,0.02835,39.009,40.218000000000004,41.426000000000002,42.634999999999998,43.844000000000001,45.052,46.261000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,156,1,42.662100000000002,0.028340000000000001,39.034999999999997,40.244,41.453000000000003,42.661999999999999,43.871000000000002,45.08,46.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,157,1,42.6892,0.028330000000000001,39.061,40.270000000000003,41.48,42.689,43.899000000000001,45.107999999999997,46.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,158,1,42.716000000000001,0.028320000000000001,39.087000000000003,40.296999999999997,41.506,42.716000000000001,43.926000000000002,45.134999999999998,46.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,159,1,42.742699999999999,0.028320000000000001,39.110999999999997,40.322000000000003,41.531999999999996,42.743000000000002,43.953000000000003,45.164000000000001,46.374000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,160,1,42.769300000000001,0.028309999999999998,39.137,40.347999999999999,41.558999999999997,42.768999999999998,43.98,45.191000000000003,46.402000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,161,1,42.795699999999997,0.028299999999999999,39.161999999999999,40.372999999999998,41.585000000000001,42.795999999999999,44.006999999999998,45.218000000000004,46.429000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,162,1,42.821899999999999,0.028289999999999999,39.188000000000002,40.399000000000001,41.61,42.822000000000003,44.033000000000001,45.244999999999997,46.456000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,163,1,42.847999999999999,0.028289999999999999,39.210999999999999,40.423999999999999,41.636000000000003,42.847999999999999,44.06,45.271999999999998,46.484999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,164,1,42.874000000000002,0.02828,39.237000000000002,40.448999999999998,41.661999999999999,42.874000000000002,44.085999999999999,45.298999999999999,46.511000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,165,1,42.899700000000003,0.02827,39.261000000000003,40.473999999999997,41.686999999999998,42.9,44.112000000000002,45.325000000000003,46.537999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,166,1,42.925400000000003,0.02827,39.284999999999997,40.497999999999998,41.712000000000003,42.924999999999997,44.139000000000003,45.351999999999997,46.566000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,167,1,42.950899999999997,0.02826,39.31,40.523000000000003,41.737000000000002,42.951000000000001,44.164999999999999,45.378,46.591999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,168,1,42.976199999999999,0.028250000000000001,39.334000000000003,40.548000000000002,41.762,42.975999999999999,44.19,45.404000000000003,46.618000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,169,1,43.001399999999997,0.028250000000000001,39.356999999999999,40.572000000000003,41.786999999999999,43.000999999999998,44.216000000000001,45.430999999999997,46.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,170,1,43.026400000000002,0.028240000000000001,39.381,40.595999999999997,41.811,43.026000000000003,44.241,45.457000000000001,46.671999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,171,1,43.051299999999998,0.028230000000000002,39.405000000000001,40.621000000000002,41.835999999999999,43.051000000000002,44.267000000000003,45.481999999999999,46.697000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,172,1,43.076099999999997,0.028230000000000002,39.427999999999997,40.643999999999998,41.86,43.076000000000001,44.292000000000002,45.508000000000003,46.723999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,173,1,43.100700000000003,0.028219999999999999,39.451999999999998,40.667999999999999,41.884,43.100999999999999,44.317,45.533000000000001,46.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,174,1,43.1252,0.028219999999999999,39.473999999999997,40.691000000000003,41.908000000000001,43.125,44.341999999999999,45.558999999999997,46.776000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,175,1,43.149500000000003,0.028209999999999999,39.497999999999998,40.715000000000003,41.932000000000002,43.15,44.366999999999997,45.584000000000003,46.801000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,176,1,43.173699999999997,0.028199999999999999,39.521000000000001,40.738999999999997,41.956000000000003,43.173999999999999,44.390999999999998,45.609000000000002,46.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,177,1,43.197800000000001,0.028199999999999999,39.542999999999999,40.761000000000003,41.98,43.198,44.415999999999997,45.634,46.851999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,178,1,43.221699999999998,0.02819,39.566000000000003,40.784999999999997,42.003,43.222000000000001,44.44,45.658999999999999,46.877000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,179,1,43.2455,0.02819,39.588000000000001,40.807000000000002,42.026000000000003,43.246000000000002,44.465000000000003,45.683999999999997,46.902999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,180,1,43.269100000000002,0.02818,39.610999999999997,40.83,42.05,43.268999999999998,44.488,45.707999999999998,46.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,181,1,43.292700000000004,0.02818,39.633000000000003,40.853000000000002,42.073,43.292999999999999,44.512999999999998,45.732999999999997,46.953000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,182,1,43.316000000000003,0.028170000000000001,39.655000000000001,40.875999999999998,42.095999999999997,43.316000000000003,44.536000000000001,45.756,46.976999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,183,1,43.339300000000001,0.028170000000000001,39.677,40.898000000000003,42.118000000000002,43.338999999999999,44.56,45.780999999999999,47.002000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,184,1,43.362400000000001,0.028160000000000001,39.698999999999998,40.92,42.140999999999998,43.362000000000002,44.582999999999998,45.805,47.026000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,185,1,43.385399999999997,0.028160000000000001,39.72,40.942,42.164000000000001,43.384999999999998,44.606999999999999,45.829000000000001,47.051000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,186,1,43.408299999999997,0.028150000000000001,39.741999999999997,40.963999999999999,42.186,43.408000000000001,44.63,45.851999999999997,47.073999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,187,1,43.430999999999997,0.028150000000000001,39.762999999999998,40.985999999999997,42.207999999999998,43.430999999999997,44.654000000000003,45.875999999999998,47.098999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,188,1,43.453600000000002,0.028139999999999998,39.784999999999997,41.008000000000003,42.231000000000002,43.454000000000001,44.676000000000002,45.899000000000001,47.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,189,1,43.476100000000002,0.028139999999999998,39.805999999999997,41.029000000000003,42.253,43.475999999999999,44.7,45.923000000000002,47.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,190,1,43.498399999999997,0.028129999999999999,39.828000000000003,41.051000000000002,42.274999999999999,43.497999999999998,44.722000000000001,45.945999999999998,47.168999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,191,1,43.520600000000002,0.028129999999999999,39.847999999999999,41.072000000000003,42.295999999999999,43.521000000000001,44.744999999999997,45.969000000000001,47.192999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,192,1,43.542700000000004,0.028119999999999999,39.869,41.094000000000001,42.317999999999998,43.542999999999999,44.767000000000003,45.991999999999997,47.216000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,193,1,43.564700000000002,0.028119999999999999,39.89,41.115000000000002,42.34,43.564999999999998,44.79,46.015000000000001,47.24 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,194,1,43.586500000000001,0.02811,39.911000000000001,41.136000000000003,42.360999999999997,43.585999999999999,44.811999999999998,46.036999999999999,47.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,195,1,43.608199999999997,0.02811,39.930999999999997,41.156999999999996,42.381999999999998,43.607999999999997,44.834000000000003,46.06,47.286000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,196,1,43.629800000000003,0.0281,39.951999999999998,41.177999999999997,42.404000000000003,43.63,44.856000000000002,46.082000000000001,47.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,197,1,43.651299999999999,0.0281,39.970999999999997,41.198,42.424999999999997,43.651000000000003,44.878,46.104999999999997,47.331000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,198,1,43.672699999999999,0.0281,39.991,41.218000000000004,42.445,43.673000000000002,44.9,46.127000000000002,47.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,199,1,43.693899999999999,0.02809,40.012,41.238999999999997,42.466999999999999,43.694000000000003,44.920999999999999,46.149000000000001,47.375999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,200,1,43.715000000000003,0.02809,40.030999999999999,41.259,42.487000000000002,43.715000000000003,44.942999999999998,46.170999999999999,47.399000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,201,1,43.735999999999997,0.028080000000000001,40.052,41.28,42.508000000000003,43.735999999999997,44.963999999999999,46.192,47.42 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,202,1,43.756900000000002,0.028080000000000001,40.070999999999998,41.3,42.527999999999999,43.756999999999998,44.985999999999997,46.213999999999999,47.442999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,203,1,43.777700000000003,0.028080000000000001,40.090000000000003,41.319000000000003,42.548000000000002,43.777999999999999,45.006999999999998,46.235999999999997,47.466000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,204,1,43.798299999999998,0.028070000000000001,40.11,41.338999999999999,42.569000000000003,43.798000000000002,45.027999999999999,46.256999999999998,47.487000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,205,1,43.818800000000003,0.028070000000000001,40.128999999999998,41.359000000000002,42.588999999999999,43.819000000000003,45.048999999999999,46.279000000000003,47.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,206,1,43.839300000000001,0.028070000000000001,40.148000000000003,41.378,42.609000000000002,43.838999999999999,45.07,46.3,47.530999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,207,1,43.8596,0.028060000000000002,40.167000000000002,41.398000000000003,42.628999999999998,43.86,45.09,46.320999999999998,47.552 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,208,1,43.879800000000003,0.028060000000000002,40.186,41.417000000000002,42.649000000000001,43.88,45.110999999999997,46.341999999999999,47.573999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,209,1,43.899799999999999,0.028060000000000002,40.204000000000001,41.436,42.667999999999999,43.9,45.131999999999998,46.363,47.594999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,210,1,43.919800000000002,0.028049999999999999,40.223999999999997,41.456000000000003,42.688000000000002,43.92,45.152000000000001,46.384,47.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,211,1,43.939700000000002,0.028049999999999999,40.241999999999997,41.475000000000001,42.707000000000001,43.94,45.171999999999997,46.405000000000001,47.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,212,1,43.959400000000002,0.028049999999999999,40.26,41.493000000000002,42.725999999999999,43.959000000000003,45.192,46.426000000000002,47.658999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,213,1,43.979100000000003,0.028039999999999999,40.28,41.512999999999998,42.746000000000002,43.978999999999999,45.212000000000003,46.445,47.679000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,214,1,43.998600000000003,0.028039999999999999,40.296999999999997,41.530999999999999,42.765000000000001,43.999000000000002,45.231999999999999,46.466000000000001,47.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,215,1,44.018099999999997,0.028039999999999999,40.314999999999998,41.55,42.783999999999999,44.018000000000001,45.252000000000002,46.487000000000002,47.720999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,216,1,44.037399999999998,0.028029999999999999,40.334000000000003,41.569000000000003,42.802999999999997,44.036999999999999,45.271999999999998,46.506,47.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,217,1,44.056600000000003,0.028029999999999999,40.351999999999997,41.587000000000003,42.822000000000003,44.057000000000002,45.292000000000002,46.526000000000003,47.761000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,218,1,44.075699999999998,0.028029999999999999,40.369,41.604999999999997,42.84,44.076000000000001,45.311,46.546999999999997,47.781999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,219,1,44.094700000000003,0.02802,40.387999999999998,41.624000000000002,42.859000000000002,44.094999999999999,45.33,46.566000000000003,47.801000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,220,1,44.113599999999998,0.02802,40.405000000000001,41.640999999999998,42.878,44.113999999999997,45.35,46.585999999999999,47.822000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,221,1,44.1325,0.02802,40.423000000000002,41.658999999999999,42.896000000000001,44.131999999999998,45.369,46.606000000000002,47.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,222,1,44.151200000000003,0.02801,40.441000000000003,41.677999999999997,42.914999999999999,44.151000000000003,45.387999999999998,46.625,47.860999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,223,1,44.169800000000002,0.02801,40.457999999999998,41.695,42.933,44.17,45.406999999999996,46.643999999999998,47.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,224,1,44.188299999999998,0.02801,40.475000000000001,41.713000000000001,42.951000000000001,44.188000000000002,45.426000000000002,46.664000000000001,47.901000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,225,1,44.206699999999998,0.02801,40.491999999999997,41.73,42.968000000000004,44.207000000000001,45.445,46.683,47.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,226,1,44.225000000000001,0.028000000000000001,40.51,41.747999999999998,42.987000000000002,44.225000000000001,45.463000000000001,46.701999999999998,47.94 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,227,1,44.243200000000002,0.028000000000000001,40.527000000000001,41.765999999999998,43.003999999999998,44.243000000000002,45.481999999999999,46.720999999999997,47.96 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,228,1,44.261299999999999,0.028000000000000001,40.542999999999999,41.783000000000001,43.021999999999998,44.261000000000003,45.500999999999998,46.74,47.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,229,1,44.279299999999999,0.028000000000000001,40.56,41.8,43.039000000000001,44.279000000000003,45.518999999999998,46.759,47.999000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,230,1,44.297199999999997,0.027990000000000001,40.578000000000003,41.817,43.057000000000002,44.296999999999997,45.536999999999999,46.777000000000001,48.017000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,231,1,44.314999999999998,0.027990000000000001,40.594000000000001,41.834000000000003,43.075000000000003,44.314999999999998,45.555,46.795999999999999,48.036000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,232,1,44.332799999999999,0.027990000000000001,40.61,41.850999999999999,43.091999999999999,44.332999999999998,45.573999999999998,46.814999999999998,48.055 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,233,1,44.3504,0.027990000000000001,40.625999999999998,41.868000000000002,43.109000000000002,44.35,45.591999999999999,46.832999999999998,48.075000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,234,1,44.367899999999999,0.027980000000000001,40.643999999999998,41.884999999999998,43.125999999999998,44.368000000000002,45.609000000000002,46.850999999999999,48.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,235,1,44.385399999999997,0.027980000000000001,40.659999999999997,41.902000000000001,43.143000000000001,44.384999999999998,45.627000000000002,46.869,48.110999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,236,1,44.402700000000003,0.027980000000000001,40.676000000000002,41.917999999999999,43.16,44.402999999999999,45.645000000000003,46.887,48.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,237,1,44.42,0.027980000000000001,40.691000000000003,41.933999999999997,43.177,44.42,45.662999999999997,46.905999999999999,48.149000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,238,1,44.437199999999997,0.027980000000000001,40.707000000000001,41.95,43.194000000000003,44.436999999999998,45.680999999999997,46.923999999999999,48.167000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,239,1,44.454300000000003,0.027969999999999998,40.723999999999997,41.968000000000004,43.210999999999999,44.454000000000001,45.698,46.941000000000003,48.183999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,240,1,44.471299999999999,0.027969999999999998,40.74,41.984000000000002,43.226999999999997,44.470999999999997,45.715000000000003,46.959000000000003,48.203000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,241,1,44.488199999999999,0.027969999999999998,40.755000000000003,42,43.244,44.488,45.732999999999997,46.976999999999997,48.220999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,242,1,44.505000000000003,0.027969999999999998,40.771000000000001,42.015000000000001,43.26,44.505000000000003,45.75,46.994999999999997,48.238999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,243,1,44.521700000000003,0.027969999999999998,40.786000000000001,42.030999999999999,43.276000000000003,44.521999999999998,45.767000000000003,47.012,48.258000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,244,1,44.538400000000003,0.027959999999999999,40.802999999999997,42.048000000000002,43.292999999999999,44.537999999999997,45.783999999999999,47.029000000000003,48.274000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,245,1,44.554900000000004,0.027959999999999999,40.817999999999998,42.063000000000002,43.308999999999997,44.555,45.801000000000002,47.045999999999999,48.292000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,246,1,44.571399999999997,0.027959999999999999,40.832999999999998,42.079000000000001,43.325000000000003,44.570999999999998,45.817999999999998,47.064,48.31 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,247,1,44.587800000000001,0.027959999999999999,40.847999999999999,42.094000000000001,43.341000000000001,44.588000000000001,45.834000000000003,47.081000000000003,48.328000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,248,1,44.604100000000003,0.027959999999999999,40.863,42.11,43.356999999999999,44.603999999999999,45.850999999999999,47.097999999999999,48.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,249,1,44.6203,0.027949999999999999,40.878999999999998,42.125999999999998,43.372999999999998,44.62,45.866999999999997,47.115000000000002,48.362000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,250,1,44.636499999999998,0.027949999999999999,40.893999999999998,42.140999999999998,43.389000000000003,44.636000000000003,45.884,47.131999999999998,48.378999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,251,1,44.652500000000003,0.027949999999999999,40.908000000000001,42.155999999999999,43.404000000000003,44.652000000000001,45.901000000000003,47.149000000000001,48.396999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,252,1,44.668500000000002,0.027949999999999999,40.923000000000002,42.171999999999997,43.42,44.667999999999999,45.917000000000002,47.164999999999999,48.414000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,253,1,44.684399999999997,0.027949999999999999,40.938000000000002,42.186999999999998,43.435000000000002,44.683999999999997,45.933,47.182000000000002,48.430999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,254,1,44.700200000000002,0.027949999999999999,40.951999999999998,42.201000000000001,43.451000000000001,44.7,45.95,47.198999999999998,48.448 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,255,1,44.716000000000001,0.02794,40.968000000000004,42.216999999999999,43.466999999999999,44.716000000000001,45.965000000000003,47.215000000000003,48.463999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,256,1,44.7316,0.02794,40.981999999999999,42.231999999999999,43.481999999999999,44.731999999999999,45.981000000000002,47.231000000000002,48.481000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,257,1,44.747199999999999,0.02794,40.996000000000002,42.247,43.497,44.747,45.997,47.247999999999998,48.497999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,258,1,44.762700000000002,0.02794,41.011000000000003,42.261000000000003,43.512,44.762999999999998,46.012999999999998,47.264000000000003,48.515000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,259,1,44.778100000000002,0.02794,41.024999999999999,42.276000000000003,43.527000000000001,44.777999999999999,46.029000000000003,47.28,48.530999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,260,1,44.793500000000002,0.02794,41.039000000000001,42.29,43.542000000000002,44.793999999999997,46.045000000000002,47.296999999999997,48.548000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,261,1,44.808799999999998,0.02794,41.052999999999997,42.305,43.557000000000002,44.808999999999997,46.061,47.313000000000002,48.564999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,262,1,44.823999999999998,0.02793,41.067999999999998,42.32,43.572000000000003,44.823999999999998,46.076000000000001,47.328000000000003,48.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,263,1,44.839100000000002,0.02793,41.082000000000001,42.334000000000003,43.587000000000003,44.838999999999999,46.091000000000001,47.344000000000001,48.595999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,264,1,44.854199999999999,0.02793,41.095999999999997,42.348999999999997,43.600999999999999,44.853999999999999,46.106999999999999,47.36,48.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,265,1,44.869100000000003,0.02793,41.11,42.363,43.616,44.869,46.122,47.375,48.628999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,266,1,44.884,0.02793,41.122999999999998,42.377000000000002,43.63,44.884,46.137999999999998,47.390999999999998,48.645000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,267,1,44.898899999999998,0.02793,41.137,42.390999999999998,43.645000000000003,44.899000000000001,46.152999999999999,47.406999999999996,48.661000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,268,1,44.913600000000002,0.02793,41.15,42.405000000000001,43.658999999999999,44.914000000000001,46.167999999999999,47.421999999999997,48.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,269,1,44.9283,0.02793,41.164000000000001,42.418999999999997,43.673000000000002,44.927999999999997,46.183,47.438000000000002,48.692999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,270,1,44.942900000000002,0.02792,41.177999999999997,42.433,43.688000000000002,44.942999999999998,46.198,47.453000000000003,48.707000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,271,1,44.957500000000003,0.02792,41.192,42.447000000000003,43.701999999999998,44.957999999999998,46.213000000000001,47.468000000000004,48.722999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,272,1,44.972000000000001,0.02792,41.204999999999998,42.460999999999999,43.716000000000001,44.972000000000001,46.228000000000002,47.482999999999997,48.738999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,273,1,44.986400000000003,0.02792,41.218000000000004,42.473999999999997,43.73,44.985999999999997,46.241999999999997,47.497999999999998,48.753999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,274,1,45.000700000000002,0.02792,41.231000000000002,42.488,43.744,45.000999999999998,46.256999999999998,47.514000000000003,48.77 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,275,1,45.015000000000001,0.02792,41.244999999999997,42.500999999999998,43.758000000000003,45.015000000000001,46.271999999999998,47.529000000000003,48.784999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,276,1,45.029200000000003,0.02792,41.258000000000003,42.515000000000001,43.771999999999998,45.029000000000003,46.286000000000001,47.543999999999997,48.801000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,277,1,45.043300000000002,0.02792,41.27,42.527999999999999,43.786000000000001,45.042999999999999,46.301000000000002,47.558999999999997,48.816000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,278,1,45.057299999999998,0.02792,41.283000000000001,42.540999999999997,43.798999999999999,45.057000000000002,46.314999999999998,47.573,48.831000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,279,1,45.071300000000001,0.027910000000000001,41.296999999999997,42.555,43.813000000000002,45.070999999999998,46.329000000000001,47.587000000000003,48.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,280,1,45.085299999999997,0.027910000000000001,41.31,42.569000000000003,43.826999999999998,45.085000000000001,46.344000000000001,47.601999999999997,48.86 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,281,1,45.0991,0.027910000000000001,41.323,42.582000000000001,43.84,45.098999999999997,46.357999999999997,47.616999999999997,48.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,282,1,45.112900000000003,0.027910000000000001,41.335999999999999,42.594999999999999,43.853999999999999,45.113,46.372,47.631,48.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,283,1,45.1267,0.027910000000000001,41.347999999999999,42.607999999999997,43.866999999999997,45.127000000000002,46.386000000000003,47.646000000000001,48.905000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,284,1,45.140300000000003,0.027910000000000001,41.360999999999997,42.621000000000002,43.88,45.14,46.4,47.66,48.92 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,285,1,45.1539,0.027910000000000001,41.372999999999998,42.633000000000003,43.893999999999998,45.154000000000003,46.414000000000001,47.673999999999999,48.935000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,286,1,45.167400000000001,0.027910000000000001,41.386000000000003,42.646000000000001,43.906999999999996,45.167000000000002,46.427999999999997,47.689,48.948999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,287,1,45.180900000000001,0.027910000000000001,41.398000000000003,42.658999999999999,43.92,45.180999999999997,46.442,47.703000000000003,48.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,288,1,45.194299999999998,0.027910000000000001,41.41,42.671999999999997,43.933,45.194000000000003,46.456000000000003,47.716999999999999,48.978000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,289,1,45.207700000000003,0.027910000000000001,41.421999999999997,42.683999999999997,43.945999999999998,45.207999999999998,46.469000000000001,47.731000000000002,48.993000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,290,1,45.2209,0.027910000000000001,41.435000000000002,42.697000000000003,43.959000000000003,45.220999999999997,46.482999999999997,47.744999999999997,49.006999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,291,1,45.234099999999998,0.027900000000000001,41.448,42.71,43.972000000000001,45.234000000000002,46.496000000000002,47.758000000000003,49.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,292,1,45.247300000000003,0.027900000000000001,41.46,42.722999999999999,43.984999999999999,45.247,46.51,47.771999999999998,49.033999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,293,1,45.260399999999997,0.027900000000000001,41.472000000000001,42.734999999999999,43.997999999999998,45.26,46.523000000000003,47.786000000000001,49.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,294,1,45.273400000000002,0.027900000000000001,41.484000000000002,42.747,44.01,45.273000000000003,46.536999999999999,47.8,49.063000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,295,1,45.2864,0.027900000000000001,41.496000000000002,42.759,44.023000000000003,45.286000000000001,46.55,47.813000000000002,49.076999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,296,1,45.299300000000002,0.027900000000000001,41.508000000000003,42.771999999999998,44.034999999999997,45.298999999999999,46.563000000000002,47.826999999999998,49.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,297,1,45.312100000000001,0.027900000000000001,41.518999999999998,42.783999999999999,44.048000000000002,45.311999999999998,46.576000000000001,47.841000000000001,49.104999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,298,1,45.3249,0.027900000000000001,41.530999999999999,42.795999999999999,44.06,45.325000000000003,46.588999999999999,47.853999999999999,49.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,299,1,45.337699999999998,0.027900000000000001,41.542999999999999,42.808,44.073,45.338000000000001,46.603000000000002,47.868000000000002,49.131999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,300,1,45.350299999999997,0.027900000000000001,41.554000000000002,42.82,44.085000000000001,45.35,46.616,47.881,49.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,301,1,45.362900000000003,0.027900000000000001,41.566000000000003,42.832000000000001,44.097000000000001,45.363,46.628999999999998,47.893999999999998,49.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,302,1,45.375500000000002,0.027900000000000001,41.578000000000003,42.844000000000001,44.11,45.375999999999998,46.640999999999998,47.906999999999996,49.173000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,303,1,45.387999999999998,0.027900000000000001,41.588999999999999,42.854999999999997,44.122,45.387999999999998,46.654000000000003,47.920999999999999,49.186999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,304,1,45.400399999999998,0.027900000000000001,41.6,42.866999999999997,44.134,45.4,46.667000000000002,47.933999999999997,49.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,305,1,45.412799999999997,0.027900000000000001,41.612000000000002,42.878999999999998,44.146000000000001,45.412999999999997,46.68,47.947000000000003,49.213999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,306,1,45.4251,0.027900000000000001,41.622999999999998,42.89,44.158000000000001,45.424999999999997,46.692,47.96,49.226999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,307,1,45.437399999999997,0.027890000000000002,41.636000000000003,42.902999999999999,44.17,45.436999999999998,46.704999999999998,47.972000000000001,49.238999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,308,1,45.449599999999997,0.027890000000000002,41.646999999999998,42.914000000000001,44.182000000000002,45.45,46.716999999999999,47.984999999999999,49.252000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,309,1,45.461799999999997,0.027890000000000002,41.658000000000001,42.926000000000002,44.194000000000003,45.462000000000003,46.73,47.997999999999998,49.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,310,1,45.4739,0.027890000000000002,41.668999999999997,42.936999999999998,44.206000000000003,45.473999999999997,46.741999999999997,48.01,49.279000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,311,1,45.485900000000001,0.027890000000000002,41.68,42.948999999999998,44.216999999999999,45.485999999999997,46.755000000000003,48.023000000000003,49.292000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,312,1,45.497900000000001,0.027890000000000002,41.691000000000003,42.96,44.228999999999999,45.497999999999998,46.767000000000003,48.036000000000001,49.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,313,1,45.509799999999998,0.027890000000000002,41.701999999999998,42.970999999999997,44.241,45.51,46.779000000000003,48.048000000000002,49.317999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,314,1,45.521700000000003,0.027890000000000002,41.713000000000001,42.981999999999999,44.252000000000002,45.521999999999998,46.790999999999997,48.061,49.331000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,315,1,45.5336,0.027890000000000002,41.723999999999997,42.994,44.264000000000003,45.533999999999999,46.804000000000002,48.073,49.343000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,316,1,45.545299999999997,0.027890000000000002,41.734999999999999,43.005000000000003,44.274999999999999,45.545000000000002,46.816000000000003,48.085999999999999,49.356000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,317,1,45.557099999999998,0.027890000000000002,41.744999999999997,43.015999999999998,44.286999999999999,45.557000000000002,46.828000000000003,48.097999999999999,49.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,318,1,45.5687,0.027890000000000002,41.756,43.027000000000001,44.298000000000002,45.569000000000003,46.84,48.110999999999997,49.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,319,1,45.580300000000001,0.027890000000000002,41.767000000000003,43.037999999999997,44.308999999999997,45.58,46.851999999999997,48.122999999999998,49.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,320,1,45.591900000000003,0.027890000000000002,41.777000000000001,43.048999999999999,44.32,45.591999999999999,46.863,48.134999999999998,49.406999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,321,1,45.603400000000001,0.027890000000000002,41.787999999999997,43.06,44.332000000000001,45.603000000000002,46.875,48.146999999999998,49.418999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,322,1,45.614899999999999,0.027890000000000002,41.798000000000002,43.070999999999998,44.343000000000004,45.615000000000002,46.887,48.158999999999999,49.430999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,323,1,45.626300000000001,0.027890000000000002,41.808999999999997,43.081000000000003,44.353999999999999,45.625999999999998,46.899000000000001,48.170999999999999,49.444000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,324,1,45.637599999999999,0.027890000000000002,41.819000000000003,43.091999999999999,44.365000000000002,45.637999999999998,46.91,48.183,49.456000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,325,1,45.648899999999998,0.027890000000000002,41.829000000000001,43.103000000000002,44.375999999999998,45.649000000000001,46.921999999999997,48.195,49.468000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,326,1,45.660200000000003,0.027890000000000002,41.84,43.113,44.387,45.66,46.933999999999997,48.207000000000001,49.481000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,327,1,45.671399999999998,0.027890000000000002,41.85,43.124000000000002,44.398000000000003,45.670999999999999,46.945,48.219000000000001,49.493000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,328,1,45.682600000000001,0.027890000000000002,41.86,43.134,44.408999999999999,45.683,46.957000000000001,48.231000000000002,49.505000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,329,1,45.6937,0.027890000000000002,41.871000000000002,43.145000000000003,44.418999999999997,45.694000000000003,46.968000000000004,48.241999999999997,49.517000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,330,1,45.704700000000003,0.027890000000000002,41.881,43.155000000000001,44.43,45.704999999999998,46.978999999999999,48.253999999999998,49.529000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,331,1,45.715800000000002,0.027890000000000002,41.890999999999998,43.165999999999997,44.441000000000003,45.716000000000001,46.991,48.265999999999998,49.540999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,332,1,45.726700000000001,0.027890000000000002,41.901000000000003,43.176000000000002,44.451000000000001,45.726999999999997,47.002000000000002,48.277000000000001,49.552999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,333,1,45.7376,0.027890000000000002,41.911000000000001,43.186,44.462000000000003,45.738,47.012999999999998,48.289000000000001,49.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,334,1,45.7485,0.027890000000000002,41.920999999999999,43.197000000000003,44.472999999999999,45.747999999999998,47.024000000000001,48.3,49.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,335,1,45.759300000000003,0.027890000000000002,41.930999999999997,43.207000000000001,44.482999999999997,45.759,47.036000000000001,48.311999999999998,49.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,336,1,45.770099999999999,0.027890000000000002,41.941000000000003,43.216999999999999,44.494,45.77,47.046999999999997,48.323,49.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,337,1,45.780799999999999,0.027890000000000002,41.95,43.226999999999997,44.503999999999998,45.780999999999999,47.058,48.334000000000003,49.610999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,338,1,45.791499999999999,0.027890000000000002,41.96,43.237000000000002,44.514000000000003,45.792000000000002,47.069000000000003,48.345999999999997,49.622999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,339,1,45.802199999999999,0.027890000000000002,41.97,43.247,44.524999999999999,45.802,47.08,48.356999999999999,49.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,340,1,45.812800000000003,0.027890000000000002,41.98,43.256999999999998,44.534999999999997,45.813000000000002,47.091000000000001,48.368000000000002,49.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,341,1,45.823300000000003,0.027879999999999999,41.991,43.268000000000001,44.545999999999999,45.823,47.100999999999999,48.378,49.655999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,342,1,45.833799999999997,0.027879999999999999,42,43.277999999999999,44.555999999999997,45.834000000000003,47.112000000000002,48.389000000000003,49.667000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,343,1,45.844299999999997,0.027879999999999999,42.01,43.287999999999997,44.566000000000003,45.844000000000001,47.122,48.401000000000003,49.679000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,344,1,45.854700000000001,0.027879999999999999,42.018999999999998,43.298000000000002,44.576000000000001,45.854999999999997,47.133000000000003,48.411999999999999,49.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,345,1,45.865099999999998,0.027879999999999999,42.029000000000003,43.308,44.585999999999999,45.865000000000002,47.143999999999998,48.423000000000002,49.701000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,346,1,45.875399999999999,0.027879999999999999,42.037999999999997,43.317,44.595999999999997,45.875,47.154000000000003,48.433,49.712000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,347,1,45.8857,0.027879999999999999,42.048000000000002,43.326999999999998,44.606000000000002,45.886000000000003,47.164999999999999,48.444000000000003,49.723999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,348,1,45.895899999999997,0.027879999999999999,42.057000000000002,43.337000000000003,44.616,45.896000000000001,47.174999999999997,48.454999999999998,49.734999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,349,1,45.906100000000002,0.027879999999999999,42.067,43.345999999999997,44.625999999999998,45.905999999999999,47.186,48.466000000000001,49.746000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,350,1,45.9163,0.027879999999999999,42.076000000000001,43.356000000000002,44.636000000000003,45.915999999999997,47.195999999999998,48.476999999999997,49.756999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,351,1,45.926400000000001,0.027879999999999999,42.085000000000001,43.366,44.646000000000001,45.926000000000002,47.207000000000001,48.487000000000002,49.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,352,1,45.936399999999999,0.027879999999999999,42.094000000000001,43.375,44.655999999999999,45.936,47.216999999999999,48.497999999999998,49.779000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,353,1,45.9465,0.027879999999999999,42.103999999999999,43.384999999999998,44.665999999999997,45.945999999999998,47.226999999999997,48.508000000000003,49.789000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,354,1,45.956499999999998,0.027879999999999999,42.113,43.393999999999998,44.674999999999997,45.956000000000003,47.238,48.518999999999998,49.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,355,1,45.9664,0.027879999999999999,42.122,43.402999999999999,44.685000000000002,45.966000000000001,47.247999999999998,48.529000000000003,49.811 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,356,1,45.976300000000002,0.027879999999999999,42.131,43.412999999999997,44.694000000000003,45.975999999999999,47.258000000000003,48.54,49.822000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,357,1,45.986199999999997,0.027879999999999999,42.14,43.421999999999997,44.704000000000001,45.985999999999997,47.268000000000001,48.55,49.832000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,358,1,45.996000000000002,0.027879999999999999,42.149000000000001,43.430999999999997,44.713999999999999,45.996000000000002,47.277999999999999,48.561,49.843000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,359,1,46.005800000000001,0.027879999999999999,42.158000000000001,43.441000000000003,44.722999999999999,46.006,47.287999999999997,48.570999999999998,49.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,360,1,46.015500000000003,0.027879999999999999,42.167000000000002,43.45,44.732999999999997,46.015999999999998,47.298000000000002,48.581000000000003,49.863999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,361,1,46.025199999999998,0.027879999999999999,42.176000000000002,43.459000000000003,44.741999999999997,46.024999999999999,47.308,48.591999999999999,49.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,362,1,46.0349,0.027890000000000002,42.183,43.466999999999999,44.750999999999998,46.034999999999997,47.319000000000003,48.603000000000002,49.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,363,1,46.044499999999999,0.027890000000000002,42.192,43.475999999999999,44.76,46.043999999999997,47.329000000000001,48.613,49.896999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,364,1,46.054099999999998,0.027890000000000002,42.201000000000001,43.484999999999999,44.77,46.054000000000002,47.338999999999999,48.622999999999998,49.906999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,365,1,46.063699999999997,0.027890000000000002,42.21,43.494,44.779000000000003,46.064,47.347999999999999,48.633000000000003,49.917999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,366,1,46.0732,0.027890000000000002,42.218000000000004,43.503,44.787999999999997,46.073,47.357999999999997,48.643000000000001,49.927999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,367,1,46.082700000000003,0.027890000000000002,42.226999999999997,43.512,44.796999999999997,46.082999999999998,47.368000000000002,48.652999999999999,49.938000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,368,1,46.092100000000002,0.027890000000000002,42.235999999999997,43.521000000000001,44.807000000000002,46.091999999999999,47.378,48.662999999999997,49.948999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,369,1,46.101500000000001,0.027890000000000002,42.244,43.53,44.816000000000003,46.101999999999997,47.387,48.673000000000002,49.959000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,370,1,46.110900000000001,0.027890000000000002,42.253,43.539000000000001,44.825000000000003,46.110999999999997,47.396999999999998,48.683,49.969000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,371,1,46.120199999999997,0.027890000000000002,42.261000000000003,43.548000000000002,44.834000000000003,46.12,47.405999999999999,48.692999999999998,49.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,372,1,46.1295,0.027890000000000002,42.27,43.555999999999997,44.843000000000004,46.13,47.415999999999997,48.703000000000003,49.988999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,373,1,46.1387,0.027890000000000002,42.277999999999999,43.564999999999998,44.851999999999997,46.139000000000003,47.426000000000002,48.712000000000003,49.999000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,374,1,46.148000000000003,0.027890000000000002,42.286999999999999,43.573999999999998,44.860999999999997,46.148000000000003,47.435000000000002,48.722000000000001,50.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,375,1,46.157200000000003,0.027890000000000002,42.295000000000002,43.582999999999998,44.87,46.156999999999996,47.445,48.731999999999999,50.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,376,1,46.1663,0.027890000000000002,42.304000000000002,43.591000000000001,44.878999999999998,46.165999999999997,47.454000000000001,48.741,50.029000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,377,1,46.175400000000003,0.027890000000000002,42.311999999999998,43.6,44.887999999999998,46.174999999999997,47.463000000000001,48.750999999999998,50.039000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,378,1,46.1845,0.027890000000000002,42.32,43.607999999999997,44.896000000000001,46.183999999999997,47.472999999999999,48.761000000000003,50.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,379,1,46.1935,0.027890000000000002,42.328000000000003,43.616999999999997,44.905000000000001,46.194000000000003,47.481999999999999,48.77,50.058999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,380,1,46.202500000000001,0.027890000000000002,42.337000000000003,43.625,44.914000000000001,46.201999999999998,47.491,48.78,50.067999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,381,1,46.211500000000001,0.027890000000000002,42.344999999999999,43.634,44.923000000000002,46.212000000000003,47.5,48.789000000000001,50.078000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,382,1,46.220399999999998,0.027890000000000002,42.353000000000002,43.642000000000003,44.930999999999997,46.22,47.509,48.798999999999999,50.088000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,383,1,46.229399999999998,0.027890000000000002,42.360999999999997,43.651000000000003,44.94,46.228999999999999,47.518999999999998,48.808,50.097000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,384,1,46.238199999999999,0.027890000000000002,42.369,43.658999999999999,44.948999999999998,46.238,47.527999999999999,48.817,50.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,385,1,46.247100000000003,0.027890000000000002,42.378,43.667000000000002,44.957000000000001,46.247,47.536999999999999,48.826999999999998,50.116999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,386,1,46.255899999999997,0.027890000000000002,42.386000000000003,43.676000000000002,44.966000000000001,46.256,47.545999999999999,48.835999999999999,50.125999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,387,1,46.264600000000002,0.027890000000000002,42.393999999999998,43.683999999999997,44.973999999999997,46.265000000000001,47.555,48.844999999999999,50.136000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,388,1,46.273400000000002,0.027890000000000002,42.402000000000001,43.692,44.982999999999997,46.273000000000003,47.564,48.854999999999997,50.145000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,389,1,46.2821,0.027890000000000002,42.41,43.7,44.991,46.281999999999996,47.573,48.863999999999997,50.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,390,1,46.290799999999997,0.027890000000000002,42.417999999999999,43.709000000000003,45,46.290999999999997,47.582000000000001,48.872999999999998,50.164000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,391,1,46.299399999999999,0.027890000000000002,42.426000000000002,43.716999999999999,45.008000000000003,46.298999999999999,47.591000000000001,48.881999999999998,50.173000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,392,1,46.308,0.027890000000000002,42.433,43.725000000000001,45.015999999999998,46.308,47.6,48.890999999999998,50.183 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,393,1,46.316600000000001,0.027890000000000002,42.441000000000003,43.732999999999997,45.024999999999999,46.317,47.607999999999997,48.9,50.192 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,394,1,46.325099999999999,0.027890000000000002,42.448999999999998,43.741,45.033000000000001,46.325000000000003,47.616999999999997,48.908999999999999,50.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,395,1,46.3337,0.027890000000000002,42.457000000000001,43.749000000000002,45.040999999999997,46.334000000000003,47.625999999999998,48.917999999999999,50.21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,396,1,46.342100000000002,0.027890000000000002,42.465000000000003,43.756999999999998,45.05,46.341999999999999,47.634999999999998,48.927,50.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,397,1,46.3506,0.027890000000000002,42.472000000000001,43.765000000000001,45.058,46.350999999999999,47.643000000000001,48.936,50.228999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,398,1,46.359000000000002,0.027890000000000002,42.48,43.773000000000003,45.066000000000003,46.359000000000002,47.652000000000001,48.945,50.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,399,1,46.367400000000004,0.027890000000000002,42.488,43.780999999999999,45.073999999999998,46.366999999999997,47.661000000000001,48.954000000000001,50.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,400,1,46.375799999999998,0.027890000000000002,42.496000000000002,43.789000000000001,45.082000000000001,46.375999999999998,47.668999999999997,48.963000000000001,50.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,401,1,46.384099999999997,0.027890000000000002,42.503,43.796999999999997,45.09,46.384,47.677999999999997,48.970999999999997,50.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,402,1,46.392400000000002,0.027900000000000001,42.509,43.804000000000002,45.097999999999999,46.392000000000003,47.686999999999998,48.981000000000002,50.274999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,403,1,46.400700000000001,0.027900000000000001,42.517000000000003,43.811999999999998,45.106000000000002,46.401000000000003,47.695,48.99,50.283999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,404,1,46.408999999999999,0.027900000000000001,42.524999999999999,43.819000000000003,45.113999999999997,46.408999999999999,47.704000000000001,48.999000000000002,50.292999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,405,1,46.417200000000001,0.027900000000000001,42.531999999999996,43.826999999999998,45.122,46.417000000000002,47.712000000000003,49.006999999999998,50.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,406,1,46.425400000000003,0.027900000000000001,42.54,43.835000000000001,45.13,46.424999999999997,47.720999999999997,49.015999999999998,50.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,407,1,46.433500000000002,0.027900000000000001,42.546999999999997,43.843000000000004,45.137999999999998,46.433999999999997,47.728999999999999,49.024000000000001,50.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,408,1,46.441699999999997,0.027900000000000001,42.555,43.85,45.146000000000001,46.442,47.737000000000002,49.033000000000001,50.329000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,409,1,46.449800000000003,0.027900000000000001,42.561999999999998,43.857999999999997,45.154000000000003,46.45,47.746000000000002,49.042000000000002,50.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,410,1,46.457799999999999,0.027900000000000001,42.569000000000003,43.865000000000002,45.161999999999999,46.457999999999998,47.753999999999998,49.05,50.345999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,411,1,46.465899999999998,0.027900000000000001,42.576999999999998,43.872999999999998,45.17,46.466000000000001,47.762,49.058999999999997,50.354999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,412,1,46.4739,0.027900000000000001,42.584000000000003,43.881,45.177,46.473999999999997,47.771000000000001,49.067,50.363999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,413,1,46.481900000000003,0.027900000000000001,42.591000000000001,43.887999999999998,45.185000000000002,46.481999999999999,47.779000000000003,49.076000000000001,50.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,414,1,46.489899999999999,0.027900000000000001,42.598999999999997,43.896000000000001,45.192999999999998,46.49,47.786999999999999,49.084000000000003,50.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,415,1,46.497799999999998,0.027900000000000001,42.606000000000002,43.902999999999999,45.201000000000001,46.497999999999998,47.795000000000002,49.091999999999999,50.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,416,1,46.505699999999997,0.027900000000000001,42.613,43.911000000000001,45.207999999999998,46.506,47.802999999999997,49.100999999999999,50.398000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,417,1,46.513599999999997,0.027900000000000001,42.62,43.917999999999999,45.216000000000001,46.514000000000003,47.811,49.109000000000002,50.406999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,418,1,46.521500000000003,0.027900000000000001,42.628,43.926000000000002,45.223999999999997,46.521999999999998,47.819000000000003,49.116999999999997,50.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,419,1,46.529299999999999,0.027900000000000001,42.634999999999998,43.933,45.231000000000002,46.529000000000003,47.826999999999998,49.125999999999998,50.423999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,420,1,46.537100000000002,0.027900000000000001,42.642000000000003,43.94,45.238999999999997,46.536999999999999,47.835000000000001,49.134,50.432000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,421,1,46.544899999999998,0.027900000000000001,42.649000000000001,43.948,45.246000000000002,46.545000000000002,47.844000000000001,49.142000000000003,50.441000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,422,1,46.552700000000002,0.027900000000000001,42.655999999999999,43.954999999999998,45.253999999999998,46.552999999999997,47.851999999999997,49.15,50.448999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,423,1,46.560400000000001,0.027900000000000001,42.662999999999997,43.962000000000003,45.261000000000003,46.56,47.859000000000002,49.158000000000001,50.457999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,424,1,46.568100000000001,0.027900000000000001,42.67,43.97,45.268999999999998,46.567999999999998,47.866999999999997,49.167000000000002,50.466000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,425,1,46.575800000000001,0.027910000000000001,42.676000000000002,43.975999999999999,45.276000000000003,46.576000000000001,47.875999999999998,49.176000000000002,50.475999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,426,1,46.583399999999997,0.027910000000000001,42.683,43.982999999999997,45.283000000000001,46.582999999999998,47.884,49.183999999999997,50.484000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,427,1,46.591000000000001,0.027910000000000001,42.69,43.99,45.290999999999997,46.591000000000001,47.890999999999998,49.192,50.491999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,428,1,46.598700000000001,0.027910000000000001,42.697000000000003,43.997999999999998,45.298000000000002,46.598999999999997,47.899000000000001,49.2,50.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,429,1,46.606200000000001,0.027910000000000001,42.704000000000001,44.005000000000003,45.305,46.606000000000002,47.906999999999996,49.207999999999998,50.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,430,1,46.613799999999998,0.027910000000000001,42.710999999999999,44.012,45.313000000000002,46.613999999999997,47.914999999999999,49.216000000000001,50.517000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,431,1,46.621299999999998,0.027910000000000001,42.718000000000004,44.018999999999998,45.32,46.621000000000002,47.923000000000002,49.223999999999997,50.524999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,432,1,46.628799999999998,0.027910000000000001,42.725000000000001,44.026000000000003,45.326999999999998,46.628999999999998,47.93,49.231999999999999,50.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,433,1,46.636299999999999,0.027910000000000001,42.731000000000002,44.033000000000001,45.335000000000001,46.636000000000003,47.938000000000002,49.24,50.540999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,434,1,46.643799999999999,0.027910000000000001,42.738,44.04,45.341999999999999,46.643999999999998,47.945999999999998,49.247,50.548999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,435,1,46.651200000000003,0.027910000000000001,42.744999999999997,44.046999999999997,45.348999999999997,46.651000000000003,47.953000000000003,49.255000000000003,50.557000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,436,1,46.6586,0.027910000000000001,42.752000000000002,44.054000000000002,45.356000000000002,46.658999999999999,47.960999999999999,49.262999999999998,50.564999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,437,1,46.665999999999997,0.027910000000000001,42.759,44.061,45.363999999999997,46.665999999999997,47.968000000000004,49.271000000000001,50.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,438,1,46.673400000000001,0.027910000000000001,42.765000000000001,44.067999999999998,45.371000000000002,46.673000000000002,47.975999999999999,49.279000000000003,50.581000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,439,1,46.680700000000002,0.027910000000000001,42.771999999999998,44.075000000000003,45.378,46.680999999999997,47.984000000000002,49.286000000000001,50.588999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,440,1,46.688000000000002,0.027910000000000001,42.779000000000003,44.082000000000001,45.384999999999998,46.688000000000002,47.991,49.293999999999997,50.597000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,441,1,46.695300000000003,0.027910000000000001,42.786000000000001,44.088999999999999,45.392000000000003,46.695,47.999000000000002,49.302,50.604999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,442,1,46.702599999999997,0.027910000000000001,42.792000000000002,44.095999999999997,45.399000000000001,46.703000000000003,48.006,49.31,50.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,443,1,46.709800000000001,0.02792,42.796999999999997,44.101999999999997,45.405999999999999,46.71,48.014000000000003,49.317999999999998,50.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,444,1,46.717100000000002,0.02792,42.804000000000002,44.107999999999997,45.412999999999997,46.716999999999999,48.021000000000001,49.326000000000001,50.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,445,1,46.724299999999999,0.02792,42.811,44.115000000000002,45.42,46.723999999999997,48.029000000000003,49.332999999999998,50.637999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,446,1,46.731400000000001,0.02792,42.817,44.122,45.427,46.731000000000002,48.036000000000001,49.341000000000001,50.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,447,1,46.738599999999998,0.02792,42.823999999999998,44.128999999999998,45.433999999999997,46.738999999999997,48.043999999999997,49.347999999999999,50.652999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,448,1,46.745699999999999,0.02792,42.83,44.134999999999998,45.441000000000003,46.746000000000002,48.051000000000002,49.356000000000002,50.661000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,449,1,46.752899999999997,0.02792,42.837000000000003,44.142000000000003,45.448,46.753,48.058,49.363999999999997,50.668999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,450,1,46.76,0.02792,42.843000000000004,44.149000000000001,45.454000000000001,46.76,48.066000000000003,49.371000000000002,50.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,451,1,46.767000000000003,0.02792,42.85,44.155999999999999,45.460999999999999,46.767000000000003,48.073,49.378,50.683999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,452,1,46.774099999999997,0.02792,42.856000000000002,44.161999999999999,45.468000000000004,46.774000000000001,48.08,49.386000000000003,50.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,453,1,46.781100000000002,0.02792,42.863,44.168999999999997,45.475000000000001,46.780999999999999,48.087000000000003,49.393000000000001,50.698999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,454,1,46.7881,0.02792,42.869,44.174999999999997,45.481999999999999,46.787999999999997,48.094000000000001,49.401000000000003,50.707000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,455,1,46.795099999999998,0.02792,42.875999999999998,44.182000000000002,45.488999999999997,46.795000000000002,48.101999999999997,49.408000000000001,50.715000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,456,1,46.802100000000003,0.02792,42.881999999999998,44.189,45.494999999999997,46.802,48.109000000000002,49.415999999999997,50.722000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,457,1,46.808999999999997,0.02792,42.887999999999998,44.195,45.502000000000002,46.808999999999997,48.116,49.423000000000002,50.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,458,1,46.816000000000003,0.02792,42.895000000000003,44.201999999999998,45.509,46.816000000000003,48.122999999999998,49.43,50.737000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,459,1,46.822899999999997,0.02793,42.9,44.207000000000001,45.515000000000001,46.823,48.131,49.438000000000002,50.746000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,460,1,46.829799999999999,0.02793,42.905999999999999,44.213999999999999,45.521999999999998,46.83,48.137999999999998,49.445999999999998,50.753999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,461,1,46.836599999999997,0.02793,42.911999999999999,44.22,45.527999999999999,46.837000000000003,48.145000000000003,49.453000000000003,50.761000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,462,1,46.843499999999999,0.02793,42.917999999999999,44.226999999999997,45.534999999999997,46.844000000000001,48.152000000000001,49.46,50.768999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,463,1,46.850299999999997,0.02793,42.924999999999997,44.232999999999997,45.542000000000002,46.85,48.158999999999999,49.466999999999999,50.776000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,464,1,46.857100000000003,0.02793,42.930999999999997,44.24,45.548000000000002,46.856999999999999,48.165999999999997,49.475000000000001,50.783000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,465,1,46.863900000000001,0.02793,42.936999999999998,44.246000000000002,45.555,46.863999999999997,48.173000000000002,49.481999999999999,50.790999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,466,1,46.870699999999999,0.02793,42.942999999999998,44.253,45.561999999999998,46.871000000000002,48.18,49.488999999999997,50.798000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,467,1,46.877499999999998,0.02793,42.95,44.259,45.567999999999998,46.878,48.186999999999998,49.496000000000002,50.805 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,468,1,46.8842,0.02793,42.956000000000003,44.265000000000001,45.575000000000003,46.884,48.194000000000003,49.503,50.813000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,469,1,46.890900000000002,0.02793,42.962000000000003,44.271999999999998,45.581000000000003,46.890999999999998,48.201000000000001,49.51,50.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,470,1,46.897599999999997,0.02793,42.968000000000004,44.277999999999999,45.588000000000001,46.898000000000003,48.207000000000001,49.517000000000003,50.826999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,471,1,46.904299999999999,0.02793,42.973999999999997,44.283999999999999,45.594000000000001,46.904000000000003,48.213999999999999,49.524000000000001,50.834000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,472,1,46.911000000000001,0.02793,42.98,44.290999999999997,45.600999999999999,46.911000000000001,48.220999999999997,49.530999999999999,50.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,473,1,46.9176,0.02794,42.984999999999999,44.295999999999999,45.606999999999999,46.917999999999999,48.228000000000002,49.539000000000001,50.85 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,474,1,46.924199999999999,0.02794,42.991,44.302,45.613,46.923999999999999,48.234999999999999,49.545999999999999,50.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,475,1,46.930799999999998,0.02794,42.997,44.308,45.62,46.930999999999997,48.241999999999997,49.552999999999997,50.865000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,476,1,46.937399999999997,0.02794,43.003,44.314999999999998,45.625999999999998,46.936999999999998,48.249000000000002,49.56,50.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,477,1,46.944000000000003,0.02794,43.009,44.320999999999998,45.631999999999998,46.944000000000003,48.256,49.567,50.878999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,478,1,46.950499999999998,0.02794,43.015000000000001,44.326999999999998,45.639000000000003,46.95,48.262,49.573999999999998,50.886000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,479,1,46.957099999999997,0.02794,43.021000000000001,44.332999999999998,45.645000000000003,46.957000000000001,48.268999999999998,49.581000000000003,50.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,480,1,46.9636,0.02794,43.027000000000001,44.338999999999999,45.651000000000003,46.963999999999999,48.276000000000003,49.588000000000001,50.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,481,1,46.970100000000002,0.02794,43.033000000000001,44.344999999999999,45.658000000000001,46.97,48.281999999999996,49.594999999999999,50.906999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,482,1,46.976599999999998,0.02794,43.039000000000001,44.351999999999997,45.664000000000001,46.976999999999997,48.289000000000001,49.601999999999997,50.914000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,483,1,46.9831,0.02794,43.045000000000002,44.357999999999997,45.67,46.982999999999997,48.295999999999999,49.609000000000002,50.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,484,1,46.9895,0.02794,43.051000000000002,44.363999999999997,45.677,46.99,48.302,49.615000000000002,50.927999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,485,1,46.996000000000002,0.02794,43.057000000000002,44.37,45.683,46.996000000000002,48.308999999999997,49.622,50.935000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,486,1,47.002400000000002,0.027949999999999999,43.061,44.375,45.689,47.002000000000002,48.316000000000003,49.63,50.944000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,487,1,47.008800000000001,0.027949999999999999,43.067,44.381,45.695,47.009,48.323,49.637,50.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,488,1,47.0152,0.027949999999999999,43.073,44.387,45.701000000000001,47.015000000000001,48.329000000000001,49.643000000000001,50.957000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,489,1,47.021500000000003,0.027949999999999999,43.079000000000001,44.393000000000001,45.707000000000001,47.021999999999998,48.335999999999999,49.65,50.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,490,1,47.027900000000002,0.027949999999999999,43.085000000000001,44.399000000000001,45.713000000000001,47.027999999999999,48.341999999999999,49.656999999999996,50.970999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,491,1,47.034199999999998,0.027949999999999999,43.09,44.405000000000001,45.72,47.033999999999999,48.348999999999997,49.662999999999997,50.978000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,492,1,47.040500000000002,0.027949999999999999,43.095999999999997,44.411000000000001,45.725999999999999,47.04,48.354999999999997,49.67,50.984999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,493,1,47.046799999999998,0.027949999999999999,43.101999999999997,44.417000000000002,45.731999999999999,47.046999999999997,48.362000000000002,49.677,50.991999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,494,1,47.053100000000001,0.027949999999999999,43.107999999999997,44.423000000000002,45.738,47.052999999999997,48.368000000000002,49.683,50.999000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,495,1,47.059399999999997,0.027949999999999999,43.113,44.429000000000002,45.744,47.058999999999997,48.375,49.69,51.005000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,496,1,47.0657,0.027949999999999999,43.119,44.435000000000002,45.75,47.066000000000003,48.381,49.697000000000003,51.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,497,1,47.071899999999999,0.027949999999999999,43.125,44.441000000000003,45.756,47.072000000000003,48.387999999999998,49.703000000000003,51.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,498,1,47.078099999999999,0.027949999999999999,43.131,44.445999999999998,45.762,47.078000000000003,48.393999999999998,49.71,51.026000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,499,1,47.084299999999999,0.027959999999999999,43.134999999999998,44.451000000000001,45.768000000000001,47.084000000000003,48.401000000000003,49.716999999999999,51.033999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,500,1,47.090499999999999,0.027959999999999999,43.140999999999998,44.457000000000001,45.774000000000001,47.09,48.406999999999996,49.723999999999997,51.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,501,1,47.096699999999998,0.027959999999999999,43.146000000000001,44.463000000000001,45.78,47.097000000000001,48.414000000000001,49.73,51.046999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,502,1,47.102899999999998,0.027959999999999999,43.152000000000001,44.469000000000001,45.786000000000001,47.103000000000002,48.42,49.737000000000002,51.054000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,503,1,47.109000000000002,0.027959999999999999,43.156999999999996,44.475000000000001,45.792000000000002,47.109000000000002,48.426000000000002,49.743000000000002,51.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,504,1,47.115200000000002,0.027959999999999999,43.162999999999997,44.481000000000002,45.798000000000002,47.115000000000002,48.433,49.75,51.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,505,1,47.121299999999998,0.027959999999999999,43.168999999999997,44.485999999999997,45.804000000000002,47.121000000000002,48.439,49.756,51.073999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,506,1,47.127400000000002,0.027959999999999999,43.173999999999999,44.491999999999997,45.81,47.127000000000002,48.445,49.762999999999998,51.08 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,507,1,47.133499999999998,0.027959999999999999,43.18,44.497999999999998,45.816000000000003,47.134,48.451000000000001,49.768999999999998,51.087000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,508,1,47.139600000000002,0.027959999999999999,43.186,44.503999999999998,45.822000000000003,47.14,48.457999999999998,49.776000000000003,51.094000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,509,1,47.145600000000002,0.027959999999999999,43.191000000000003,44.509,45.826999999999998,47.146000000000001,48.463999999999999,49.781999999999996,51.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,510,1,47.151699999999998,0.027959999999999999,43.197000000000003,44.515000000000001,45.832999999999998,47.152000000000001,48.47,49.787999999999997,51.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,511,1,47.157699999999998,0.027969999999999998,43.201000000000001,44.52,45.838999999999999,47.158000000000001,48.476999999999997,49.795999999999999,51.115000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,512,1,47.163699999999999,0.027969999999999998,43.206000000000003,44.524999999999999,45.844999999999999,47.164000000000001,48.482999999999997,49.802,51.121000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,513,1,47.169699999999999,0.027969999999999998,43.212000000000003,44.530999999999999,45.85,47.17,48.488999999999997,49.808,51.128 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,514,1,47.175699999999999,0.027969999999999998,43.216999999999999,44.536999999999999,45.856000000000002,47.176000000000002,48.494999999999997,49.814999999999998,51.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,515,1,47.181699999999999,0.027969999999999998,43.222999999999999,44.542000000000002,45.862000000000002,47.182000000000002,48.500999999999998,49.820999999999998,51.140999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,516,1,47.1877,0.027969999999999998,43.228000000000002,44.548000000000002,45.868000000000002,47.188000000000002,48.508000000000003,49.826999999999998,51.146999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,517,1,47.193600000000004,0.027969999999999998,43.234000000000002,44.554000000000002,45.874000000000002,47.194000000000003,48.514000000000003,49.834000000000003,51.154000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,518,1,47.1995,0.027969999999999998,43.238999999999997,44.558999999999997,45.878999999999998,47.2,48.52,49.84,51.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,519,1,47.205500000000001,0.027969999999999998,43.244,44.564999999999998,45.884999999999998,47.206000000000003,48.526000000000003,49.845999999999997,51.167000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,520,1,47.211399999999998,0.027969999999999998,43.25,44.57,45.890999999999998,47.210999999999999,48.531999999999996,49.851999999999997,51.173000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,521,1,47.217300000000002,0.027969999999999998,43.255000000000003,44.576000000000001,45.896999999999998,47.216999999999999,48.537999999999997,49.859000000000002,51.179000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,522,1,47.223199999999999,0.027969999999999998,43.261000000000003,44.582000000000001,45.902000000000001,47.222999999999999,48.543999999999997,49.865000000000002,51.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,523,1,47.228999999999999,0.027980000000000001,43.265000000000001,44.585999999999999,45.908000000000001,47.228999999999999,48.55,49.872,51.192999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,524,1,47.234900000000003,0.027980000000000001,43.27,44.591999999999999,45.912999999999997,47.234999999999999,48.557000000000002,49.878,51.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,525,1,47.240699999999997,0.027980000000000001,43.274999999999999,44.597000000000001,45.918999999999997,47.241,48.561999999999998,49.884,51.206000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,526,1,47.246600000000001,0.027980000000000001,43.280999999999999,44.603000000000002,45.924999999999997,47.247,48.569000000000003,49.890999999999998,51.212000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,527,1,47.252400000000002,0.027980000000000001,43.286000000000001,44.607999999999997,45.93,47.252000000000002,48.575000000000003,49.896999999999998,51.219000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,528,1,47.258200000000002,0.027980000000000001,43.290999999999997,44.613999999999997,45.936,47.258000000000003,48.58,49.902999999999999,51.225000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,529,1,47.264000000000003,0.027980000000000001,43.296999999999997,44.619,45.942,47.264000000000003,48.585999999999999,49.908999999999999,51.231000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,530,1,47.269799999999996,0.027980000000000001,43.302,44.625,45.947000000000003,47.27,48.591999999999999,49.914999999999999,51.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,531,1,47.275500000000001,0.027980000000000001,43.307000000000002,44.63,45.953000000000003,47.276000000000003,48.597999999999999,49.920999999999999,51.244 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,532,1,47.281300000000002,0.027980000000000001,43.313000000000002,44.634999999999998,45.957999999999998,47.280999999999999,48.603999999999999,49.927,51.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,533,1,47.286999999999999,0.027980000000000001,43.317999999999998,44.640999999999998,45.963999999999999,47.286999999999999,48.61,49.933,51.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,534,1,47.2928,0.027990000000000001,43.322000000000003,44.645000000000003,45.969000000000001,47.292999999999999,48.616999999999997,49.94,51.264000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,535,1,47.298499999999997,0.027990000000000001,43.326999999999998,44.651000000000003,45.975000000000001,47.298000000000002,48.622,49.945999999999998,51.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,536,1,47.304200000000002,0.027990000000000001,43.332000000000001,44.655999999999999,45.98,47.304000000000002,48.628,49.951999999999998,51.276000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,537,1,47.309899999999999,0.027990000000000001,43.337000000000003,44.661000000000001,45.985999999999997,47.31,48.634,49.957999999999998,51.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,538,1,47.315600000000003,0.027990000000000001,43.343000000000004,44.667000000000002,45.991,47.316000000000003,48.64,49.963999999999999,51.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,539,1,47.321300000000001,0.027990000000000001,43.347999999999999,44.671999999999997,45.997,47.320999999999998,48.646000000000001,49.97,51.295000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,540,1,47.326900000000002,0.027990000000000001,43.353000000000002,44.677999999999997,46.002000000000002,47.326999999999998,48.652000000000001,49.975999999999999,51.301000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,541,1,47.332599999999999,0.027990000000000001,43.357999999999997,44.683,46.008000000000003,47.332999999999998,48.656999999999996,49.981999999999999,51.307000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,542,1,47.338200000000001,0.027990000000000001,43.363,44.688000000000002,46.012999999999998,47.338000000000001,48.662999999999997,49.988,51.313000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,543,1,47.343800000000002,0.027990000000000001,43.368000000000002,44.692999999999998,46.018999999999998,47.344000000000001,48.668999999999997,49.994,51.319000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,544,1,47.349400000000003,0.028000000000000001,43.372,44.698,46.024000000000001,47.348999999999997,48.674999999999997,50.000999999999998,51.326999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,545,1,47.3551,0.028000000000000001,43.377000000000002,44.703000000000003,46.029000000000003,47.354999999999997,48.680999999999997,50.006999999999998,51.332999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,546,1,47.360599999999998,0.028000000000000001,43.381999999999998,44.707999999999998,46.034999999999997,47.360999999999997,48.686999999999998,50.012999999999998,51.338999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,547,1,47.366199999999999,0.028000000000000001,43.387,44.713999999999999,46.04,47.366,48.692,50.018999999999998,51.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,548,1,47.3718,0.028000000000000001,43.393000000000001,44.719000000000001,46.045000000000002,47.372,48.698,50.024999999999999,51.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,549,1,47.377400000000002,0.028000000000000001,43.398000000000003,44.723999999999997,46.051000000000002,47.377000000000002,48.704000000000001,50.030999999999999,51.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,550,1,47.382899999999999,0.028000000000000001,43.402999999999999,44.728999999999999,46.055999999999997,47.383000000000003,48.71,50.036000000000001,51.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,551,1,47.388399999999997,0.028000000000000001,43.408000000000001,44.734999999999999,46.061999999999998,47.387999999999998,48.715000000000003,50.042000000000002,51.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,552,1,47.393999999999998,0.028000000000000001,43.412999999999997,44.74,46.067,47.393999999999998,48.720999999999997,50.048000000000002,51.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,553,1,47.399500000000003,0.028000000000000001,43.417999999999999,44.744999999999997,46.072000000000003,47.4,48.726999999999997,50.054000000000002,51.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,554,1,47.405000000000001,0.028000000000000001,43.423000000000002,44.75,46.078000000000003,47.405000000000001,48.731999999999999,50.06,51.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,555,1,47.410499999999999,0.02801,43.427,44.755000000000003,46.082999999999998,47.41,48.738,50.066000000000003,51.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,556,1,47.415999999999997,0.02801,43.432000000000002,44.76,46.088000000000001,47.415999999999997,48.744,50.072000000000003,51.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,557,1,47.421500000000002,0.02801,43.436999999999998,44.765000000000001,46.093000000000004,47.421999999999997,48.75,50.078000000000003,51.405999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,558,1,47.426900000000003,0.02801,43.442,44.77,46.097999999999999,47.427,48.755000000000003,50.084000000000003,51.411999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,559,1,47.432400000000001,0.02801,43.447000000000003,44.774999999999999,46.103999999999999,47.432000000000002,48.761000000000003,50.09,51.417999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,560,1,47.437800000000003,0.02801,43.451999999999998,44.78,46.109000000000002,47.438000000000002,48.767000000000003,50.094999999999999,51.423999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,561,1,47.443199999999997,0.02801,43.457000000000001,44.784999999999997,46.113999999999997,47.442999999999998,48.771999999999998,50.100999999999999,51.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,562,1,47.448700000000002,0.02801,43.462000000000003,44.790999999999997,46.12,47.448999999999998,48.777999999999999,50.106999999999999,51.436 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,563,1,47.454099999999997,0.02801,43.466999999999999,44.795999999999999,46.125,47.454000000000001,48.783000000000001,50.112000000000002,51.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,564,1,47.459499999999998,0.02801,43.470999999999997,44.801000000000002,46.13,47.46,48.789000000000001,50.118000000000002,51.448 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,565,1,47.4649,0.02802,43.475000000000001,44.805,46.134999999999998,47.465000000000003,48.795000000000002,50.125,51.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,566,1,47.470300000000002,0.02802,43.48,44.81,46.14,47.47,48.8,50.131,51.460999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,567,1,47.4756,0.02802,43.484999999999999,44.814999999999998,46.145000000000003,47.475999999999999,48.805999999999997,50.136000000000003,51.466000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,568,1,47.481000000000002,0.02802,43.49,44.82,46.151000000000003,47.481000000000002,48.811,50.142000000000003,51.472000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,569,1,47.4863,0.02802,43.494999999999997,44.825000000000003,46.155999999999999,47.485999999999997,48.817,50.146999999999998,51.478000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,570,1,47.491700000000002,0.02802,43.5,44.83,46.161000000000001,47.491999999999997,48.822000000000003,50.152999999999999,51.484000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,571,1,47.497,0.02802,43.503999999999998,44.835000000000001,46.165999999999997,47.497,48.828000000000003,50.158999999999999,51.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,572,1,47.502299999999998,0.02802,43.509,44.84,46.170999999999999,47.502000000000002,48.832999999999998,50.164000000000001,51.494999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,573,1,47.5077,0.02802,43.514000000000003,44.844999999999999,46.177,47.508000000000003,48.838999999999999,50.17,51.500999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,574,1,47.512999999999998,0.02802,43.518999999999998,44.85,46.182000000000002,47.512999999999998,48.844000000000001,50.176000000000002,51.506999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,575,1,47.518300000000004,0.028029999999999999,43.521999999999998,44.853999999999999,46.186,47.518000000000001,48.85,50.182000000000002,51.514000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,576,1,47.523600000000002,0.028029999999999999,43.527000000000001,44.859000000000002,46.192,47.524000000000001,48.856000000000002,50.188000000000002,51.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,577,1,47.528799999999997,0.028029999999999999,43.531999999999996,44.863999999999997,46.197000000000003,47.529000000000003,48.860999999999997,50.192999999999998,51.524999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,578,1,47.534100000000002,0.028029999999999999,43.536999999999999,44.869,46.201999999999998,47.533999999999999,48.866,50.198999999999998,51.530999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,579,1,47.539400000000001,0.028029999999999999,43.542000000000002,44.874000000000002,46.207000000000001,47.539000000000001,48.872,50.204000000000001,51.536999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,580,1,47.544600000000003,0.028029999999999999,43.546999999999997,44.878999999999998,46.212000000000003,47.545000000000002,48.877000000000002,50.21,51.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,581,1,47.549799999999998,0.028029999999999999,43.551000000000002,44.884,46.216999999999999,47.55,48.883000000000003,50.215000000000003,51.548000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,582,1,47.555100000000003,0.028029999999999999,43.555999999999997,44.889000000000003,46.222000000000001,47.555,48.887999999999998,50.220999999999997,51.554000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,583,1,47.560299999999998,0.028029999999999999,43.561,44.893999999999998,46.226999999999997,47.56,48.893000000000001,50.226999999999997,51.56 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,584,1,47.5655,0.028039999999999999,43.564,44.898000000000003,46.231999999999999,47.566000000000003,48.899000000000001,50.232999999999997,51.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,585,1,47.570700000000002,0.028039999999999999,43.569000000000003,44.902999999999999,46.237000000000002,47.570999999999998,48.905000000000001,50.238,51.572000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,586,1,47.575899999999997,0.028039999999999999,43.573999999999998,44.908000000000001,46.241999999999997,47.576000000000001,48.91,50.244,51.578000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,587,1,47.581099999999999,0.028039999999999999,43.579000000000001,44.912999999999997,46.247,47.581000000000003,48.914999999999999,50.249000000000002,51.584000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,588,1,47.586300000000001,0.028039999999999999,43.582999999999998,44.917999999999999,46.252000000000002,47.585999999999999,48.920999999999999,50.255000000000003,51.588999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,589,1,47.591500000000003,0.028039999999999999,43.588000000000001,44.923000000000002,46.256999999999998,47.591999999999999,48.926000000000002,50.26,51.594999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,590,1,47.596600000000002,0.028039999999999999,43.593000000000004,44.927,46.262,47.597000000000001,48.930999999999997,50.265999999999998,51.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,591,1,47.601799999999997,0.028039999999999999,43.597999999999999,44.932000000000002,46.267000000000003,47.601999999999997,48.936999999999998,50.271000000000001,51.606000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,592,1,47.606900000000003,0.028039999999999999,43.601999999999997,44.936999999999998,46.271999999999998,47.606999999999999,48.942,50.277000000000001,51.612000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,593,1,47.612000000000002,0.028049999999999999,43.604999999999997,44.941000000000003,46.276000000000003,47.612000000000002,48.948,50.283000000000001,51.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,594,1,47.617199999999997,0.028049999999999999,43.61,44.945999999999998,46.281999999999996,47.616999999999997,48.953000000000003,50.289000000000001,51.624000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,595,1,47.622300000000003,0.028049999999999999,43.615000000000002,44.951000000000001,46.286000000000001,47.622,48.957999999999998,50.293999999999997,51.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,596,1,47.627400000000002,0.028049999999999999,43.62,44.956000000000003,46.290999999999997,47.627000000000002,48.963000000000001,50.298999999999999,51.634999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,597,1,47.6325,0.028049999999999999,43.624000000000002,44.96,46.295999999999999,47.631999999999998,48.969000000000001,50.305,51.640999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,598,1,47.637599999999999,0.028049999999999999,43.628999999999998,44.965000000000003,46.301000000000002,47.637999999999998,48.973999999999997,50.31,51.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,599,1,47.642699999999998,0.028049999999999999,43.634,44.97,46.305999999999997,47.643000000000001,48.978999999999999,50.314999999999998,51.652000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,600,1,47.647799999999997,0.028049999999999999,43.637999999999998,44.975000000000001,46.311,47.648000000000003,48.984000000000002,50.320999999999998,51.656999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,601,1,47.652799999999999,0.028049999999999999,43.643000000000001,44.978999999999999,46.316000000000003,47.652999999999999,48.988999999999997,50.326000000000001,51.662999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,602,1,47.657899999999998,0.028049999999999999,43.646999999999998,44.984000000000002,46.320999999999998,47.658000000000001,48.994999999999997,50.332000000000001,51.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,603,1,47.662999999999997,0.028060000000000002,43.651000000000003,44.988,46.326000000000001,47.662999999999997,49,50.338000000000001,51.674999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,604,1,47.667999999999999,0.028060000000000002,43.655000000000001,44.993000000000002,46.33,47.667999999999999,49.006,50.343000000000004,51.680999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,605,1,47.673000000000002,0.028060000000000002,43.66,44.997999999999998,46.335000000000001,47.673000000000002,49.011000000000003,50.347999999999999,51.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,606,1,47.678100000000001,0.028060000000000002,43.664999999999999,45.002000000000002,46.34,47.677999999999997,49.015999999999998,50.353999999999999,51.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,607,1,47.683100000000003,0.028060000000000002,43.668999999999997,45.006999999999998,46.344999999999999,47.683,49.021000000000001,50.359000000000002,51.697000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,608,1,47.688099999999999,0.028060000000000002,43.673999999999999,45.012,46.35,47.688000000000002,49.026000000000003,50.363999999999997,51.701999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,609,1,47.693100000000001,0.028060000000000002,43.677999999999997,45.017000000000003,46.354999999999997,47.692999999999998,49.030999999999999,50.37,51.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,610,1,47.698099999999997,0.028060000000000002,43.683,45.021000000000001,46.36,47.698,49.036999999999999,50.375,51.713000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,611,1,47.703099999999999,0.028060000000000002,43.686999999999998,45.026000000000003,46.365000000000002,47.703000000000003,49.042000000000002,50.38,51.719000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,612,1,47.708100000000002,0.028070000000000001,43.691000000000003,45.03,46.369,47.707999999999998,49.046999999999997,50.386000000000003,51.725999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,613,1,47.713099999999997,0.028070000000000001,43.695,45.033999999999999,46.374000000000002,47.713000000000001,49.052,50.392000000000003,51.731000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,614,1,47.718000000000004,0.028070000000000001,43.7,45.039000000000001,46.378999999999998,47.718000000000004,49.057000000000002,50.396999999999998,51.735999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,615,1,47.722999999999999,0.028070000000000001,43.704000000000001,45.043999999999997,46.383000000000003,47.722999999999999,49.063000000000002,50.402000000000001,51.741999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,616,1,47.728000000000002,0.028070000000000001,43.709000000000003,45.048999999999999,46.387999999999998,47.728000000000002,49.067999999999998,50.406999999999996,51.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,617,1,47.732900000000001,0.028070000000000001,43.713000000000001,45.052999999999997,46.393000000000001,47.732999999999997,49.073,50.412999999999997,51.752000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,618,1,47.7378,0.028070000000000001,43.718000000000004,45.058,46.398000000000003,47.738,49.078000000000003,50.417999999999999,51.758000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,619,1,47.742800000000003,0.028070000000000001,43.722000000000001,45.063000000000002,46.402999999999999,47.743000000000002,49.082999999999998,50.423000000000002,51.762999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,620,1,47.747700000000002,0.028080000000000001,43.725000000000001,45.066000000000003,46.406999999999996,47.747999999999998,49.088000000000001,50.429000000000002,51.77 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,621,1,47.752600000000001,0.028080000000000001,43.73,45.070999999999998,46.411999999999999,47.753,49.093000000000004,50.433999999999997,51.774999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,622,1,47.7575,0.028080000000000001,43.734000000000002,45.075000000000003,46.415999999999997,47.758000000000003,49.098999999999997,50.44,51.780999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,623,1,47.7624,0.028080000000000001,43.738999999999997,45.08,46.420999999999999,47.762,49.103999999999999,50.445,51.786000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,624,1,47.767299999999999,0.028080000000000001,43.743000000000002,45.085000000000001,46.426000000000002,47.767000000000003,49.109000000000002,50.45,51.790999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,625,1,47.772199999999998,0.028080000000000001,43.747999999999998,45.088999999999999,46.430999999999997,47.771999999999998,49.113999999999997,50.454999999999998,51.796999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,626,1,47.777099999999997,0.028080000000000001,43.752000000000002,45.094000000000001,46.436,47.777000000000001,49.119,50.46,51.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,627,1,47.781999999999996,0.028080000000000001,43.756999999999998,45.098999999999997,46.44,47.781999999999996,49.124000000000002,50.465000000000003,51.807000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,628,1,47.786799999999999,0.028080000000000001,43.761000000000003,45.103000000000002,46.445,47.786999999999999,49.128999999999998,50.470999999999997,51.811999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,629,1,47.791699999999999,0.02809,43.764000000000003,45.106999999999999,46.448999999999998,47.792000000000002,49.134,50.476999999999997,51.819000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,630,1,47.796500000000002,0.02809,43.768999999999998,45.110999999999997,46.454000000000001,47.795999999999999,49.139000000000003,50.481999999999999,51.823999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,631,1,47.801400000000001,0.02809,43.773000000000003,45.116,46.459000000000003,47.801000000000002,49.143999999999998,50.487000000000002,51.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,632,1,47.806199999999997,0.02809,43.777999999999999,45.12,46.463000000000001,47.805999999999997,49.149000000000001,50.491999999999997,51.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,633,1,47.811,0.02809,43.781999999999996,45.125,46.468000000000004,47.811,49.154000000000003,50.497,51.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,634,1,47.815899999999999,0.02809,43.786000000000001,45.13,46.472999999999999,47.816000000000003,49.158999999999999,50.502000000000002,51.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,635,1,47.820700000000002,0.02809,43.790999999999997,45.134,46.476999999999997,47.820999999999998,49.164000000000001,50.506999999999998,51.850999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,636,1,47.825499999999998,0.02809,43.795000000000002,45.139000000000003,46.481999999999999,47.826000000000001,49.168999999999997,50.512,51.856000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,637,1,47.830300000000001,0.0281,43.798000000000002,45.142000000000003,46.485999999999997,47.83,49.173999999999999,50.518000000000001,51.862000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,638,1,47.835099999999997,0.0281,43.802999999999997,45.146999999999998,46.491,47.835000000000001,49.179000000000002,50.523000000000003,51.868000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,639,1,47.8399,0.0281,43.807000000000002,45.151000000000003,46.496000000000002,47.84,49.183999999999997,50.529000000000003,51.872999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,640,1,47.8446,0.0281,43.811,45.155999999999999,46.5,47.844999999999999,49.189,50.533000000000001,51.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,641,1,47.849400000000003,0.0281,43.816000000000003,45.16,46.505000000000003,47.848999999999997,49.194000000000003,50.539000000000001,51.883000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,642,1,47.854199999999999,0.0281,43.82,45.164999999999999,46.509,47.853999999999999,49.198999999999998,50.543999999999997,51.887999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,643,1,47.859000000000002,0.0281,43.823999999999998,45.168999999999997,46.514000000000003,47.859000000000002,49.204000000000001,50.548999999999999,51.893999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,644,1,47.863700000000001,0.0281,43.829000000000001,45.173999999999999,46.518999999999998,47.863999999999997,49.209000000000003,50.554000000000002,51.899000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,645,1,47.868499999999997,0.0281,43.832999999999998,45.177999999999997,46.523000000000003,47.868000000000002,49.213999999999999,50.558999999999997,51.904000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,646,1,47.873199999999997,0.02811,43.835999999999999,45.182000000000002,46.527000000000001,47.872999999999998,49.219000000000001,50.564999999999998,51.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,647,1,47.877899999999997,0.02811,43.84,45.186,46.531999999999996,47.878,49.223999999999997,50.57,51.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,648,1,47.8827,0.02811,43.844999999999999,45.191000000000003,46.536999999999999,47.883000000000003,49.228999999999999,50.575000000000003,51.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,649,1,47.8874,0.02811,43.848999999999997,45.195,46.540999999999997,47.887,49.234000000000002,50.58,51.926000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,650,1,47.892099999999999,0.02811,43.853000000000002,45.2,46.545999999999999,47.892000000000003,49.238,50.585000000000001,51.930999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,651,1,47.896799999999999,0.02811,43.857999999999997,45.204000000000001,46.55,47.896999999999998,49.243000000000002,50.59,51.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,652,1,47.901499999999999,0.02811,43.862000000000002,45.207999999999998,46.555,47.902000000000001,49.247999999999998,50.594999999999999,51.941000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,653,1,47.906199999999998,0.02811,43.866,45.213000000000001,46.56,47.905999999999999,49.253,50.598999999999997,51.945999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,654,1,47.910899999999998,0.028119999999999999,43.869,45.216000000000001,46.564,47.911000000000001,49.258000000000003,50.604999999999997,51.953000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,655,1,47.915599999999998,0.028119999999999999,43.872999999999998,45.220999999999997,46.567999999999998,47.915999999999997,49.262999999999998,50.61,51.957999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,656,1,47.920200000000001,0.028119999999999999,43.878,45.225000000000001,46.573,47.92,49.268000000000001,50.615000000000002,51.963000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,657,1,47.924900000000001,0.028119999999999999,43.881999999999998,45.23,46.576999999999998,47.924999999999997,49.273000000000003,50.62,51.968000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,658,1,47.929600000000001,0.028119999999999999,43.886000000000003,45.234000000000002,46.582000000000001,47.93,49.277000000000001,50.625,51.972999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,659,1,47.934199999999997,0.028119999999999999,43.89,45.238,46.585999999999999,47.933999999999997,49.281999999999996,50.63,51.978000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,660,1,47.938899999999997,0.028119999999999999,43.895000000000003,45.243000000000002,46.591000000000001,47.939,49.286999999999999,50.634999999999998,51.982999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,661,1,47.9435,0.028119999999999999,43.899000000000001,45.247,46.594999999999999,47.944000000000003,49.292000000000002,50.64,51.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,662,1,47.9482,0.028129999999999999,43.902000000000001,45.250999999999998,46.598999999999997,47.948,49.296999999999997,50.646000000000001,51.994999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,663,1,47.952800000000003,0.028129999999999999,43.905999999999999,45.255000000000003,46.603999999999999,47.953000000000003,49.302,50.651000000000003,52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,664,1,47.9574,0.028129999999999999,43.91,45.259,46.607999999999997,47.957000000000001,49.305999999999997,50.655000000000001,52.005000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,665,1,47.962000000000003,0.028129999999999999,43.914000000000001,45.264000000000003,46.613,47.962000000000003,49.311,50.66,52.01 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,666,1,47.9666,0.028129999999999999,43.918999999999997,45.268000000000001,46.616999999999997,47.966999999999999,49.316000000000003,50.664999999999999,52.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,667,1,47.971299999999999,0.028129999999999999,43.923000000000002,45.271999999999998,46.622,47.970999999999997,49.320999999999998,50.67,52.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,668,1,47.975900000000003,0.028129999999999999,43.927,45.277000000000001,46.625999999999998,47.975999999999999,49.325000000000003,50.674999999999997,52.024999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,669,1,47.980400000000003,0.028129999999999999,43.930999999999997,45.280999999999999,46.631,47.98,49.33,50.68,52.029000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,670,1,47.984999999999999,0.028139999999999998,43.933999999999997,45.283999999999999,46.634999999999998,47.984999999999999,49.335000000000001,50.686,52.036000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,671,1,47.989600000000003,0.028139999999999998,43.938000000000002,45.289000000000001,46.639000000000003,47.99,49.34,50.69,52.040999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,672,1,47.994199999999999,0.028139999999999998,43.942999999999998,45.292999999999999,46.643999999999998,47.994,49.344999999999999,50.695,52.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,673,1,47.998800000000003,0.028139999999999998,43.947000000000003,45.296999999999997,46.648000000000003,47.999000000000002,49.348999999999997,50.7,52.051000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,674,1,48.003300000000003,0.028139999999999998,43.951000000000001,45.302,46.652000000000001,48.003,49.353999999999999,50.704999999999998,52.055999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,675,1,48.007899999999999,0.028139999999999998,43.954999999999998,45.305999999999997,46.656999999999996,48.008000000000003,49.359000000000002,50.71,52.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,676,1,48.0124,0.028139999999999998,43.959000000000003,45.31,46.661000000000001,48.012,49.363,50.715000000000003,52.066000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,677,1,48.017000000000003,0.028139999999999998,43.963000000000001,45.314999999999998,46.665999999999997,48.017000000000003,49.368000000000002,50.719000000000001,52.070999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,678,1,48.021500000000003,0.028150000000000001,43.966000000000001,45.317999999999998,46.67,48.021999999999998,49.372999999999998,50.725000000000001,52.076999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,679,1,48.026000000000003,0.028150000000000001,43.97,45.322000000000003,46.673999999999999,48.026000000000003,49.378,50.73,52.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,680,1,48.0306,0.028150000000000001,43.973999999999997,45.326000000000001,46.679000000000002,48.030999999999999,49.383000000000003,50.734999999999999,52.087000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,681,1,48.0351,0.028150000000000001,43.978999999999999,45.331000000000003,46.683,48.034999999999997,49.387,50.738999999999997,52.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,682,1,48.0396,0.028150000000000001,43.982999999999997,45.335000000000001,46.686999999999998,48.04,49.392000000000003,50.744,52.097000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,683,1,48.0441,0.028150000000000001,43.987000000000002,45.338999999999999,46.692,48.043999999999997,49.396999999999998,50.749000000000002,52.100999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,684,1,48.0486,0.028150000000000001,43.991,45.343000000000004,46.695999999999998,48.048999999999999,49.401000000000003,50.753999999999998,52.106000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,685,1,48.053100000000001,0.028150000000000001,43.994999999999997,45.347999999999999,46.7,48.052999999999997,49.405999999999999,50.758000000000003,52.110999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,686,1,48.057600000000001,0.028160000000000001,43.997999999999998,45.350999999999999,46.704000000000001,48.058,49.411000000000001,50.764000000000003,52.118000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,687,1,48.062100000000001,0.028160000000000001,44.002000000000002,45.354999999999997,46.709000000000003,48.061999999999998,49.415999999999997,50.768999999999998,52.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,688,1,48.066600000000001,0.028160000000000001,44.006,45.359000000000002,46.713000000000001,48.067,49.42,50.774000000000001,52.127000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,689,1,48.070999999999998,0.028160000000000001,44.01,45.363999999999997,46.716999999999999,48.070999999999998,49.424999999999997,50.777999999999999,52.131999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,690,1,48.075499999999998,0.028160000000000001,44.014000000000003,45.368000000000002,46.722000000000001,48.076000000000001,49.429000000000002,50.783000000000001,52.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,691,1,48.08,0.028160000000000001,44.018000000000001,45.372,46.725999999999999,48.08,49.433999999999997,50.787999999999997,52.142000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,692,1,48.084400000000002,0.028160000000000001,44.021999999999998,45.375999999999998,46.73,48.084000000000003,49.438000000000002,50.792999999999999,52.146999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,693,1,48.088900000000002,0.028160000000000001,44.026000000000003,45.381,46.734999999999999,48.088999999999999,49.442999999999998,50.796999999999997,52.151000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,694,1,48.093299999999999,0.028170000000000001,44.029000000000003,45.384,46.738999999999997,48.093000000000004,49.448,50.802999999999997,52.158000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,695,1,48.097700000000003,0.028170000000000001,44.033000000000001,45.387999999999998,46.743000000000002,48.097999999999999,49.453000000000003,50.808,52.161999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,696,1,48.102200000000003,0.028170000000000001,44.036999999999999,45.392000000000003,46.747,48.101999999999997,49.457000000000001,50.811999999999998,52.167000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,697,1,48.1066,0.028170000000000001,44.040999999999997,45.396000000000001,46.750999999999998,48.106999999999999,49.462000000000003,50.817,52.171999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,698,1,48.110999999999997,0.028170000000000001,44.045000000000002,45.4,46.756,48.110999999999997,49.466000000000001,50.822000000000003,52.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,699,1,48.115400000000001,0.028170000000000001,44.048999999999999,45.405000000000001,46.76,48.115000000000002,49.470999999999997,50.826000000000001,52.182000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,700,1,48.119799999999998,0.028170000000000001,44.052999999999997,45.408999999999999,46.764000000000003,48.12,49.475000000000001,50.831000000000003,52.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,701,1,48.124200000000002,0.028170000000000001,44.057000000000002,45.412999999999997,46.768999999999998,48.124000000000002,49.48,50.835999999999999,52.191000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,702,1,48.128599999999999,0.02818,44.06,45.415999999999997,46.771999999999998,48.128999999999998,49.484999999999999,50.841000000000001,52.197000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,703,1,48.133000000000003,0.02818,44.064,45.42,46.777000000000001,48.133000000000003,49.488999999999997,50.845999999999997,52.201999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,704,1,48.1374,0.02818,44.067999999999998,45.423999999999999,46.780999999999999,48.137,49.494,50.85,52.207000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,705,1,48.141800000000003,0.02818,44.072000000000003,45.429000000000002,46.784999999999997,48.142000000000003,49.497999999999998,50.854999999999997,52.212000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,706,1,48.1462,0.02818,44.076000000000001,45.433,46.789000000000001,48.146000000000001,49.503,50.86,52.216000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,707,1,48.150500000000001,0.02818,44.08,45.436999999999998,46.793999999999997,48.15,49.506999999999998,50.863999999999997,52.220999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,708,1,48.154899999999998,0.02818,44.084000000000003,45.441000000000003,46.798000000000002,48.155000000000001,49.512,50.869,52.225999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,709,1,48.159199999999998,0.02819,44.085999999999999,45.444000000000003,46.802,48.158999999999999,49.517000000000003,50.874000000000002,52.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,710,1,48.163600000000002,0.02819,44.09,45.448,46.805999999999997,48.164000000000001,49.521000000000001,50.878999999999998,52.237000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,711,1,48.167900000000003,0.02819,44.094000000000001,45.451999999999998,46.81,48.167999999999999,49.526000000000003,50.884,52.241 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,712,1,48.1723,0.02819,44.097999999999999,45.456000000000003,46.814,48.171999999999997,49.53,50.887999999999998,52.246000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,713,1,48.176600000000001,0.02819,44.101999999999997,45.46,46.819000000000003,48.177,49.534999999999997,50.893000000000001,52.250999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,714,1,48.180900000000001,0.02819,44.106000000000002,45.463999999999999,46.823,48.180999999999997,49.539000000000001,50.896999999999998,52.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,715,1,48.185299999999998,0.02819,44.11,45.469000000000001,46.826999999999998,48.185000000000002,49.543999999999997,50.902000000000001,52.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,716,1,48.189599999999999,0.02819,44.113999999999997,45.472999999999999,46.831000000000003,48.19,49.548000000000002,50.906999999999996,52.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,717,1,48.193899999999999,0.028199999999999999,44.116999999999997,45.475999999999999,46.835000000000001,48.194000000000003,49.552999999999997,50.911999999999999,52.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,718,1,48.1982,0.028199999999999999,44.121000000000002,45.48,46.838999999999999,48.198,49.557000000000002,50.917000000000002,52.276000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,719,1,48.202500000000001,0.028199999999999999,44.125,45.484000000000002,46.843000000000004,48.201999999999998,49.561999999999998,50.920999999999999,52.28 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,720,1,48.206800000000001,0.028199999999999999,44.128999999999998,45.488,46.847000000000001,48.207000000000001,49.566000000000003,50.926000000000002,52.284999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,721,1,48.211100000000002,0.028199999999999999,44.131999999999998,45.491999999999997,46.851999999999997,48.210999999999999,49.570999999999998,50.93,52.29 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,722,1,48.215299999999999,0.028199999999999999,44.136000000000003,45.496000000000002,46.856000000000002,48.215000000000003,49.575000000000003,50.935000000000002,52.293999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,723,1,48.2196,0.028199999999999999,44.14,45.5,46.86,48.22,49.579000000000001,50.939,52.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,724,1,48.2239,0.028199999999999999,44.143999999999998,45.503999999999998,46.863999999999997,48.223999999999997,49.584000000000003,50.944000000000003,52.304000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,725,1,48.228200000000001,0.028209999999999999,44.146999999999998,45.506999999999998,46.868000000000002,48.228000000000002,49.588999999999999,50.948999999999998,52.31 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,726,1,48.232399999999998,0.028209999999999999,44.15,45.511000000000003,46.872,48.231999999999999,49.593000000000004,50.954000000000001,52.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,727,1,48.236699999999999,0.028209999999999999,44.154000000000003,45.515000000000001,46.875999999999998,48.237000000000002,49.597000000000001,50.957999999999998,52.319000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,728,1,48.240900000000003,0.028209999999999999,44.158000000000001,45.518999999999998,46.88,48.241,49.601999999999997,50.963000000000001,52.323999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,729,1,48.245199999999997,0.028209999999999999,44.161999999999999,45.523000000000003,46.884,48.244999999999997,49.606000000000002,50.966999999999999,52.328000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,730,1,48.249400000000001,0.028209999999999999,44.165999999999997,45.527000000000001,46.887999999999998,48.249000000000002,49.610999999999997,50.972000000000001,52.332999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,731,1,48.253599999999999,0.028209999999999999,44.17,45.530999999999999,46.892000000000003,48.253999999999998,49.615000000000002,50.975999999999999,52.337000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,732,1,48.257899999999999,0.028219999999999999,44.171999999999997,45.533999999999999,46.896000000000001,48.258000000000003,49.62,50.981999999999999,52.343000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,733,1,48.262099999999997,0.028219999999999999,44.176000000000002,45.537999999999997,46.9,48.262,49.624000000000002,50.985999999999997,52.347999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,734,1,48.266300000000001,0.028219999999999999,44.18,45.542000000000002,46.904000000000003,48.265999999999998,49.628,50.99,52.353000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,735,1,48.270499999999998,0.028219999999999999,44.183999999999997,45.545999999999999,46.908000000000001,48.27,49.633000000000003,50.994999999999997,52.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,736,1,48.274700000000003,0.028219999999999999,44.188000000000002,45.55,46.911999999999999,48.274999999999999,49.637,50.999000000000002,52.362000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,737,1,48.2789,0.028219999999999999,44.192,45.554000000000002,46.915999999999997,48.279000000000003,49.640999999999998,51.003999999999998,52.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,738,1,48.283099999999997,0.028219999999999999,44.195,45.558,46.920999999999999,48.283000000000001,49.646000000000001,51.008000000000003,52.371000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,739,1,48.287300000000002,0.028230000000000002,44.198,45.561,46.923999999999999,48.286999999999999,49.65,51.014000000000003,52.377000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,740,1,48.291499999999999,0.028230000000000002,44.201999999999998,45.564999999999998,46.927999999999997,48.292000000000002,49.655000000000001,51.018000000000001,52.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,741,1,48.2956,0.028230000000000002,44.204999999999998,45.569000000000003,46.932000000000002,48.295999999999999,49.658999999999999,51.021999999999998,52.386000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,742,1,48.299799999999998,0.028230000000000002,44.209000000000003,45.573,46.936,48.3,49.662999999999997,51.027000000000001,52.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,743,1,48.304000000000002,0.028230000000000002,44.213000000000001,45.576999999999998,46.94,48.304000000000002,49.667999999999999,51.030999999999999,52.395000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,744,1,48.308100000000003,0.028230000000000002,44.216999999999999,45.581000000000003,46.944000000000003,48.308,49.671999999999997,51.036000000000001,52.399000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,745,1,48.3123,0.028230000000000002,44.220999999999997,45.585000000000001,46.948,48.311999999999998,49.676000000000002,51.04,52.404000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,746,1,48.316400000000002,0.028230000000000002,44.223999999999997,45.588000000000001,46.951999999999998,48.316000000000003,49.68,51.043999999999997,52.408000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,747,1,48.320599999999999,0.028240000000000001,44.226999999999997,45.591000000000001,46.956000000000003,48.320999999999998,49.685000000000002,51.05,52.414000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,748,1,48.3247,0.028240000000000001,44.231000000000002,45.594999999999999,46.96,48.325000000000003,49.689,51.054000000000002,52.418999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,749,1,48.328800000000001,0.028240000000000001,44.234000000000002,45.598999999999997,46.963999999999999,48.329000000000001,49.694000000000003,51.058,52.423000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,750,1,48.332999999999998,0.028240000000000001,44.238,45.603000000000002,46.968000000000004,48.332999999999998,49.698,51.063000000000002,52.427999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,751,1,48.3371,0.028240000000000001,44.241999999999997,45.606999999999999,46.972000000000001,48.337000000000003,49.701999999999998,51.067,52.432000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,752,1,48.341200000000001,0.028240000000000001,44.246000000000002,45.610999999999997,46.975999999999999,48.341000000000001,49.706000000000003,51.072000000000003,52.436999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,753,1,48.345300000000002,0.028240000000000001,44.249000000000002,45.615000000000002,46.98,48.344999999999999,49.710999999999999,51.076000000000001,52.441000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,754,1,48.349400000000003,0.028250000000000001,44.252000000000002,45.618000000000002,46.984000000000002,48.348999999999997,49.715000000000003,51.081000000000003,52.447000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,755,1,48.353499999999997,0.028250000000000001,44.256,45.622,46.988,48.353999999999999,49.719000000000001,51.085000000000001,52.451000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,756,1,48.357599999999998,0.028250000000000001,44.259,45.625,46.991,48.357999999999997,49.723999999999997,51.09,52.456000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,757,1,48.361699999999999,0.028250000000000001,44.262999999999998,45.628999999999998,46.994999999999997,48.362000000000002,49.728000000000002,51.094000000000001,52.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,758,1,48.3658,0.028250000000000001,44.267000000000003,45.633000000000003,46.999000000000002,48.366,49.731999999999999,51.097999999999999,52.465000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,759,1,48.369900000000001,0.028250000000000001,44.271000000000001,45.637,47.003,48.37,49.735999999999997,51.103000000000002,52.469000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,760,1,48.373899999999999,0.028250000000000001,44.274000000000001,45.640999999999998,47.006999999999998,48.374000000000002,49.74,51.106999999999999,52.473999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,761,1,48.378,0.028250000000000001,44.277999999999999,45.645000000000003,47.011000000000003,48.378,49.744999999999997,51.110999999999997,52.478000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,762,1,48.382100000000001,0.02826,44.28,45.648000000000003,47.015000000000001,48.381999999999998,49.749000000000002,51.116999999999997,52.484000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,763,1,48.386099999999999,0.02826,44.283999999999999,45.651000000000003,47.018999999999998,48.386000000000003,49.753,51.121000000000002,52.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,764,1,48.3902,0.02826,44.287999999999997,45.655000000000001,47.023000000000003,48.39,49.758000000000003,51.125,52.493000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,765,1,48.394199999999998,0.02826,44.290999999999997,45.658999999999999,47.027000000000001,48.393999999999998,49.762,51.128999999999998,52.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,766,1,48.398200000000003,0.02826,44.295000000000002,45.662999999999997,47.03,48.398000000000003,49.765999999999998,51.134,52.500999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,767,1,48.402299999999997,0.02826,44.298999999999999,45.667000000000002,47.033999999999999,48.402000000000001,49.77,51.137999999999998,52.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,768,1,48.406300000000002,0.02826,44.302,45.67,47.037999999999997,48.405999999999999,49.774000000000001,51.142000000000003,52.51 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,769,1,48.410299999999999,0.02827,44.305,45.673000000000002,47.042000000000002,48.41,49.779000000000003,51.146999999999998,52.515999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,770,1,48.414299999999997,0.02827,44.308,45.677,47.045999999999999,48.414000000000001,49.783000000000001,51.152000000000001,52.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,771,1,48.418399999999998,0.02827,44.311999999999998,45.680999999999997,47.05,48.417999999999999,49.786999999999999,51.155999999999999,52.524999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,772,1,48.422400000000003,0.02827,44.316000000000003,45.685000000000002,47.052999999999997,48.421999999999997,49.790999999999997,51.16,52.529000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,773,1,48.426400000000001,0.02827,44.319000000000003,45.688000000000002,47.057000000000002,48.426000000000002,49.795000000000002,51.164000000000001,52.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,774,1,48.430399999999999,0.02827,44.323,45.692,47.061,48.43,49.8,51.168999999999997,52.537999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,775,1,48.4343,0.02827,44.326999999999998,45.695999999999998,47.064999999999998,48.433999999999997,49.804000000000002,51.173000000000002,52.542000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,776,1,48.438299999999998,0.02828,44.329000000000001,45.698999999999998,47.067999999999998,48.438000000000002,49.808,51.177999999999997,52.548000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,777,1,48.442300000000003,0.02828,44.332000000000001,45.701999999999998,47.072000000000003,48.442,49.811999999999998,51.182000000000002,52.552 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,778,1,48.446300000000001,0.02828,44.335999999999999,45.706000000000003,47.076000000000001,48.445999999999998,49.816000000000003,51.186,52.555999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,779,1,48.450200000000002,0.02828,44.34,45.71,47.08,48.45,49.82,51.191000000000003,52.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,780,1,48.4542,0.02828,44.343000000000004,45.713999999999999,47.084000000000003,48.454000000000001,49.823999999999998,51.195,52.564999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,781,1,48.458199999999998,0.02828,44.347000000000001,45.716999999999999,47.088000000000001,48.457999999999998,49.829000000000001,51.198999999999998,52.569000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,782,1,48.4621,0.02828,44.350999999999999,45.720999999999997,47.091999999999999,48.462000000000003,49.832999999999998,51.203000000000003,52.573999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,783,1,48.466099999999997,0.028289999999999999,44.353000000000002,45.723999999999997,47.094999999999999,48.466000000000001,49.837000000000003,51.207999999999998,52.579000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,784,1,48.47,0.028289999999999999,44.356000000000002,45.728000000000002,47.098999999999997,48.47,49.841000000000001,51.212000000000003,52.584000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,785,1,48.4739,0.028289999999999999,44.36,45.731000000000002,47.103000000000002,48.473999999999997,49.844999999999999,51.216999999999999,52.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,786,1,48.477899999999998,0.028289999999999999,44.363999999999997,45.734999999999999,47.106000000000002,48.478000000000002,49.848999999999997,51.220999999999997,52.591999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,787,1,48.4818,0.028289999999999999,44.366999999999997,45.738999999999997,47.11,48.481999999999999,49.853000000000002,51.225000000000001,52.595999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,788,1,48.485700000000001,0.028289999999999999,44.371000000000002,45.741999999999997,47.113999999999997,48.485999999999997,49.856999999999999,51.228999999999999,52.600999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,789,1,48.489600000000003,0.028289999999999999,44.374000000000002,45.746000000000002,47.118000000000002,48.49,49.860999999999997,51.232999999999997,52.604999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,790,1,48.493499999999997,0.028289999999999999,44.378,45.75,47.122,48.494,49.865000000000002,51.237000000000002,52.609000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,791,1,48.497399999999999,0.028299999999999999,44.38,45.752000000000002,47.125,48.497,49.87,51.241999999999997,52.615000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,792,1,48.501300000000001,0.028299999999999999,44.384,45.756,47.128999999999998,48.500999999999998,49.874000000000002,51.246000000000002,52.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,793,1,48.505200000000002,0.028299999999999999,44.387,45.76,47.133000000000003,48.505000000000003,49.878,51.250999999999998,52.622999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,794,1,48.509099999999997,0.028299999999999999,44.390999999999998,45.762999999999998,47.136000000000003,48.509,49.881999999999998,51.255000000000003,52.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,795,1,48.512999999999998,0.028299999999999999,44.393999999999998,45.767000000000003,47.14,48.512999999999998,49.886000000000003,51.259,52.631999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,796,1,48.5169,0.028299999999999999,44.398000000000003,45.771000000000001,47.143999999999998,48.517000000000003,49.89,51.262999999999998,52.636000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,797,1,48.520699999999998,0.028299999999999999,44.401000000000003,45.774000000000001,47.148000000000003,48.521000000000001,49.893999999999998,51.267000000000003,52.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,798,1,48.5246,0.028309999999999998,44.402999999999999,45.777000000000001,47.151000000000003,48.524999999999999,49.898000000000003,51.271999999999998,52.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,799,1,48.528500000000001,0.028309999999999998,44.406999999999996,45.780999999999999,47.155000000000001,48.527999999999999,49.902000000000001,51.276000000000003,52.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,800,1,48.532299999999999,0.028309999999999998,44.41,45.783999999999999,47.158000000000001,48.531999999999996,49.905999999999999,51.28,52.654000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,801,1,48.536200000000001,0.028309999999999998,44.414000000000001,45.787999999999997,47.161999999999999,48.536000000000001,49.91,51.283999999999999,52.658000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,802,1,48.54,0.028309999999999998,44.417000000000002,45.792000000000002,47.165999999999997,48.54,49.914000000000001,51.287999999999997,52.662999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,803,1,48.543799999999997,0.028309999999999998,44.420999999999999,45.795000000000002,47.17,48.543999999999997,49.917999999999999,51.292000000000002,52.667000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,804,1,48.547699999999999,0.028309999999999998,44.424999999999997,45.798999999999999,47.173000000000002,48.548000000000002,49.921999999999997,51.295999999999999,52.670999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,805,1,48.551499999999997,0.028320000000000001,44.427,45.802,47.177,48.552,49.926000000000002,51.301000000000002,52.676000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,806,1,48.555300000000003,0.028320000000000001,44.43,45.805,47.18,48.555,49.93,51.305,52.680999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,807,1,48.559100000000001,0.028320000000000001,44.433999999999997,45.808999999999997,47.183999999999997,48.558999999999997,49.933999999999997,51.308999999999997,52.685000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,808,1,48.563000000000002,0.028320000000000001,44.436999999999998,45.811999999999998,47.188000000000002,48.563000000000002,49.938000000000002,51.314,52.689 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,809,1,48.566800000000001,0.028320000000000001,44.441000000000003,45.816000000000003,47.191000000000003,48.567,49.942,51.317999999999998,52.692999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,810,1,48.570599999999999,0.028320000000000001,44.444000000000003,45.82,47.195,48.570999999999998,49.945999999999998,51.322000000000003,52.697000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,811,1,48.574399999999997,0.028320000000000001,44.448,45.823,47.198999999999998,48.573999999999998,49.95,51.326000000000001,52.701000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,812,1,48.578200000000002,0.028330000000000001,44.45,45.826000000000001,47.201999999999998,48.578000000000003,49.954000000000001,51.331000000000003,52.707000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,813,1,48.581899999999997,0.028330000000000001,44.453000000000003,45.829000000000001,47.206000000000003,48.582000000000001,49.957999999999998,51.335000000000001,52.710999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,814,1,48.585700000000003,0.028330000000000001,44.456000000000003,45.832999999999998,47.209000000000003,48.585999999999999,49.962000000000003,51.338999999999999,52.715000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,815,1,48.589500000000001,0.028330000000000001,44.46,45.835999999999999,47.213000000000001,48.59,49.966000000000001,51.343000000000004,52.719000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,816,1,48.593299999999999,0.028330000000000001,44.463000000000001,45.84,47.216999999999999,48.593000000000004,49.97,51.347000000000001,52.722999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,817,1,48.597000000000001,0.028330000000000001,44.466999999999999,45.843000000000004,47.22,48.597000000000001,49.973999999999997,51.350999999999999,52.726999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,818,1,48.6008,0.028330000000000001,44.47,45.847000000000001,47.223999999999997,48.600999999999999,49.978000000000002,51.354999999999997,52.731000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,819,1,48.604500000000002,0.028340000000000001,44.472000000000001,45.85,47.226999999999997,48.603999999999999,49.981999999999999,51.359000000000002,52.737000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,820,1,48.6083,0.028340000000000001,44.475999999999999,45.853000000000002,47.231000000000002,48.607999999999997,49.985999999999997,51.363,52.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,821,1,48.612000000000002,0.028340000000000001,44.478999999999999,45.856999999999999,47.234000000000002,48.612000000000002,49.99,51.366999999999997,52.744999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,822,1,48.6158,0.028340000000000001,44.481999999999999,45.86,47.238,48.616,49.994,51.371000000000002,52.749000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,823,1,48.619500000000002,0.028340000000000001,44.485999999999997,45.863999999999997,47.241999999999997,48.62,49.997,51.375,52.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,824,1,48.623199999999997,0.028340000000000001,44.488999999999997,45.866999999999997,47.244999999999997,48.622999999999998,50.000999999999998,51.378999999999998,52.756999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,825,1,48.627000000000002,0.028340000000000001,44.493000000000002,45.871000000000002,47.249000000000002,48.627000000000002,50.005000000000003,51.383000000000003,52.761000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,826,1,48.630699999999997,0.02835,44.494999999999997,45.872999999999998,47.252000000000002,48.631,50.009,51.387999999999998,52.767000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,827,1,48.634399999999999,0.02835,44.497999999999998,45.877000000000002,47.256,48.634,50.012999999999998,51.392000000000003,52.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,828,1,48.638100000000001,0.02835,44.500999999999998,45.88,47.259,48.637999999999998,50.017000000000003,51.396000000000001,52.774999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,829,1,48.641800000000003,0.02835,44.505000000000003,45.884,47.262999999999998,48.642000000000003,50.021000000000001,51.4,52.779000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,830,1,48.645499999999998,0.02835,44.508000000000003,45.887,47.265999999999998,48.646000000000001,50.024999999999999,51.404000000000003,52.783000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,831,1,48.6492,0.02835,44.512,45.890999999999998,47.27,48.649000000000001,50.027999999999999,51.408000000000001,52.786999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,832,1,48.652900000000002,0.02835,44.515000000000001,45.893999999999998,47.274000000000001,48.652999999999999,50.031999999999996,51.411999999999999,52.790999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,833,1,48.656599999999997,0.02835,44.518000000000001,45.898000000000003,47.277000000000001,48.656999999999996,50.036000000000001,51.414999999999999,52.795000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,834,1,48.660200000000003,0.02836,44.52,45.9,47.28,48.66,50.04,51.42,52.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,835,1,48.663899999999998,0.02836,44.524000000000001,45.904000000000003,47.283999999999999,48.664000000000001,50.043999999999997,51.423999999999999,52.804000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,836,1,48.6676,0.02836,44.527000000000001,45.906999999999996,47.286999999999999,48.667999999999999,50.048000000000002,51.427999999999997,52.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,837,1,48.671199999999999,0.02836,44.53,45.911000000000001,47.290999999999997,48.670999999999999,50.052,51.432000000000002,52.811999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,838,1,48.674900000000001,0.02836,44.533999999999999,45.914000000000001,47.293999999999997,48.674999999999997,50.055,51.436,52.816000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,839,1,48.6785,0.02836,44.536999999999999,45.917000000000002,47.298000000000002,48.677999999999997,50.058999999999997,51.44,52.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,840,1,48.682200000000002,0.02836,44.54,45.920999999999999,47.302,48.682000000000002,50.063000000000002,51.442999999999998,52.823999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,841,1,48.6858,0.028369999999999999,44.542000000000002,45.923000000000002,47.305,48.686,50.067,51.448,52.829000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,842,1,48.689500000000002,0.028369999999999999,44.545999999999999,45.927,47.308,48.69,50.070999999999998,51.451999999999998,52.832999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,843,1,48.693100000000001,0.028369999999999999,44.548999999999999,45.93,47.311999999999998,48.692999999999998,50.075000000000003,51.456000000000003,52.837000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,844,1,48.6967,0.028369999999999999,44.552,45.933999999999997,47.314999999999998,48.697000000000003,50.078000000000003,51.46,52.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,845,1,48.700299999999999,0.028369999999999999,44.555,45.936999999999998,47.319000000000003,48.7,50.082000000000001,51.463999999999999,52.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,846,1,48.703899999999997,0.028369999999999999,44.558999999999997,45.94,47.322000000000003,48.704000000000001,50.085999999999999,51.466999999999999,52.848999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,847,1,48.707599999999999,0.028369999999999999,44.561999999999998,45.944000000000003,47.326000000000001,48.707999999999998,50.088999999999999,51.470999999999997,52.853000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,848,1,48.711199999999998,0.028379999999999999,44.564,45.945999999999998,47.329000000000001,48.710999999999999,50.094000000000001,51.475999999999999,52.857999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,849,1,48.714799999999997,0.028379999999999999,44.567,45.95,47.332000000000001,48.715000000000003,50.097000000000001,51.48,52.862000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,850,1,48.718400000000003,0.028379999999999999,44.570999999999998,45.953000000000003,47.335999999999999,48.718000000000004,50.100999999999999,51.484000000000002,52.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,851,1,48.721899999999998,0.028379999999999999,44.573999999999998,45.956000000000003,47.338999999999999,48.722000000000001,50.104999999999997,51.487000000000002,52.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,852,1,48.725499999999997,0.028379999999999999,44.576999999999998,45.96,47.343000000000004,48.725999999999999,50.107999999999997,51.491,52.874000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,853,1,48.729100000000003,0.028379999999999999,44.58,45.963000000000001,47.345999999999997,48.728999999999999,50.112000000000002,51.494999999999997,52.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,854,1,48.732700000000001,0.028379999999999999,44.584000000000003,45.966999999999999,47.35,48.732999999999997,50.116,51.499000000000002,52.881999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,855,1,48.7363,0.028389999999999999,44.585000000000001,45.969000000000001,47.353000000000002,48.735999999999997,50.12,51.503999999999998,52.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,856,1,48.739800000000002,0.028389999999999999,44.588999999999999,45.972000000000001,47.356000000000002,48.74,50.124000000000002,51.506999999999998,52.890999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,857,1,48.743400000000001,0.028389999999999999,44.591999999999999,45.975999999999999,47.36,48.743000000000002,50.127000000000002,51.511000000000003,52.895000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,858,1,48.746899999999997,0.028389999999999999,44.594999999999999,45.978999999999999,47.363,48.747,50.131,51.515000000000001,52.899000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,859,1,48.750500000000002,0.028389999999999999,44.597999999999999,45.981999999999999,47.366,48.75,50.134999999999998,51.518999999999998,52.902999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,860,1,48.753999999999998,0.028389999999999999,44.601999999999997,45.985999999999997,47.37,48.753999999999998,50.137999999999998,51.521999999999998,52.905999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,861,1,48.757599999999996,0.028389999999999999,44.604999999999997,45.988999999999997,47.372999999999998,48.758000000000003,50.142000000000003,51.526000000000003,52.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,862,1,48.761099999999999,0.028400000000000002,44.606999999999999,45.991,47.375999999999998,48.761000000000003,50.146000000000001,51.530999999999999,52.915999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,863,1,48.764600000000002,0.028400000000000002,44.61,45.994999999999997,47.38,48.765000000000001,50.15,51.533999999999999,52.918999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,864,1,48.768099999999997,0.028400000000000002,44.613,45.997999999999998,47.383000000000003,48.768000000000001,50.152999999999999,51.537999999999997,52.923000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,865,1,48.771700000000003,0.028400000000000002,44.616,46.000999999999998,47.387,48.771999999999998,50.156999999999996,51.542000000000002,52.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,866,1,48.775199999999998,0.028400000000000002,44.62,46.005000000000003,47.39,48.774999999999999,50.16,51.545999999999999,52.930999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,867,1,48.778700000000001,0.028400000000000002,44.622999999999998,46.008000000000003,47.393000000000001,48.779000000000003,50.164000000000001,51.548999999999999,52.935000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,868,1,48.782200000000003,0.028400000000000002,44.625999999999998,46.011000000000003,47.396999999999998,48.781999999999996,50.167999999999999,51.552999999999997,52.938000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,869,1,48.785699999999999,0.028410000000000001,44.628,46.014000000000003,47.4,48.786000000000001,50.171999999999997,51.558,52.944000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,870,1,48.789200000000001,0.028410000000000001,44.631,46.017000000000003,47.402999999999999,48.789000000000001,50.174999999999997,51.561,52.948 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,871,1,48.792700000000004,0.028410000000000001,44.634,46.02,47.405999999999999,48.792999999999999,50.179000000000002,51.564999999999998,52.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,872,1,48.796199999999999,0.028410000000000001,44.637,46.024000000000001,47.41,48.795999999999999,50.183,51.569000000000003,52.954999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,873,1,48.799599999999998,0.028410000000000001,44.64,46.027000000000001,47.412999999999997,48.8,50.186,51.572000000000003,52.959000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,874,1,48.803100000000001,0.028410000000000001,44.643999999999998,46.03,47.417000000000002,48.802999999999997,50.19,51.576000000000001,52.963000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,875,1,48.806600000000003,0.028410000000000001,44.646999999999998,46.033000000000001,47.42,48.807000000000002,50.192999999999998,51.58,52.966000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,876,1,48.81,0.028420000000000001,44.648000000000003,46.036000000000001,47.423000000000002,48.81,50.197000000000003,51.584000000000003,52.972000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,877,1,48.813499999999998,0.028420000000000001,44.652000000000001,46.039000000000001,47.426000000000002,48.814,50.201000000000001,51.588000000000001,52.975000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,878,1,48.816899999999997,0.028420000000000001,44.655000000000001,46.042000000000002,47.43,48.817,50.204000000000001,51.591999999999999,52.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,879,1,48.820399999999999,0.028420000000000001,44.658000000000001,46.045000000000002,47.433,48.82,50.207999999999998,51.594999999999999,52.982999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,880,1,48.823799999999999,0.028420000000000001,44.661000000000001,46.048999999999999,47.436,48.823999999999998,50.210999999999999,51.598999999999997,52.987000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,881,1,48.827300000000001,0.028420000000000001,44.664000000000001,46.052,47.44,48.826999999999998,50.215000000000003,51.603000000000002,52.99 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,882,1,48.8307,0.028420000000000001,44.667000000000002,46.055,47.442999999999998,48.831000000000003,50.218000000000004,51.606000000000002,52.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,883,1,48.834099999999999,0.02843,44.668999999999997,46.057000000000002,47.445999999999998,48.834000000000003,50.222000000000001,51.610999999999997,52.999000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,884,1,48.837600000000002,0.02843,44.671999999999997,46.061,47.448999999999998,48.838000000000001,50.225999999999999,51.615000000000002,53.003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,885,1,48.841000000000001,0.02843,44.674999999999997,46.064,47.451999999999998,48.841000000000001,50.23,51.618000000000002,53.006999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,886,1,48.8444,0.02843,44.677999999999997,46.067,47.456000000000003,48.844000000000001,50.232999999999997,51.622,53.01 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,887,1,48.847799999999999,0.02843,44.682000000000002,46.07,47.459000000000003,48.847999999999999,50.237000000000002,51.625,53.014000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,888,1,48.851199999999999,0.02843,44.685000000000002,46.073999999999998,47.462000000000003,48.850999999999999,50.24,51.628999999999998,53.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,889,1,48.854599999999998,0.02843,44.688000000000002,46.076999999999998,47.466000000000001,48.854999999999997,50.244,51.631999999999998,53.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,890,1,48.857999999999997,0.02843,44.691000000000003,46.08,47.469000000000001,48.857999999999997,50.247,51.636000000000003,53.024999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,891,1,48.861400000000003,0.02844,44.692999999999998,46.082000000000001,47.472000000000001,48.860999999999997,50.250999999999998,51.640999999999998,53.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,892,1,48.864800000000002,0.02844,44.695999999999998,46.085000000000001,47.475000000000001,48.865000000000002,50.255000000000003,51.643999999999998,53.033999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,893,1,48.868099999999998,0.02844,44.698999999999998,46.088000000000001,47.478000000000002,48.868000000000002,50.258000000000003,51.648000000000003,53.037999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,894,1,48.871499999999997,0.02844,44.701999999999998,46.091999999999999,47.481999999999999,48.872,50.261000000000003,51.651000000000003,53.040999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,895,1,48.874899999999997,0.02844,44.704999999999998,46.094999999999999,47.484999999999999,48.875,50.265000000000001,51.655000000000001,53.045000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,896,1,48.878300000000003,0.02844,44.707999999999998,46.097999999999999,47.488,48.878,50.268000000000001,51.658000000000001,53.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,897,1,48.881599999999999,0.02844,44.710999999999999,46.100999999999999,47.491,48.881999999999998,50.271999999999998,51.661999999999999,53.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,898,1,48.884999999999998,0.02845,44.713000000000001,46.103000000000002,47.494,48.884999999999998,50.276000000000003,51.667000000000002,53.057000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,899,1,48.888300000000001,0.02845,44.716000000000001,46.106999999999999,47.497,48.887999999999998,50.279000000000003,51.67,53.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,900,1,48.8917,0.02845,44.719000000000001,46.11,47.500999999999998,48.892000000000003,50.283000000000001,51.673999999999999,53.064999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,901,1,48.895000000000003,0.02845,44.722000000000001,46.113,47.503999999999998,48.895000000000003,50.286000000000001,51.677,53.067999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,902,1,48.898299999999999,0.02845,44.725000000000001,46.116,47.506999999999998,48.898000000000003,50.289000000000001,51.680999999999997,53.072000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,903,1,48.901699999999998,0.02845,44.728000000000002,46.119,47.51,48.902000000000001,50.292999999999999,51.683999999999997,53.075000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,904,1,48.905000000000001,0.02845,44.731000000000002,46.122,47.514000000000003,48.905000000000001,50.295999999999999,51.688000000000002,53.079000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,905,1,48.908299999999997,0.028459999999999999,44.732999999999997,46.124000000000002,47.515999999999998,48.908000000000001,50.3,51.692,53.084000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,906,1,48.9116,0.028459999999999999,44.735999999999997,46.128,47.52,48.911999999999999,50.304000000000002,51.695999999999998,53.088000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,907,1,48.914900000000003,0.028459999999999999,44.738999999999997,46.131,47.523000000000003,48.914999999999999,50.307000000000002,51.698999999999998,53.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,908,1,48.918199999999999,0.028459999999999999,44.741999999999997,46.134,47.526000000000003,48.917999999999999,50.31,51.703000000000003,53.094999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,909,1,48.921500000000002,0.028459999999999999,44.744999999999997,46.137,47.529000000000003,48.921999999999997,50.314,51.706000000000003,53.097999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,910,1,48.924799999999998,0.028459999999999999,44.747999999999998,46.14,47.531999999999996,48.924999999999997,50.317,51.71,53.101999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,911,1,48.928100000000001,0.028459999999999999,44.750999999999998,46.143000000000001,47.536000000000001,48.927999999999997,50.320999999999998,51.713000000000001,53.106000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,912,1,48.931399999999996,0.028469999999999999,44.752000000000002,46.145000000000003,47.537999999999997,48.930999999999997,50.323999999999998,51.718000000000004,53.110999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,913,1,48.934699999999999,0.028469999999999999,44.755000000000003,46.148000000000003,47.542000000000002,48.935000000000002,50.328000000000003,51.720999999999997,53.113999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,914,1,48.938000000000002,0.028469999999999999,44.758000000000003,46.151000000000003,47.545000000000002,48.938000000000002,50.331000000000003,51.725000000000001,53.118000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,915,1,48.941299999999998,0.028469999999999999,44.761000000000003,46.155000000000001,47.548000000000002,48.941000000000003,50.335000000000001,51.728000000000002,53.121000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,916,1,48.944499999999998,0.028469999999999999,44.764000000000003,46.158000000000001,47.551000000000002,48.944000000000003,50.338000000000001,51.731000000000002,53.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,917,1,48.947800000000001,0.028469999999999999,44.767000000000003,46.161000000000001,47.554000000000002,48.948,50.341000000000001,51.734999999999999,53.128 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,918,1,48.951000000000001,0.028469999999999999,44.77,46.164000000000001,47.557000000000002,48.951000000000001,50.344999999999999,51.738,53.131999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,919,1,48.954300000000003,0.028479999999999998,44.771999999999998,46.165999999999997,47.56,48.954000000000001,50.348999999999997,51.743000000000002,53.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,920,1,48.957500000000003,0.028479999999999998,44.774999999999999,46.168999999999997,47.563000000000002,48.957999999999998,50.351999999999997,51.746000000000002,53.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,921,1,48.960799999999999,0.028479999999999998,44.777999999999999,46.171999999999997,47.566000000000003,48.960999999999999,50.354999999999997,51.75,53.143999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,922,1,48.963999999999999,0.028479999999999998,44.780999999999999,46.174999999999997,47.57,48.963999999999999,50.357999999999997,51.753,53.146999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,923,1,48.967300000000002,0.028479999999999998,44.783999999999999,46.177999999999997,47.573,48.966999999999999,50.362000000000002,51.756,53.151000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,924,1,48.970500000000001,0.028479999999999998,44.786000000000001,46.180999999999997,47.576000000000001,48.97,50.365000000000002,51.76,53.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,925,1,48.973700000000001,0.028479999999999998,44.789000000000001,46.183999999999997,47.579000000000001,48.973999999999997,50.368000000000002,51.762999999999998,53.158000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,926,1,48.976900000000001,0.028479999999999998,44.792000000000002,46.186999999999998,47.582000000000001,48.976999999999997,50.372,51.767000000000003,53.161000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,927,1,48.980200000000004,0.028490000000000001,44.793999999999997,46.189,47.585000000000001,48.98,50.375999999999998,51.771000000000001,53.167000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,928,1,48.983400000000003,0.028490000000000001,44.796999999999997,46.192,47.588000000000001,48.982999999999997,50.378999999999998,51.774000000000001,53.17 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,929,1,48.986600000000003,0.028490000000000001,44.8,46.195,47.591000000000001,48.987000000000002,50.381999999999998,51.777999999999999,53.173000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,930,1,48.989800000000002,0.028490000000000001,44.802999999999997,46.198,47.594000000000001,48.99,50.386000000000003,51.780999999999999,53.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,931,1,48.993000000000002,0.028490000000000001,44.805999999999997,46.201000000000001,47.597000000000001,48.993000000000002,50.389000000000003,51.784999999999997,53.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,932,1,48.996200000000002,0.028490000000000001,44.808,46.204000000000001,47.6,48.996000000000002,50.392000000000003,51.787999999999997,53.183999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,933,1,48.999299999999998,0.028490000000000001,44.811,46.207000000000001,47.603000000000002,48.999000000000002,50.395000000000003,51.790999999999997,53.186999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,934,1,49.002499999999998,0.028500000000000001,44.813000000000002,46.209000000000003,47.606000000000002,49.002000000000002,50.399000000000001,51.795999999999999,53.192 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,935,1,49.005699999999997,0.028500000000000001,44.816000000000003,46.212000000000003,47.609000000000002,49.006,50.402000000000001,51.798999999999999,53.195999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,936,1,49.008899999999997,0.028500000000000001,44.819000000000003,46.215000000000003,47.612000000000002,49.009,50.405999999999999,51.802,53.198999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,937,1,49.012099999999997,0.028500000000000001,44.822000000000003,46.218000000000004,47.615000000000002,49.012,50.408999999999999,51.805999999999997,53.203000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,938,1,49.0152,0.028500000000000001,44.823999999999998,46.220999999999997,47.618000000000002,49.015000000000001,50.411999999999999,51.808999999999997,53.206000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,939,1,49.0184,0.028500000000000001,44.826999999999998,46.223999999999997,47.621000000000002,49.018000000000001,50.414999999999999,51.811999999999998,53.209000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,940,1,49.021500000000003,0.028500000000000001,44.83,46.226999999999997,47.624000000000002,49.021999999999998,50.418999999999997,51.816000000000003,53.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,941,1,49.024700000000003,0.028510000000000001,44.832000000000001,46.228999999999999,47.627000000000002,49.024999999999999,50.421999999999997,51.82,53.218000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,942,1,49.027799999999999,0.028510000000000001,44.834000000000003,46.231999999999999,47.63,49.027999999999999,50.426000000000002,51.823,53.220999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,943,1,49.030999999999999,0.028510000000000001,44.837000000000003,46.234999999999999,47.633000000000003,49.030999999999999,50.429000000000002,51.826999999999998,53.225000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,944,1,49.034100000000002,0.028510000000000001,44.84,46.238,47.636000000000003,49.033999999999999,50.432000000000002,51.83,53.228000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,945,1,49.037199999999999,0.028510000000000001,44.843000000000004,46.241,47.639000000000003,49.036999999999999,50.435000000000002,51.832999999999998,53.231000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,946,1,49.040399999999998,0.028510000000000001,44.845999999999997,46.244,47.642000000000003,49.04,50.439,51.837000000000003,53.234999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,947,1,49.043500000000002,0.028510000000000001,44.848999999999997,46.247,47.645000000000003,49.043999999999997,50.442,51.84,53.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,948,1,49.046599999999998,0.02852,44.85,46.249000000000002,47.648000000000003,49.046999999999997,50.445,51.844000000000001,53.243000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,949,1,49.049700000000001,0.02852,44.853000000000002,46.252000000000002,47.651000000000003,49.05,50.448999999999998,51.847000000000001,53.246000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,950,1,49.052799999999998,0.02852,44.856000000000002,46.255000000000003,47.654000000000003,49.052999999999997,50.451999999999998,51.850999999999999,53.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,951,1,49.055900000000001,0.02852,44.859000000000002,46.258000000000003,47.656999999999996,49.055999999999997,50.454999999999998,51.853999999999999,53.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,952,1,49.058999999999997,0.02852,44.862000000000002,46.261000000000003,47.66,49.058999999999997,50.457999999999998,51.856999999999999,53.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,953,1,49.062100000000001,0.02852,44.863999999999997,46.264000000000003,47.662999999999997,49.061999999999998,50.460999999999999,51.860999999999997,53.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,954,1,49.065199999999997,0.02852,44.866999999999997,46.267000000000003,47.665999999999997,49.064999999999998,50.465000000000003,51.863999999999997,53.262999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,955,1,49.068300000000001,0.02852,44.87,46.268999999999998,47.668999999999997,49.067999999999998,50.468000000000004,51.866999999999997,53.267000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,956,1,49.071399999999997,0.02853,44.871000000000002,46.271000000000001,47.670999999999999,49.070999999999998,50.470999999999997,51.871000000000002,53.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,957,1,49.074399999999997,0.02853,44.874000000000002,46.274000000000001,47.673999999999999,49.073999999999998,50.473999999999997,51.875,53.274999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,958,1,49.077500000000001,0.02853,44.877000000000002,46.277000000000001,47.677,49.078000000000003,50.478000000000002,51.878,53.277999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,959,1,49.080599999999997,0.02853,44.88,46.28,47.68,49.081000000000003,50.481000000000002,51.881,53.280999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,960,1,49.083599999999997,0.02853,44.883000000000003,46.283000000000001,47.683,49.084000000000003,50.484000000000002,51.884,53.284999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,961,1,49.0867,0.02853,44.884999999999998,46.286000000000001,47.686,49.087000000000003,50.487000000000002,51.887999999999998,53.287999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,962,1,49.089799999999997,0.02853,44.887999999999998,46.289000000000001,47.689,49.09,50.49,51.890999999999998,53.290999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,963,1,49.092799999999997,0.028539999999999999,44.889000000000003,46.290999999999997,47.692,49.093000000000004,50.494,51.895000000000003,53.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,964,1,49.095799999999997,0.028539999999999999,44.892000000000003,46.292999999999999,47.695,49.095999999999997,50.497,51.898000000000003,53.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,965,1,49.0989,0.028539999999999999,44.895000000000003,46.295999999999999,47.698,49.098999999999997,50.5,51.901000000000003,53.302999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,966,1,49.101900000000001,0.028539999999999999,44.898000000000003,46.298999999999999,47.701000000000001,49.101999999999997,50.503,51.905000000000001,53.305999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,967,1,49.104900000000001,0.028539999999999999,44.901000000000003,46.302,47.703000000000003,49.104999999999997,50.506,51.908000000000001,53.308999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,968,1,49.107999999999997,0.028539999999999999,44.902999999999999,46.305,47.706000000000003,49.107999999999997,50.51,51.911000000000001,53.313000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,969,1,49.110999999999997,0.028539999999999999,44.905999999999999,46.308,47.709000000000003,49.110999999999997,50.512999999999998,51.914000000000001,53.316000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,970,1,49.113999999999997,0.028539999999999999,44.908999999999999,46.311,47.712000000000003,49.113999999999997,50.515999999999998,51.917000000000002,53.319000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,971,1,49.116999999999997,0.028549999999999999,44.91,46.311999999999998,47.715000000000003,49.116999999999997,50.518999999999998,51.921999999999997,53.323999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,972,1,49.12,0.028549999999999999,44.912999999999997,46.314999999999998,47.718000000000004,49.12,50.521999999999998,51.924999999999997,53.326999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,973,1,49.122999999999998,0.028549999999999999,44.915999999999997,46.317999999999998,47.720999999999997,49.122999999999998,50.524999999999999,51.927999999999997,53.33 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,974,1,49.125999999999998,0.028549999999999999,44.917999999999999,46.320999999999998,47.722999999999999,49.125999999999998,50.529000000000003,51.930999999999997,53.334000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,975,1,49.128999999999998,0.028549999999999999,44.920999999999999,46.323999999999998,47.725999999999999,49.128999999999998,50.531999999999996,51.933999999999997,53.337000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,976,1,49.131999999999998,0.028549999999999999,44.923999999999999,46.326999999999998,47.728999999999999,49.131999999999998,50.534999999999997,51.936999999999998,53.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,977,1,49.134999999999998,0.028549999999999999,44.927,46.329000000000001,47.731999999999999,49.134999999999998,50.537999999999997,51.941000000000003,53.343000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,978,1,49.137999999999998,0.028559999999999999,44.927999999999997,46.331000000000003,47.734999999999999,49.137999999999998,50.540999999999997,51.945,53.347999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,979,1,49.140999999999998,0.028559999999999999,44.930999999999997,46.334000000000003,47.738,49.140999999999998,50.543999999999997,51.948,53.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,980,1,49.143900000000002,0.028559999999999999,44.933,46.337000000000003,47.74,49.143999999999998,50.546999999999997,51.951000000000001,53.354999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,981,1,49.146900000000002,0.028559999999999999,44.936,46.34,47.743000000000002,49.146999999999998,50.551000000000002,51.954000000000001,53.357999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,982,1,49.149900000000002,0.028559999999999999,44.939,46.341999999999999,47.746000000000002,49.15,50.554000000000002,51.957000000000001,53.360999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,983,1,49.152799999999999,0.028559999999999999,44.941000000000003,46.344999999999999,47.749000000000002,49.152999999999999,50.557000000000002,51.96,53.363999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,984,1,49.155799999999999,0.028559999999999999,44.944000000000003,46.347999999999999,47.752000000000002,49.155999999999999,50.56,51.963999999999999,53.366999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,985,1,49.158799999999999,0.028570000000000002,44.945,46.35,47.753999999999998,49.158999999999999,50.563000000000002,51.968000000000004,53.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,986,1,49.161700000000003,0.028570000000000002,44.948,46.353000000000002,47.756999999999998,49.161999999999999,50.566000000000003,51.970999999999997,53.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,987,1,49.1646,0.028570000000000002,44.951000000000001,46.354999999999997,47.76,49.164999999999999,50.569000000000003,51.973999999999997,53.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,988,1,49.1676,0.028570000000000002,44.953000000000003,46.357999999999997,47.762999999999998,49.167999999999999,50.572000000000003,51.976999999999997,53.381999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,989,1,49.170499999999997,0.028570000000000002,44.956000000000003,46.360999999999997,47.765999999999998,49.17,50.575000000000003,51.98,53.384999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,990,1,49.173499999999997,0.028570000000000002,44.959000000000003,46.363999999999997,47.768999999999998,49.173999999999999,50.578000000000003,51.982999999999997,53.387999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,991,1,49.176400000000001,0.028570000000000002,44.960999999999999,46.366,47.771000000000001,49.176000000000002,50.581000000000003,51.985999999999997,53.390999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,992,1,49.179299999999998,0.028570000000000002,44.963999999999999,46.369,47.774000000000001,49.179000000000002,50.584000000000003,51.988999999999997,53.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,993,1,49.182200000000002,0.028580000000000001,44.965000000000003,46.371000000000002,47.777000000000001,49.182000000000002,50.588000000000001,51.993000000000002,53.399000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,994,1,49.185099999999998,0.028580000000000001,44.968000000000004,46.374000000000002,47.779000000000003,49.185000000000002,50.591000000000001,51.997,53.402000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,995,1,49.188000000000002,0.028580000000000001,44.970999999999997,46.375999999999998,47.781999999999996,49.188000000000002,50.594000000000001,52,53.405000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,996,1,49.190899999999999,0.028580000000000001,44.972999999999999,46.378999999999998,47.784999999999997,49.191000000000003,50.597000000000001,52.003,53.408999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,997,1,49.193800000000003,0.028580000000000001,44.975999999999999,46.381999999999998,47.787999999999997,49.194000000000003,50.6,52.006,53.411999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,998,1,49.1967,0.028580000000000001,44.978999999999999,46.384999999999998,47.790999999999997,49.197000000000003,50.603000000000002,52.009,53.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,999,1,49.199599999999997,0.028580000000000001,44.981000000000002,46.387,47.792999999999999,49.2,50.606000000000002,52.012,53.417999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1000,1,49.202500000000001,0.028590000000000001,44.981999999999999,46.389000000000003,47.795999999999999,49.201999999999998,50.609000000000002,52.015999999999998,53.423000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1001,1,49.205399999999997,0.028590000000000001,44.984999999999999,46.392000000000003,47.798999999999999,49.204999999999998,50.612000000000002,52.018999999999998,53.426000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1002,1,49.208300000000001,0.028590000000000001,44.988,46.395000000000003,47.801000000000002,49.207999999999998,50.615000000000002,52.021999999999998,53.429000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1003,1,49.211199999999998,0.028590000000000001,44.99,46.396999999999998,47.804000000000002,49.210999999999999,50.618000000000002,52.024999999999999,53.432000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1004,1,49.213999999999999,0.028590000000000001,44.993000000000002,46.4,47.807000000000002,49.213999999999999,50.621000000000002,52.027999999999999,53.435000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1005,1,49.216900000000003,0.028590000000000001,44.996000000000002,46.402999999999999,47.81,49.216999999999999,50.624000000000002,52.030999999999999,53.438000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1006,1,49.219799999999999,0.028590000000000001,44.997999999999998,46.405000000000001,47.813000000000002,49.22,50.627000000000002,52.033999999999999,53.441000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1007,1,49.2226,0.028590000000000001,45.000999999999998,46.408000000000001,47.814999999999998,49.222999999999999,50.63,52.036999999999999,53.444000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1008,1,49.225499999999997,0.0286,45.002000000000002,46.41,47.817999999999998,49.225999999999999,50.633000000000003,52.040999999999997,53.448999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1009,1,49.228299999999997,0.0286,45.005000000000003,46.411999999999999,47.82,49.228000000000002,50.636000000000003,52.043999999999997,53.451999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1010,1,49.231200000000001,0.0286,45.006999999999998,46.414999999999999,47.823,49.231000000000002,50.639000000000003,52.046999999999997,53.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1011,1,49.234000000000002,0.0286,45.01,46.417999999999999,47.826000000000001,49.234000000000002,50.642000000000003,52.05,53.457999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1012,1,49.236899999999999,0.0286,45.012,46.420999999999999,47.829000000000001,49.237000000000002,50.645000000000003,52.052999999999997,53.460999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1013,1,49.239699999999999,0.0286,45.015000000000001,46.423000000000002,47.831000000000003,49.24,50.648000000000003,52.055999999999997,53.463999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1014,1,49.2425,0.0286,45.017000000000003,46.426000000000002,47.834000000000003,49.241999999999997,50.651000000000003,52.058999999999997,53.468000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1015,1,49.245399999999997,0.02861,45.018999999999998,46.427999999999997,47.835999999999999,49.244999999999997,50.654000000000003,52.063000000000002,53.472000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1016,1,49.248199999999997,0.02861,45.021000000000001,46.43,47.838999999999999,49.247999999999998,50.656999999999996,52.066000000000003,53.475000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1017,1,49.250999999999998,0.02861,45.024000000000001,46.433,47.841999999999999,49.250999999999998,50.66,52.069000000000003,53.478000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1018,1,49.253799999999998,0.02861,45.026000000000003,46.435000000000002,47.844999999999999,49.253999999999998,50.662999999999997,52.072000000000003,53.481000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1019,1,49.256599999999999,0.02861,45.029000000000003,46.438000000000002,47.847000000000001,49.256999999999998,50.665999999999997,52.075000000000003,53.484000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1020,1,49.259399999999999,0.02861,45.030999999999999,46.441000000000003,47.85,49.259,50.668999999999997,52.078000000000003,53.487000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1021,1,49.2622,0.02861,45.033999999999999,46.442999999999998,47.853000000000002,49.262,50.671999999999997,52.081000000000003,53.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1022,1,49.265000000000001,0.02861,45.036999999999999,46.445999999999998,47.856000000000002,49.265000000000001,50.673999999999999,52.084000000000003,53.493000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1023,1,49.267800000000001,0.02862,45.037999999999997,46.448,47.857999999999997,49.268000000000001,50.677999999999997,52.088000000000001,53.497999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1024,1,49.270600000000002,0.02862,45.04,46.45,47.86,49.271000000000001,50.680999999999997,52.091000000000001,53.500999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1025,1,49.273400000000002,0.02862,45.042999999999999,46.453000000000003,47.863,49.273000000000003,50.683999999999997,52.094000000000001,53.503999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1026,1,49.276200000000003,0.02862,45.045000000000002,46.456000000000003,47.866,49.276000000000003,50.686,52.097000000000001,53.506999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1027,1,49.279000000000003,0.02862,45.048000000000002,46.457999999999998,47.869,49.279000000000003,50.689,52.1,53.51 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1028,1,49.281799999999997,0.02862,45.05,46.460999999999999,47.871000000000002,49.281999999999996,50.692,52.103000000000002,53.512999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1029,1,49.284500000000001,0.02862,45.052999999999997,46.463000000000001,47.874000000000002,49.283999999999999,50.695,52.106000000000002,53.515999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1030,1,49.287300000000002,0.02862,45.055,46.466000000000001,47.877000000000002,49.286999999999999,50.698,52.109000000000002,53.518999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1031,1,49.290100000000002,0.028629999999999999,45.057000000000002,46.468000000000004,47.878999999999998,49.29,50.701000000000001,52.112000000000002,53.524000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1032,1,49.2928,0.028629999999999999,45.058999999999997,46.47,47.881999999999998,49.292999999999999,50.704000000000001,52.115000000000002,53.527000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1033,1,49.2956,0.028629999999999999,45.061999999999998,46.472999999999999,47.884,49.295999999999999,50.707000000000001,52.118000000000002,53.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1034,1,49.298299999999998,0.028629999999999999,45.064,46.475000000000001,47.887,49.298000000000002,50.71,52.121000000000002,53.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1035,1,49.301099999999998,0.028629999999999999,45.067,46.478000000000002,47.89,49.301000000000002,50.713000000000001,52.124000000000002,53.536000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1036,1,49.303800000000003,0.028629999999999999,45.069000000000003,46.481000000000002,47.892000000000003,49.304000000000002,50.715000000000003,52.127000000000002,53.539000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1037,1,49.306600000000003,0.028629999999999999,45.072000000000003,46.482999999999997,47.895000000000003,49.307000000000002,50.718000000000004,52.13,53.542000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1038,1,49.3093,0.028639999999999999,45.073,46.484999999999999,47.896999999999998,49.308999999999997,50.722000000000001,52.134,53.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1039,1,49.311999999999998,0.028639999999999999,45.075000000000003,46.487000000000002,47.9,49.311999999999998,50.723999999999997,52.137,53.548999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1040,1,49.314799999999998,0.028639999999999999,45.078000000000003,46.49,47.902000000000001,49.314999999999998,50.726999999999997,52.14,53.552 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1041,1,49.317500000000003,0.028639999999999999,45.08,46.493000000000002,47.905000000000001,49.317999999999998,50.73,52.142000000000003,53.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1042,1,49.3202,0.028639999999999999,45.082999999999998,46.494999999999997,47.908000000000001,49.32,50.732999999999997,52.145000000000003,53.558 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1043,1,49.322899999999997,0.028639999999999999,45.085000000000001,46.497999999999998,47.91,49.323,50.735999999999997,52.148000000000003,53.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1044,1,49.325699999999998,0.028639999999999999,45.088000000000001,46.5,47.912999999999997,49.326000000000001,50.738,52.151000000000003,53.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1045,1,49.328400000000002,0.028639999999999999,45.09,46.503,47.915999999999997,49.328000000000003,50.741,52.154000000000003,53.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1046,1,49.331099999999999,0.028649999999999998,45.091000000000001,46.503999999999998,47.917999999999999,49.331000000000003,50.744,52.158000000000001,53.570999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1047,1,49.333799999999997,0.028649999999999998,45.094000000000001,46.506999999999998,47.92,49.334000000000003,50.747,52.161000000000001,53.573999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1048,1,49.336500000000001,0.028649999999999998,45.095999999999997,46.51,47.923000000000002,49.335999999999999,50.75,52.162999999999997,53.576999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1049,1,49.339199999999998,0.028649999999999998,45.097999999999999,46.512,47.926000000000002,49.338999999999999,50.753,52.165999999999997,53.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1050,1,49.341900000000003,0.028649999999999998,45.100999999999999,46.515000000000001,47.927999999999997,49.341999999999999,50.756,52.168999999999997,53.582999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1051,1,49.3446,0.028649999999999998,45.103000000000002,46.517000000000003,47.930999999999997,49.344999999999999,50.758000000000003,52.171999999999997,53.585999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1052,1,49.347200000000001,0.028649999999999998,45.106000000000002,46.52,47.933,49.347000000000001,50.761000000000003,52.174999999999997,53.588999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1053,1,49.349899999999998,0.028649999999999998,45.107999999999997,46.521999999999998,47.936,49.35,50.764000000000003,52.177999999999997,53.591999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1054,1,49.352600000000002,0.028660000000000001,45.109000000000002,46.524000000000001,47.938000000000002,49.353000000000002,50.767000000000003,52.180999999999997,53.595999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1055,1,49.3553,0.028660000000000001,45.112000000000002,46.526000000000003,47.941000000000003,49.354999999999997,50.77,52.183999999999997,53.598999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1056,1,49.357900000000001,0.028660000000000001,45.113999999999997,46.529000000000003,47.942999999999998,49.357999999999997,50.771999999999998,52.186999999999998,53.601999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1057,1,49.360599999999998,0.028660000000000001,45.116999999999997,46.530999999999999,47.945999999999998,49.360999999999997,50.774999999999999,52.19,53.604999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1058,1,49.363300000000002,0.028660000000000001,45.119,46.533999999999999,47.948999999999998,49.363,50.777999999999999,52.192999999999998,53.607999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1059,1,49.365900000000003,0.028660000000000001,45.121000000000002,46.536000000000001,47.951000000000001,49.366,50.780999999999999,52.195999999999998,53.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1060,1,49.368600000000001,0.028660000000000001,45.124000000000002,46.539000000000001,47.954000000000001,49.369,50.783999999999999,52.198,53.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1061,1,49.371200000000002,0.028670000000000001,45.125,46.54,47.956000000000003,49.371000000000002,50.786999999999999,52.201999999999998,53.618000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1062,1,49.373899999999999,0.028670000000000001,45.127000000000002,46.542999999999999,47.957999999999998,49.374000000000002,50.789000000000001,52.204999999999998,53.621000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1063,1,49.3765,0.028670000000000001,45.13,46.545000000000002,47.960999999999999,49.375999999999998,50.792000000000002,52.207999999999998,53.622999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1064,1,49.379199999999997,0.028670000000000001,45.131999999999998,46.548000000000002,47.963000000000001,49.378999999999998,50.795000000000002,52.210999999999999,53.625999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1065,1,49.381799999999998,0.028670000000000001,45.134,46.55,47.966000000000001,49.381999999999998,50.798000000000002,52.213000000000001,53.628999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1066,1,49.384399999999999,0.028670000000000001,45.137,46.552999999999997,47.969000000000001,49.384,50.8,52.216000000000001,53.631999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1067,1,49.387099999999997,0.028670000000000001,45.139000000000003,46.555,47.970999999999997,49.387,50.802999999999997,52.219000000000001,53.634999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1068,1,49.389699999999998,0.028670000000000001,45.142000000000003,46.558,47.973999999999997,49.39,50.805999999999997,52.222000000000001,53.637999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1069,1,49.392299999999999,0.028680000000000001,45.143000000000001,46.558999999999997,47.975999999999999,49.392000000000003,50.808999999999997,52.225000000000001,53.642000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1070,1,49.395000000000003,0.028680000000000001,45.145000000000003,46.561999999999998,47.978000000000002,49.395000000000003,50.811999999999998,52.228000000000002,53.645000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1071,1,49.397599999999997,0.028680000000000001,45.146999999999998,46.564,47.981000000000002,49.398000000000003,50.814,52.231000000000002,53.648000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1072,1,49.400199999999998,0.028680000000000001,45.15,46.567,47.982999999999997,49.4,50.817,52.234000000000002,53.651000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1073,1,49.402799999999999,0.028680000000000001,45.152000000000001,46.569000000000003,47.985999999999997,49.402999999999999,50.82,52.237000000000002,53.652999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1074,1,49.4054,0.028680000000000001,45.155000000000001,46.572000000000003,47.988,49.405000000000001,50.822000000000003,52.238999999999997,53.655999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1075,1,49.408000000000001,0.028680000000000001,45.156999999999996,46.573999999999998,47.991,49.408000000000001,50.825000000000003,52.241999999999997,53.658999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1076,1,49.410600000000002,0.028680000000000001,45.158999999999999,46.576000000000001,47.994,49.411000000000001,50.828000000000003,52.244999999999997,53.661999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1077,1,49.413200000000003,0.02869,45.16,46.578000000000003,47.996000000000002,49.412999999999997,50.831000000000003,52.249000000000002,53.665999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1078,1,49.415799999999997,0.02869,45.162999999999997,46.58,47.997999999999998,49.415999999999997,50.834000000000003,52.250999999999998,53.668999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1079,1,49.418399999999998,0.02869,45.164999999999999,46.582999999999998,48.000999999999998,49.417999999999999,50.835999999999999,52.253999999999998,53.671999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1080,1,49.420999999999999,0.02869,45.167000000000002,46.585000000000001,48.003,49.420999999999999,50.838999999999999,52.256999999999998,53.674999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1081,1,49.423499999999997,0.02869,45.17,46.588000000000001,48.006,49.423999999999999,50.841000000000001,52.259,53.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1082,1,49.426099999999998,0.02869,45.171999999999997,46.59,48.008000000000003,49.426000000000002,50.844000000000001,52.262,53.68 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1083,1,49.428699999999999,0.02869,45.173999999999999,46.591999999999999,48.011000000000003,49.429000000000002,50.847000000000001,52.265000000000001,53.683 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1084,1,49.4313,0.02869,45.177,46.594999999999999,48.012999999999998,49.430999999999997,50.848999999999997,52.268000000000001,53.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1085,1,49.433799999999998,0.0287,45.177999999999997,46.595999999999997,48.015000000000001,49.433999999999997,50.853000000000002,52.271000000000001,53.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1086,1,49.436399999999999,0.0287,45.18,46.598999999999997,48.018000000000001,49.436,50.854999999999997,52.274000000000001,53.692999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1087,1,49.439,0.0287,45.182000000000002,46.600999999999999,48.02,49.439,50.857999999999997,52.277000000000001,53.695999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1088,1,49.441499999999998,0.0287,45.185000000000002,46.603999999999999,48.023000000000003,49.442,50.86,52.279000000000003,53.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1089,1,49.444099999999999,0.0287,45.186999999999998,46.606000000000002,48.024999999999999,49.444000000000003,50.863,52.281999999999996,53.701000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1090,1,49.446599999999997,0.0287,45.189,46.607999999999997,48.027000000000001,49.447000000000003,50.866,52.284999999999997,53.704000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1091,1,49.449199999999998,0.0287,45.192,46.610999999999997,48.03,49.448999999999998,50.868000000000002,52.287999999999997,53.707000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1092,1,49.451700000000002,0.0287,45.194000000000003,46.613,48.031999999999996,49.451999999999998,50.871000000000002,52.29,53.709000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1093,1,49.454300000000003,0.028709999999999999,45.195,46.615000000000002,48.033999999999999,49.454000000000001,50.874000000000002,52.293999999999997,53.713999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1094,1,49.456800000000001,0.028709999999999999,45.197000000000003,46.616999999999997,48.036999999999999,49.457000000000001,50.877000000000002,52.296999999999997,53.716999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1095,1,49.459299999999999,0.028709999999999999,45.198999999999998,46.619,48.039000000000001,49.459000000000003,50.878999999999998,52.298999999999999,53.719000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1096,1,49.4619,0.028709999999999999,45.201999999999998,46.622,48.042000000000002,49.462000000000003,50.881999999999998,52.302,53.722000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1097,1,49.464399999999998,0.028709999999999999,45.204000000000001,46.624000000000002,48.043999999999997,49.463999999999999,50.884999999999998,52.305,53.725000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1098,1,49.466900000000003,0.028709999999999999,45.206000000000003,46.627000000000002,48.046999999999997,49.466999999999999,50.887,52.307000000000002,53.726999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1099,1,49.4694,0.028709999999999999,45.209000000000003,46.628999999999998,48.048999999999999,49.469000000000001,50.89,52.31,53.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1100,1,49.471899999999998,0.028709999999999999,45.210999999999999,46.631,48.052,49.472000000000001,50.892000000000003,52.313000000000002,53.732999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1101,1,49.474499999999999,0.028719999999999999,45.212000000000003,46.633000000000003,48.054000000000002,49.473999999999997,50.895000000000003,52.316000000000003,53.737000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1102,1,49.476999999999997,0.028719999999999999,45.213999999999999,46.634999999999998,48.055999999999997,49.476999999999997,50.898000000000003,52.319000000000003,53.74 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1103,1,49.479500000000002,0.028719999999999999,45.216000000000001,46.637,48.058,49.48,50.901000000000003,52.322000000000003,53.743000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1104,1,49.481999999999999,0.028719999999999999,45.219000000000001,46.64,48.061,49.481999999999999,50.902999999999999,52.323999999999998,53.744999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1105,1,49.484499999999997,0.028719999999999999,45.220999999999997,46.642000000000003,48.063000000000002,49.484000000000002,50.905999999999999,52.326999999999998,53.747999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1106,1,49.487000000000002,0.028719999999999999,45.222999999999999,46.643999999999998,48.066000000000003,49.487000000000002,50.908000000000001,52.33,53.750999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1107,1,49.4895,0.028719999999999999,45.225000000000001,46.646999999999998,48.067999999999998,49.49,50.911000000000001,52.332000000000001,53.753999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1108,1,49.491999999999997,0.028719999999999999,45.228000000000002,46.649000000000001,48.070999999999998,49.491999999999997,50.912999999999997,52.335000000000001,53.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1109,1,49.494399999999999,0.028729999999999999,45.228000000000002,46.65,48.072000000000003,49.494,50.915999999999997,52.338000000000001,53.76 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1110,1,49.496899999999997,0.028729999999999999,45.231000000000002,46.652999999999999,48.075000000000003,49.497,50.918999999999997,52.341000000000001,53.762999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1111,1,49.499400000000001,0.028729999999999999,45.232999999999997,46.655000000000001,48.076999999999998,49.499000000000002,50.921999999999997,52.344000000000001,53.765999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1112,1,49.501899999999999,0.028729999999999999,45.234999999999999,46.658000000000001,48.08,49.502000000000002,50.923999999999999,52.345999999999997,53.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1113,1,49.504399999999997,0.028729999999999999,45.238,46.66,48.082000000000001,49.503999999999998,50.927,52.348999999999997,53.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1114,1,49.506799999999998,0.028729999999999999,45.24,46.661999999999999,48.084000000000003,49.506999999999998,50.929000000000002,52.350999999999999,53.774000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1115,1,49.509300000000003,0.028729999999999999,45.241999999999997,46.664000000000001,48.087000000000003,49.509,50.932000000000002,52.353999999999999,53.777000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1116,1,49.511800000000001,0.028729999999999999,45.244,46.667000000000002,48.088999999999999,49.512,50.933999999999997,52.356999999999999,53.779000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1117,1,49.514200000000002,0.028740000000000002,45.244999999999997,46.667999999999999,48.091000000000001,49.514000000000003,50.936999999999998,52.36,53.783000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1118,1,49.5167,0.028740000000000002,45.247,46.67,48.094000000000001,49.517000000000003,50.94,52.363,53.786000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1119,1,49.519100000000002,0.028740000000000002,45.25,46.673000000000002,48.095999999999997,49.518999999999998,50.942,52.365000000000002,53.789000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1120,1,49.521599999999999,0.028740000000000002,45.252000000000002,46.674999999999997,48.097999999999999,49.521999999999998,50.945,52.368000000000002,53.790999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1121,1,49.524000000000001,0.028740000000000002,45.253999999999998,46.677,48.100999999999999,49.524000000000001,50.947000000000003,52.371000000000002,53.793999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1122,1,49.526499999999999,0.028740000000000002,45.256,46.68,48.103000000000002,49.526000000000003,50.95,52.372999999999998,53.796999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1123,1,49.5289,0.028740000000000002,45.259,46.682000000000002,48.104999999999997,49.529000000000003,50.951999999999998,52.375999999999998,53.798999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1124,1,49.531399999999998,0.028740000000000002,45.261000000000003,46.683999999999997,48.107999999999997,49.530999999999999,50.954999999999998,52.378,53.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1125,1,49.533799999999999,0.028750000000000001,45.262,46.686,48.11,49.533999999999999,50.957999999999998,52.381999999999998,53.805999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1126,1,49.536200000000001,0.028750000000000001,45.264000000000003,46.688000000000002,48.112000000000002,49.536000000000001,50.96,52.384999999999998,53.808999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1127,1,49.538699999999999,0.028750000000000001,45.265999999999998,46.69,48.113999999999997,49.539000000000001,50.963000000000001,52.387,53.811 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1128,1,49.5411,0.028750000000000001,45.268000000000001,46.692,48.116999999999997,49.540999999999997,50.965000000000003,52.39,53.814 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1129,1,49.543500000000002,0.028750000000000001,45.27,46.695,48.119,49.543999999999997,50.968000000000004,52.392000000000003,53.817 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1130,1,49.545900000000003,0.028750000000000001,45.273000000000003,46.697000000000003,48.121000000000002,49.545999999999999,50.97,52.395000000000003,53.819000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1131,1,49.548299999999998,0.028750000000000001,45.274999999999999,46.698999999999998,48.124000000000002,49.548000000000002,50.972999999999999,52.396999999999998,53.822000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1132,1,49.550800000000002,0.028750000000000001,45.277000000000001,46.701999999999998,48.125999999999998,49.551000000000002,50.975000000000001,52.4,53.825000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1133,1,49.553199999999997,0.028760000000000001,45.277999999999999,46.703000000000003,48.128,49.552999999999997,50.978000000000002,52.404000000000003,53.829000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1134,1,49.555599999999998,0.028760000000000001,45.28,46.704999999999998,48.13,49.555999999999997,50.981000000000002,52.405999999999999,53.831000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1135,1,49.558,0.028760000000000001,45.281999999999996,46.707000000000001,48.133000000000003,49.558,50.982999999999997,52.408999999999999,53.834000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1136,1,49.560400000000001,0.028760000000000001,45.283999999999999,46.71,48.134999999999998,49.56,50.985999999999997,52.411000000000001,53.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1137,1,49.562800000000003,0.028760000000000001,45.286999999999999,46.712000000000003,48.137,49.563000000000002,50.988,52.414000000000001,53.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1138,1,49.565199999999997,0.028760000000000001,45.289000000000001,46.713999999999999,48.14,49.564999999999998,50.991,52.415999999999997,53.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1139,1,49.567599999999999,0.028760000000000001,45.290999999999997,46.716000000000001,48.142000000000003,49.567999999999998,50.993000000000002,52.418999999999997,53.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1140,1,49.57,0.028760000000000001,45.292999999999999,46.719000000000001,48.143999999999998,49.57,50.996000000000002,52.420999999999999,53.847000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1141,1,49.572299999999998,0.02877,45.293999999999997,46.72,48.146000000000001,49.572000000000003,50.997999999999998,52.424999999999997,53.850999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1142,1,49.5747,0.02877,45.295999999999999,46.722000000000001,48.148000000000003,49.575000000000003,51.000999999999998,52.427,53.853000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1143,1,49.577100000000002,0.02877,45.298000000000002,46.723999999999997,48.151000000000003,49.576999999999998,51.003,52.43,53.856000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1144,1,49.579500000000003,0.02877,45.3,46.726999999999997,48.152999999999999,49.58,51.006,52.432000000000002,53.859000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1145,1,49.581899999999997,0.02877,45.302,46.728999999999999,48.155000000000001,49.582000000000001,51.008000000000003,52.435000000000002,53.860999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1146,1,49.584200000000003,0.02877,45.305,46.731000000000002,48.158000000000001,49.584000000000003,51.011000000000003,52.436999999999998,53.863999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1147,1,49.586599999999997,0.02877,45.307000000000002,46.732999999999997,48.16,49.587000000000003,51.012999999999998,52.44,53.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1148,1,49.588999999999999,0.02877,45.308999999999997,46.735999999999997,48.161999999999999,49.588999999999999,51.015999999999998,52.442,53.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1149,1,49.591299999999997,0.02878,45.31,46.737000000000002,48.164000000000001,49.591000000000001,51.018999999999998,52.445999999999998,53.872999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1150,1,49.593699999999998,0.02878,45.311999999999998,46.738999999999997,48.165999999999997,49.594000000000001,51.021000000000001,52.448,53.875999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1151,1,49.5961,0.02878,45.314,46.741,48.168999999999997,49.595999999999997,51.023000000000003,52.451000000000001,53.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1152,1,49.598399999999998,0.02878,45.316000000000003,46.744,48.170999999999999,49.597999999999999,51.026000000000003,52.453000000000003,53.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1153,1,49.6008,0.02878,45.317999999999998,46.746000000000002,48.173000000000002,49.600999999999999,51.027999999999999,52.456000000000003,53.883000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1154,1,49.603099999999998,0.02878,45.32,46.747999999999998,48.176000000000002,49.603000000000002,51.030999999999999,52.457999999999998,53.886000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1155,1,49.605400000000003,0.02878,45.322000000000003,46.75,48.177999999999997,49.604999999999997,51.033000000000001,52.460999999999999,53.887999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1156,1,49.607799999999997,0.02878,45.325000000000003,46.752000000000002,48.18,49.607999999999997,51.036000000000001,52.463000000000001,53.890999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1157,1,49.610100000000003,0.02878,45.326999999999998,46.755000000000003,48.182000000000002,49.61,51.037999999999997,52.466000000000001,53.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1158,1,49.612499999999997,0.02879,45.326999999999998,46.756,48.183999999999997,49.612000000000002,51.040999999999997,52.469000000000001,53.898000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1159,1,49.614800000000002,0.02879,45.33,46.758000000000003,48.186,49.615000000000002,51.042999999999999,52.472000000000001,53.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1160,1,49.617100000000001,0.02879,45.332000000000001,46.76,48.189,49.616999999999997,51.045999999999999,52.473999999999997,53.902999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1161,1,49.619500000000002,0.02879,45.334000000000003,46.762,48.191000000000003,49.62,51.048000000000002,52.476999999999997,53.905000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1162,1,49.6218,0.02879,45.335999999999999,46.765000000000001,48.192999999999998,49.622,51.05,52.478999999999999,53.908000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1163,1,49.624099999999999,0.02879,45.338000000000001,46.767000000000003,48.195,49.624000000000002,51.052999999999997,52.481000000000002,53.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1164,1,49.626399999999997,0.02879,45.34,46.768999999999998,48.198,49.625999999999998,51.055,52.484000000000002,53.912999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1165,1,49.628700000000002,0.02879,45.341999999999999,46.771000000000001,48.2,49.628999999999998,51.058,52.485999999999997,53.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1166,1,49.631100000000004,0.028799999999999999,45.343000000000004,46.771999999999998,48.201999999999998,49.631,51.06,52.49,53.918999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1167,1,49.633400000000002,0.028799999999999999,45.344999999999999,46.774999999999999,48.204000000000001,49.633000000000003,51.063000000000002,52.491999999999997,53.921999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1168,1,49.6357,0.028799999999999999,45.347000000000001,46.777000000000001,48.206000000000003,49.636000000000003,51.064999999999998,52.494999999999997,53.923999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1169,1,49.637999999999998,0.028799999999999999,45.348999999999997,46.779000000000003,48.207999999999998,49.637999999999998,51.067999999999998,52.497,53.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1170,1,49.640300000000003,0.028799999999999999,45.350999999999999,46.780999999999999,48.210999999999999,49.64,51.07,52.5,53.929000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1171,1,49.642600000000002,0.028799999999999999,45.353000000000002,46.783000000000001,48.213000000000001,49.643000000000001,51.072000000000003,52.502000000000002,53.932000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1172,1,49.6449,0.028799999999999999,45.356000000000002,46.784999999999997,48.215000000000003,49.645000000000003,51.075000000000003,52.503999999999998,53.933999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1173,1,49.647199999999998,0.028799999999999999,45.357999999999997,46.787999999999997,48.216999999999999,49.646999999999998,51.076999999999998,52.506999999999998,53.936999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1174,1,49.649500000000003,0.028809999999999999,45.357999999999997,46.789000000000001,48.219000000000001,49.65,51.08,52.51,53.941000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1175,1,49.651699999999998,0.028809999999999999,45.36,46.790999999999997,48.220999999999997,49.652000000000001,51.082000000000001,52.512999999999998,53.942999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1176,1,49.654000000000003,0.028809999999999999,45.362000000000002,46.792999999999999,48.222999999999999,49.654000000000003,51.085000000000001,52.515000000000001,53.945999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1177,1,49.656300000000002,0.028809999999999999,45.365000000000002,46.795000000000002,48.225999999999999,49.655999999999999,51.087000000000003,52.517000000000003,53.948 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1178,1,49.6586,0.028809999999999999,45.366999999999997,46.796999999999997,48.228000000000002,49.658999999999999,51.088999999999999,52.52,53.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1179,1,49.660899999999998,0.028809999999999999,45.369,46.798999999999999,48.23,49.661000000000001,51.091999999999999,52.521999999999998,53.953000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1180,1,49.6631,0.028809999999999999,45.371000000000002,46.802,48.231999999999999,49.662999999999997,51.094000000000001,52.524999999999999,53.954999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1181,1,49.665399999999998,0.028809999999999999,45.372999999999998,46.804000000000002,48.234999999999999,49.664999999999999,51.095999999999997,52.527000000000001,53.957999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1182,1,49.667700000000004,0.028819999999999998,45.372999999999998,46.805,48.235999999999997,49.667999999999999,51.098999999999997,52.530999999999999,53.962000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1183,1,49.67,0.028819999999999998,45.375999999999998,46.807000000000002,48.238999999999997,49.67,51.100999999999999,52.533000000000001,53.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1184,1,49.672199999999997,0.028819999999999998,45.378,46.808999999999997,48.241,49.671999999999997,51.103999999999999,52.534999999999997,53.966999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1185,1,49.674500000000002,0.028819999999999998,45.38,46.811,48.243000000000002,49.673999999999999,51.106000000000002,52.537999999999997,53.969000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1186,1,49.676699999999997,0.028819999999999998,45.381999999999998,46.813000000000002,48.244999999999997,49.677,51.107999999999997,52.54,53.972000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1187,1,49.679000000000002,0.028819999999999998,45.384,46.816000000000003,48.247,49.679000000000002,51.110999999999997,52.542000000000002,53.973999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1188,1,49.681199999999997,0.028819999999999998,45.386000000000003,46.817999999999998,48.249000000000002,49.680999999999997,51.113,52.545000000000002,53.976999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1189,1,49.683500000000002,0.028819999999999998,45.387999999999998,46.82,48.252000000000002,49.683999999999997,51.115000000000002,52.546999999999997,53.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1190,1,49.685699999999997,0.028819999999999998,45.39,46.822000000000003,48.253999999999998,49.686,51.118000000000002,52.55,53.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1191,1,49.688000000000002,0.028830000000000001,45.39,46.823,48.255000000000003,49.688000000000002,51.121000000000002,52.552999999999997,53.985999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1192,1,49.690199999999997,0.028830000000000001,45.392000000000003,46.825000000000003,48.258000000000003,49.69,51.122999999999998,52.555,53.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1193,1,49.692500000000003,0.028830000000000001,45.395000000000003,46.826999999999998,48.26,49.692,51.125,52.558,53.99 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1194,1,49.694699999999997,0.028830000000000001,45.396999999999998,46.829000000000001,48.262,49.695,51.127000000000002,52.56,53.993000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1195,1,49.696899999999999,0.028830000000000001,45.399000000000001,46.831000000000003,48.264000000000003,49.697000000000003,51.13,52.561999999999998,53.994999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1196,1,49.699199999999998,0.028830000000000001,45.401000000000003,46.834000000000003,48.265999999999998,49.698999999999998,51.131999999999998,52.564999999999998,53.997999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1197,1,49.7014,0.028830000000000001,45.402999999999999,46.835999999999999,48.268999999999998,49.701000000000001,51.134,52.567,54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1198,1,49.703600000000002,0.028830000000000001,45.405000000000001,46.838000000000001,48.271000000000001,49.704000000000001,51.137,52.57,54.002000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1199,1,49.7059,0.028840000000000001,45.405000000000001,46.838999999999999,48.271999999999998,49.706000000000003,51.139000000000003,52.573,54.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1200,1,49.708100000000002,0.028840000000000001,45.406999999999996,46.841000000000001,48.274999999999999,49.707999999999998,51.142000000000003,52.575000000000003,54.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1201,1,49.710299999999997,0.028840000000000001,45.408999999999999,46.843000000000004,48.277000000000001,49.71,51.143999999999998,52.578000000000003,54.011000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1202,1,49.712499999999999,0.028840000000000001,45.411000000000001,46.844999999999999,48.279000000000003,49.712000000000003,51.146000000000001,52.58,54.014000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1203,1,49.714700000000001,0.028840000000000001,45.412999999999997,46.847000000000001,48.280999999999999,49.715000000000003,51.148000000000003,52.582000000000001,54.015999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1204,1,49.716900000000003,0.028840000000000001,45.414999999999999,46.848999999999997,48.283000000000001,49.716999999999999,51.151000000000003,52.585000000000001,54.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1205,1,49.719099999999997,0.028840000000000001,45.417000000000002,46.850999999999999,48.284999999999997,49.719000000000001,51.152999999999999,52.587000000000003,54.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1206,1,49.721299999999999,0.028840000000000001,45.418999999999997,46.853000000000002,48.286999999999999,49.720999999999997,51.155000000000001,52.588999999999999,54.023000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1207,1,49.723500000000001,0.028840000000000001,45.420999999999999,46.854999999999997,48.289000000000001,49.723999999999997,51.158000000000001,52.591999999999999,54.026000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1208,1,49.725700000000003,0.028850000000000001,45.421999999999997,46.856999999999999,48.290999999999997,49.725999999999999,51.16,52.594999999999999,54.029000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1209,1,49.727899999999998,0.028850000000000001,45.423999999999999,46.859000000000002,48.292999999999999,49.728000000000002,51.162999999999997,52.597000000000001,54.031999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1210,1,49.7301,0.028850000000000001,45.426000000000002,46.860999999999997,48.295000000000002,49.73,51.164999999999999,52.6,54.033999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1211,1,49.732300000000002,0.028850000000000001,45.427999999999997,46.863,48.298000000000002,49.731999999999999,51.167000000000002,52.601999999999997,54.036999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1212,1,49.734499999999997,0.028850000000000001,45.43,46.865000000000002,48.3,49.734000000000002,51.168999999999997,52.603999999999999,54.039000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1213,1,49.736699999999999,0.028850000000000001,45.432000000000002,46.866999999999997,48.302,49.737000000000002,51.171999999999997,52.606999999999999,54.040999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1214,1,49.738900000000001,0.028850000000000001,45.433999999999997,46.869,48.304000000000002,49.738999999999997,51.173999999999999,52.609000000000002,54.043999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1215,1,49.741100000000003,0.028850000000000001,45.436,46.871000000000002,48.305999999999997,49.741,51.176000000000002,52.610999999999997,54.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1216,1,49.743299999999998,0.02886,45.436999999999998,46.872,48.308,49.743000000000002,51.179000000000002,52.613999999999997,54.05 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1217,1,49.745399999999997,0.02886,45.438000000000002,46.874000000000002,48.31,49.744999999999997,51.180999999999997,52.616999999999997,54.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1218,1,49.747599999999998,0.02886,45.44,46.875999999999998,48.311999999999998,49.747999999999998,51.183,52.619,54.055 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1219,1,49.7498,0.02886,45.442,46.878,48.314,49.75,51.186,52.621000000000002,54.057000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1220,1,49.752000000000002,0.02886,45.444000000000003,46.88,48.316000000000003,49.752000000000002,51.188000000000002,52.624000000000002,54.06 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1221,1,49.754100000000001,0.02886,45.445999999999998,46.881999999999998,48.317999999999998,49.753999999999998,51.19,52.625999999999998,54.061999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1222,1,49.756300000000003,0.02886,45.448,46.884,48.32,49.756,51.192,52.628,54.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1223,1,49.758400000000002,0.02886,45.45,46.886000000000003,48.322000000000003,49.758000000000003,51.194000000000003,52.63,54.066000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1224,1,49.760599999999997,0.02886,45.451999999999998,46.887999999999998,48.325000000000003,49.761000000000003,51.197000000000003,52.633000000000003,54.069000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1225,1,49.762799999999999,0.02887,45.453000000000003,46.889000000000003,48.326000000000001,49.762999999999998,51.198999999999998,52.636000000000003,54.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1226,1,49.764899999999997,0.02887,45.454999999999998,46.890999999999998,48.328000000000003,49.765000000000001,51.201999999999998,52.637999999999998,54.075000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1227,1,49.767099999999999,0.02887,45.457000000000001,46.893999999999998,48.33,49.767000000000003,51.204000000000001,52.640999999999998,54.076999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1228,1,49.769199999999998,0.02887,45.459000000000003,46.896000000000001,48.332000000000001,49.768999999999998,51.206000000000003,52.643000000000001,54.08 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1229,1,49.7714,0.02887,45.460999999999999,46.898000000000003,48.334000000000003,49.771000000000001,51.207999999999998,52.645000000000003,54.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1230,1,49.773499999999999,0.02887,45.463000000000001,46.9,48.337000000000003,49.774000000000001,51.21,52.646999999999998,54.084000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1231,1,49.775700000000001,0.02887,45.465000000000003,46.902000000000001,48.338999999999999,49.776000000000003,51.213000000000001,52.65,54.087000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1232,1,49.777799999999999,0.02887,45.466999999999999,46.904000000000003,48.341000000000001,49.777999999999999,51.215000000000003,52.652000000000001,54.088999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1233,1,49.779899999999998,0.02887,45.468000000000004,46.905999999999999,48.343000000000004,49.78,51.216999999999999,52.654000000000003,54.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1234,1,49.7821,0.028879999999999999,45.469000000000001,46.906999999999996,48.344000000000001,49.781999999999996,51.22,52.658000000000001,54.094999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1235,1,49.784199999999998,0.028879999999999999,45.470999999999997,46.908999999999999,48.345999999999997,49.783999999999999,51.222000000000001,52.66,54.097999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1236,1,49.786299999999997,0.028879999999999999,45.472999999999999,46.911000000000001,48.347999999999999,49.786000000000001,51.223999999999997,52.661999999999999,54.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1237,1,49.788499999999999,0.028879999999999999,45.475000000000001,46.912999999999997,48.350999999999999,49.787999999999997,51.225999999999999,52.664000000000001,54.101999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1238,1,49.790599999999998,0.028879999999999999,45.476999999999997,46.914999999999999,48.353000000000002,49.790999999999997,51.228999999999999,52.667000000000002,54.103999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1239,1,49.792700000000004,0.028879999999999999,45.478999999999999,46.917000000000002,48.354999999999997,49.792999999999999,51.231000000000002,52.668999999999997,54.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1240,1,49.794800000000002,0.028879999999999999,45.481000000000002,46.918999999999997,48.356999999999999,49.795000000000002,51.232999999999997,52.670999999999999,54.109000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1241,1,49.796999999999997,0.028879999999999999,45.482999999999997,46.920999999999999,48.359000000000002,49.796999999999997,51.234999999999999,52.673000000000002,54.110999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1242,1,49.799100000000003,0.028889999999999999,45.482999999999997,46.921999999999997,48.36,49.798999999999999,51.238,52.676000000000002,54.115000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1243,1,49.801200000000001,0.028889999999999999,45.484999999999999,46.923999999999999,48.362000000000002,49.801000000000002,51.24,52.679000000000002,54.116999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1244,1,49.8033,0.028889999999999999,45.487000000000002,46.926000000000002,48.363999999999997,49.802999999999997,51.241999999999997,52.680999999999997,54.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1245,1,49.805399999999999,0.028889999999999999,45.488999999999997,46.927999999999997,48.366999999999997,49.805,51.244,52.683,54.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1246,1,49.807499999999997,0.028889999999999999,45.491,46.93,48.369,49.808,51.246000000000002,52.685000000000002,54.124000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1247,1,49.809600000000003,0.028889999999999999,45.493000000000002,46.932000000000002,48.371000000000002,49.81,51.249000000000002,52.688000000000002,54.127000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1248,1,49.811700000000002,0.028889999999999999,45.494999999999997,46.933999999999997,48.372999999999998,49.811999999999998,51.250999999999998,52.69,54.128999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1249,1,49.813800000000001,0.028889999999999999,45.496000000000002,46.936,48.375,49.814,51.253,52.692,54.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1250,1,49.815899999999999,0.028889999999999999,45.497999999999998,46.938000000000002,48.377000000000002,49.816000000000003,51.255000000000003,52.694000000000003,54.133000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1251,1,49.817999999999998,0.028899999999999999,45.499000000000002,46.939,48.378,49.817999999999998,51.258000000000003,52.697000000000003,54.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1252,1,49.820099999999996,0.028899999999999999,45.500999999999998,46.94,48.38,49.82,51.26,52.7,54.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1253,1,49.822200000000002,0.028899999999999999,45.503,46.942,48.381999999999998,49.822000000000003,51.262,52.701999999999998,54.142000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1254,1,49.824300000000001,0.028899999999999999,45.505000000000003,46.944000000000003,48.384,49.823999999999998,51.264000000000003,52.704000000000001,54.143999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1255,1,49.8264,0.028899999999999999,45.506,46.945999999999998,48.386000000000003,49.826000000000001,51.265999999999998,52.706000000000003,54.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1256,1,49.828499999999998,0.028899999999999999,45.508000000000003,46.948,48.387999999999998,49.828000000000003,51.268999999999998,52.709000000000003,54.149000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1257,1,49.830500000000001,0.028899999999999999,45.51,46.95,48.39,49.83,51.271000000000001,52.710999999999999,54.151000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1258,1,49.832599999999999,0.028899999999999999,45.512,46.951999999999998,48.392000000000003,49.832999999999998,51.273000000000003,52.713000000000001,54.152999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1259,1,49.834699999999998,0.028899999999999999,45.514000000000003,46.954000000000001,48.393999999999998,49.835000000000001,51.274999999999999,52.715000000000003,54.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1260,1,49.836799999999997,0.028910000000000002,45.514000000000003,46.954999999999998,48.396000000000001,49.837000000000003,51.277999999999999,52.718000000000004,54.158999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1261,1,49.838900000000002,0.028910000000000002,45.515999999999998,46.957000000000001,48.398000000000003,49.838999999999999,51.28,52.720999999999997,54.161000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1262,1,49.840899999999998,0.028910000000000002,45.518000000000001,46.959000000000003,48.4,49.841000000000001,51.281999999999996,52.722999999999999,54.164000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1263,1,49.843000000000004,0.028910000000000002,45.52,46.960999999999999,48.402000000000001,49.843000000000004,51.283999999999999,52.725000000000001,54.165999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1264,1,49.845100000000002,0.028910000000000002,45.521999999999998,46.963000000000001,48.404000000000003,49.844999999999999,51.286000000000001,52.726999999999997,54.167999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1265,1,49.847099999999998,0.028910000000000002,45.524000000000001,46.965000000000003,48.405999999999999,49.847000000000001,51.287999999999997,52.728999999999999,54.17 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1266,1,49.849200000000003,0.028910000000000002,45.526000000000003,46.966999999999999,48.408000000000001,49.848999999999997,51.29,52.731000000000002,54.173000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1267,1,49.851199999999999,0.028910000000000002,45.527999999999999,46.969000000000001,48.41,49.850999999999999,51.292000000000002,52.734000000000002,54.174999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1268,1,49.853299999999997,0.028910000000000002,45.53,46.970999999999997,48.411999999999999,49.853000000000002,51.295000000000002,52.735999999999997,54.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1269,1,49.855400000000003,0.028920000000000001,45.53,46.972000000000001,48.414000000000001,49.854999999999997,51.296999999999997,52.738999999999997,54.180999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1270,1,49.857399999999998,0.028920000000000001,45.531999999999996,46.973999999999997,48.415999999999997,49.856999999999999,51.298999999999999,52.741,54.183 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1271,1,49.859499999999997,0.028920000000000001,45.533999999999999,46.975999999999999,48.417999999999999,49.86,51.301000000000002,52.743000000000002,54.185000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1272,1,49.861499999999999,0.028920000000000001,45.536000000000001,46.978000000000002,48.42,49.862000000000002,51.302999999999997,52.744999999999997,54.186999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1273,1,49.863500000000002,0.028920000000000001,45.536999999999999,46.978999999999999,48.420999999999999,49.863999999999997,51.305999999999997,52.747999999999998,54.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1274,1,49.865600000000001,0.028920000000000001,45.539000000000001,46.981000000000002,48.423000000000002,49.866,51.308,52.75,54.192 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1275,1,49.867600000000003,0.028920000000000001,45.540999999999997,46.982999999999997,48.424999999999997,49.868000000000002,51.31,52.752000000000002,54.194000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1276,1,49.869700000000002,0.028920000000000001,45.542999999999999,46.984999999999999,48.427,49.87,51.311999999999998,52.753999999999998,54.195999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1277,1,49.871699999999997,0.028920000000000001,45.545000000000002,46.987000000000002,48.429000000000002,49.872,51.314,52.756,54.198999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1278,1,49.873699999999999,0.028930000000000001,45.545000000000002,46.988,48.430999999999997,49.874000000000002,51.317,52.759,54.201999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1279,1,49.875799999999998,0.028930000000000001,45.546999999999997,46.99,48.433,49.875999999999998,51.319000000000003,52.762,54.204999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1280,1,49.877800000000001,0.028930000000000001,45.548999999999999,46.991999999999997,48.435000000000002,49.878,51.320999999999998,52.764000000000003,54.207000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1281,1,49.879800000000003,0.028930000000000001,45.551000000000002,46.994,48.436999999999998,49.88,51.323,52.765999999999998,54.209000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1282,1,49.881900000000002,0.028930000000000001,45.552999999999997,46.996000000000002,48.439,49.881999999999998,51.325000000000003,52.768000000000001,54.210999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1283,1,49.883899999999997,0.028930000000000001,45.554000000000002,46.997999999999998,48.441000000000003,49.884,51.326999999999998,52.77,54.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1284,1,49.885899999999999,0.028930000000000001,45.555999999999997,47,48.442999999999998,49.886000000000003,51.329000000000001,52.771999999999998,54.215000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1285,1,49.887900000000002,0.028930000000000001,45.558,47.000999999999998,48.445,49.887999999999998,51.331000000000003,52.774000000000001,54.218000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1286,1,49.889899999999997,0.028930000000000001,45.56,47.003,48.447000000000003,49.89,51.332999999999998,52.777000000000001,54.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1287,1,49.8919,0.02894,45.56,47.003999999999998,48.448,49.892000000000003,51.335999999999999,52.78,54.223999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1288,1,49.893999999999998,0.02894,45.561999999999998,47.006,48.45,49.893999999999998,51.338000000000001,52.781999999999996,54.225999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1289,1,49.896000000000001,0.02894,45.564,47.008000000000003,48.451999999999998,49.896000000000001,51.34,52.783999999999999,54.228000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1290,1,49.898000000000003,0.02894,45.566000000000003,47.01,48.454000000000001,49.898000000000003,51.341999999999999,52.786000000000001,54.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1291,1,49.9,0.02894,45.567999999999998,47.012,48.456000000000003,49.9,51.344000000000001,52.787999999999997,54.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1292,1,49.902000000000001,0.02894,45.57,47.014000000000003,48.457999999999998,49.902000000000001,51.345999999999997,52.79,54.234000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1293,1,49.904000000000003,0.02894,45.570999999999998,47.015999999999998,48.46,49.904000000000003,51.347999999999999,52.792000000000002,54.237000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1294,1,49.905999999999999,0.02894,45.573,47.017000000000003,48.462000000000003,49.905999999999999,51.35,52.795000000000002,54.238999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1295,1,49.908000000000001,0.02894,45.575000000000003,47.018999999999998,48.463999999999999,49.908000000000001,51.351999999999997,52.796999999999997,54.241 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1296,1,49.91,0.02895,45.575000000000003,47.02,48.465000000000003,49.91,51.354999999999997,52.8,54.244999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1297,1,49.911999999999999,0.02895,45.576999999999998,47.021999999999998,48.466999999999999,49.911999999999999,51.356999999999999,52.802,54.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1298,1,49.914000000000001,0.02895,45.579000000000001,47.024000000000001,48.469000000000001,49.914000000000001,51.359000000000002,52.804000000000002,54.249000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1299,1,49.915999999999997,0.02895,45.581000000000003,47.026000000000003,48.470999999999997,49.915999999999997,51.360999999999997,52.805999999999997,54.250999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1300,1,49.917900000000003,0.02895,45.582999999999998,47.027999999999999,48.472999999999999,49.917999999999999,51.363,52.808,54.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1301,1,49.919899999999998,0.02895,45.584000000000003,47.03,48.475000000000001,49.92,51.365000000000002,52.81,54.255000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1302,1,49.921900000000001,0.02895,45.585999999999999,47.030999999999999,48.476999999999997,49.921999999999997,51.366999999999997,52.811999999999998,54.258000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1303,1,49.923900000000003,0.02895,45.588000000000001,47.033000000000001,48.478999999999999,49.923999999999999,51.369,52.814,54.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1304,1,49.925899999999999,0.02895,45.59,47.034999999999997,48.481000000000002,49.926000000000002,51.371000000000002,52.817,54.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1305,1,49.927799999999998,0.02896,45.59,47.036000000000001,48.481999999999999,49.927999999999997,51.374000000000002,52.82,54.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1306,1,49.9298,0.02896,45.591999999999999,47.037999999999997,48.484000000000002,49.93,51.375999999999998,52.822000000000003,54.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1307,1,49.931800000000003,0.02896,45.594000000000001,47.04,48.485999999999997,49.932000000000002,51.378,52.823999999999998,54.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1308,1,49.933799999999998,0.02896,45.595999999999997,47.042000000000002,48.488,49.933999999999997,51.38,52.826000000000001,54.271999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1309,1,49.935699999999997,0.02896,45.597000000000001,47.042999999999999,48.49,49.936,51.381999999999998,52.828000000000003,54.274000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1310,1,49.9377,0.02896,45.598999999999997,47.045000000000002,48.491999999999997,49.938000000000002,51.384,52.83,54.276000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1311,1,49.939700000000002,0.02896,45.600999999999999,47.046999999999997,48.493000000000002,49.94,51.386000000000003,52.832000000000001,54.277999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1312,1,49.941600000000001,0.02896,45.603000000000002,47.048999999999999,48.494999999999997,49.942,51.387999999999998,52.834000000000003,54.280999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1313,1,49.943600000000004,0.02896,45.604999999999997,47.051000000000002,48.497,49.944000000000003,51.39,52.835999999999999,54.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1314,1,49.945500000000003,0.028969999999999999,45.604999999999997,47.052,48.499000000000002,49.945999999999998,51.392000000000003,52.838999999999999,54.286000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1315,1,49.947499999999998,0.028969999999999999,45.606999999999999,47.054000000000002,48.500999999999998,49.948,51.393999999999998,52.841000000000001,54.287999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1316,1,49.949399999999997,0.028969999999999999,45.607999999999997,47.055,48.502000000000002,49.948999999999998,51.396000000000001,52.843000000000004,54.290999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1317,1,49.9514,0.028969999999999999,45.61,47.057000000000002,48.503999999999998,49.951000000000001,51.398000000000003,52.845999999999997,54.292999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1318,1,49.953299999999999,0.028969999999999999,45.612000000000002,47.058999999999997,48.506,49.953000000000003,51.4,52.847999999999999,54.295000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1319,1,49.955300000000001,0.028969999999999999,45.613999999999997,47.061,48.508000000000003,49.954999999999998,51.402999999999999,52.85,54.296999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1320,1,49.9572,0.028969999999999999,45.615000000000002,47.063000000000002,48.51,49.957000000000001,51.404000000000003,52.851999999999997,54.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1321,1,49.959200000000003,0.028969999999999999,45.616999999999997,47.064999999999998,48.512,49.959000000000003,51.406999999999996,52.853999999999999,54.301000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1322,1,49.961100000000002,0.028969999999999999,45.619,47.066000000000003,48.514000000000003,49.960999999999999,51.408000000000001,52.856000000000002,54.302999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1323,1,49.963000000000001,0.028979999999999999,45.619,47.067,48.515000000000001,49.963000000000001,51.411000000000001,52.859000000000002,54.307000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1324,1,49.965000000000003,0.028979999999999999,45.621000000000002,47.069000000000003,48.517000000000003,49.965000000000003,51.412999999999997,52.860999999999997,54.308999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1325,1,49.966900000000003,0.028979999999999999,45.622999999999998,47.070999999999998,48.518999999999998,49.966999999999999,51.414999999999999,52.863,54.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1326,1,49.968800000000002,0.028979999999999999,45.625,47.073,48.521000000000001,49.969000000000001,51.417000000000002,52.865000000000002,54.313000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1327,1,49.970799999999997,0.028979999999999999,45.625999999999998,47.073999999999998,48.523000000000003,49.970999999999997,51.418999999999997,52.866999999999997,54.314999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1328,1,49.972700000000003,0.028979999999999999,45.628,47.076000000000001,48.524000000000001,49.972999999999999,51.420999999999999,52.869,54.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1329,1,49.974600000000002,0.028979999999999999,45.63,47.078000000000003,48.526000000000003,49.975000000000001,51.423000000000002,52.871000000000002,54.319000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1330,1,49.976500000000001,0.028979999999999999,45.631999999999998,47.08,48.527999999999999,49.975999999999999,51.424999999999997,52.872999999999998,54.320999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1331,1,49.978499999999997,0.028979999999999999,45.633000000000003,47.082000000000001,48.53,49.978000000000002,51.427,52.875,54.323999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1332,1,49.980400000000003,0.028989999999999998,45.634,47.082999999999998,48.530999999999999,49.98,51.429000000000002,52.878,54.326999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1333,1,49.982300000000002,0.028989999999999998,45.634999999999998,47.084000000000003,48.533000000000001,49.981999999999999,51.430999999999997,52.88,54.329000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1334,1,49.984200000000001,0.028989999999999998,45.637,47.085999999999999,48.534999999999997,49.984000000000002,51.433,52.881999999999998,54.331000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1335,1,49.9861,0.028989999999999998,45.639000000000003,47.088000000000001,48.536999999999999,49.985999999999997,51.435000000000002,52.884,54.332999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1336,1,49.988,0.028989999999999998,45.640999999999998,47.09,48.539000000000001,49.988,51.436999999999998,52.886000000000003,54.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1337,1,49.99,0.028989999999999998,45.642000000000003,47.091999999999999,48.540999999999997,49.99,51.439,52.887999999999998,54.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1338,1,49.991900000000001,0.028989999999999998,45.643999999999998,47.093000000000004,48.542999999999999,49.991999999999997,51.441000000000003,52.89,54.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1339,1,49.9938,0.028989999999999998,45.646000000000001,47.094999999999999,48.543999999999997,49.994,51.442999999999998,52.892000000000003,54.341999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1340,1,49.995699999999999,0.028989999999999998,45.648000000000003,47.097000000000001,48.545999999999999,49.996000000000002,51.445,52.893999999999998,54.344000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1341,1,49.997599999999998,0.029000000000000001,45.648000000000003,47.097999999999999,48.548000000000002,49.997999999999998,51.448,52.896999999999998,54.347000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1342,1,49.999499999999998,0.029000000000000001,45.65,47.1,48.55,50,51.448999999999998,52.899000000000001,54.348999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1343,1,50.001399999999997,0.029000000000000001,45.651000000000003,47.100999999999999,48.551000000000002,50.000999999999998,51.451000000000001,52.901000000000003,54.351999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1344,1,50.003300000000003,0.029000000000000001,45.652999999999999,47.103000000000002,48.552999999999997,50.003,51.453000000000003,52.902999999999999,54.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1345,1,50.005099999999999,0.029000000000000001,45.655000000000001,47.104999999999997,48.555,50.005000000000003,51.454999999999998,52.905000000000001,54.356000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1346,1,50.006999999999998,0.029000000000000001,45.655999999999999,47.106999999999999,48.557000000000002,50.006999999999998,51.457000000000001,52.906999999999996,54.357999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1347,1,50.008899999999997,0.029000000000000001,45.658000000000001,47.107999999999997,48.558999999999997,50.009,51.459000000000003,52.908999999999999,54.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1348,1,50.010800000000003,0.029000000000000001,45.66,47.11,48.56,50.011000000000003,51.460999999999999,52.911000000000001,54.362000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1349,1,50.012700000000002,0.029000000000000001,45.661999999999999,47.112000000000002,48.561999999999998,50.012999999999998,51.463000000000001,52.912999999999997,54.363999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1350,1,50.014600000000002,0.029000000000000001,45.662999999999997,47.113999999999997,48.564,50.015000000000001,51.465000000000003,52.914999999999999,54.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1351,1,50.016500000000001,0.029010000000000001,45.664000000000001,47.115000000000002,48.566000000000003,50.015999999999998,51.466999999999999,52.917999999999999,54.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1352,1,50.018300000000004,0.029010000000000001,45.664999999999999,47.116,48.567,50.018000000000001,51.469000000000001,52.92,54.371000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1353,1,50.020200000000003,0.029010000000000001,45.667000000000002,47.118000000000002,48.569000000000003,50.02,51.470999999999997,52.921999999999997,54.372999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1354,1,50.022100000000002,0.029010000000000001,45.668999999999997,47.12,48.570999999999998,50.021999999999998,51.472999999999999,52.923999999999999,54.375999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1355,1,50.024000000000001,0.029010000000000001,45.67,47.122,48.573,50.024000000000001,51.475000000000001,52.926000000000002,54.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1356,1,50.025799999999997,0.029010000000000001,45.671999999999997,47.122999999999998,48.575000000000003,50.026000000000003,51.476999999999997,52.927999999999997,54.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1357,1,50.027700000000003,0.029010000000000001,45.673999999999999,47.125,48.576000000000001,50.027999999999999,51.478999999999999,52.93,54.381999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1358,1,50.029600000000002,0.029010000000000001,45.676000000000002,47.127000000000002,48.578000000000003,50.03,51.481000000000002,52.932000000000002,54.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1359,1,50.031399999999998,0.029010000000000001,45.677,47.128999999999998,48.58,50.030999999999999,51.482999999999997,52.933999999999997,54.386000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1360,1,50.033299999999997,0.029020000000000001,45.677,47.128999999999998,48.581000000000003,50.033000000000001,51.484999999999999,52.936999999999998,54.389000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1361,1,50.0351,0.029020000000000001,45.679000000000002,47.131,48.582999999999998,50.034999999999997,51.487000000000002,52.939,54.390999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1362,1,50.036999999999999,0.029020000000000001,45.680999999999997,47.133000000000003,48.585000000000001,50.036999999999999,51.488999999999997,52.941000000000003,54.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1363,1,50.038899999999998,0.029020000000000001,45.683,47.134999999999998,48.587000000000003,50.039000000000001,51.491,52.942999999999998,54.395000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1364,1,50.040700000000001,0.029020000000000001,45.683999999999997,47.136000000000003,48.588999999999999,50.040999999999997,51.493000000000002,52.945,54.396999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1365,1,50.0426,0.029020000000000001,45.686,47.137999999999998,48.59,50.042999999999999,51.494999999999997,52.947000000000003,54.399000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1366,1,50.044400000000003,0.029020000000000001,45.688000000000002,47.14,48.591999999999999,50.043999999999997,51.497,52.948999999999998,54.401000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1367,1,50.046300000000002,0.029020000000000001,45.689,47.142000000000003,48.594000000000001,50.045999999999999,51.499000000000002,52.951000000000001,54.402999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1368,1,50.048099999999998,0.029020000000000001,45.691000000000003,47.143000000000001,48.595999999999997,50.048000000000002,51.5,52.953000000000003,54.405000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1369,1,50.05,0.02903,45.691000000000003,47.143999999999998,48.597000000000001,50.05,51.503,52.956000000000003,54.408999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1370,1,50.0518,0.02903,45.692999999999998,47.146000000000001,48.598999999999997,50.052,51.505000000000003,52.957999999999998,54.411000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1371,1,50.053600000000003,0.02903,45.694000000000003,47.146999999999998,48.600999999999999,50.054000000000002,51.506999999999998,52.96,54.412999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1372,1,50.055500000000002,0.02903,45.695999999999998,47.149000000000001,48.601999999999997,50.055999999999997,51.509,52.962000000000003,54.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1373,1,50.057299999999998,0.02903,45.698,47.151000000000003,48.603999999999999,50.057000000000002,51.51,52.963999999999999,54.417000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1374,1,50.059100000000001,0.02903,45.698999999999998,47.152999999999999,48.606000000000002,50.058999999999997,51.512,52.966000000000001,54.418999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1375,1,50.061,0.02903,45.701000000000001,47.154000000000003,48.607999999999997,50.061,51.514000000000003,52.968000000000004,54.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1376,1,50.062800000000003,0.02903,45.703000000000003,47.155999999999999,48.609000000000002,50.063000000000002,51.515999999999998,52.969000000000001,54.423000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1377,1,50.064599999999999,0.02903,45.704000000000001,47.158000000000001,48.610999999999997,50.064999999999998,51.518000000000001,52.970999999999997,54.424999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1378,1,50.066499999999998,0.02903,45.706000000000003,47.16,48.613,50.066000000000003,51.52,52.972999999999999,54.427 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1379,1,50.068300000000001,0.02904,45.706000000000003,47.16,48.613999999999997,50.067999999999998,51.521999999999998,52.975999999999999,54.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1380,1,50.070099999999996,0.02904,45.707999999999998,47.161999999999999,48.616,50.07,51.524000000000001,52.978000000000002,54.432000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1381,1,50.071899999999999,0.02904,45.71,47.164000000000001,48.618000000000002,50.072000000000003,51.526000000000003,52.98,54.433999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1382,1,50.073700000000002,0.02904,45.710999999999999,47.164999999999999,48.62,50.073999999999998,51.527999999999999,52.981999999999999,54.436 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1383,1,50.075600000000001,0.02904,45.713000000000001,47.167000000000002,48.621000000000002,50.076000000000001,51.53,52.984000000000002,54.438000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1384,1,50.077399999999997,0.02904,45.715000000000003,47.168999999999997,48.622999999999998,50.076999999999998,51.531999999999996,52.985999999999997,54.44 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1385,1,50.0792,0.02904,45.716000000000001,47.170999999999999,48.625,50.079000000000001,51.533000000000001,52.988,54.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1386,1,50.081000000000003,0.02904,45.718000000000004,47.171999999999997,48.627000000000002,50.081000000000003,51.534999999999997,52.99,54.444000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1387,1,50.082799999999999,0.02904,45.72,47.173999999999999,48.628,50.082999999999998,51.536999999999999,52.991999999999997,54.445999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1388,1,50.084600000000002,0.029049999999999999,45.72,47.174999999999997,48.63,50.085000000000001,51.54,52.994999999999997,54.448999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1389,1,50.086399999999998,0.029049999999999999,45.720999999999997,47.176000000000002,48.631,50.085999999999999,51.540999999999997,52.996000000000002,54.451000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1390,1,50.088200000000001,0.029049999999999999,45.722999999999999,47.177999999999997,48.633000000000003,50.088000000000001,51.542999999999999,52.997999999999998,54.453000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1391,1,50.09,0.029049999999999999,45.725000000000001,47.18,48.634999999999998,50.09,51.545000000000002,53,54.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1392,1,50.091799999999999,0.029049999999999999,45.725999999999999,47.180999999999997,48.637,50.091999999999999,51.546999999999997,53.002000000000002,54.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1393,1,50.093600000000002,0.029049999999999999,45.728000000000002,47.183,48.637999999999998,50.094000000000001,51.548999999999999,53.003999999999998,54.459000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1394,1,50.095399999999998,0.029049999999999999,45.73,47.185000000000002,48.64,50.094999999999999,51.551000000000002,53.006,54.460999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1395,1,50.097200000000001,0.029049999999999999,45.731000000000002,47.186999999999998,48.642000000000003,50.097000000000001,51.552999999999997,53.008000000000003,54.463000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1396,1,50.098999999999997,0.029049999999999999,45.732999999999997,47.188000000000002,48.643999999999998,50.098999999999997,51.554000000000002,53.01,54.465000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1397,1,50.1008,0.029049999999999999,45.734999999999999,47.19,48.645000000000003,50.100999999999999,51.555999999999997,53.012,54.466999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1398,1,50.102600000000002,0.029059999999999999,45.734999999999999,47.191000000000003,48.646999999999998,50.103000000000002,51.558999999999997,53.015000000000001,54.470999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1399,1,50.104399999999998,0.029059999999999999,45.735999999999997,47.192,48.648000000000003,50.103999999999999,51.56,53.015999999999998,54.472999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1400,1,50.106200000000001,0.029059999999999999,45.738,47.194000000000003,48.65,50.106000000000002,51.561999999999998,53.018000000000001,54.473999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1401,1,50.107900000000001,0.029059999999999999,45.738999999999997,47.195999999999998,48.652000000000001,50.107999999999997,51.564,53.02,54.475999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1402,1,50.109699999999997,0.029059999999999999,45.741,47.197000000000003,48.654000000000003,50.11,51.566000000000003,53.021999999999998,54.478000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1403,1,50.111499999999999,0.029059999999999999,45.743000000000002,47.198999999999998,48.655000000000001,50.112000000000002,51.567999999999998,53.024000000000001,54.48 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1404,1,50.113300000000002,0.029059999999999999,45.744,47.201000000000001,48.656999999999996,50.113,51.57,53.026000000000003,54.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1405,1,50.115000000000002,0.029059999999999999,45.746000000000002,47.201999999999998,48.658999999999999,50.115000000000002,51.570999999999998,53.027999999999999,54.484000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1406,1,50.116799999999998,0.029059999999999999,45.747999999999998,47.204000000000001,48.66,50.116999999999997,51.573,53.03,54.485999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1407,1,50.118600000000001,0.029059999999999999,45.749000000000002,47.206000000000003,48.661999999999999,50.119,51.575000000000003,53.030999999999999,54.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1408,1,50.120399999999997,0.029069999999999999,45.749000000000002,47.206000000000003,48.662999999999997,50.12,51.576999999999998,53.033999999999999,54.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1409,1,50.122100000000003,0.029069999999999999,45.750999999999998,47.207999999999998,48.664999999999999,50.122,51.579000000000001,53.036000000000001,54.493000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1410,1,50.123899999999999,0.029069999999999999,45.753,47.21,48.667000000000002,50.124000000000002,51.581000000000003,53.037999999999997,54.494999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1411,1,50.125700000000002,0.029069999999999999,45.753999999999998,47.210999999999999,48.668999999999997,50.125999999999998,51.582999999999998,53.04,54.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1412,1,50.127400000000002,0.029069999999999999,45.756,47.213000000000001,48.67,50.127000000000002,51.585000000000001,53.042000000000002,54.499000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1413,1,50.129199999999997,0.029069999999999999,45.756999999999998,47.215000000000003,48.671999999999997,50.128999999999998,51.585999999999999,53.043999999999997,54.500999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1414,1,50.130899999999997,0.029069999999999999,45.759,47.216000000000001,48.673999999999999,50.131,51.588000000000001,53.045999999999999,54.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1415,1,50.1327,0.029069999999999999,45.761000000000003,47.218000000000004,48.674999999999997,50.133000000000003,51.59,53.046999999999997,54.505000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1416,1,50.134500000000003,0.029069999999999999,45.762,47.22,48.677,50.134,51.591999999999999,53.048999999999999,54.506999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1417,1,50.136200000000002,0.029080000000000002,45.762,47.22,48.677999999999997,50.136000000000003,51.594000000000001,53.052,54.51 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1418,1,50.137999999999998,0.029080000000000002,45.764000000000003,47.222000000000001,48.68,50.137999999999998,51.595999999999997,53.054000000000002,54.512 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1419,1,50.139699999999998,0.029080000000000002,45.765999999999998,47.223999999999997,48.682000000000002,50.14,51.597999999999999,53.055999999999997,54.514000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1420,1,50.141500000000001,0.029080000000000002,45.767000000000003,47.225000000000001,48.683,50.142000000000003,51.6,53.058,54.515999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1421,1,50.1432,0.029080000000000002,45.768999999999998,47.226999999999997,48.685000000000002,50.143000000000001,51.600999999999999,53.06,54.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1422,1,50.1449,0.029080000000000002,45.77,47.228000000000002,48.686999999999998,50.145000000000003,51.603000000000002,53.061,54.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1423,1,50.146700000000003,0.029080000000000002,45.771999999999998,47.23,48.688000000000002,50.146999999999998,51.604999999999997,53.063000000000002,54.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1424,1,50.148400000000002,0.029080000000000002,45.773000000000003,47.231999999999999,48.69,50.148000000000003,51.606999999999999,53.064999999999998,54.523000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1425,1,50.150199999999998,0.029080000000000002,45.774999999999999,47.232999999999997,48.692,50.15,51.609000000000002,53.067,54.524999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1426,1,50.151899999999998,0.029080000000000002,45.777000000000001,47.234999999999999,48.692999999999998,50.152000000000001,51.61,53.069000000000003,54.527000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1427,1,50.153599999999997,0.029090000000000001,45.777000000000001,47.235999999999997,48.695,50.154000000000003,51.613,53.072000000000003,54.530999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1428,1,50.1554,0.029090000000000001,45.777999999999999,47.237000000000002,48.695999999999998,50.155000000000001,51.613999999999997,53.073,54.531999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1429,1,50.1571,0.029090000000000001,45.78,47.238999999999997,48.698,50.156999999999996,51.616,53.075000000000003,54.533999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1430,1,50.158799999999999,0.029090000000000001,45.780999999999999,47.241,48.7,50.158999999999999,51.618000000000002,53.076999999999998,54.536000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1431,1,50.160600000000002,0.029090000000000001,45.783000000000001,47.241999999999997,48.701000000000001,50.161000000000001,51.62,53.079000000000001,54.537999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1432,1,50.162300000000002,0.029090000000000001,45.784999999999997,47.244,48.703000000000003,50.161999999999999,51.622,53.081000000000003,54.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1433,1,50.164000000000001,0.029090000000000001,45.786000000000001,47.244999999999997,48.704999999999998,50.164000000000001,51.622999999999998,53.082999999999998,54.542000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1434,1,50.165700000000001,0.029090000000000001,45.787999999999997,47.247,48.706000000000003,50.165999999999997,51.625,53.084000000000003,54.543999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1435,1,50.167400000000001,0.029090000000000001,45.789000000000001,47.249000000000002,48.707999999999998,50.167000000000002,51.627000000000002,53.085999999999999,54.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1436,1,50.169199999999996,0.029090000000000001,45.790999999999997,47.25,48.71,50.168999999999997,51.628999999999998,53.088000000000001,54.546999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1437,1,50.170900000000003,0.029100000000000001,45.790999999999997,47.250999999999998,48.710999999999999,50.170999999999999,51.631,53.091000000000001,54.551000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1438,1,50.172600000000003,0.029100000000000001,45.792999999999999,47.253,48.713000000000001,50.173000000000002,51.633000000000003,53.093000000000004,54.552999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1439,1,50.174300000000002,0.029100000000000001,45.793999999999997,47.253999999999998,48.713999999999999,50.173999999999999,51.634,53.094000000000001,54.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1440,1,50.176000000000002,0.029100000000000001,45.795999999999999,47.256,48.716000000000001,50.176000000000002,51.636000000000003,53.095999999999997,54.555999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1441,1,50.177700000000002,0.029100000000000001,45.796999999999997,47.256999999999998,48.718000000000004,50.177999999999997,51.637999999999998,53.097999999999999,54.558 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1442,1,50.179400000000001,0.029100000000000001,45.798999999999999,47.259,48.719000000000001,50.179000000000002,51.64,53.1,54.56 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1443,1,50.181100000000001,0.029100000000000001,45.8,47.261000000000003,48.720999999999997,50.180999999999997,51.640999999999998,53.101999999999997,54.561999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1444,1,50.1828,0.029100000000000001,45.802,47.262,48.722000000000001,50.183,51.643000000000001,53.103000000000002,54.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1445,1,50.1845,0.029100000000000001,45.802999999999997,47.264000000000003,48.723999999999997,50.183999999999997,51.645000000000003,53.104999999999997,54.566000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1446,1,50.186199999999999,0.029100000000000001,45.805,47.265000000000001,48.725999999999999,50.186,51.646999999999998,53.106999999999999,54.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1447,1,50.187899999999999,0.02911,45.805,47.265999999999998,48.726999999999997,50.188000000000002,51.649000000000001,53.11,54.570999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1448,1,50.189599999999999,0.02911,45.807000000000002,47.268000000000001,48.728999999999999,50.19,51.651000000000003,53.112000000000002,54.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1449,1,50.191299999999998,0.02911,45.808,47.268999999999998,48.73,50.191000000000003,51.652000000000001,53.113,54.575000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1450,1,50.192999999999998,0.02911,45.81,47.271000000000001,48.731999999999999,50.192999999999998,51.654000000000003,53.115000000000002,54.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1451,1,50.194699999999997,0.02911,45.811,47.271999999999998,48.734000000000002,50.195,51.655999999999999,53.116999999999997,54.578000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1452,1,50.196399999999997,0.02911,45.813000000000002,47.274000000000001,48.734999999999999,50.195999999999998,51.658000000000001,53.119,54.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1453,1,50.198099999999997,0.02911,45.814,47.276000000000003,48.737000000000002,50.198,51.658999999999999,53.121000000000002,54.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1454,1,50.199800000000003,0.02911,45.816000000000003,47.277000000000001,48.738,50.2,51.661000000000001,53.122,54.584000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1455,1,50.201500000000003,0.02911,45.817,47.279000000000003,48.74,50.201999999999998,51.662999999999997,53.124000000000002,54.585999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1456,1,50.203200000000002,0.02912,45.817,47.279000000000003,48.741,50.203000000000003,51.664999999999999,53.127000000000002,54.588999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1457,1,50.204799999999999,0.02912,45.819000000000003,47.280999999999999,48.743000000000002,50.204999999999998,51.667000000000002,53.128999999999998,54.591000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1458,1,50.206499999999998,0.02912,45.82,47.281999999999996,48.744,50.206000000000003,51.668999999999997,53.131,54.593000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1459,1,50.208199999999998,0.02912,45.822000000000003,47.283999999999999,48.746000000000002,50.207999999999998,51.67,53.131999999999998,54.594000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1460,1,50.209899999999998,0.02912,45.823999999999998,47.286000000000001,48.747999999999998,50.21,51.671999999999997,53.134,54.595999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1461,1,50.211500000000001,0.02912,45.825000000000003,47.286999999999999,48.749000000000002,50.212000000000003,51.673999999999999,53.136000000000003,54.597999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1462,1,50.213200000000001,0.02912,45.826999999999998,47.289000000000001,48.750999999999998,50.213000000000001,51.674999999999997,53.137999999999998,54.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1463,1,50.2149,0.02912,45.828000000000003,47.29,48.753,50.215000000000003,51.677,53.139000000000003,54.601999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1464,1,50.2166,0.02912,45.83,47.292000000000002,48.753999999999998,50.216999999999999,51.679000000000002,53.140999999999998,54.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1465,1,50.218200000000003,0.02912,45.831000000000003,47.292999999999999,48.756,50.218000000000004,51.680999999999997,53.143000000000001,54.604999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1466,1,50.219900000000003,0.02913,45.831000000000003,47.293999999999997,48.756999999999998,50.22,51.683,53.146000000000001,54.609000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1467,1,50.221600000000002,0.02913,45.832999999999998,47.295999999999999,48.759,50.222000000000001,51.685000000000002,53.148000000000003,54.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1468,1,50.223199999999999,0.02913,45.834000000000003,47.296999999999997,48.76,50.222999999999999,51.686,53.149000000000001,54.612000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1469,1,50.224899999999998,0.02913,45.835999999999999,47.298999999999999,48.762,50.225000000000001,51.688000000000002,53.151000000000003,54.613999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1470,1,50.226500000000001,0.02913,45.837000000000003,47.3,48.762999999999998,50.225999999999999,51.69,53.152999999999999,54.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1471,1,50.228200000000001,0.02913,45.838999999999999,47.302,48.765000000000001,50.228000000000002,51.691000000000003,53.154000000000003,54.618000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1472,1,50.229900000000001,0.02913,45.84,47.304000000000002,48.767000000000003,50.23,51.692999999999998,53.155999999999999,54.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1473,1,50.231499999999997,0.02913,45.841999999999999,47.305,48.768000000000001,50.231999999999999,51.695,53.158000000000001,54.621000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1474,1,50.233199999999997,0.02913,45.843000000000004,47.307000000000002,48.77,50.232999999999997,51.695999999999998,53.16,54.622999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1475,1,50.2348,0.02913,45.844999999999999,47.308,48.771000000000001,50.234999999999999,51.698,53.161000000000001,54.625 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1476,1,50.236499999999999,0.029139999999999999,45.844999999999999,47.308999999999997,48.773000000000003,50.235999999999997,51.7,53.164000000000001,54.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1477,1,50.238100000000003,0.029139999999999999,45.845999999999997,47.31,48.774000000000001,50.238,51.701999999999998,53.165999999999997,54.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1478,1,50.239800000000002,0.029139999999999999,45.847999999999999,47.311999999999998,48.776000000000003,50.24,51.704000000000001,53.167999999999999,54.631999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1479,1,50.241399999999999,0.029139999999999999,45.848999999999997,47.313000000000002,48.777000000000001,50.241,51.704999999999998,53.168999999999997,54.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1480,1,50.243099999999998,0.029139999999999999,45.850999999999999,47.314999999999998,48.779000000000003,50.243000000000002,51.707000000000001,53.170999999999999,54.634999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1481,1,50.244700000000002,0.029139999999999999,45.851999999999997,47.316000000000003,48.780999999999999,50.244999999999997,51.709000000000003,53.173000000000002,54.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1482,1,50.246299999999998,0.029139999999999999,45.853999999999999,47.317999999999998,48.781999999999996,50.246000000000002,51.71,53.174999999999997,54.639000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1483,1,50.247999999999998,0.029139999999999999,45.854999999999997,47.32,48.783999999999999,50.247999999999998,51.712000000000003,53.176000000000002,54.640999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1484,1,50.249600000000001,0.029139999999999999,45.856999999999999,47.320999999999998,48.784999999999997,50.25,51.713999999999999,53.177999999999997,54.642000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1485,1,50.251199999999997,0.029139999999999999,45.857999999999997,47.323,48.786999999999999,50.250999999999998,51.716000000000001,53.18,54.643999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1486,1,50.252899999999997,0.029139999999999999,45.86,47.323999999999998,48.789000000000001,50.253,51.716999999999999,53.182000000000002,54.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1487,1,50.2545,0.029149999999999999,45.86,47.325000000000003,48.79,50.253999999999998,51.719000000000001,53.183999999999997,54.649000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1488,1,50.256100000000004,0.029149999999999999,45.860999999999997,47.326000000000001,48.790999999999997,50.256,51.720999999999997,53.186,54.651000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1489,1,50.257800000000003,0.029149999999999999,45.863,47.328000000000003,48.792999999999999,50.258000000000003,51.722999999999999,53.188000000000002,54.652999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1490,1,50.259399999999999,0.029149999999999999,45.863999999999997,47.329000000000001,48.793999999999997,50.259,51.723999999999997,53.19,54.655000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1491,1,50.261000000000003,0.029149999999999999,45.866,47.331000000000003,48.795999999999999,50.261000000000003,51.725999999999999,53.191000000000003,54.655999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1492,1,50.262700000000002,0.029149999999999999,45.866999999999997,47.332000000000001,48.798000000000002,50.262999999999998,51.728000000000002,53.192999999999998,54.658000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1493,1,50.264299999999999,0.029149999999999999,45.869,47.334000000000003,48.798999999999999,50.264000000000003,51.73,53.195,54.66 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1494,1,50.265900000000002,0.029149999999999999,45.87,47.335000000000001,48.801000000000002,50.265999999999998,51.731000000000002,53.195999999999998,54.661999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1495,1,50.267499999999998,0.029149999999999999,45.872,47.337000000000003,48.802,50.268000000000001,51.732999999999997,53.198,54.662999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1496,1,50.269100000000002,0.029149999999999999,45.872999999999998,47.338000000000001,48.804000000000002,50.268999999999998,51.734000000000002,53.2,54.664999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1497,1,50.270699999999998,0.029159999999999998,45.872999999999998,47.338999999999999,48.805,50.271000000000001,51.737000000000002,53.201999999999998,54.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1498,1,50.272399999999998,0.029159999999999998,45.875,47.341000000000001,48.805999999999997,50.271999999999998,51.738,53.204000000000001,54.67 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1499,1,50.274000000000001,0.029159999999999998,45.875999999999998,47.341999999999999,48.808,50.274000000000001,51.74,53.206000000000003,54.671999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1500,1,50.275599999999997,0.029159999999999998,45.877000000000002,47.344000000000001,48.81,50.276000000000003,51.741999999999997,53.207999999999998,54.673999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1501,1,50.277200000000001,0.029159999999999998,45.878999999999998,47.344999999999999,48.811,50.277000000000001,51.743000000000002,53.209000000000003,54.674999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1502,1,50.278799999999997,0.029159999999999998,45.88,47.347000000000001,48.813000000000002,50.279000000000003,51.744999999999997,53.210999999999999,54.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1503,1,50.2804,0.029159999999999998,45.881999999999998,47.347999999999999,48.814,50.28,51.747,53.213000000000001,54.679000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1504,1,50.281999999999996,0.029159999999999998,45.883000000000003,47.35,48.816000000000003,50.281999999999996,51.747999999999998,53.213999999999999,54.680999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1505,1,50.2836,0.029159999999999998,45.884999999999998,47.350999999999999,48.817,50.283999999999999,51.75,53.216000000000001,54.682000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1506,1,50.285200000000003,0.029159999999999998,45.886000000000003,47.353000000000002,48.819000000000003,50.284999999999997,51.752000000000002,53.218000000000004,54.683999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1507,1,50.286799999999999,0.029170000000000001,45.886000000000003,47.353000000000002,48.82,50.286999999999999,51.753999999999998,53.220999999999997,54.686999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1508,1,50.288400000000003,0.029170000000000001,45.887999999999998,47.354999999999997,48.820999999999998,50.287999999999997,51.755000000000003,53.222000000000001,54.689 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1509,1,50.29,0.029170000000000001,45.889000000000003,47.356000000000002,48.823,50.29,51.756999999999998,53.223999999999997,54.691000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1510,1,50.291600000000003,0.029170000000000001,45.890999999999998,47.357999999999997,48.825000000000003,50.292000000000002,51.759,53.225999999999999,54.692999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1511,1,50.293199999999999,0.029170000000000001,45.892000000000003,47.359000000000002,48.826000000000001,50.292999999999999,51.76,53.226999999999997,54.694000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1512,1,50.294800000000002,0.029170000000000001,45.893999999999998,47.360999999999997,48.828000000000003,50.295000000000002,51.762,53.228999999999999,54.695999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1513,1,50.296399999999998,0.029170000000000001,45.895000000000003,47.362000000000002,48.829000000000001,50.295999999999999,51.764000000000003,53.231000000000002,54.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1514,1,50.298000000000002,0.029170000000000001,45.896000000000001,47.363999999999997,48.831000000000003,50.298000000000002,51.765000000000001,53.231999999999999,54.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1515,1,50.299599999999998,0.029170000000000001,45.898000000000003,47.365000000000002,48.832000000000001,50.3,51.767000000000003,53.234000000000002,54.701000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1516,1,50.301200000000001,0.029170000000000001,45.899000000000001,47.366999999999997,48.834000000000003,50.301000000000002,51.768000000000001,53.235999999999997,54.703000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1517,1,50.302799999999998,0.029180000000000001,45.899000000000001,47.366999999999997,48.835000000000001,50.302999999999997,51.771000000000001,53.238,54.706000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1518,1,50.304299999999998,0.029180000000000001,45.901000000000003,47.369,48.835999999999999,50.304000000000002,51.771999999999998,53.24,54.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1519,1,50.305900000000001,0.029180000000000001,45.902000000000001,47.37,48.838000000000001,50.305999999999997,51.774000000000001,53.241999999999997,54.71 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1520,1,50.307499999999997,0.029180000000000001,45.904000000000003,47.372,48.84,50.308,51.774999999999999,53.243000000000002,54.710999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1521,1,50.309100000000001,0.029180000000000001,45.905000000000001,47.372999999999998,48.841000000000001,50.308999999999997,51.777000000000001,53.244999999999997,54.713000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1522,1,50.310699999999997,0.029180000000000001,45.906999999999996,47.375,48.843000000000004,50.311,51.779000000000003,53.247,54.715000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1523,1,50.312199999999997,0.029180000000000001,45.908000000000001,47.375999999999998,48.844000000000001,50.311999999999998,51.78,53.247999999999998,54.716999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1524,1,50.313800000000001,0.029180000000000001,45.908999999999999,47.377000000000002,48.845999999999997,50.314,51.781999999999996,53.25,54.718000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1525,1,50.315399999999997,0.029180000000000001,45.911000000000001,47.378999999999998,48.847000000000001,50.314999999999998,51.783999999999999,53.252000000000002,54.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1526,1,50.317,0.029180000000000001,45.911999999999999,47.38,48.848999999999997,50.317,51.784999999999997,53.253999999999998,54.722000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1527,1,50.3185,0.029190000000000001,45.911999999999999,47.381,48.85,50.317999999999998,51.786999999999999,53.256,54.725000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1528,1,50.320099999999996,0.029190000000000001,45.914000000000001,47.381999999999998,48.850999999999999,50.32,51.789000000000001,53.258000000000003,54.726999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1529,1,50.3217,0.029190000000000001,45.914999999999999,47.384,48.853000000000002,50.322000000000003,51.790999999999997,53.259,54.728000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1530,1,50.3232,0.029190000000000001,45.915999999999997,47.384999999999998,48.853999999999999,50.323,51.792000000000002,53.261000000000003,54.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1531,1,50.324800000000003,0.029190000000000001,45.917999999999999,47.387,48.856000000000002,50.325000000000003,51.793999999999997,53.262999999999998,54.731999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1532,1,50.3264,0.029190000000000001,45.918999999999997,47.387999999999998,48.856999999999999,50.326000000000001,51.795000000000002,53.264000000000003,54.732999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1533,1,50.3279,0.029190000000000001,45.920999999999999,47.39,48.859000000000002,50.328000000000003,51.796999999999997,53.265999999999998,54.734999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1534,1,50.329500000000003,0.029190000000000001,45.921999999999997,47.390999999999998,48.86,50.33,51.798999999999999,53.268000000000001,54.737000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1535,1,50.331099999999999,0.029190000000000001,45.923999999999999,47.393000000000001,48.862000000000002,50.331000000000003,51.8,53.268999999999998,54.738999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1536,1,50.332599999999999,0.029190000000000001,45.924999999999997,47.393999999999998,48.863,50.332999999999998,51.802,53.271000000000001,54.74 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1537,1,50.334200000000003,0.029190000000000001,45.926000000000002,47.396000000000001,48.865000000000002,50.334000000000003,51.802999999999997,53.273000000000003,54.741999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1538,1,50.335700000000003,0.0292,45.926000000000002,47.396000000000001,48.866,50.335999999999999,51.805999999999997,53.274999999999999,54.744999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1539,1,50.337299999999999,0.0292,45.927999999999997,47.398000000000003,48.866999999999997,50.337000000000003,51.807000000000002,53.277000000000001,54.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1540,1,50.338799999999999,0.0292,45.929000000000002,47.399000000000001,48.869,50.338999999999999,51.808999999999997,53.279000000000003,54.747999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1541,1,50.340400000000002,0.0292,45.930999999999997,47.401000000000003,48.87,50.34,51.81,53.28,54.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1542,1,50.341900000000003,0.0292,45.932000000000002,47.402000000000001,48.872,50.341999999999999,51.811999999999998,53.281999999999996,54.752000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1543,1,50.343499999999999,0.0292,45.933,47.402999999999999,48.872999999999998,50.344000000000001,51.814,53.283999999999999,54.753999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1544,1,50.344999999999999,0.0292,45.935000000000002,47.405000000000001,48.875,50.344999999999999,51.814999999999998,53.284999999999997,54.755000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1545,1,50.346600000000002,0.0292,45.936,47.405999999999999,48.875999999999998,50.347000000000001,51.817,53.286999999999999,54.756999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1546,1,50.348100000000002,0.0292,45.938000000000002,47.408000000000001,48.878,50.347999999999999,51.817999999999998,53.287999999999997,54.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1547,1,50.349699999999999,0.0292,45.939,47.408999999999999,48.878999999999998,50.35,51.82,53.29,54.76 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1548,1,50.351199999999999,0.02921,45.939,47.41,48.88,50.350999999999999,51.822000000000003,53.292999999999999,54.762999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1549,1,50.352699999999999,0.02921,45.94,47.411000000000001,48.881999999999998,50.353000000000002,51.823999999999998,53.293999999999997,54.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1550,1,50.354300000000002,0.02921,45.942,47.412999999999997,48.883000000000003,50.353999999999999,51.825000000000003,53.295999999999999,54.767000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1551,1,50.355800000000002,0.02921,45.942999999999998,47.414000000000001,48.884999999999998,50.356000000000002,51.826999999999998,53.298000000000002,54.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1552,1,50.357300000000002,0.02921,45.944000000000003,47.414999999999999,48.886000000000003,50.356999999999999,51.828000000000003,53.298999999999999,54.77 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1553,1,50.358899999999998,0.02921,45.945999999999998,47.417000000000002,48.887999999999998,50.359000000000002,51.83,53.301000000000002,54.771999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1554,1,50.360399999999998,0.02921,45.947000000000003,47.417999999999999,48.889000000000003,50.36,51.831000000000003,53.302,54.773000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1555,1,50.361899999999999,0.02921,45.948999999999998,47.42,48.890999999999998,50.362000000000002,51.832999999999998,53.304000000000002,54.774999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1556,1,50.363500000000002,0.02921,45.95,47.420999999999999,48.892000000000003,50.363999999999997,51.835000000000001,53.305999999999997,54.777000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1557,1,50.365000000000002,0.02921,45.951999999999998,47.423000000000002,48.893999999999998,50.365000000000002,51.835999999999999,53.307000000000002,54.777999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1558,1,50.366500000000002,0.02921,45.953000000000003,47.423999999999999,48.895000000000003,50.366,51.838000000000001,53.308999999999997,54.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1559,1,50.368099999999998,0.029219999999999999,45.953000000000003,47.424999999999997,48.896000000000001,50.368000000000002,51.84,53.311999999999998,54.783000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1560,1,50.369599999999998,0.029219999999999999,45.954000000000001,47.426000000000002,48.898000000000003,50.37,51.841000000000001,53.313000000000002,54.784999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1561,1,50.371099999999998,0.029219999999999999,45.956000000000003,47.427,48.899000000000001,50.371000000000002,51.843000000000004,53.314999999999998,54.786999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1562,1,50.372599999999998,0.029219999999999999,45.957000000000001,47.429000000000002,48.901000000000003,50.372999999999998,51.844000000000001,53.316000000000003,54.787999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1563,1,50.374099999999999,0.029219999999999999,45.957999999999998,47.43,48.902000000000001,50.374000000000002,51.845999999999997,53.317999999999998,54.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1564,1,50.375700000000002,0.029219999999999999,45.96,47.432000000000002,48.904000000000003,50.375999999999998,51.847999999999999,53.32,54.792000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1565,1,50.377200000000002,0.029219999999999999,45.960999999999999,47.433,48.905000000000001,50.377000000000002,51.848999999999997,53.320999999999998,54.792999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1566,1,50.378700000000002,0.029219999999999999,45.963000000000001,47.435000000000002,48.906999999999996,50.378999999999998,51.850999999999999,53.323,54.795000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1567,1,50.380200000000002,0.029219999999999999,45.963999999999999,47.436,48.908000000000001,50.38,51.851999999999997,53.323999999999998,54.796999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1568,1,50.381700000000002,0.029219999999999999,45.965000000000003,47.436999999999998,48.91,50.381999999999998,51.853999999999999,53.326000000000001,54.798000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1569,1,50.383200000000002,0.029229999999999999,45.965000000000003,47.438000000000002,48.91,50.383000000000003,51.856000000000002,53.329000000000001,54.801000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1570,1,50.384799999999998,0.029229999999999999,45.966999999999999,47.439,48.911999999999999,50.384999999999998,51.857999999999997,53.33,54.802999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1571,1,50.386299999999999,0.029229999999999999,45.968000000000004,47.441000000000003,48.914000000000001,50.386000000000003,51.859000000000002,53.332000000000001,54.805 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1572,1,50.387799999999999,0.029229999999999999,45.969000000000001,47.442,48.914999999999999,50.387999999999998,51.860999999999997,53.332999999999998,54.805999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1573,1,50.389299999999999,0.029229999999999999,45.970999999999997,47.444000000000003,48.915999999999997,50.389000000000003,51.862000000000002,53.335000000000001,54.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1574,1,50.390799999999999,0.029229999999999999,45.972000000000001,47.445,48.917999999999999,50.390999999999998,51.863999999999997,53.337000000000003,54.81 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1575,1,50.392299999999999,0.029229999999999999,45.972999999999999,47.445999999999998,48.918999999999997,50.392000000000003,51.865000000000002,53.338000000000001,54.811 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1576,1,50.393799999999999,0.029229999999999999,45.975000000000001,47.448,48.920999999999999,50.393999999999998,51.866999999999997,53.34,54.813000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1577,1,50.395299999999999,0.029229999999999999,45.975999999999999,47.448999999999998,48.921999999999997,50.395000000000003,51.868000000000002,53.341000000000001,54.814 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1578,1,50.396799999999999,0.029229999999999999,45.978000000000002,47.451000000000001,48.923999999999999,50.396999999999998,51.87,53.343000000000004,54.816000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1579,1,50.398299999999999,0.029229999999999999,45.978999999999999,47.451999999999998,48.924999999999997,50.398000000000003,51.871000000000002,53.344999999999999,54.817999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1580,1,50.399799999999999,0.029239999999999999,45.978999999999999,47.451999999999998,48.926000000000002,50.4,51.872999999999998,53.347000000000001,54.820999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1581,1,50.401299999999999,0.029239999999999999,45.98,47.454000000000001,48.927999999999997,50.401000000000003,51.875,53.348999999999997,54.823 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1582,1,50.402799999999999,0.029239999999999999,45.981000000000002,47.454999999999998,48.929000000000002,50.402999999999999,51.877000000000002,53.35,54.823999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1583,1,50.404299999999999,0.029239999999999999,45.982999999999997,47.457000000000001,48.93,50.404000000000003,51.878,53.351999999999997,54.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1584,1,50.405799999999999,0.029239999999999999,45.984000000000002,47.457999999999998,48.932000000000002,50.405999999999999,51.88,53.353999999999999,54.826999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1585,1,50.407299999999999,0.029239999999999999,45.985999999999997,47.459000000000003,48.933,50.406999999999996,51.881,53.354999999999997,54.829000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1586,1,50.408799999999999,0.029239999999999999,45.987000000000002,47.460999999999999,48.935000000000002,50.408999999999999,51.883000000000003,53.356999999999999,54.831000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1587,1,50.410200000000003,0.029239999999999999,45.988,47.462000000000003,48.936,50.41,51.884,53.357999999999997,54.832000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1588,1,50.411700000000003,0.029239999999999999,45.99,47.463999999999999,48.938000000000002,50.411999999999999,51.886000000000003,53.36,54.834000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1589,1,50.413200000000003,0.029239999999999999,45.991,47.465000000000003,48.939,50.412999999999997,51.887,53.360999999999997,54.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1590,1,50.414700000000003,0.029250000000000002,45.991,47.465000000000003,48.94,50.414999999999999,51.889000000000003,53.363999999999997,54.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1591,1,50.416200000000003,0.029250000000000002,45.991999999999997,47.466999999999999,48.942,50.415999999999997,51.890999999999998,53.366,54.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1592,1,50.417700000000004,0.029250000000000002,45.994,47.468000000000004,48.942999999999998,50.417999999999999,51.892000000000003,53.366999999999997,54.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1593,1,50.419199999999996,0.029250000000000002,45.994999999999997,47.47,48.944000000000003,50.418999999999997,51.893999999999998,53.369,54.843000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1594,1,50.4206,0.029250000000000002,45.996000000000002,47.470999999999997,48.945999999999998,50.420999999999999,51.895000000000003,53.37,54.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1595,1,50.4221,0.029250000000000002,45.997999999999998,47.472000000000001,48.947000000000003,50.421999999999997,51.896999999999998,53.372,54.847000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1596,1,50.4236,0.029250000000000002,45.999000000000002,47.473999999999997,48.948999999999998,50.423999999999999,51.898000000000003,53.372999999999998,54.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1597,1,50.4251,0.029250000000000002,46,47.475000000000001,48.95,50.424999999999997,51.9,53.375,54.85 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1598,1,50.426499999999997,0.029250000000000002,46.002000000000002,47.476999999999997,48.951999999999998,50.426000000000002,51.901000000000003,53.375999999999998,54.850999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1599,1,50.427999999999997,0.029250000000000002,46.003,47.478000000000002,48.953000000000003,50.427999999999997,51.902999999999999,53.378,54.853000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1600,1,50.429499999999997,0.029250000000000002,46.003999999999998,47.478999999999999,48.954000000000001,50.43,51.905000000000001,53.38,54.854999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1601,1,50.430999999999997,0.029260000000000001,46.003999999999998,47.48,48.954999999999998,50.430999999999997,51.906999999999996,53.381999999999998,54.857999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1602,1,50.432400000000001,0.029260000000000001,46.005000000000003,47.481000000000002,48.957000000000001,50.432000000000002,51.908000000000001,53.384,54.859000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1603,1,50.433900000000001,0.029260000000000001,46.006999999999998,47.482999999999997,48.957999999999998,50.433999999999997,51.91,53.384999999999998,54.860999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1604,1,50.435400000000001,0.029260000000000001,46.008000000000003,47.484000000000002,48.96,50.435000000000002,51.911000000000001,53.387,54.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1605,1,50.436799999999998,0.029260000000000001,46.009,47.484999999999999,48.960999999999999,50.436999999999998,51.912999999999997,53.387999999999998,54.863999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1606,1,50.438299999999998,0.029260000000000001,46.011000000000003,47.487000000000002,48.962000000000003,50.438000000000002,51.914000000000001,53.39,54.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1607,1,50.439799999999998,0.029260000000000001,46.012,47.488,48.963999999999999,50.44,51.915999999999997,53.392000000000003,54.866999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1608,1,50.441200000000002,0.029260000000000001,46.012999999999998,47.488999999999997,48.965000000000003,50.441000000000003,51.917000000000002,53.393000000000001,54.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1609,1,50.442700000000002,0.029260000000000001,46.015000000000001,47.491,48.966999999999999,50.442999999999998,51.918999999999997,53.395000000000003,54.871000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1610,1,50.444200000000002,0.029260000000000001,46.015999999999998,47.491999999999997,48.968000000000004,50.444000000000003,51.92,53.396000000000001,54.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1611,1,50.445599999999999,0.029260000000000001,46.017000000000003,47.494,48.97,50.445999999999998,51.921999999999997,53.398000000000003,54.874000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1612,1,50.447099999999999,0.029270000000000001,46.017000000000003,47.494,48.970999999999997,50.447000000000003,51.923999999999999,53.4,54.877000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1613,1,50.448500000000003,0.029270000000000001,46.018999999999998,47.494999999999997,48.972000000000001,50.448,51.924999999999997,53.402000000000001,54.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1614,1,50.45,0.029270000000000001,46.02,47.497,48.972999999999999,50.45,51.927,53.402999999999999,54.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1615,1,50.4514,0.029270000000000001,46.021000000000001,47.497999999999998,48.975000000000001,50.451000000000001,51.927999999999997,53.405000000000001,54.881999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1616,1,50.4529,0.029270000000000001,46.023000000000003,47.499000000000002,48.975999999999999,50.453000000000003,51.93,53.405999999999999,54.883000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1617,1,50.454300000000003,0.029270000000000001,46.024000000000001,47.500999999999998,48.978000000000002,50.454000000000001,51.930999999999997,53.408000000000001,54.884999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1618,1,50.455800000000004,0.029270000000000001,46.024999999999999,47.502000000000002,48.978999999999999,50.456000000000003,51.933,53.408999999999999,54.886000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1619,1,50.457299999999996,0.029270000000000001,46.027000000000001,47.503999999999998,48.98,50.457000000000001,51.933999999999997,53.411000000000001,54.887999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1620,1,50.4587,0.029270000000000001,46.027999999999999,47.505000000000003,48.981999999999999,50.459000000000003,51.936,53.412999999999997,54.889000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1621,1,50.460099999999997,0.029270000000000001,46.029000000000003,47.506,48.982999999999997,50.46,51.936999999999998,53.414000000000001,54.890999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1622,1,50.461599999999997,0.029270000000000001,46.030999999999999,47.508000000000003,48.984999999999999,50.462000000000003,51.939,53.415999999999997,54.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1623,1,50.463000000000001,0.02928,46.03,47.508000000000003,48.984999999999999,50.463000000000001,51.941000000000003,53.417999999999999,54.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1624,1,50.464500000000001,0.02928,46.031999999999996,47.509,48.987000000000002,50.463999999999999,51.942,53.42,54.896999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1625,1,50.465899999999998,0.02928,46.033000000000001,47.511000000000003,48.988,50.466000000000001,51.944000000000003,53.420999999999999,54.899000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1626,1,50.467399999999998,0.02928,46.033999999999999,47.512,48.99,50.466999999999999,51.945,53.423000000000002,54.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1627,1,50.468800000000002,0.02928,46.036000000000001,47.512999999999998,48.991,50.469000000000001,51.947000000000003,53.423999999999999,54.902000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1628,1,50.470199999999998,0.02928,46.036999999999999,47.515000000000001,48.991999999999997,50.47,51.948,53.426000000000002,54.904000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1629,1,50.471699999999998,0.02928,46.037999999999997,47.515999999999998,48.994,50.472000000000001,51.95,53.427,54.905000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1630,1,50.473100000000002,0.02928,46.04,47.517000000000003,48.994999999999997,50.472999999999999,51.951000000000001,53.429000000000002,54.906999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1631,1,50.474600000000002,0.02928,46.040999999999997,47.518999999999998,48.997,50.475000000000001,51.951999999999998,53.43,54.908000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1632,1,50.475999999999999,0.02928,46.042000000000002,47.52,48.997999999999998,50.475999999999999,51.954000000000001,53.432000000000002,54.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1633,1,50.477400000000003,0.02929,46.042000000000002,47.52,48.999000000000002,50.476999999999997,51.956000000000003,53.433999999999997,54.912999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1634,1,50.478900000000003,0.02929,46.042999999999999,47.521999999999998,49,50.478999999999999,51.957000000000001,53.436,54.914000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1635,1,50.4803,0.02929,46.045000000000002,47.523000000000003,49.002000000000002,50.48,51.959000000000003,53.436999999999998,54.915999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1636,1,50.481699999999996,0.02929,46.045999999999999,47.524000000000001,49.003,50.481999999999999,51.96,53.439,54.917999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1637,1,50.483199999999997,0.02929,46.046999999999997,47.526000000000003,49.005000000000003,50.482999999999997,51.962000000000003,53.441000000000003,54.918999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1638,1,50.4846,0.02929,46.048999999999999,47.527000000000001,49.006,50.484999999999999,51.963000000000001,53.442,54.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1639,1,50.485999999999997,0.02929,46.05,47.529000000000003,49.006999999999998,50.485999999999997,51.965000000000003,53.442999999999998,54.921999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1640,1,50.487400000000001,0.02929,46.051000000000002,47.53,49.009,50.487000000000002,51.966000000000001,53.445,54.923999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1641,1,50.488900000000001,0.02929,46.052,47.530999999999999,49.01,50.488999999999997,51.968000000000004,53.447000000000003,54.924999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1642,1,50.490299999999998,0.02929,46.054000000000002,47.533000000000001,49.011000000000003,50.49,51.969000000000001,53.448,54.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1643,1,50.491700000000002,0.02929,46.055,47.533999999999999,49.012999999999998,50.491999999999997,51.970999999999997,53.45,54.927999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1644,1,50.493099999999998,0.0293,46.055,47.533999999999999,49.014000000000003,50.493000000000002,51.972999999999999,53.451999999999998,54.930999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1645,1,50.494500000000002,0.0293,46.055999999999997,47.536000000000001,49.015000000000001,50.494,51.973999999999997,53.453000000000003,54.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1646,1,50.496000000000002,0.0293,46.057000000000002,47.536999999999999,49.015999999999998,50.496000000000002,51.975999999999999,53.454999999999998,54.935000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1647,1,50.497399999999999,0.0293,46.058999999999997,47.537999999999997,49.018000000000001,50.497,51.976999999999997,53.457000000000001,54.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1648,1,50.498800000000003,0.0293,46.06,47.54,49.018999999999998,50.499000000000002,51.978000000000002,53.457999999999998,54.938000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1649,1,50.5002,0.0293,46.061,47.540999999999997,49.021000000000001,50.5,51.98,53.46,54.939 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1650,1,50.501600000000003,0.0293,46.063000000000002,47.542000000000002,49.021999999999998,50.502000000000002,51.981000000000002,53.460999999999999,54.941000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1651,1,50.503,0.0293,46.064,47.543999999999997,49.023000000000003,50.503,51.982999999999997,53.462000000000003,54.942 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1652,1,50.5045,0.0293,46.064999999999998,47.545000000000002,49.024999999999999,50.503999999999998,51.984000000000002,53.463999999999999,54.944000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1653,1,50.505899999999997,0.0293,46.066000000000003,47.545999999999999,49.026000000000003,50.506,51.985999999999997,53.466000000000001,54.945 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1654,1,50.507300000000001,0.0293,46.067999999999998,47.548000000000002,49.027000000000001,50.506999999999998,51.987000000000002,53.466999999999999,54.947000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1655,1,50.508699999999997,0.029309999999999999,46.067,47.548000000000002,49.027999999999999,50.509,51.988999999999997,53.47,54.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1656,1,50.510100000000001,0.029309999999999999,46.069000000000003,47.548999999999999,49.03,50.51,51.991,53.470999999999997,54.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1657,1,50.511499999999998,0.029309999999999999,46.07,47.551000000000002,49.030999999999999,50.512,51.991999999999997,53.472000000000001,54.953000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1658,1,50.512900000000002,0.029309999999999999,46.070999999999998,47.552,49.031999999999996,50.512999999999998,51.993000000000002,53.473999999999997,54.954000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1659,1,50.514299999999999,0.029309999999999999,46.073,47.552999999999997,49.033999999999999,50.514000000000003,51.994999999999997,53.475000000000001,54.956000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1660,1,50.515700000000002,0.029309999999999999,46.073999999999998,47.554000000000002,49.034999999999997,50.515999999999998,51.996000000000002,53.476999999999997,54.957999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1661,1,50.517099999999999,0.029309999999999999,46.075000000000003,47.555999999999997,49.036000000000001,50.517000000000003,51.997999999999998,53.478000000000002,54.959000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1662,1,50.518500000000003,0.029309999999999999,46.076000000000001,47.557000000000002,49.037999999999997,50.518000000000001,51.999000000000002,53.48,54.960999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1663,1,50.5199,0.029309999999999999,46.078000000000003,47.558,49.039000000000001,50.52,52.000999999999998,53.481000000000002,54.962000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1664,1,50.521299999999997,0.029309999999999999,46.079000000000001,47.56,49.040999999999997,50.521000000000001,52.002000000000002,53.482999999999997,54.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1665,1,50.5227,0.029309999999999999,46.08,47.561,49.042000000000002,50.523000000000003,52.003999999999998,53.484000000000002,54.965000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1666,1,50.524099999999997,0.029319999999999999,46.08,47.561,49.042999999999999,50.524000000000001,52.005000000000003,53.487000000000002,54.968000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1667,1,50.525500000000001,0.029319999999999999,46.081000000000003,47.563000000000002,49.043999999999997,50.526000000000003,52.006999999999998,53.488,54.97 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1668,1,50.526899999999998,0.029319999999999999,46.082999999999998,47.564,49.045000000000002,50.527000000000001,52.008000000000003,53.49,54.970999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1669,1,50.528300000000002,0.029319999999999999,46.084000000000003,47.564999999999998,49.046999999999997,50.527999999999999,52.01,53.491,54.972999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1670,1,50.529699999999998,0.029319999999999999,46.085000000000001,47.567,49.048000000000002,50.53,52.011000000000003,53.493000000000002,54.973999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1671,1,50.531100000000002,0.029319999999999999,46.085999999999999,47.567999999999998,49.05,50.530999999999999,52.012999999999998,53.494,54.975999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1672,1,50.532499999999999,0.029319999999999999,46.088000000000001,47.569000000000003,49.051000000000002,50.531999999999996,52.014000000000003,53.496000000000002,54.976999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1673,1,50.533900000000003,0.029319999999999999,46.088999999999999,47.570999999999998,49.052,50.533999999999999,52.015999999999998,53.497,54.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1674,1,50.535299999999999,0.029319999999999999,46.09,47.572000000000003,49.054000000000002,50.534999999999997,52.017000000000003,53.499000000000002,54.98 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1675,1,50.536700000000003,0.029319999999999999,46.091000000000001,47.573,49.055,50.536999999999999,52.018000000000001,53.5,54.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1676,1,50.5381,0.029319999999999999,46.093000000000004,47.575000000000003,49.055999999999997,50.537999999999997,52.02,53.502000000000002,54.982999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1677,1,50.539499999999997,0.029329999999999998,46.093000000000004,47.575000000000003,49.057000000000002,50.54,52.021999999999998,53.503999999999998,54.985999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1678,1,50.540799999999997,0.029329999999999998,46.094000000000001,47.576000000000001,49.058,50.540999999999997,52.023000000000003,53.506,54.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1679,1,50.542200000000001,0.029329999999999998,46.094999999999999,47.576999999999998,49.06,50.542000000000002,52.024999999999999,53.506999999999998,54.988999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1680,1,50.543599999999998,0.029329999999999998,46.095999999999997,47.579000000000001,49.061,50.543999999999997,52.026000000000003,53.508000000000003,54.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1681,1,50.545000000000002,0.029329999999999998,46.097999999999999,47.58,49.063000000000002,50.545000000000002,52.027000000000001,53.51,54.991999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1682,1,50.546399999999998,0.029329999999999998,46.098999999999997,47.581000000000003,49.064,50.545999999999999,52.029000000000003,53.511000000000003,54.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1683,1,50.547800000000002,0.029329999999999998,46.1,47.582999999999998,49.064999999999998,50.548000000000002,52.03,53.512999999999998,54.996000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1684,1,50.549100000000003,0.029329999999999998,46.100999999999999,47.584000000000003,49.066000000000003,50.548999999999999,52.031999999999996,53.514000000000003,54.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1685,1,50.5505,0.029329999999999998,46.103000000000002,47.585000000000001,49.067999999999998,50.55,52.033000000000001,53.515999999999998,54.997999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1686,1,50.551900000000003,0.029329999999999998,46.103999999999999,47.587000000000003,49.069000000000003,50.552,52.034999999999997,53.517000000000003,55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1687,1,50.5533,0.029329999999999998,46.104999999999997,47.588000000000001,49.070999999999998,50.552999999999997,52.036000000000001,53.518999999999998,55.000999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1688,1,50.554699999999997,0.029329999999999998,46.106000000000002,47.588999999999999,49.072000000000003,50.555,52.036999999999999,53.52,55.003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1689,1,50.555999999999997,0.029340000000000001,46.106000000000002,47.588999999999999,49.073,50.555999999999997,52.039000000000001,53.523000000000003,55.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1690,1,50.557400000000001,0.029340000000000001,46.106999999999999,47.591000000000001,49.073999999999998,50.557000000000002,52.040999999999997,53.524000000000001,55.006999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1691,1,50.558799999999998,0.029340000000000001,46.109000000000002,47.591999999999999,49.075000000000003,50.558999999999997,52.042000000000002,53.526000000000003,55.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1692,1,50.560200000000002,0.029340000000000001,46.11,47.593000000000004,49.076999999999998,50.56,52.043999999999997,53.527000000000001,55.011000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1693,1,50.561500000000002,0.029340000000000001,46.110999999999997,47.594999999999999,49.078000000000003,50.561999999999998,52.045000000000002,53.527999999999999,55.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1694,1,50.562899999999999,0.029340000000000001,46.112000000000002,47.595999999999997,49.079000000000001,50.563000000000002,52.045999999999999,53.53,55.012999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1695,1,50.564300000000003,0.029340000000000001,46.113999999999997,47.597000000000001,49.081000000000003,50.564,52.048000000000002,53.530999999999999,55.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1696,1,50.565600000000003,0.029340000000000001,46.115000000000002,47.597999999999999,49.082000000000001,50.566000000000003,52.048999999999999,53.533000000000001,55.015999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1697,1,50.567,0.029340000000000001,46.116,47.6,49.082999999999998,50.567,52.051000000000002,53.533999999999999,55.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1698,1,50.568399999999997,0.029340000000000001,46.116999999999997,47.600999999999999,49.085000000000001,50.567999999999998,52.052,53.536000000000001,55.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1699,1,50.569699999999997,0.029340000000000001,46.119,47.601999999999997,49.085999999999999,50.57,52.052999999999997,53.536999999999999,55.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1700,1,50.571100000000001,0.029350000000000001,46.118000000000002,47.603000000000002,49.087000000000003,50.570999999999998,52.055,53.54,55.024000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1701,1,50.572499999999998,0.029350000000000001,46.12,47.603999999999999,49.088000000000001,50.572000000000003,52.057000000000002,53.540999999999997,55.024999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1702,1,50.573799999999999,0.029350000000000001,46.121000000000002,47.604999999999997,49.088999999999999,50.573999999999998,52.058,53.542000000000002,55.027000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1703,1,50.575200000000002,0.029350000000000001,46.122,47.606000000000002,49.091000000000001,50.575000000000003,52.06,53.543999999999997,55.027999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1704,1,50.576599999999999,0.029350000000000001,46.122999999999998,47.607999999999997,49.091999999999999,50.576999999999998,52.061,53.545000000000002,55.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1705,1,50.5779,0.029350000000000001,46.125,47.609000000000002,49.093000000000004,50.578000000000003,52.061999999999998,53.546999999999997,55.030999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1706,1,50.579300000000003,0.029350000000000001,46.125999999999998,47.61,49.094999999999999,50.579000000000001,52.064,53.548000000000002,55.033000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1707,1,50.5807,0.029350000000000001,46.127000000000002,47.612000000000002,49.095999999999997,50.581000000000003,52.064999999999998,53.55,55.033999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1708,1,50.582000000000001,0.029350000000000001,46.128,47.613,49.097000000000001,50.582000000000001,52.067,53.551000000000002,55.036000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1709,1,50.583399999999997,0.029350000000000001,46.13,47.613999999999997,49.098999999999997,50.582999999999998,52.067999999999998,53.552999999999997,55.036999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1710,1,50.584699999999998,0.029350000000000001,46.131,47.615000000000002,49.1,50.585000000000001,52.069000000000003,53.554000000000002,55.039000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1711,1,50.586100000000002,0.029360000000000001,46.13,47.616,49.100999999999999,50.585999999999999,52.070999999999998,53.557000000000002,55.042000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1712,1,50.587400000000002,0.029360000000000001,46.131999999999998,47.616999999999997,49.101999999999997,50.587000000000003,52.073,53.558,55.042999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1713,1,50.588799999999999,0.029360000000000001,46.133000000000003,47.618000000000002,49.103999999999999,50.588999999999999,52.073999999999998,53.558999999999997,55.045000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1714,1,50.5901,0.029360000000000001,46.134,47.619,49.104999999999997,50.59,52.075000000000003,53.561,55.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1715,1,50.591500000000003,0.029360000000000001,46.134999999999998,47.621000000000002,49.106000000000002,50.591999999999999,52.076999999999998,53.561999999999998,55.048000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1716,1,50.5929,0.029360000000000001,46.137,47.622,49.106999999999999,50.593000000000004,52.078000000000003,53.564,55.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1717,1,50.594200000000001,0.029360000000000001,46.137999999999998,47.622999999999998,49.109000000000002,50.594000000000001,52.08,53.564999999999998,55.051000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1718,1,50.595599999999997,0.029360000000000001,46.139000000000003,47.625,49.11,50.595999999999997,52.081000000000003,53.567,55.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1719,1,50.596899999999998,0.029360000000000001,46.14,47.625999999999998,49.110999999999997,50.597000000000001,52.082000000000001,53.567999999999998,55.052999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1720,1,50.598300000000002,0.029360000000000001,46.142000000000003,47.627000000000002,49.113,50.597999999999999,52.084000000000003,53.569000000000003,55.055 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1721,1,50.599600000000002,0.029360000000000001,46.143000000000001,47.628,49.113999999999997,50.6,52.085000000000001,53.570999999999998,55.055999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1722,1,50.600999999999999,0.02937,46.143000000000001,47.628999999999998,49.115000000000002,50.600999999999999,52.087000000000003,53.573,55.058999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1723,1,50.6023,0.02937,46.143999999999998,47.63,49.116,50.601999999999997,52.088000000000001,53.575000000000003,55.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1724,1,50.6036,0.02937,46.145000000000003,47.631,49.116999999999997,50.603999999999999,52.09,53.576000000000001,55.061999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1725,1,50.604999999999997,0.02937,46.146000000000001,47.631999999999998,49.119,50.604999999999997,52.091000000000001,53.578000000000003,55.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1726,1,50.606299999999997,0.02937,46.146999999999998,47.634,49.12,50.606000000000002,52.093000000000004,53.579000000000001,55.064999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1727,1,50.607700000000001,0.02937,46.149000000000001,47.634999999999998,49.121000000000002,50.607999999999997,52.094000000000001,53.58,55.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1728,1,50.609000000000002,0.02937,46.15,47.636000000000003,49.122999999999998,50.609000000000002,52.094999999999999,53.582000000000001,55.067999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1729,1,50.610399999999998,0.02937,46.151000000000003,47.637999999999998,49.124000000000002,50.61,52.097000000000001,53.582999999999998,55.07 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1730,1,50.611699999999999,0.02937,46.152000000000001,47.639000000000003,49.125,50.612000000000002,52.097999999999999,53.585000000000001,55.070999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1731,1,50.613,0.02937,46.152999999999999,47.64,49.125999999999998,50.613,52.1,53.585999999999999,55.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1732,1,50.614400000000003,0.02937,46.155000000000001,47.640999999999998,49.128,50.613999999999997,52.100999999999999,53.587000000000003,55.073999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1733,1,50.615699999999997,0.02937,46.155999999999999,47.643000000000001,49.128999999999998,50.616,52.101999999999997,53.588999999999999,55.075000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1734,1,50.617100000000001,0.02938,46.155999999999999,47.643000000000001,49.13,50.616999999999997,52.103999999999999,53.591000000000001,55.078000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1735,1,50.618400000000001,0.02938,46.156999999999996,47.643999999999998,49.131,50.618000000000002,52.106000000000002,53.593000000000004,55.08 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1736,1,50.619700000000002,0.02938,46.158000000000001,47.645000000000003,49.131999999999998,50.62,52.106999999999999,53.594000000000001,55.081000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1737,1,50.621099999999998,0.02938,46.158999999999999,47.646999999999998,49.134,50.621000000000002,52.107999999999997,53.595999999999997,55.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1738,1,50.622399999999999,0.02938,46.161000000000001,47.648000000000003,49.134999999999998,50.622,52.11,53.597000000000001,55.084000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1739,1,50.623699999999999,0.02938,46.161999999999999,47.649000000000001,49.136000000000003,50.624000000000002,52.110999999999997,53.597999999999999,55.085999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1740,1,50.625100000000003,0.02938,46.162999999999997,47.65,49.137999999999998,50.625,52.112000000000002,53.6,55.087000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1741,1,50.626399999999997,0.02938,46.164000000000001,47.652000000000001,49.139000000000003,50.625999999999998,52.113999999999997,53.600999999999999,55.088999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1742,1,50.627699999999997,0.02938,46.164999999999999,47.652999999999999,49.14,50.628,52.115000000000002,53.603000000000002,55.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1743,1,50.629100000000001,0.02938,46.167000000000002,47.654000000000003,49.142000000000003,50.628999999999998,52.116999999999997,53.603999999999999,55.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1744,1,50.630400000000002,0.02938,46.167999999999999,47.655000000000001,49.143000000000001,50.63,52.118000000000002,53.604999999999997,55.093000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1745,1,50.631700000000002,0.029389999999999999,46.167999999999999,47.655999999999999,49.143999999999998,50.631999999999998,52.12,53.607999999999997,55.095999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1746,1,50.633099999999999,0.029389999999999999,46.168999999999997,47.656999999999996,49.145000000000003,50.633000000000003,52.121000000000002,53.609000000000002,55.097000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1747,1,50.634399999999999,0.029389999999999999,46.17,47.658000000000001,49.146000000000001,50.634,52.122999999999998,53.610999999999997,55.098999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1748,1,50.6357,0.029389999999999999,46.170999999999999,47.658999999999999,49.148000000000003,50.636000000000003,52.124000000000002,53.612000000000002,55.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1749,1,50.637,0.029389999999999999,46.171999999999997,47.661000000000001,49.149000000000001,50.637,52.125,53.613,55.101999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1750,1,50.638399999999997,0.029389999999999999,46.173999999999999,47.661999999999999,49.15,50.637999999999998,52.127000000000002,53.615000000000002,55.103000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1751,1,50.639699999999998,0.029389999999999999,46.174999999999997,47.662999999999997,49.151000000000003,50.64,52.128,53.616,55.104999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1752,1,50.640999999999998,0.029389999999999999,46.176000000000002,47.664000000000001,49.152999999999999,50.640999999999998,52.128999999999998,53.618000000000002,55.106000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1753,1,50.642299999999999,0.029389999999999999,46.177,47.665999999999997,49.154000000000003,50.642000000000003,52.131,53.619,55.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1754,1,50.643700000000003,0.029389999999999999,46.177999999999997,47.667000000000002,49.155000000000001,50.643999999999998,52.131999999999998,53.621000000000002,55.109000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1755,1,50.645000000000003,0.029389999999999999,46.18,47.667999999999999,49.156999999999996,50.645000000000003,52.133000000000003,53.622,55.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1756,1,50.646299999999997,0.029399999999999999,46.179000000000002,47.667999999999999,49.156999999999996,50.646000000000001,52.134999999999998,53.624000000000002,55.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1757,1,50.647599999999997,0.029399999999999999,46.18,47.67,49.158999999999999,50.648000000000003,52.137,53.625999999999998,55.115000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1758,1,50.649000000000001,0.029399999999999999,46.182000000000002,47.670999999999999,49.16,50.649000000000001,52.137999999999998,53.627000000000002,55.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1759,1,50.650300000000001,0.029399999999999999,46.183,47.671999999999997,49.161000000000001,50.65,52.139000000000003,53.628999999999998,55.118000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1760,1,50.651600000000002,0.029399999999999999,46.183999999999997,47.673000000000002,49.161999999999999,50.652000000000001,52.140999999999998,53.63,55.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1761,1,50.652900000000002,0.029399999999999999,46.185000000000002,47.674999999999997,49.164000000000001,50.652999999999999,52.142000000000003,53.631,55.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1762,1,50.654200000000003,0.029399999999999999,46.186,47.676000000000002,49.164999999999999,50.654000000000003,52.143000000000001,53.633000000000003,55.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1763,1,50.655500000000004,0.029399999999999999,46.188000000000002,47.677,49.165999999999997,50.655999999999999,52.145000000000003,53.634,55.122999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1764,1,50.6569,0.029399999999999999,46.189,47.677999999999997,49.167999999999999,50.656999999999996,52.146000000000001,53.636000000000003,55.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1765,1,50.658200000000001,0.029399999999999999,46.19,47.679000000000002,49.168999999999997,50.658000000000001,52.148000000000003,53.637,55.125999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1766,1,50.659500000000001,0.029399999999999999,46.191000000000003,47.680999999999997,49.17,50.66,52.149000000000001,53.637999999999998,55.128 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1767,1,50.660800000000002,0.029399999999999999,46.192999999999998,47.682000000000002,49.170999999999999,50.661000000000001,52.15,53.64,55.128999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1768,1,50.662100000000002,0.029409999999999999,46.192,47.682000000000002,49.171999999999997,50.661999999999999,52.152000000000001,53.642000000000003,55.131999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1769,1,50.663400000000003,0.029409999999999999,46.192999999999998,47.683,49.173000000000002,50.662999999999997,52.152999999999999,53.643000000000001,55.133000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1770,1,50.664700000000003,0.029409999999999999,46.195,47.685000000000002,49.174999999999997,50.664999999999999,52.155000000000001,53.645000000000003,55.134999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1771,1,50.6661,0.029409999999999999,46.195999999999998,47.686,49.176000000000002,50.665999999999997,52.155999999999999,53.646000000000001,55.136000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1772,1,50.667400000000001,0.029409999999999999,46.197000000000003,47.686999999999998,49.177,50.667000000000002,52.158000000000001,53.648000000000003,55.137999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1773,1,50.668700000000001,0.029409999999999999,46.198,47.688000000000002,49.179000000000002,50.668999999999997,52.158999999999999,53.649000000000001,55.139000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1774,1,50.67,0.029409999999999999,46.198999999999998,47.69,49.18,50.67,52.16,53.65,55.140999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1775,1,50.671300000000002,0.029409999999999999,46.201000000000001,47.691000000000003,49.180999999999997,50.670999999999999,52.161999999999999,53.652000000000001,55.142000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1776,1,50.672600000000003,0.029409999999999999,46.201999999999998,47.692,49.182000000000002,50.673000000000002,52.162999999999997,53.652999999999999,55.143000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1777,1,50.673900000000003,0.029409999999999999,46.203000000000003,47.692999999999998,49.183999999999997,50.673999999999999,52.164000000000001,53.655000000000001,55.145000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1778,1,50.675199999999997,0.029409999999999999,46.204000000000001,47.694000000000003,49.185000000000002,50.674999999999997,52.165999999999997,53.655999999999999,55.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1779,1,50.676499999999997,0.029409999999999999,46.204999999999998,47.695999999999998,49.186,50.676000000000002,52.167000000000002,53.656999999999996,55.148000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1780,1,50.677799999999998,0.029420000000000002,46.204999999999998,47.695999999999998,49.186999999999998,50.677999999999997,52.168999999999997,53.66,55.151000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1781,1,50.679099999999998,0.029420000000000002,46.206000000000003,47.697000000000003,49.188000000000002,50.679000000000002,52.17,53.661000000000001,55.152000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1782,1,50.680399999999999,0.029420000000000002,46.207000000000001,47.698,49.189,50.68,52.170999999999999,53.661999999999999,55.152999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1783,1,50.681699999999999,0.029420000000000002,46.209000000000003,47.7,49.191000000000003,50.682000000000002,52.173000000000002,53.664000000000001,55.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1784,1,50.683,0.029420000000000002,46.21,47.701000000000001,49.192,50.683,52.173999999999999,53.664999999999999,55.155999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1785,1,50.6843,0.029420000000000002,46.210999999999999,47.701999999999998,49.192999999999998,50.683999999999997,52.174999999999997,53.667000000000002,55.158000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1786,1,50.685600000000001,0.029420000000000002,46.212000000000003,47.703000000000003,49.194000000000003,50.686,52.177,53.667999999999999,55.158999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1787,1,50.686900000000001,0.029420000000000002,46.213000000000001,47.704000000000001,49.195999999999998,50.686999999999998,52.177999999999997,53.668999999999997,55.161000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1788,1,50.688200000000002,0.029420000000000002,46.213999999999999,47.706000000000003,49.197000000000003,50.688000000000002,52.179000000000002,53.670999999999999,55.161999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1789,1,50.689500000000002,0.029420000000000002,46.216000000000001,47.707000000000001,49.198,50.69,52.180999999999997,53.671999999999997,55.162999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1790,1,50.690800000000003,0.029420000000000002,46.216999999999999,47.707999999999998,49.198999999999998,50.691000000000003,52.182000000000002,53.673000000000002,55.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1791,1,50.692100000000003,0.029430000000000001,46.216000000000001,47.707999999999998,49.2,50.692,52.183999999999997,53.676000000000002,55.167999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1792,1,50.693399999999997,0.029430000000000001,46.218000000000004,47.71,49.201000000000001,50.692999999999998,52.185000000000002,53.677,55.168999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1793,1,50.694699999999997,0.029430000000000001,46.219000000000001,47.710999999999999,49.203000000000003,50.695,52.186999999999998,53.679000000000002,55.170999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1794,1,50.695999999999998,0.029430000000000001,46.22,47.712000000000003,49.204000000000001,50.695999999999998,52.188000000000002,53.68,55.171999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1795,1,50.697299999999998,0.029430000000000001,46.220999999999997,47.713000000000001,49.204999999999998,50.697000000000003,52.189,53.680999999999997,55.173000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1796,1,50.698599999999999,0.029430000000000001,46.222000000000001,47.713999999999999,49.207000000000001,50.698999999999998,52.191000000000003,53.683,55.174999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1797,1,50.6999,0.029430000000000001,46.223999999999997,47.716000000000001,49.207999999999998,50.7,52.192,53.683999999999997,55.176000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1798,1,50.7012,0.029430000000000001,46.225000000000001,47.716999999999999,49.209000000000003,50.701000000000001,52.192999999999998,53.685000000000002,55.177999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1799,1,50.702500000000001,0.029430000000000001,46.225999999999999,47.718000000000004,49.21,50.701999999999998,52.195,53.686999999999998,55.179000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1800,1,50.703800000000001,0.029430000000000001,46.226999999999997,47.719000000000001,49.212000000000003,50.704000000000001,52.195999999999998,53.688000000000002,55.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1801,1,50.705100000000002,0.029430000000000001,46.228000000000002,47.720999999999997,49.213000000000001,50.704999999999998,52.197000000000003,53.69,55.182000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1802,1,50.706400000000002,0.029430000000000001,46.23,47.722000000000001,49.213999999999999,50.706000000000003,52.198999999999998,53.691000000000003,55.183 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1803,1,50.707700000000003,0.029440000000000001,46.228999999999999,47.722000000000001,49.215000000000003,50.707999999999998,52.201000000000001,53.692999999999998,55.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1804,1,50.709000000000003,0.029440000000000001,46.23,47.722999999999999,49.216000000000001,50.709000000000003,52.201999999999998,53.695,55.188000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1805,1,50.7102,0.029440000000000001,46.231000000000002,47.723999999999997,49.216999999999999,50.71,52.203000000000003,53.695999999999998,55.189 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1806,1,50.711500000000001,0.029440000000000001,46.232999999999997,47.725999999999999,49.219000000000001,50.712000000000003,52.204000000000001,53.697000000000003,55.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1807,1,50.712800000000001,0.029440000000000001,46.234000000000002,47.726999999999997,49.22,50.713000000000001,52.206000000000003,53.698999999999998,55.192 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1808,1,50.714100000000002,0.029440000000000001,46.234999999999999,47.728000000000002,49.220999999999997,50.713999999999999,52.207000000000001,53.7,55.192999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1809,1,50.715400000000002,0.029440000000000001,46.235999999999997,47.728999999999999,49.222000000000001,50.715000000000003,52.207999999999998,53.701999999999998,55.195 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1810,1,50.716700000000003,0.029440000000000001,46.237000000000002,47.731000000000002,49.223999999999997,50.716999999999999,52.21,53.703000000000003,55.195999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1811,1,50.718000000000004,0.029440000000000001,46.238999999999997,47.731999999999999,49.225000000000001,50.718000000000004,52.210999999999999,53.704000000000001,55.197000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1812,1,50.719299999999997,0.029440000000000001,46.24,47.732999999999997,49.225999999999999,50.719000000000001,52.212000000000003,53.706000000000003,55.198999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1813,1,50.720500000000001,0.029440000000000001,46.241,47.734000000000002,49.226999999999997,50.72,52.213999999999999,53.707000000000001,55.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1814,1,50.721800000000002,0.029440000000000001,46.241999999999997,47.734999999999999,49.228999999999999,50.722000000000001,52.215000000000003,53.707999999999998,55.201999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1815,1,50.723100000000002,0.02945,46.241999999999997,47.735999999999997,49.228999999999999,50.722999999999999,52.216999999999999,53.710999999999999,55.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1816,1,50.724400000000003,0.02945,46.243000000000002,47.737000000000002,49.231000000000002,50.723999999999997,52.218000000000004,53.712000000000003,55.206000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1817,1,50.725700000000003,0.02945,46.244,47.738,49.231999999999999,50.725999999999999,52.22,53.713000000000001,55.207000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1818,1,50.726900000000001,0.02945,46.244999999999997,47.738999999999997,49.232999999999997,50.726999999999997,52.220999999999997,53.715000000000003,55.209000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1819,1,50.728200000000001,0.02945,46.246000000000002,47.74,49.234000000000002,50.728000000000002,52.222000000000001,53.716000000000001,55.21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1820,1,50.729500000000002,0.02945,46.247999999999998,47.741999999999997,49.235999999999997,50.73,52.222999999999999,53.716999999999999,55.210999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1821,1,50.730800000000002,0.02945,46.249000000000002,47.743000000000002,49.237000000000002,50.731000000000002,52.225000000000001,53.719000000000001,55.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1822,1,50.732100000000003,0.02945,46.25,47.744,49.238,50.731999999999999,52.225999999999999,53.72,55.213999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1823,1,50.7333,0.02945,46.250999999999998,47.744999999999997,49.238999999999997,50.732999999999997,52.226999999999997,53.720999999999997,55.216000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1824,1,50.7346,0.02945,46.252000000000002,47.746000000000002,49.24,50.734999999999999,52.228999999999999,53.722999999999999,55.216999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1825,1,50.735900000000001,0.02945,46.253,47.747999999999998,49.241999999999997,50.735999999999997,52.23,53.723999999999997,55.218000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1826,1,50.737200000000001,0.02945,46.255000000000003,47.749000000000002,49.243000000000002,50.737000000000002,52.231000000000002,53.725999999999999,55.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1827,1,50.738399999999999,0.02946,46.253999999999998,47.749000000000002,49.244,50.738,52.232999999999997,53.728000000000002,55.222999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1828,1,50.739699999999999,0.02946,46.255000000000003,47.75,49.244999999999997,50.74,52.234000000000002,53.728999999999999,55.223999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1829,1,50.741,0.02946,46.256999999999998,47.750999999999998,49.246000000000002,50.741,52.235999999999997,53.731000000000002,55.225000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1830,1,50.7423,0.02946,46.258000000000003,47.753,49.247,50.741999999999997,52.237000000000002,53.731999999999999,55.226999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1831,1,50.743499999999997,0.02946,46.259,47.753999999999998,49.249000000000002,50.744,52.238,53.732999999999997,55.228000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1832,1,50.744799999999998,0.02946,46.26,47.755000000000003,49.25,50.744999999999997,52.24,53.734999999999999,55.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1833,1,50.746099999999998,0.02946,46.261000000000003,47.756,49.250999999999998,50.746000000000002,52.241,53.735999999999997,55.231000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1834,1,50.747399999999999,0.02946,46.262,47.756999999999998,49.252000000000002,50.747,52.241999999999997,53.737000000000002,55.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1835,1,50.748600000000003,0.02946,46.262999999999998,47.758000000000003,49.253999999999998,50.749000000000002,52.244,53.738999999999997,55.234000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1836,1,50.749899999999997,0.02946,46.265000000000001,47.76,49.255000000000003,50.75,52.244999999999997,53.74,55.234999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1837,1,50.751199999999997,0.02946,46.265999999999998,47.761000000000003,49.256,50.750999999999998,52.246000000000002,53.741,55.237000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1838,1,50.752400000000002,0.02947,46.265000000000001,47.761000000000003,49.256999999999998,50.752000000000002,52.247999999999998,53.744,55.238999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1839,1,50.753700000000002,0.02947,46.267000000000003,47.762,49.258000000000003,50.753999999999998,52.249000000000002,53.744999999999997,55.241 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1840,1,50.755000000000003,0.02947,46.268000000000001,47.764000000000003,49.259,50.755000000000003,52.250999999999998,53.746000000000002,55.241999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1841,1,50.7562,0.02947,46.268999999999998,47.765000000000001,49.26,50.756,52.252000000000002,53.747999999999998,55.244 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1842,1,50.7575,0.02947,46.27,47.765999999999998,49.262,50.758000000000003,52.253,53.749000000000002,55.244999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1843,1,50.758800000000001,0.02947,46.271000000000001,47.767000000000003,49.262999999999998,50.759,52.255000000000003,53.750999999999998,55.246000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1844,1,50.76,0.02947,46.271999999999998,47.768000000000001,49.264000000000003,50.76,52.256,53.752000000000002,55.247999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1845,1,50.761299999999999,0.02947,46.273000000000003,47.768999999999998,49.265000000000001,50.761000000000003,52.256999999999998,53.753,55.249000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1846,1,50.762599999999999,0.02947,46.274999999999999,47.771000000000001,49.267000000000003,50.762999999999998,52.259,53.755000000000003,55.250999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1847,1,50.763800000000003,0.02947,46.276000000000003,47.771999999999998,49.268000000000001,50.764000000000003,52.26,53.756,55.252000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1848,1,50.765099999999997,0.02947,46.277000000000001,47.773000000000003,49.268999999999998,50.765000000000001,52.261000000000003,53.756999999999998,55.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1849,1,50.766399999999997,0.02947,46.277999999999999,47.774000000000001,49.27,50.765999999999998,52.262,53.759,55.255000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1850,1,50.767600000000002,0.029479999999999999,46.277999999999999,47.774000000000001,49.271000000000001,50.768000000000001,52.264000000000003,53.761000000000003,55.256999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1851,1,50.768900000000002,0.029479999999999999,46.279000000000003,47.776000000000003,49.271999999999998,50.768999999999998,52.265999999999998,53.762,55.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1852,1,50.770099999999999,0.029479999999999999,46.28,47.777000000000001,49.273000000000003,50.77,52.267000000000003,53.764000000000003,55.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1853,1,50.7714,0.029479999999999999,46.280999999999999,47.777999999999999,49.274999999999999,50.771000000000001,52.268000000000001,53.765000000000001,55.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1854,1,50.7727,0.029479999999999999,46.281999999999996,47.779000000000003,49.276000000000003,50.773000000000003,52.268999999999998,53.765999999999998,55.262999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1855,1,50.773899999999998,0.029479999999999999,46.283000000000001,47.78,49.277000000000001,50.774000000000001,52.271000000000001,53.768000000000001,55.264000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/head-circumference-for-age/expanded-tables/hcfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1856,1,50.775199999999998,0.029479999999999999,46.284999999999997,47.780999999999999,49.277999999999999,50.774999999999999,52.271999999999998,53.768999999999998,55.265999999999998 diff --git a/priv/growth/indicators/height_for_age.csv b/priv/growth/indicators/height_for_age.csv new file mode 100644 index 0000000..db02836 --- /dev/null +++ b/priv/growth/indicators/height_for_age.csv @@ -0,0 +1,4539 @@ +source,category,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,male,month,228,1,176.54320000000001,0.041340000000000002,154.648,161.947,169.245,176.54300000000001,183.84100000000001,191.14,198.43799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,0,1,49.1477,0.037900000000000003,43.56,45.421999999999997,47.284999999999997,49.148000000000003,51.01,52.872999999999998,54.735999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1,1,49.316600000000001,0.037830000000000003,43.72,45.585000000000001,47.451000000000001,49.317,51.182000000000002,53.048000000000002,54.914000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,2,1,49.485399999999998,0.037760000000000002,43.88,45.747999999999998,47.616999999999997,49.484999999999999,51.353999999999999,53.222999999999999,55.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,3,1,49.654299999999999,0.037699999999999997,44.037999999999997,45.91,47.781999999999996,49.654000000000003,51.526000000000003,53.398000000000003,55.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,4,1,49.8232,0.037629999999999997,44.198999999999998,46.073999999999998,47.948,49.823,51.698,53.573,55.448 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,5,1,49.992100000000001,0.037560000000000003,44.359000000000002,46.237000000000002,48.113999999999997,49.991999999999997,51.87,53.747999999999998,55.625 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,6,1,50.160899999999998,0.037490000000000002,44.518999999999998,46.4,48.28,50.161000000000001,52.040999999999997,53.921999999999997,55.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,7,1,50.329799999999999,0.037420000000000002,44.68,46.563000000000002,48.445999999999998,50.33,52.213000000000001,54.095999999999997,55.98 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,8,1,50.498699999999999,0.037350000000000001,44.84,46.725999999999999,48.613,50.499000000000002,52.384999999999998,54.271000000000001,56.156999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,9,1,50.6676,0.037280000000000001,45.000999999999998,46.89,48.779000000000003,50.667999999999999,52.555999999999997,54.445,56.334000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,10,1,50.836500000000001,0.037220000000000003,45.16,47.052,48.944000000000003,50.835999999999999,52.728999999999999,54.621000000000002,56.512999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,11,1,51.005299999999998,0.037150000000000002,45.320999999999998,47.216000000000001,49.11,51.005000000000003,52.9,54.795000000000002,56.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,12,1,51.174199999999999,0.037080000000000002,45.481999999999999,47.378999999999998,49.277000000000001,51.173999999999999,53.072000000000003,54.969000000000001,56.866999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,13,1,51.3431,0.037010000000000001,45.642000000000003,47.542999999999999,49.442999999999998,51.343000000000004,53.243000000000002,55.143999999999998,57.043999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,14,1,51.512,0.036940000000000001,45.802999999999997,47.706000000000003,49.609000000000002,51.512,53.414999999999999,55.317999999999998,57.220999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,15,1,51.651000000000003,0.036900000000000002,45.933,47.838999999999999,49.744999999999997,51.651000000000003,53.557000000000002,55.463000000000001,57.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,16,1,51.789499999999997,0.03687,46.061,47.970999999999997,49.88,51.79,53.698999999999998,55.607999999999997,57.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,17,1,51.927199999999999,0.036830000000000002,46.19,48.101999999999997,50.015000000000001,51.927,53.84,55.752000000000002,57.664999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,18,1,52.064100000000003,0.036799999999999999,46.316000000000003,48.231999999999999,50.148000000000003,52.064,53.98,55.896000000000001,57.811999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,19,1,52.200200000000002,0.036760000000000001,46.444000000000003,48.362000000000002,50.280999999999999,52.2,54.119,56.037999999999997,57.957000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,20,1,52.335299999999997,0.036729999999999999,46.567999999999998,48.491,50.412999999999997,52.335000000000001,54.258000000000003,56.18,58.101999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,21,1,52.469499999999996,0.03669,46.694000000000003,48.619,50.543999999999997,52.47,54.395000000000003,56.32,58.244999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,22,1,52.602699999999999,0.036659999999999998,46.817,48.746000000000002,50.673999999999999,52.603000000000002,54.530999999999999,56.46,58.387999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,23,1,52.734900000000003,0.036630000000000003,46.94,48.872,50.802999999999997,52.734999999999999,54.667000000000002,56.597999999999999,58.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,24,1,52.866100000000003,0.036600000000000001,47.061,48.996000000000002,50.930999999999997,52.866,54.801000000000002,56.735999999999997,58.670999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,25,1,52.996299999999998,0.036560000000000002,47.183999999999997,49.121000000000002,51.058999999999997,52.996000000000002,54.933999999999997,56.871000000000002,58.808999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,26,1,53.125500000000002,0.03653,47.302999999999997,49.244,51.185000000000002,53.125999999999998,55.066000000000003,57.006999999999998,58.948 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,27,1,53.253700000000002,0.036499999999999998,47.421999999999997,49.366,51.31,53.253999999999998,55.197000000000003,57.140999999999998,59.085000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,28,1,53.380899999999997,0.036470000000000002,47.54,49.487000000000002,51.433999999999997,53.381,55.328000000000003,57.274999999999999,59.220999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,29,1,53.507199999999997,0.03644,47.658000000000001,49.607999999999997,51.557000000000002,53.506999999999998,55.457000000000001,57.406999999999996,59.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,30,1,53.632599999999996,0.036409999999999998,47.774000000000001,49.726999999999997,51.68,53.633000000000003,55.585000000000001,57.537999999999997,59.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,31,1,53.757100000000001,0.036380000000000003,47.89,49.845999999999997,51.801000000000002,53.756999999999998,55.713000000000001,57.667999999999999,59.624000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,32,1,53.880600000000001,0.036360000000000003,48.003,49.962000000000003,51.921999999999997,53.881,55.84,57.798999999999999,59.758000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,33,1,54.003100000000003,0.036330000000000001,48.116999999999997,50.079000000000001,52.040999999999997,54.003,55.965000000000003,57.927,59.889000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,34,1,54.124699999999997,0.036299999999999999,48.231000000000002,50.195,52.16,54.125,56.088999999999999,58.054000000000002,60.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,35,1,54.245399999999997,0.036269999999999997,48.343000000000004,50.31,52.277999999999999,54.244999999999997,56.213000000000001,58.18,60.148000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,36,1,54.365099999999998,0.036249999999999998,48.453000000000003,50.423999999999999,52.393999999999998,54.365000000000002,56.335999999999999,58.307000000000002,60.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,37,1,54.483899999999998,0.036220000000000002,48.564,50.536999999999999,52.51,54.484000000000002,56.457000000000001,58.430999999999997,60.404000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,38,1,54.601799999999997,0.03619,48.673999999999999,50.65,52.625999999999998,54.601999999999997,56.578000000000003,58.554000000000002,60.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,39,1,54.718699999999998,0.036170000000000001,48.780999999999999,50.76,52.74,54.719000000000001,56.698,58.677,60.655999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,40,1,54.834800000000001,0.036139999999999999,48.89,50.871000000000002,52.853000000000002,54.835000000000001,56.817,58.798000000000002,60.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,41,1,54.9499,0.036119999999999999,48.996000000000002,50.98,52.965000000000003,54.95,56.935000000000002,58.918999999999997,60.904000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,42,1,55.0642,0.036089999999999997,49.101999999999997,51.09,53.076999999999998,55.064,57.051000000000002,59.039000000000001,61.026000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,43,1,55.177700000000002,0.036069999999999998,49.207000000000001,51.197000000000003,53.186999999999998,55.177999999999997,57.167999999999999,59.158000000000001,61.148000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,44,1,55.290300000000002,0.036040000000000003,49.311999999999998,51.305,53.298000000000002,55.29,57.283000000000001,59.276000000000003,61.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,45,1,55.402099999999997,0.036020000000000003,49.414999999999999,51.411000000000001,53.406999999999996,55.402000000000001,57.398000000000003,59.393000000000001,61.389000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,46,1,55.512999999999998,0.035999999999999997,49.518000000000001,51.515999999999998,53.515000000000001,55.512999999999998,57.511000000000003,59.51,61.508000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,47,1,55.622999999999998,0.035970000000000002,49.621000000000002,51.621000000000002,53.622,55.622999999999998,57.624000000000002,59.625,61.625 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,48,1,55.732199999999999,0.035950000000000003,49.720999999999997,51.725000000000001,53.728999999999999,55.731999999999999,57.735999999999997,59.738999999999997,61.743000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,49,1,55.840600000000002,0.035929999999999997,49.822000000000003,51.828000000000003,53.834000000000003,55.841000000000001,57.847000000000001,59.853000000000002,61.86 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,50,1,55.9482,0.035909999999999997,49.920999999999999,51.93,53.939,55.948,57.957000000000001,59.966000000000001,61.975000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,51,1,56.054900000000004,0.035880000000000002,50.021000000000001,52.031999999999996,54.043999999999997,56.055,58.066000000000003,60.076999999999998,62.088999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,52,1,56.160899999999998,0.035860000000000003,50.119,52.133000000000003,54.146999999999998,56.161000000000001,58.174999999999997,60.189,62.203000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,53,1,56.265999999999998,0.035839999999999997,50.216000000000001,52.232999999999997,54.249000000000002,56.265999999999998,58.283000000000001,60.298999999999999,62.316000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,54,1,56.370399999999997,0.035819999999999998,50.313000000000002,52.332000000000001,54.350999999999999,56.37,58.39,60.408999999999999,62.427999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,55,1,56.4739,0.035799999999999998,50.408999999999999,52.43,54.451999999999998,56.473999999999997,58.496000000000002,60.517000000000003,62.539000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,56,1,56.576700000000002,0.035779999999999999,50.503999999999998,52.527999999999999,54.552,56.576999999999998,58.600999999999999,60.625,62.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,57,1,56.678800000000003,0.03576,50.597999999999999,52.625,54.652000000000001,56.679000000000002,58.706000000000003,60.731999999999999,62.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,58,1,56.78,0.035740000000000001,50.692,52.720999999999997,54.750999999999998,56.78,58.808999999999997,60.838999999999999,62.868000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,59,1,56.880600000000001,0.035720000000000002,50.784999999999997,52.817,54.848999999999997,56.881,58.911999999999999,60.944000000000003,62.975999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,60,1,56.980499999999999,0.035700000000000003,50.878,52.911999999999999,54.945999999999998,56.98,59.015000000000001,61.048999999999999,63.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,61,1,57.079599999999999,0.035680000000000003,50.97,53.006,55.042999999999999,57.08,59.116,61.152999999999999,63.189 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,62,1,57.178199999999997,0.035659999999999997,51.061,53.1,55.139000000000003,57.177999999999997,59.216999999999999,61.256,63.295000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,63,1,57.2761,0.035639999999999998,51.152000000000001,53.192999999999998,55.234999999999999,57.276000000000003,59.317,61.359000000000002,63.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,64,1,57.3733,0.035619999999999999,51.241999999999997,53.286000000000001,55.33,57.372999999999998,59.417000000000002,61.460999999999999,63.503999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,65,1,57.469900000000003,0.035610000000000003,51.33,53.377000000000002,55.423000000000002,57.47,59.515999999999998,61.563000000000002,63.609000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,66,1,57.565899999999999,0.035589999999999997,51.42,53.468000000000004,55.517000000000003,57.566000000000003,59.615000000000002,61.662999999999997,63.712000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,67,1,57.661299999999997,0.035569999999999997,51.508000000000003,53.558999999999997,55.61,57.661000000000001,59.712000000000003,61.762999999999998,63.814 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,68,1,57.756,0.035549999999999998,51.595999999999997,53.65,55.703000000000003,57.756,59.808999999999997,61.862000000000002,63.915999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,69,1,57.850099999999998,0.035529999999999999,51.683999999999997,53.738999999999997,55.795000000000002,57.85,59.905999999999999,61.960999999999999,64.016000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,70,1,57.943600000000004,0.035520000000000003,51.768999999999998,53.826999999999998,55.884999999999998,57.944000000000003,60.002000000000002,62.06,64.117999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,71,1,58.036499999999997,0.035499999999999997,51.856000000000002,53.915999999999997,55.975999999999999,58.036000000000001,60.097000000000001,62.156999999999996,64.216999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,72,1,58.128799999999998,0.035479999999999998,51.942,54.003999999999998,56.066000000000003,58.128999999999998,60.191000000000003,62.253999999999998,64.316000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,73,1,58.220599999999997,0.035470000000000002,52.024999999999999,54.09,56.155999999999999,58.220999999999997,60.286000000000001,62.350999999999999,64.415999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,74,1,58.311700000000002,0.035450000000000002,52.11,54.177,56.244999999999997,58.311999999999998,60.378999999999998,62.445999999999998,64.513000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,75,1,58.402200000000001,0.035430000000000003,52.195,54.264000000000003,56.332999999999998,58.402000000000001,60.470999999999997,62.540999999999997,64.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,76,1,58.492199999999997,0.03542,52.277000000000001,54.348999999999997,56.42,58.491999999999997,60.564,62.636000000000003,64.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,77,1,58.581600000000002,0.035400000000000001,52.36,54.433999999999997,56.508000000000003,58.582000000000001,60.655000000000001,62.728999999999999,64.802999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,78,1,58.670499999999997,0.035389999999999998,52.441000000000003,54.518000000000001,56.594000000000001,58.67,60.747,62.823,64.900000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,79,1,58.758800000000001,0.035369999999999999,52.524000000000001,54.601999999999997,56.680999999999997,58.759,60.837000000000003,62.914999999999999,64.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,80,1,58.846499999999999,0.035360000000000003,52.603999999999999,54.685000000000002,56.765999999999998,58.845999999999997,60.927,63.008000000000003,65.088999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,81,1,58.933700000000002,0.035340000000000003,52.686,54.768000000000001,56.850999999999999,58.933999999999997,61.015999999999998,63.098999999999997,65.182000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,82,1,59.020400000000002,0.03533,52.765000000000001,54.85,56.935000000000002,59.02,61.106000000000002,63.191000000000003,65.275999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,83,1,59.1066,0.035310000000000001,52.844999999999999,54.932000000000002,57.02,59.106999999999999,61.194000000000003,63.280999999999999,65.367999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,84,1,59.1922,0.035299999999999998,52.923999999999999,55.012999999999998,57.103000000000002,59.192,61.281999999999996,63.371000000000002,65.460999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,85,1,59.277299999999997,0.035279999999999999,53.003,55.094999999999999,57.186,59.277000000000001,61.369,63.46,65.551000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,86,1,59.361899999999999,0.035270000000000003,53.081000000000003,55.174999999999997,57.268000000000001,59.362000000000002,61.456000000000003,63.548999999999999,65.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,87,1,59.445900000000002,0.03526,53.158000000000001,55.253999999999998,57.35,59.445999999999998,61.542000000000002,63.637999999999998,65.733999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,88,1,59.529499999999999,0.03524,53.235999999999997,55.334000000000003,57.432000000000002,59.53,61.627000000000002,63.725000000000001,65.822999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,89,1,59.6126,0.035229999999999997,53.311999999999998,55.411999999999999,57.512,59.613,61.713000000000001,63.813000000000002,65.912999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,90,1,59.6952,0.035209999999999998,53.39,55.491,57.593000000000004,59.695,61.796999999999997,63.899000000000001,66.001000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,91,1,59.777299999999997,0.035200000000000002,53.465000000000003,55.569000000000003,57.673000000000002,59.777000000000001,61.881,63.985999999999997,66.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,92,1,59.858899999999998,0.035189999999999999,53.54,55.646000000000001,57.752000000000002,59.859000000000002,61.965000000000003,64.072000000000003,66.177999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,93,1,59.940100000000001,0.03517,53.616,55.723999999999997,57.832000000000001,59.94,62.048000000000002,64.156000000000006,66.263999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,94,1,60.020899999999997,0.035159999999999997,53.69,55.8,57.911000000000001,60.021000000000001,62.131,64.242000000000004,66.352000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,95,1,60.101100000000002,0.035150000000000001,53.762999999999998,55.875999999999998,57.988999999999997,60.100999999999999,62.213999999999999,64.325999999999993,66.438999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,96,1,60.180999999999997,0.035139999999999998,53.837000000000003,55.951000000000001,58.066000000000003,60.180999999999997,62.295999999999999,64.411000000000001,66.525000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,97,1,60.260300000000001,0.035119999999999998,53.911000000000001,56.027999999999999,58.143999999999998,60.26,62.377000000000002,64.492999999999995,66.608999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,98,1,60.339300000000001,0.035110000000000002,53.984000000000002,56.101999999999997,58.220999999999997,60.338999999999999,62.457999999999998,64.575999999999993,66.694999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,99,1,60.4178,0.035099999999999999,54.055999999999997,56.176000000000002,58.296999999999997,60.417999999999999,62.537999999999997,64.659000000000006,66.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,100,1,60.495800000000003,0.035090000000000003,54.127000000000002,56.25,58.372999999999998,60.496000000000002,62.619,64.741,66.864000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,101,1,60.573399999999999,0.03508,54.198999999999998,56.323999999999998,58.448,60.573,62.698,64.822999999999993,66.947999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,102,1,60.650599999999997,0.035060000000000001,54.271000000000001,56.398000000000003,58.524000000000001,60.651000000000003,62.777000000000001,64.903000000000006,67.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,103,1,60.7273,0.035049999999999998,54.341999999999999,56.47,58.598999999999997,60.726999999999997,62.856000000000002,64.983999999999995,67.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,104,1,60.803600000000003,0.035040000000000002,54.411999999999999,56.542000000000002,58.673000000000002,60.804000000000002,62.933999999999997,65.064999999999998,67.194999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,105,1,60.8795,0.035029999999999999,54.481999999999999,56.613999999999997,58.747,60.88,63.012,65.144999999999996,67.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,106,1,60.954999999999998,0.035020000000000003,54.551000000000002,56.686,58.82,60.954999999999998,63.09,65.224000000000004,67.358999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,107,1,61.030099999999997,0.035009999999999999,54.62,56.756999999999998,58.893000000000001,61.03,63.167000000000002,65.302999999999997,67.44 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,108,1,61.104700000000001,0.035000000000000003,54.689,56.826999999999998,58.966000000000001,61.104999999999997,63.243000000000002,65.382000000000005,67.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,109,1,61.178899999999999,0.03499,54.756999999999998,56.898000000000003,59.037999999999997,61.179000000000002,63.32,65.459999999999994,67.600999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,110,1,61.252699999999997,0.034970000000000001,54.826999999999998,56.969000000000001,59.110999999999997,61.253,63.395000000000003,65.537000000000006,67.679000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,111,1,61.326099999999997,0.034959999999999998,54.893999999999998,57.037999999999997,59.182000000000002,61.326000000000001,63.47,65.614000000000004,67.757999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,112,1,61.399099999999997,0.034950000000000002,54.960999999999999,57.106999999999999,59.253,61.399000000000001,63.545000000000002,65.691000000000003,67.837000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,113,1,61.471699999999998,0.034939999999999999,55.027999999999999,57.176000000000002,59.323999999999998,61.472000000000001,63.62,65.766999999999996,67.915000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,114,1,61.543900000000001,0.034930000000000003,55.094999999999999,57.244,59.393999999999998,61.543999999999997,63.694000000000003,65.843000000000004,67.992999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,115,1,61.615600000000001,0.03492,55.161000000000001,57.311999999999998,59.463999999999999,61.616,63.767000000000003,65.918999999999997,68.069999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,116,1,61.686999999999998,0.034909999999999997,55.226999999999997,57.38,59.533999999999999,61.686999999999998,63.84,65.994,68.147000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,117,1,61.758000000000003,0.0349,55.292000000000002,57.447000000000003,59.603000000000002,61.758000000000003,63.912999999999997,66.069000000000003,68.224000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,118,1,61.828600000000002,0.034889999999999997,55.356999999999999,57.514000000000003,59.670999999999999,61.829000000000001,63.985999999999997,66.143000000000001,68.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,119,1,61.898800000000001,0.034880000000000001,55.421999999999997,57.581000000000003,59.74,61.899000000000001,64.058000000000007,66.216999999999999,68.376000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,120,1,61.968600000000002,0.034869999999999998,55.485999999999997,57.646999999999998,59.808,61.969000000000001,64.129000000000005,66.290000000000006,68.450999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,121,1,62.0381,0.034869999999999998,55.548000000000002,57.712000000000003,59.875,62.037999999999997,64.200999999999993,66.364999999999995,68.528000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,122,1,62.107100000000003,0.034860000000000002,55.612000000000002,57.777000000000001,59.942,62.106999999999999,64.272000000000006,66.436999999999998,68.602000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,123,1,62.175800000000002,0.034849999999999999,55.674999999999997,57.841999999999999,60.009,62.176000000000002,64.343000000000004,66.509,68.676000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,124,1,62.244100000000003,0.034840000000000003,55.738,57.906999999999996,60.076000000000001,62.244,64.412999999999997,66.581000000000003,68.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,125,1,62.311999999999998,0.03483,55.801000000000002,57.970999999999997,60.142000000000003,62.311999999999998,64.481999999999999,66.653000000000006,68.822999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,126,1,62.3795,0.034819999999999997,55.863,58.034999999999997,60.207000000000001,62.38,64.552000000000007,66.724000000000004,68.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,127,1,62.4467,0.034810000000000001,55.924999999999997,58.098999999999997,60.273000000000003,62.447000000000003,64.62,66.793999999999997,68.968000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,128,1,62.513500000000001,0.034799999999999998,55.987000000000002,58.162999999999997,60.338000000000001,62.514000000000003,64.688999999999993,66.864000000000004,69.040000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,129,1,62.58,0.034790000000000001,56.048999999999999,58.225999999999999,60.402999999999999,62.58,64.757000000000005,66.933999999999997,69.111000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,130,1,62.646099999999997,0.034790000000000001,56.107999999999997,58.286999999999999,60.466999999999999,62.646000000000001,64.825999999999993,67.004999999999995,69.183999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,131,1,62.711799999999997,0.034779999999999998,56.167999999999999,58.35,60.530999999999999,62.712000000000003,64.893000000000001,67.073999999999998,69.254999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,132,1,62.777200000000001,0.034770000000000002,56.228999999999999,58.411999999999999,60.594000000000001,62.777000000000001,64.959999999999994,67.143000000000001,69.325000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,133,1,62.842300000000002,0.034759999999999999,56.289000000000001,58.473999999999997,60.658000000000001,62.841999999999999,65.027000000000001,67.210999999999999,69.394999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,134,1,62.906999999999996,0.034750000000000003,56.348999999999997,58.534999999999997,60.720999999999997,62.906999999999996,65.093000000000004,67.278999999999996,69.465000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,135,1,62.971400000000003,0.034750000000000003,56.406999999999996,58.594999999999999,60.783000000000001,62.970999999999997,65.16,67.347999999999999,69.536000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,136,1,63.035400000000003,0.03474,56.466000000000001,58.655999999999999,60.845999999999997,63.034999999999997,65.224999999999994,67.415000000000006,69.605000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,137,1,63.0991,0.034729999999999997,56.524999999999999,58.716000000000001,60.908000000000001,63.098999999999997,65.290999999999997,67.481999999999999,69.673000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,138,1,63.162599999999998,0.034720000000000001,56.584000000000003,58.777000000000001,60.97,63.162999999999997,65.355999999999995,67.549000000000007,69.742000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,139,1,63.225700000000003,0.034709999999999998,56.642000000000003,58.837000000000003,61.030999999999999,63.225999999999999,65.42,67.614999999999995,69.808999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,140,1,63.288400000000003,0.034709999999999998,56.698,58.895000000000003,61.091999999999999,63.287999999999997,65.484999999999999,67.682000000000002,69.879000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,141,1,63.350900000000003,0.034700000000000002,56.756,58.954000000000001,61.152999999999999,63.350999999999999,65.549000000000007,67.747,69.945999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,142,1,63.4131,0.034689999999999999,56.814,59.012999999999998,61.213000000000001,63.412999999999997,65.613,67.813000000000002,70.013000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,143,1,63.475000000000001,0.034689999999999999,56.869,59.070999999999998,61.273000000000003,63.475000000000001,65.677000000000007,67.879000000000005,70.081000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,144,1,63.536499999999997,0.034680000000000002,56.926000000000002,59.13,61.332999999999998,63.536000000000001,65.739999999999995,67.942999999999998,70.147000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,145,1,63.597799999999999,0.034669999999999999,56.982999999999997,59.188000000000002,61.393000000000001,63.597999999999999,65.802999999999997,68.007999999999996,70.212999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,146,1,63.658799999999999,0.034669999999999999,57.037999999999997,59.244999999999997,61.451999999999998,63.658999999999999,65.866,68.072999999999993,70.28 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,147,1,63.7196,0.034660000000000003,57.094000000000001,59.302999999999997,61.511000000000003,63.72,65.927999999999997,68.137,70.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,148,1,63.78,0.03465,57.15,59.36,61.57,63.78,65.989999999999995,68.2,70.41 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,149,1,63.840200000000003,0.03465,57.204000000000001,59.415999999999997,61.628,63.84,66.052000000000007,68.263999999999996,70.475999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,150,1,63.9,0.034639999999999997,57.26,59.472999999999999,61.686999999999998,63.9,66.113,68.326999999999998,70.540000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,151,1,63.959699999999998,0.034630000000000001,57.314999999999998,59.53,61.744999999999997,63.96,66.174999999999997,68.39,70.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,152,1,64.019000000000005,0.034630000000000001,57.368000000000002,59.585000000000001,61.802,64.019000000000005,66.236000000000004,68.453000000000003,70.67 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,153,1,64.078100000000006,0.034619999999999998,57.423000000000002,59.640999999999998,61.86,64.078000000000003,66.296000000000006,68.515000000000001,70.733000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,154,1,64.137,0.034610000000000002,57.478000000000002,59.697000000000003,61.917000000000002,64.137,66.356999999999999,68.576999999999998,70.796000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,155,1,64.195599999999999,0.034610000000000002,57.53,59.752000000000002,61.973999999999997,64.195999999999998,66.417000000000002,68.638999999999996,70.861000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,156,1,64.253900000000002,0.034599999999999999,57.584000000000003,59.808,62.030999999999999,64.254000000000005,66.477000000000004,68.7,70.923000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,157,1,64.311999999999998,0.034599999999999999,57.636000000000003,59.862000000000002,62.087000000000003,64.311999999999998,66.537000000000006,68.762,70.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,158,1,64.369900000000001,0.034590000000000003,57.69,59.917000000000002,62.143000000000001,64.37,66.596000000000004,68.822999999999993,71.05 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,159,1,64.427599999999998,0.034590000000000003,57.741999999999997,59.97,62.198999999999998,64.427999999999997,66.656000000000006,68.885000000000005,71.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,160,1,64.484999999999999,0.03458,57.795000000000002,60.024999999999999,62.255000000000003,64.484999999999999,66.715000000000003,68.944999999999993,71.174999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,161,1,64.542199999999994,0.034569999999999997,57.848999999999997,60.08,62.311,64.542000000000002,66.772999999999996,69.004999999999995,71.236000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,162,1,64.599100000000007,0.034569999999999997,57.9,60.133000000000003,62.366,64.599000000000004,66.831999999999994,69.064999999999998,71.299000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,163,1,64.655900000000003,0.03456,57.951999999999998,60.186999999999998,62.420999999999999,64.656000000000006,66.89,69.125,71.358999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,164,1,64.712400000000002,0.03456,58.003,60.238999999999997,62.475999999999999,64.712000000000003,66.948999999999998,69.185000000000002,71.421999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,165,1,64.768799999999999,0.034549999999999997,58.055999999999997,60.292999999999999,62.530999999999999,64.769000000000005,67.007000000000005,69.244,71.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,166,1,64.8249,0.034549999999999997,58.106000000000002,60.344999999999999,62.585000000000001,64.825000000000003,67.064999999999998,69.304000000000002,71.543999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,167,1,64.880799999999994,0.034540000000000001,58.158000000000001,60.399000000000001,62.64,64.881,67.122,69.363,71.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,168,1,64.936599999999999,0.034540000000000001,58.207999999999998,60.451000000000001,62.694000000000003,64.936999999999998,67.180000000000007,69.421999999999997,71.665000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,169,1,64.992099999999994,0.034529999999999998,58.26,60.503999999999998,62.747999999999998,64.992000000000004,67.236000000000004,69.48,71.724999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,170,1,65.047399999999996,0.034529999999999998,58.308999999999997,60.555,62.801000000000002,65.046999999999997,67.293000000000006,69.540000000000006,71.786000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,171,1,65.102599999999995,0.034529999999999998,58.359000000000002,60.606999999999999,62.854999999999997,65.102999999999994,67.350999999999999,69.599000000000004,71.846999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,172,1,65.157600000000002,0.034520000000000002,58.41,60.658999999999999,62.908000000000001,65.158000000000001,67.406999999999996,69.656000000000006,71.905000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,173,1,65.212299999999999,0.034520000000000002,58.459000000000003,60.71,62.960999999999999,65.212000000000003,67.462999999999994,69.715000000000003,71.965999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,174,1,65.266999999999996,0.034509999999999999,58.51,60.762,63.015000000000001,65.266999999999996,67.519000000000005,69.772000000000006,72.024000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,175,1,65.321399999999997,0.034509999999999999,58.558999999999997,60.813000000000002,63.067,65.320999999999998,67.575999999999993,69.83,72.084000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,176,1,65.375699999999995,0.034500000000000003,58.609000000000002,60.865000000000002,63.12,65.376000000000005,67.631,69.887,72.141999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,177,1,65.4298,0.034500000000000003,58.658000000000001,60.914999999999999,63.171999999999997,65.430000000000007,67.686999999999998,69.944000000000003,72.201999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,178,1,65.483699999999999,0.034500000000000003,58.706000000000003,60.965000000000003,63.225000000000001,65.483999999999995,67.742999999999995,70.001999999999995,72.260999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,179,1,65.537499999999994,0.03449,58.756,61.017000000000003,63.277000000000001,65.537999999999997,67.798000000000002,70.058000000000007,72.319000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,180,1,65.591099999999997,0.03449,58.804000000000002,61.067,63.329000000000001,65.590999999999994,67.852999999999994,70.116,72.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,181,1,65.644499999999994,0.03449,58.851999999999997,61.116,63.38,65.644000000000005,67.909000000000006,70.173000000000002,72.436999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,182,1,65.697800000000001,0.034479999999999997,58.902000000000001,61.167000000000002,63.433,65.697999999999993,67.962999999999994,70.227999999999994,72.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,183,1,65.751000000000005,0.034479999999999997,58.95,61.216999999999999,63.484000000000002,65.751000000000005,68.018000000000001,70.284999999999997,72.552000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,184,1,65.804000000000002,0.034470000000000001,58.999000000000002,61.267000000000003,63.536000000000001,65.804000000000002,68.072000000000003,70.340999999999994,72.608999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,185,1,65.856800000000007,0.034470000000000001,59.046999999999997,61.317,63.587000000000003,65.856999999999999,68.126999999999995,70.397000000000006,72.667000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,186,1,65.909499999999994,0.034470000000000001,59.094000000000001,61.366,63.637999999999998,65.91,68.180999999999997,70.453000000000003,72.724999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,187,1,65.962100000000007,0.034470000000000001,59.140999999999998,61.414999999999999,63.688000000000002,65.962000000000003,68.236000000000004,70.510000000000005,72.783000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,188,1,66.014499999999998,0.034459999999999998,59.19,61.465000000000003,63.74,66.013999999999996,68.289000000000001,70.563999999999993,72.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,189,1,66.066800000000001,0.034459999999999998,59.237000000000002,61.512999999999998,63.79,66.066999999999993,68.343000000000004,70.62,72.897000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,190,1,66.118899999999996,0.034459999999999998,59.283999999999999,61.561999999999998,63.84,66.119,68.397000000000006,70.676000000000002,72.953999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,191,1,66.170900000000003,0.034450000000000001,59.332000000000001,61.612000000000002,63.890999999999998,66.171000000000006,68.45,70.73,73.010000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,192,1,66.222800000000007,0.034450000000000001,59.378999999999998,61.66,63.941000000000003,66.222999999999999,68.504000000000005,70.786000000000001,73.066999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,193,1,66.274500000000003,0.034450000000000001,59.424999999999997,61.707999999999998,63.991,66.274000000000001,68.558000000000007,70.840999999999994,73.123999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,194,1,66.326099999999997,0.034439999999999998,59.472999999999999,61.758000000000003,64.042000000000002,66.325999999999993,68.61,70.894999999999996,73.179000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,195,1,66.377600000000001,0.034439999999999998,59.518999999999998,61.805999999999997,64.091999999999999,66.378,68.664000000000001,70.95,73.236000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,196,1,66.429000000000002,0.034439999999999998,59.566000000000003,61.853000000000002,64.141000000000005,66.429000000000002,68.716999999999999,71.004999999999995,73.292000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,197,1,66.480199999999996,0.034439999999999998,59.610999999999997,61.901000000000003,64.191000000000003,66.48,68.77,71.058999999999997,73.349000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,198,1,66.531300000000002,0.034439999999999998,59.656999999999996,61.948999999999998,64.239999999999995,66.531000000000006,68.822999999999993,71.114000000000004,73.405000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,199,1,66.582300000000004,0.034430000000000002,59.704999999999998,61.997,64.290000000000006,66.581999999999994,68.875,71.167000000000002,73.459999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,200,1,66.633099999999999,0.034430000000000002,59.750999999999998,62.045000000000002,64.338999999999999,66.632999999999996,68.927000000000007,71.221000000000004,73.516000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,201,1,66.683899999999994,0.034430000000000002,59.795999999999999,62.091999999999999,64.388000000000005,66.683999999999997,68.98,71.275999999999996,73.572000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,202,1,66.734499999999997,0.034430000000000002,59.841000000000001,62.139000000000003,64.436999999999998,66.733999999999995,69.031999999999996,71.33,73.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,203,1,66.784999999999997,0.034419999999999999,59.889000000000003,62.188000000000002,64.486000000000004,66.784999999999997,69.084000000000003,71.382000000000005,73.680999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,204,1,66.835400000000007,0.034419999999999999,59.933999999999997,62.234000000000002,64.534999999999997,66.834999999999994,69.135999999999996,71.436000000000007,73.736999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,205,1,66.8857,0.034419999999999999,59.978999999999999,62.280999999999999,64.582999999999998,66.885999999999996,69.188000000000002,71.489999999999995,73.792000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,206,1,66.935900000000004,0.034419999999999999,60.024000000000001,62.328000000000003,64.632000000000005,66.936000000000007,69.239999999999995,71.543999999999997,73.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,207,1,66.985900000000001,0.034419999999999999,60.069000000000003,62.375,64.680000000000007,66.986000000000004,69.292000000000002,71.596999999999994,73.903000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,208,1,67.035899999999998,0.034419999999999999,60.113999999999997,62.420999999999999,64.728999999999999,67.036000000000001,69.343000000000004,71.650999999999996,73.957999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,209,1,67.085800000000006,0.034410000000000003,60.161000000000001,62.469000000000001,64.777000000000001,67.085999999999999,69.394000000000005,71.703000000000003,74.010999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,210,1,67.135499999999993,0.034410000000000003,60.204999999999998,62.515000000000001,64.825000000000003,67.135999999999996,69.445999999999998,71.756,74.066000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,211,1,67.185199999999995,0.034410000000000003,60.25,62.561999999999998,64.873000000000005,67.185000000000002,69.497,71.808999999999997,74.120999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,212,1,67.234700000000004,0.034410000000000003,60.293999999999997,62.607999999999997,64.921000000000006,67.234999999999999,69.548000000000002,71.861999999999995,74.174999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,213,1,67.284199999999998,0.034410000000000003,60.338000000000001,62.654000000000003,64.968999999999994,67.284000000000006,69.599000000000004,71.915000000000006,74.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,214,1,67.333500000000001,0.034410000000000003,60.383000000000003,62.7,65.016999999999996,67.334000000000003,69.650000000000006,71.966999999999999,74.284000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,215,1,67.382800000000003,0.034410000000000003,60.427,62.746000000000002,65.063999999999993,67.382999999999996,69.700999999999993,72.02,74.338999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,216,1,67.432000000000002,0.034410000000000003,60.470999999999997,62.790999999999997,65.111999999999995,67.432000000000002,69.751999999999995,72.072999999999993,74.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,217,1,67.480999999999995,0.0344,60.517000000000003,62.838000000000001,65.16,67.480999999999995,69.802000000000007,72.123999999999995,74.444999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,218,1,67.53,0.0344,60.561,62.884,65.206999999999994,67.53,69.852999999999994,72.176000000000002,74.498999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,219,1,67.578900000000004,0.0344,60.604999999999997,62.929000000000002,65.254000000000005,67.578999999999994,69.903999999999996,72.227999999999994,74.552999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,220,1,67.627700000000004,0.0344,60.649000000000001,62.975000000000001,65.301000000000002,67.628,69.953999999999994,72.28,74.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,221,1,67.676400000000001,0.0344,60.692,63.02,65.347999999999999,67.676000000000002,70.004000000000005,72.332999999999998,74.661000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,222,1,67.724999999999994,0.0344,60.735999999999997,63.066000000000003,65.394999999999996,67.724999999999994,70.055000000000007,72.384,74.713999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,223,1,67.773499999999999,0.0344,60.779000000000003,63.110999999999997,65.441999999999993,67.774000000000001,70.105000000000004,72.436000000000007,74.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,224,1,67.821899999999999,0.0344,60.823,63.155999999999999,65.489000000000004,67.822000000000003,70.155000000000001,72.488,74.820999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,225,1,67.8703,0.0344,60.866,63.201000000000001,65.536000000000001,67.87,70.204999999999998,72.540000000000006,74.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,226,1,67.918499999999995,0.0344,60.908999999999999,63.246000000000002,65.581999999999994,67.918000000000006,70.254999999999995,72.590999999999994,74.927999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,227,1,67.966700000000003,0.0344,60.953000000000003,63.290999999999997,65.629000000000005,67.966999999999999,70.305000000000007,72.643000000000001,74.980999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,228,1,68.014799999999994,0.0344,60.996000000000002,63.335000000000001,65.674999999999997,68.015000000000001,70.355000000000004,72.694000000000003,75.034000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,229,1,68.062799999999996,0.0344,61.039000000000001,63.38,65.721000000000004,68.063000000000002,70.403999999999996,72.745999999999995,75.087000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,230,1,68.110699999999994,0.0344,61.082000000000001,63.424999999999997,65.768000000000001,68.111000000000004,70.453999999999994,72.796999999999997,75.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,231,1,68.158500000000004,0.0344,61.125,63.469000000000001,65.813999999999993,68.158000000000001,70.503,72.847999999999999,75.191999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,232,1,68.206299999999999,0.0344,61.167000000000002,63.514000000000003,65.86,68.206000000000003,70.552999999999997,72.899000000000001,75.245000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,233,1,68.254000000000005,0.0344,61.21,63.558,65.906000000000006,68.254000000000005,70.602000000000004,72.95,75.298000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,234,1,68.301599999999993,0.0344,61.253,63.601999999999997,65.951999999999998,68.302000000000007,70.650999999999996,73.001000000000005,75.349999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,235,1,68.349100000000007,0.0344,61.295000000000002,63.646999999999998,65.998000000000005,68.349000000000004,70.7,73.052000000000007,75.403000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,236,1,68.396500000000003,0.0344,61.338000000000001,63.691000000000003,66.043999999999997,68.396000000000001,70.748999999999995,73.102000000000004,75.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,237,1,68.443899999999999,0.0344,61.38,63.734999999999999,66.088999999999999,68.444000000000003,70.798000000000002,73.153000000000006,75.507000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,238,1,68.491100000000003,0.0344,61.423000000000002,63.779000000000003,66.135000000000005,68.491,70.846999999999994,73.203000000000003,75.558999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,239,1,68.538300000000007,0.0344,61.465000000000003,63.823,66.180999999999997,68.537999999999997,70.896000000000001,73.254000000000005,75.611000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,240,1,68.585499999999996,0.0344,61.506999999999998,63.866999999999997,66.225999999999999,68.585999999999999,70.944999999999993,73.304000000000002,75.664000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,241,1,68.632499999999993,0.0344,61.55,63.911000000000001,66.272000000000006,68.632000000000005,70.992999999999995,73.353999999999999,75.715000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,242,1,68.679500000000004,0.0344,61.591999999999999,63.954000000000001,66.316999999999993,68.680000000000007,71.042000000000002,73.405000000000001,75.766999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,243,1,68.726399999999998,0.0344,61.634,63.997999999999998,66.361999999999995,68.725999999999999,71.090999999999994,73.454999999999998,75.819000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,244,1,68.773200000000003,0.0344,61.676000000000002,64.042000000000002,66.406999999999996,68.772999999999996,71.138999999999996,73.504999999999995,75.870999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,245,1,68.819999999999993,0.0344,61.718000000000004,64.084999999999994,66.453000000000003,68.819999999999993,71.186999999999998,73.555000000000007,75.921999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,246,1,68.866600000000005,0.0344,61.76,64.129000000000005,66.498000000000005,68.867000000000004,71.236000000000004,73.605000000000004,75.974000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,247,1,68.913300000000007,0.0344,61.801000000000002,64.171999999999997,66.543000000000006,68.912999999999997,71.284000000000006,73.655000000000001,76.025000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,248,1,68.959800000000001,0.0344,61.843000000000004,64.215000000000003,66.587999999999994,68.959999999999994,71.331999999999994,73.703999999999994,76.075999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,249,1,69.006299999999996,0.0344,61.884999999999998,64.259,66.632000000000005,69.006,71.38,73.754000000000005,76.128 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,250,1,69.052700000000002,0.0344,61.926000000000002,64.302000000000007,66.677000000000007,69.052999999999997,71.427999999999997,73.804000000000002,76.179000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,251,1,69.099000000000004,0.034410000000000003,61.966000000000001,64.343999999999994,66.721000000000004,69.099000000000004,71.477000000000004,73.853999999999999,76.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,252,1,69.145200000000003,0.034410000000000003,62.006999999999998,64.387,66.766000000000005,69.144999999999996,71.524000000000001,73.903999999999996,76.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,253,1,69.191400000000002,0.034410000000000003,62.048999999999999,64.430000000000007,66.811000000000007,69.191000000000003,71.572000000000003,73.953000000000003,76.334000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,254,1,69.2376,0.034410000000000003,62.09,64.472999999999999,66.855000000000004,69.238,71.62,74.003,76.385000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,255,1,69.283600000000007,0.034410000000000003,62.131,64.516000000000005,66.900000000000006,69.284000000000006,71.668000000000006,74.052000000000007,76.436000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,256,1,69.329599999999999,0.034410000000000003,62.173000000000002,64.558000000000007,66.944000000000003,69.33,71.715000000000003,74.100999999999999,76.486000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,257,1,69.375500000000002,0.034410000000000003,62.213999999999999,64.600999999999999,66.988,69.376000000000005,71.763000000000005,74.150000000000006,76.537000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,258,1,69.421400000000006,0.034410000000000003,62.255000000000003,64.644000000000005,67.033000000000001,69.421000000000006,71.81,74.198999999999998,76.587999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,259,1,69.467200000000005,0.034410000000000003,62.295999999999999,64.686000000000007,67.076999999999998,69.466999999999999,71.858000000000004,74.248000000000005,76.638000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,260,1,69.512900000000002,0.034419999999999999,62.335000000000001,64.727999999999994,67.12,69.513000000000005,71.906000000000006,74.298000000000002,76.691000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,261,1,69.558499999999995,0.034419999999999999,62.375999999999998,64.77,67.164000000000001,69.558000000000007,71.953000000000003,74.346999999999994,76.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,262,1,69.604100000000003,0.034419999999999999,62.417000000000002,64.813000000000002,67.207999999999998,69.603999999999999,72,74.396000000000001,76.790999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,263,1,69.649600000000007,0.034419999999999999,62.457999999999998,64.855000000000004,67.251999999999995,69.650000000000006,72.046999999999997,74.444000000000003,76.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,264,1,69.695099999999996,0.034419999999999999,62.497999999999998,64.897000000000006,67.296000000000006,69.694999999999993,72.093999999999994,74.492999999999995,76.891999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,265,1,69.740499999999997,0.034419999999999999,62.539000000000001,64.94,67.34,69.739999999999995,72.141000000000005,74.540999999999997,76.941999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,266,1,69.785799999999995,0.034430000000000002,62.578000000000003,64.98,67.382999999999996,69.786000000000001,72.188999999999993,74.590999999999994,76.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,267,1,69.831100000000006,0.034430000000000002,62.618000000000002,65.022999999999996,67.427000000000007,69.831000000000003,72.234999999999999,74.64,77.043999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,268,1,69.876300000000001,0.034430000000000002,62.658999999999999,65.064999999999998,67.47,69.876000000000005,72.281999999999996,74.688000000000002,77.093999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,269,1,69.921499999999995,0.034430000000000002,62.698999999999998,65.106999999999999,67.513999999999996,69.921999999999997,72.328999999999994,74.736000000000004,77.144000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,270,1,69.9666,0.034430000000000002,62.74,65.149000000000001,67.558000000000007,69.966999999999999,72.376000000000005,74.784999999999997,77.192999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,271,1,70.011600000000001,0.034439999999999998,62.777999999999999,65.188999999999993,67.599999999999994,70.012,72.423000000000002,74.834000000000003,77.245000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,272,1,70.056600000000003,0.034439999999999998,62.817999999999998,65.230999999999995,67.644000000000005,70.057000000000002,72.468999999999994,74.882000000000005,77.295000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,273,1,70.101500000000001,0.034439999999999998,62.859000000000002,65.272999999999996,67.686999999999998,70.102000000000004,72.516000000000005,74.930000000000007,77.343999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,274,1,70.146299999999997,0.034439999999999998,62.899000000000001,65.314999999999998,67.73,70.146000000000001,72.561999999999998,74.977999999999994,77.394000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,275,1,70.191100000000006,0.034439999999999998,62.939,65.355999999999995,67.774000000000001,70.191000000000003,72.608000000000004,75.025999999999996,77.442999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,276,1,70.235799999999998,0.034450000000000001,62.976999999999997,65.397000000000006,67.816000000000003,70.236000000000004,72.655000000000001,75.075000000000003,77.495000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,277,1,70.280500000000004,0.034450000000000001,63.017000000000003,65.438000000000002,67.858999999999995,70.28,72.701999999999998,75.123000000000005,77.543999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,278,1,70.325100000000006,0.034450000000000001,63.057000000000002,65.48,67.902000000000001,70.325000000000003,72.748000000000005,75.17,77.593000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,279,1,70.369699999999995,0.034450000000000001,63.097000000000001,65.521000000000001,67.944999999999993,70.37,72.793999999999997,75.218000000000004,77.641999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,280,1,70.414199999999994,0.034450000000000001,63.137,65.563000000000002,67.988,70.414000000000001,72.84,75.266000000000005,77.691999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,281,1,70.458600000000004,0.034459999999999998,63.174999999999997,65.602999999999994,68.031000000000006,70.459000000000003,72.887,75.314999999999998,77.742999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,282,1,70.503,0.034459999999999998,63.213999999999999,65.644000000000005,68.072999999999993,70.503,72.933000000000007,75.361999999999995,77.792000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,283,1,70.547399999999996,0.034459999999999998,63.253999999999998,65.685000000000002,68.116,70.546999999999997,72.977999999999994,75.41,77.840999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,284,1,70.591700000000003,0.034459999999999998,63.293999999999997,65.727000000000004,68.159000000000006,70.591999999999999,73.024000000000001,75.456999999999994,77.888999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,285,1,70.635900000000007,0.034470000000000001,63.331000000000003,65.766000000000005,68.200999999999993,70.635999999999996,73.070999999999998,75.506,77.94 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,286,1,70.680000000000007,0.034470000000000001,63.371000000000002,65.807000000000002,68.244,70.680000000000007,73.116,75.552999999999997,77.989000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,287,1,70.724100000000007,0.034470000000000001,63.411000000000001,65.847999999999999,68.286000000000001,70.724000000000004,73.162000000000006,75.599999999999994,78.037999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,288,1,70.768199999999993,0.034479999999999997,63.448,65.888000000000005,68.328000000000003,70.768000000000001,73.207999999999998,75.647999999999996,78.087999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,289,1,70.812200000000004,0.034479999999999997,63.487000000000002,65.929000000000002,68.370999999999995,70.811999999999998,73.254000000000005,75.694999999999993,78.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,290,1,70.856099999999998,0.034479999999999997,63.527000000000001,65.97,68.412999999999997,70.855999999999995,73.299000000000007,75.742000000000004,78.185000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,291,1,70.900000000000006,0.034479999999999997,63.566000000000003,66.010999999999996,68.454999999999998,70.900000000000006,73.344999999999999,75.789000000000001,78.233999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,292,1,70.943899999999999,0.03449,63.603000000000002,66.05,68.497,70.944000000000003,73.391000000000005,75.837999999999994,78.284000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,293,1,70.9876,0.03449,63.643000000000001,66.090999999999994,68.539000000000001,70.988,73.436000000000007,75.884,78.332999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,294,1,71.031400000000005,0.03449,63.682000000000002,66.132000000000005,68.581999999999994,71.031000000000006,73.480999999999995,75.930999999999997,78.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,295,1,71.075000000000003,0.034500000000000003,63.719000000000001,66.171000000000006,68.623000000000005,71.075000000000003,73.527000000000001,75.978999999999999,78.430999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,296,1,71.118700000000004,0.034500000000000003,63.758000000000003,66.212000000000003,68.665000000000006,71.119,73.572000000000003,76.025999999999996,78.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,297,1,71.162199999999999,0.034500000000000003,63.796999999999997,66.251999999999995,68.706999999999994,71.162000000000006,73.617000000000004,76.072000000000003,78.527000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,298,1,71.205699999999993,0.034500000000000003,63.835999999999999,66.293000000000006,68.748999999999995,71.206000000000003,73.662000000000006,76.119,78.575000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,299,1,71.249200000000002,0.034509999999999999,63.872999999999998,66.331999999999994,68.790000000000006,71.248999999999995,73.707999999999998,76.167000000000002,78.626000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,300,1,71.292599999999993,0.034509999999999999,63.911999999999999,66.372,68.831999999999994,71.293000000000006,73.753,76.212999999999994,78.674000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,301,1,71.335899999999995,0.034509999999999999,63.95,66.412000000000006,68.873999999999995,71.335999999999999,73.798000000000002,76.260000000000005,78.721000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,302,1,71.379199999999997,0.034520000000000002,63.987000000000002,66.450999999999993,68.915000000000006,71.379000000000005,73.843000000000004,76.307000000000002,78.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,303,1,71.422399999999996,0.034520000000000002,64.025999999999996,66.491,68.956999999999994,71.421999999999997,73.888000000000005,76.352999999999994,78.819000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,304,1,71.465599999999995,0.034520000000000002,64.064999999999998,66.531999999999996,68.998999999999995,71.465999999999994,73.933000000000007,76.400000000000006,78.867000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,305,1,71.508799999999994,0.034529999999999998,64.100999999999999,66.569999999999993,69.040000000000006,71.509,73.977999999999994,76.447000000000003,78.915999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,306,1,71.5518,0.034529999999999998,64.14,66.61,69.081000000000003,71.552000000000007,74.022000000000006,76.492999999999995,78.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,307,1,71.594899999999996,0.034529999999999998,64.177999999999997,66.650999999999996,69.123000000000005,71.594999999999999,74.066999999999993,76.539000000000001,79.010999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,308,1,71.637799999999999,0.034540000000000001,64.215000000000003,66.688999999999993,69.162999999999997,71.638000000000005,74.111999999999995,76.587000000000003,79.061000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,309,1,71.680800000000005,0.034540000000000001,64.253,66.728999999999999,69.204999999999998,71.680999999999997,74.156999999999996,76.632999999999996,79.108000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,310,1,71.723600000000005,0.034540000000000001,64.292000000000002,66.769000000000005,69.245999999999995,71.724000000000004,74.200999999999993,76.677999999999997,79.156000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,311,1,71.766400000000004,0.034549999999999997,64.328000000000003,66.807000000000002,69.287000000000006,71.766000000000005,74.245999999999995,76.724999999999994,79.204999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,312,1,71.809200000000004,0.034549999999999997,64.366,66.846999999999994,69.328000000000003,71.808999999999997,74.290000000000006,76.771000000000001,79.251999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,313,1,71.851900000000001,0.03456,64.402000000000001,66.885000000000005,69.369,71.852000000000004,74.334999999999994,76.817999999999998,79.302000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,314,1,71.894599999999997,0.03456,64.441000000000003,66.924999999999997,69.41,71.894999999999996,74.379000000000005,76.864000000000004,79.349000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,315,1,71.937200000000004,0.03456,64.478999999999999,66.965000000000003,69.450999999999993,71.936999999999998,74.423000000000002,76.909000000000006,79.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,316,1,71.979799999999997,0.034569999999999997,64.515000000000001,67.003,69.491,71.98,74.468000000000004,76.956000000000003,79.444999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,317,1,72.022300000000001,0.034569999999999997,64.552999999999997,67.043000000000006,69.531999999999996,72.022000000000006,74.512,77.001999999999995,79.492000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,318,1,72.064700000000002,0.034569999999999997,64.590999999999994,67.081999999999994,69.572999999999993,72.064999999999998,74.555999999999997,77.046999999999997,79.539000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,319,1,72.107100000000003,0.03458,64.626999999999995,67.12,69.614000000000004,72.106999999999999,74.600999999999999,77.093999999999994,79.587000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,320,1,72.149500000000003,0.03458,64.665000000000006,67.16,69.655000000000001,72.150000000000006,74.644000000000005,77.138999999999996,79.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,321,1,72.191800000000001,0.034590000000000003,64.7,67.197999999999993,69.694999999999993,72.191999999999993,74.688999999999993,77.186000000000007,79.683000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,322,1,72.233999999999995,0.034590000000000003,64.738,67.236999999999995,69.734999999999999,72.233999999999995,74.733000000000004,77.230999999999995,79.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,323,1,72.276200000000003,0.034590000000000003,64.775999999999996,67.275999999999996,69.775999999999996,72.275999999999996,74.775999999999996,77.275999999999996,79.775999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,324,1,72.318399999999997,0.034599999999999999,64.811999999999998,67.313999999999993,69.816000000000003,72.317999999999998,74.820999999999998,77.322999999999993,79.825000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,325,1,72.360500000000002,0.034599999999999999,64.849000000000004,67.352999999999994,69.856999999999999,72.36,74.864000000000004,77.367999999999995,79.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,326,1,72.402500000000003,0.034610000000000002,64.885000000000005,67.391000000000005,69.897000000000006,72.402000000000001,74.908000000000001,77.414000000000001,79.92 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,327,1,72.444500000000005,0.034610000000000002,64.923000000000002,67.430000000000007,69.936999999999998,72.444000000000003,74.951999999999998,77.459000000000003,79.965999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,328,1,72.486500000000007,0.034610000000000002,64.959999999999994,67.468999999999994,69.977999999999994,72.486000000000004,74.995000000000005,77.504000000000005,80.013000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,329,1,72.528400000000005,0.034619999999999998,64.995999999999995,67.507000000000005,70.016999999999996,72.528000000000006,75.039000000000001,77.55,80.061000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,330,1,72.5702,0.034619999999999998,65.033000000000001,67.545000000000002,70.058000000000007,72.569999999999993,75.082999999999998,77.594999999999999,80.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,331,1,72.611999999999995,0.034630000000000001,65.067999999999998,67.582999999999998,70.096999999999994,72.611999999999995,75.126999999999995,77.641000000000005,80.156000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,332,1,72.653800000000004,0.034630000000000001,65.105999999999995,67.622,70.138000000000005,72.653999999999996,75.17,77.686000000000007,80.201999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,333,1,72.695499999999996,0.034639999999999997,65.141000000000005,67.659000000000006,70.177000000000007,72.695999999999998,75.213999999999999,77.731999999999999,80.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,334,1,72.737200000000001,0.034639999999999997,65.177999999999997,67.697999999999993,70.218000000000004,72.736999999999995,75.257000000000005,77.775999999999996,80.296000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,335,1,72.778800000000004,0.034639999999999997,65.215999999999994,67.736999999999995,70.257999999999996,72.778999999999996,75.3,77.820999999999998,80.341999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,336,1,72.820300000000003,0.03465,65.251000000000005,67.774000000000001,70.296999999999997,72.819999999999993,75.343999999999994,77.867000000000004,80.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,337,1,72.861800000000002,0.03465,65.287999999999997,67.811999999999998,70.337000000000003,72.861999999999995,75.385999999999996,77.911000000000001,80.436000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,338,1,72.903300000000002,0.034660000000000003,65.322999999999993,67.849999999999994,70.376000000000005,72.903000000000006,75.430000000000007,77.956999999999994,80.483999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,339,1,72.944699999999997,0.034660000000000003,65.36,67.888000000000005,70.415999999999997,72.944999999999993,75.472999999999999,78.001000000000005,80.528999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,340,1,72.986099999999993,0.034669999999999999,65.394999999999996,67.924999999999997,70.456000000000003,72.986000000000004,75.516999999999996,78.046999999999997,80.576999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,341,1,73.0274,0.034669999999999999,65.432000000000002,67.963999999999999,70.495999999999995,73.027000000000001,75.558999999999997,78.090999999999994,80.623000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,342,1,73.068600000000004,0.034680000000000002,65.466999999999999,68.001000000000005,70.534999999999997,73.069000000000003,75.602999999999994,78.137,80.671000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,343,1,73.109899999999996,0.034680000000000002,65.504000000000005,68.039000000000001,70.573999999999998,73.11,75.644999999999996,78.180999999999997,80.715999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,344,1,73.150999999999996,0.034689999999999999,65.537999999999997,68.075999999999993,70.613,73.150999999999996,75.688999999999993,78.225999999999999,80.763999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,345,1,73.1922,0.034689999999999999,65.575000000000003,68.114000000000004,70.653000000000006,73.191999999999993,75.730999999999995,78.27,80.808999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,346,1,73.233199999999997,0.034689999999999999,65.611999999999995,68.152000000000001,70.692999999999998,73.233000000000004,75.774000000000001,78.313999999999993,80.855000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,347,1,73.274299999999997,0.034700000000000002,65.646000000000001,68.188999999999993,70.731999999999999,73.274000000000001,75.816999999999993,78.36,80.902000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,348,1,73.315200000000004,0.034700000000000002,65.683000000000007,68.227000000000004,70.771000000000001,73.314999999999998,75.858999999999995,78.403000000000006,80.947000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,349,1,73.356200000000001,0.034709999999999998,65.718000000000004,68.263999999999996,70.81,73.355999999999995,75.902000000000001,78.448999999999998,80.995000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,350,1,73.397099999999995,0.034709999999999998,65.754000000000005,68.302000000000007,70.849000000000004,73.397000000000006,75.944999999999993,78.492000000000004,81.040000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,351,1,73.437899999999999,0.034720000000000001,65.789000000000001,68.337999999999994,70.888000000000005,73.438000000000002,75.988,78.537000000000006,81.087000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,352,1,73.478700000000003,0.034720000000000001,65.825000000000003,68.376000000000005,70.927999999999997,73.478999999999999,76.03,78.581000000000003,81.132000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,353,1,73.519499999999994,0.034729999999999997,65.86,68.412999999999997,70.965999999999994,73.52,76.072999999999993,78.626000000000005,81.179000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,354,1,73.560199999999995,0.034729999999999997,65.896000000000001,68.450999999999993,71.004999999999995,73.56,76.114999999999995,78.67,81.224000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,355,1,73.600800000000007,0.03474,65.930000000000007,68.486999999999995,71.043999999999997,73.600999999999999,76.158000000000001,78.715000000000003,81.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,356,1,73.641400000000004,0.03474,65.965999999999994,68.525000000000006,71.082999999999998,73.641000000000005,76.2,78.757999999999996,81.316000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,357,1,73.682000000000002,0.034750000000000003,66.001000000000005,68.561000000000007,71.122,73.682000000000002,76.242000000000004,78.802999999999997,81.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,358,1,73.722499999999997,0.034750000000000003,66.037000000000006,68.599000000000004,71.161000000000001,73.721999999999994,76.284000000000006,78.846000000000004,81.408000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,359,1,73.763000000000005,0.034759999999999999,66.070999999999998,68.635000000000005,71.198999999999998,73.763000000000005,76.326999999999998,78.891000000000005,81.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,360,1,73.803399999999996,0.034759999999999999,66.106999999999999,68.673000000000002,71.238,73.802999999999997,76.369,78.933999999999997,81.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,361,1,73.843800000000002,0.034770000000000002,66.141000000000005,68.709000000000003,71.275999999999996,73.843999999999994,76.411000000000001,78.978999999999999,81.546000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,362,1,73.884200000000007,0.034770000000000002,66.177000000000007,68.745999999999995,71.314999999999998,73.884,76.453000000000003,79.022000000000006,81.590999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,363,1,73.924499999999995,0.034779999999999998,66.210999999999999,68.781999999999996,71.352999999999994,73.924000000000007,76.495999999999995,79.066999999999993,81.638000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,364,1,73.964699999999993,0.034779999999999998,66.247,68.819999999999993,71.391999999999996,73.965000000000003,76.537000000000006,79.11,81.682000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,365,1,74.004900000000006,0.034790000000000001,66.281000000000006,68.855999999999995,71.430000000000007,74.004999999999995,76.58,79.153999999999996,81.728999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,366,1,74.045100000000005,0.034790000000000001,66.316999999999993,68.893000000000001,71.468999999999994,74.045000000000002,76.620999999999995,79.197000000000003,81.772999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,367,1,74.0852,0.034799999999999998,66.350999999999999,68.929000000000002,71.507000000000005,74.084999999999994,76.662999999999997,79.242000000000004,81.819999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,368,1,74.125299999999996,0.034799999999999998,66.387,68.965999999999994,71.546000000000006,74.125,76.704999999999998,79.284000000000006,81.864000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,369,1,74.165300000000002,0.034810000000000001,66.42,69.001999999999995,71.584000000000003,74.165000000000006,76.747,79.328999999999994,81.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,370,1,74.205299999999994,0.034819999999999997,66.453999999999994,69.037999999999997,71.620999999999995,74.204999999999998,76.789000000000001,79.373000000000005,81.956999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,371,1,74.245199999999997,0.034819999999999997,66.489999999999995,69.075000000000003,71.66,74.245000000000005,76.83,79.415999999999997,82.001000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,372,1,74.2851,0.03483,66.522999999999996,69.11,71.697999999999993,74.284999999999997,76.872,79.459999999999994,82.046999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,373,1,74.325000000000003,0.03483,66.558999999999997,69.147999999999996,71.736000000000004,74.325000000000003,76.914000000000001,79.501999999999995,82.090999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,374,1,74.364800000000002,0.034840000000000003,66.591999999999999,69.183000000000007,71.774000000000001,74.364999999999995,76.956000000000003,79.546999999999997,82.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,375,1,74.404499999999999,0.034840000000000003,66.628,69.22,71.811999999999998,74.403999999999996,76.997,79.588999999999999,82.180999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,376,1,74.444299999999998,0.034849999999999999,66.661000000000001,69.256,71.849999999999994,74.444000000000003,77.039000000000001,79.632999999999996,82.227000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,377,1,74.483900000000006,0.034849999999999999,66.697000000000003,69.292000000000002,71.888000000000005,74.483999999999995,77.08,79.674999999999997,82.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,378,1,74.523600000000002,0.034860000000000002,66.73,69.328000000000003,71.926000000000002,74.524000000000001,77.120999999999995,79.718999999999994,82.316999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,379,1,74.563199999999995,0.034860000000000002,66.765000000000001,69.364999999999995,71.963999999999999,74.563000000000002,77.162000000000006,79.762,82.361000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,380,1,74.602699999999999,0.034869999999999998,66.799000000000007,69.400000000000006,72.001000000000005,74.602999999999994,77.203999999999994,79.805000000000007,82.406999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,381,1,74.642200000000003,0.034880000000000001,66.831999999999994,69.435000000000002,72.039000000000001,74.641999999999996,77.245999999999995,79.849000000000004,82.453000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,382,1,74.681700000000006,0.034880000000000001,66.867000000000004,69.471999999999994,72.076999999999998,74.682000000000002,77.287000000000006,79.891000000000005,82.495999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,383,1,74.721100000000007,0.034889999999999997,66.900000000000006,69.507000000000005,72.114000000000004,74.721000000000004,77.328000000000003,79.935000000000002,82.542000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,384,1,74.760499999999993,0.034889999999999997,66.935000000000002,69.543999999999997,72.152000000000001,74.760000000000005,77.369,79.977000000000004,82.585999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,385,1,74.799800000000005,0.0349,66.968000000000004,69.578999999999994,72.188999999999993,74.8,77.41,80.021000000000001,82.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,386,1,74.839100000000002,0.0349,67.003,69.614999999999995,72.227000000000004,74.838999999999999,77.450999999999993,80.063000000000002,82.674999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,387,1,74.878399999999999,0.034909999999999997,67.036000000000001,69.650000000000006,72.263999999999996,74.878,77.492000000000004,80.105999999999995,82.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,388,1,74.917599999999993,0.034909999999999997,67.070999999999998,69.686999999999998,72.302000000000007,74.918000000000006,77.533000000000001,80.147999999999996,82.763999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,389,1,74.956699999999998,0.03492,67.103999999999999,69.721999999999994,72.338999999999999,74.956999999999994,77.573999999999998,80.191999999999993,82.808999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,390,1,74.995900000000006,0.034930000000000003,67.137,69.757000000000005,72.376000000000005,74.995999999999995,77.616,80.234999999999999,82.855000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,391,1,75.034899999999993,0.034930000000000003,67.171999999999997,69.793000000000006,72.414000000000001,75.034999999999997,77.656000000000006,80.277000000000001,82.897999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,392,1,75.073999999999998,0.034939999999999999,67.204999999999998,69.828000000000003,72.450999999999993,75.073999999999998,77.697000000000003,80.319999999999993,82.942999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,393,1,75.113,0.034939999999999999,67.239999999999995,69.864000000000004,72.489000000000004,75.113,77.736999999999995,80.361999999999995,82.986000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,394,1,75.151899999999998,0.034950000000000002,67.272000000000006,69.899000000000001,72.525000000000006,75.152000000000001,77.778000000000006,80.405000000000001,83.031999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,395,1,75.190799999999996,0.034950000000000002,67.307000000000002,69.935000000000002,72.563000000000002,75.191000000000003,77.819000000000003,80.447000000000003,83.075000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,396,1,75.229699999999994,0.034959999999999998,67.34,69.97,72.599999999999994,75.23,77.86,80.489999999999995,83.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,397,1,75.268600000000006,0.034970000000000001,67.372,70.004000000000005,72.635999999999996,75.269000000000005,77.900999999999996,80.533000000000001,83.165000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,398,1,75.307299999999998,0.034970000000000001,67.406999999999996,70.040000000000006,72.674000000000007,75.307000000000002,77.941000000000003,80.573999999999998,83.207999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,399,1,75.346100000000007,0.034979999999999997,67.438999999999993,70.075000000000003,72.709999999999994,75.346000000000004,77.981999999999999,80.617000000000004,83.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,400,1,75.384799999999998,0.034979999999999997,67.474000000000004,70.111000000000004,72.748000000000005,75.385000000000005,78.022000000000006,80.659000000000006,83.296000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,401,1,75.423500000000004,0.03499,67.506,70.144999999999996,72.784000000000006,75.424000000000007,78.063000000000002,80.701999999999998,83.340999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,402,1,75.462100000000007,0.035000000000000003,67.539000000000001,70.180000000000007,72.820999999999998,75.462000000000003,78.102999999999994,80.744,83.385999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,403,1,75.500699999999995,0.035000000000000003,67.572999999999993,70.215999999999994,72.858000000000004,75.501000000000005,78.143000000000001,80.786000000000001,83.427999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,404,1,75.539199999999994,0.035009999999999999,67.605000000000004,70.25,72.894999999999996,75.539000000000001,78.183999999999997,80.828000000000003,83.472999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,405,1,75.577699999999993,0.035009999999999999,67.64,70.286000000000001,72.932000000000002,75.578000000000003,78.224000000000004,80.87,83.516000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,406,1,75.616200000000006,0.035020000000000003,67.671999999999997,70.319999999999993,72.968000000000004,75.616,78.263999999999996,80.912000000000006,83.56 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,407,1,75.654600000000002,0.035029999999999999,67.703999999999994,70.353999999999999,73.004000000000005,75.655000000000001,78.305000000000007,80.954999999999998,83.605000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,408,1,75.692999999999998,0.035029999999999999,67.738,70.39,73.040999999999997,75.692999999999998,78.344999999999999,80.995999999999995,83.647999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,409,1,75.731300000000005,0.035040000000000002,67.77,70.424000000000007,73.078000000000003,75.730999999999995,78.385000000000005,81.039000000000001,83.691999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,410,1,75.769599999999997,0.035040000000000002,67.805000000000007,70.459999999999994,73.114999999999995,75.77,78.424999999999997,81.08,83.734999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,411,1,75.807900000000004,0.035049999999999998,67.837000000000003,70.494,73.150999999999996,75.808000000000007,78.465000000000003,81.122,83.778999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,412,1,75.846100000000007,0.035060000000000001,67.869,70.528000000000006,73.186999999999998,75.846000000000004,78.504999999999995,81.164000000000001,83.823999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,413,1,75.884299999999996,0.035060000000000001,67.903000000000006,70.563000000000002,73.224000000000004,75.884,78.545000000000002,81.204999999999998,83.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,414,1,75.922399999999996,0.035069999999999997,67.935000000000002,70.596999999999994,73.260000000000005,75.921999999999997,78.584999999999994,81.248000000000005,83.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,415,1,75.960499999999996,0.035069999999999997,67.968999999999994,70.632999999999996,73.296999999999997,75.959999999999994,78.623999999999995,81.287999999999997,83.951999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,416,1,75.998599999999996,0.03508,68.001000000000005,70.667000000000002,73.332999999999998,75.998999999999995,78.665000000000006,81.331000000000003,83.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,417,1,76.036600000000007,0.035090000000000003,68.031999999999996,70.7,73.367999999999995,76.037000000000006,78.704999999999998,81.373000000000005,84.040999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,418,1,76.074600000000004,0.035090000000000003,68.066000000000003,70.736000000000004,73.405000000000001,76.075000000000003,78.744,81.414000000000001,84.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,419,1,76.112499999999997,0.035099999999999999,68.097999999999999,70.769000000000005,73.441000000000003,76.111999999999995,78.784000000000006,81.456000000000003,84.126999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,420,1,76.150400000000005,0.035110000000000002,68.129000000000005,70.802999999999997,73.477000000000004,76.150000000000006,78.823999999999998,81.498000000000005,84.171000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,421,1,76.188299999999998,0.035110000000000002,68.162999999999997,70.837999999999994,73.513000000000005,76.188000000000002,78.863,81.537999999999997,84.212999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,422,1,76.226100000000002,0.035119999999999998,68.194999999999993,70.872,73.549000000000007,76.225999999999999,78.903000000000006,81.58,84.257000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,423,1,76.263900000000007,0.035119999999999998,68.228999999999999,70.906999999999996,73.585999999999999,76.263999999999996,78.941999999999993,81.620999999999995,84.299000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,424,1,76.301599999999993,0.035130000000000002,68.260000000000005,70.941000000000003,73.620999999999995,76.302000000000007,78.981999999999999,81.662999999999997,84.343000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,425,1,76.339299999999994,0.035139999999999998,68.292000000000002,70.974000000000004,73.656999999999996,76.338999999999999,79.022000000000006,81.703999999999994,84.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,426,1,76.376999999999995,0.035139999999999998,68.325000000000003,71.009,73.692999999999998,76.376999999999995,79.061000000000007,81.745000000000005,84.429000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,427,1,76.414599999999993,0.035150000000000001,68.356999999999999,71.043000000000006,73.728999999999999,76.415000000000006,79.100999999999999,81.787000000000006,84.472999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,428,1,76.452200000000005,0.035159999999999997,68.388000000000005,71.075999999999993,73.763999999999996,76.451999999999998,79.14,81.828000000000003,84.516000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,429,1,76.489699999999999,0.035159999999999997,68.421999999999997,71.111000000000004,73.8,76.489999999999995,79.179000000000002,81.867999999999995,84.558000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,430,1,76.527199999999993,0.03517,68.453000000000003,71.144000000000005,73.835999999999999,76.527000000000001,79.218999999999994,81.91,84.602000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,431,1,76.564700000000002,0.035180000000000003,68.483999999999995,71.177999999999997,73.870999999999995,76.564999999999998,79.257999999999996,81.951999999999998,84.644999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,432,1,76.602099999999993,0.035180000000000003,68.518000000000001,71.212000000000003,73.906999999999996,76.602000000000004,79.296999999999997,81.992000000000004,84.686999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,433,1,76.639499999999998,0.035189999999999999,68.549000000000007,71.245999999999995,73.942999999999998,76.64,79.335999999999999,82.033000000000001,84.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,434,1,76.676900000000003,0.035189999999999999,68.581999999999994,71.28,73.978999999999999,76.677000000000007,79.375,82.072999999999993,84.772000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,435,1,76.714200000000005,0.035200000000000002,68.613,71.313999999999993,74.013999999999996,76.713999999999999,79.415000000000006,82.114999999999995,84.814999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,436,1,76.751499999999993,0.035209999999999998,68.644000000000005,71.346999999999994,74.049000000000007,76.751999999999995,79.453999999999994,82.156000000000006,84.858999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,437,1,76.788700000000006,0.035209999999999998,68.677999999999997,71.381,74.084999999999994,76.789000000000001,79.492000000000004,82.195999999999998,84.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,438,1,76.825900000000004,0.035220000000000001,68.707999999999998,71.414000000000001,74.12,76.825999999999993,79.531999999999996,82.238,84.942999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,439,1,76.863100000000003,0.035229999999999997,68.739000000000004,71.447000000000003,74.155000000000001,76.863,79.570999999999998,82.278999999999996,84.986999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,440,1,76.900199999999998,0.035229999999999997,68.772999999999996,71.481999999999999,74.191000000000003,76.900000000000006,79.608999999999995,82.319000000000003,85.028000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,441,1,76.937299999999993,0.03524,68.802999999999997,71.515000000000001,74.225999999999999,76.936999999999998,79.649000000000001,82.36,85.070999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,442,1,76.974400000000003,0.035249999999999997,68.834000000000003,71.548000000000002,74.260999999999996,76.974000000000004,79.688000000000002,82.400999999999996,85.114000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,443,1,77.011399999999995,0.035249999999999997,68.867000000000004,71.581999999999994,74.296999999999997,77.010999999999996,79.725999999999999,82.441000000000003,85.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,444,1,77.048400000000001,0.03526,68.897999999999996,71.614999999999995,74.331999999999994,77.048000000000002,79.765000000000001,82.481999999999999,85.198999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,445,1,77.085300000000004,0.035270000000000003,68.929000000000002,71.647999999999996,74.367000000000004,77.084999999999994,79.804000000000002,82.522999999999996,85.242000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,446,1,77.122200000000007,0.035270000000000003,68.962000000000003,71.682000000000002,74.402000000000001,77.122,79.841999999999999,82.561999999999998,85.281999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,447,1,77.159099999999995,0.035279999999999999,68.992999999999995,71.715000000000003,74.436999999999998,77.159000000000006,79.881,82.602999999999994,85.325999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,448,1,77.195899999999995,0.035290000000000002,69.022999999999996,71.747,74.471999999999994,77.195999999999998,79.92,82.644000000000005,85.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,449,1,77.232699999999994,0.035290000000000002,69.055999999999997,71.781999999999996,74.507000000000005,77.233000000000004,79.957999999999998,82.683999999999997,85.409000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,450,1,77.269499999999994,0.035299999999999998,69.087000000000003,71.813999999999993,74.542000000000002,77.27,79.997,82.724999999999994,85.451999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,451,1,77.306200000000004,0.035299999999999998,69.119,71.847999999999999,74.576999999999998,77.305999999999997,80.034999999999997,82.763999999999996,85.492999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,452,1,77.3429,0.035310000000000001,69.150000000000006,71.881,74.611999999999995,77.343000000000004,80.073999999999998,82.805000000000007,85.536000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,453,1,77.379599999999996,0.035319999999999997,69.180000000000007,71.914000000000001,74.647000000000006,77.38,80.113,82.846000000000004,85.578999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,454,1,77.416200000000003,0.035319999999999997,69.212999999999994,71.947999999999993,74.682000000000002,77.415999999999997,80.150999999999996,82.885000000000005,85.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,455,1,77.452799999999996,0.03533,69.244,71.98,74.715999999999994,77.453000000000003,80.188999999999993,82.926000000000002,85.662000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,456,1,77.4893,0.035340000000000003,69.274000000000001,72.012,74.751000000000005,77.489000000000004,80.227999999999994,82.965999999999994,85.704999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,457,1,77.525800000000004,0.035340000000000003,69.307000000000002,72.046000000000006,74.786000000000001,77.525999999999996,80.266000000000005,83.004999999999995,85.745000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,458,1,77.562299999999993,0.035349999999999999,69.337000000000003,72.078999999999994,74.819999999999993,77.561999999999998,80.304000000000002,83.046000000000006,85.787999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,459,1,77.598799999999997,0.035360000000000003,69.367000000000004,72.111000000000004,74.855000000000004,77.599000000000004,80.343000000000004,83.087000000000003,85.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,460,1,77.635199999999998,0.035360000000000003,69.400000000000006,72.144999999999996,74.89,77.635000000000005,80.38,83.126000000000005,85.870999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,461,1,77.671599999999998,0.035369999999999999,69.430000000000007,72.177000000000007,74.924000000000007,77.671999999999997,80.418999999999997,83.165999999999997,85.912999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,462,1,77.707899999999995,0.035380000000000002,69.459999999999994,72.209000000000003,74.959000000000003,77.707999999999998,80.456999999999994,83.206999999999994,85.956000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,463,1,77.744200000000006,0.035380000000000002,69.492000000000004,72.242999999999995,74.994,77.744,80.495000000000005,83.245000000000005,85.995999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,464,1,77.780500000000004,0.035389999999999998,69.522999999999996,72.275000000000006,75.028000000000006,77.78,80.533000000000001,83.286000000000001,86.037999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,465,1,77.816699999999997,0.035400000000000001,69.552999999999997,72.307000000000002,75.061999999999998,77.816999999999993,80.570999999999998,83.325999999999993,86.081000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,466,1,77.852900000000005,0.035400000000000001,69.584999999999994,72.340999999999994,75.096999999999994,77.852999999999994,80.608999999999995,83.364999999999995,86.120999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,467,1,77.889099999999999,0.035409999999999997,69.614999999999995,72.373000000000005,75.131,77.888999999999996,80.647000000000006,83.405000000000001,86.162999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,468,1,77.925200000000004,0.03542,69.644999999999996,72.405000000000001,75.165000000000006,77.924999999999997,80.685000000000002,83.444999999999993,86.206000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,469,1,77.961299999999994,0.035430000000000003,69.674999999999997,72.436999999999998,75.198999999999998,77.960999999999999,80.722999999999999,83.486000000000004,86.248000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,470,1,77.997399999999999,0.035430000000000003,69.706999999999994,72.471000000000004,75.233999999999995,77.997,80.760999999999996,83.524000000000001,86.287999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,471,1,78.0334,0.035439999999999999,69.736999999999995,72.501999999999995,75.268000000000001,78.033000000000001,80.799000000000007,83.563999999999993,86.33 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,472,1,78.069400000000002,0.035450000000000002,69.766999999999996,72.534000000000006,75.302000000000007,78.069000000000003,80.837000000000003,83.605000000000004,86.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,473,1,78.105400000000003,0.035450000000000002,69.799000000000007,72.567999999999998,75.337000000000003,78.105000000000004,80.873999999999995,83.643000000000001,86.412000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,474,1,78.141300000000001,0.035459999999999998,69.828999999999994,72.599999999999994,75.37,78.141000000000005,80.912000000000006,83.683000000000007,86.453999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,475,1,78.177199999999999,0.035470000000000002,69.858000000000004,72.631,75.403999999999996,78.177000000000007,80.95,83.722999999999999,86.495999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,476,1,78.213099999999997,0.035470000000000002,69.89,72.665000000000006,75.438999999999993,78.212999999999994,80.986999999999995,83.762,86.536000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,477,1,78.248999999999995,0.035479999999999998,69.92,72.695999999999998,75.472999999999999,78.248999999999995,81.025000000000006,83.802000000000007,86.578000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,478,1,78.284800000000004,0.035490000000000001,69.95,72.727999999999994,75.506,78.284999999999997,81.063000000000002,83.840999999999994,86.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,479,1,78.320499999999996,0.035490000000000001,69.981999999999999,72.760999999999996,75.540999999999997,78.319999999999993,81.099999999999994,83.88,86.659000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,480,1,78.356300000000005,0.035499999999999997,70.010999999999996,72.793000000000006,75.575000000000003,78.355999999999995,81.138000000000005,83.92,86.700999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,481,1,78.391999999999996,0.03551,70.040999999999997,72.825000000000003,75.608000000000004,78.391999999999996,81.176000000000002,83.959000000000003,86.742999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,482,1,78.427599999999998,0.03551,70.072999999999993,72.858000000000004,75.643000000000001,78.427999999999997,81.212999999999994,83.998000000000005,86.781999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,483,1,78.463300000000004,0.035520000000000003,70.102000000000004,72.888999999999996,75.676000000000002,78.462999999999994,81.25,84.037000000000006,86.823999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,484,1,78.498900000000006,0.035529999999999999,70.132000000000005,72.921000000000006,75.709999999999994,78.498999999999995,81.287999999999997,84.076999999999998,86.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,485,1,78.534499999999994,0.035529999999999999,70.164000000000001,72.953999999999994,75.744,78.534000000000006,81.325000000000003,84.114999999999995,86.905000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,486,1,78.569999999999993,0.035540000000000002,70.192999999999998,72.984999999999999,75.778000000000006,78.569999999999993,81.361999999999995,84.155000000000001,86.947000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,487,1,78.605500000000006,0.035549999999999998,70.221999999999994,73.016999999999996,75.811000000000007,78.605999999999995,81.400000000000006,84.194000000000003,86.989000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,488,1,78.641000000000005,0.035560000000000001,70.251999999999995,73.048000000000002,75.844999999999999,78.641000000000005,81.436999999999998,84.233999999999995,87.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,489,1,78.676400000000001,0.035560000000000001,70.283000000000001,73.081000000000003,75.879000000000005,78.676000000000002,81.474000000000004,84.272000000000006,87.07 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,490,1,78.711799999999997,0.035569999999999997,70.311999999999998,73.111999999999995,75.912000000000006,78.712000000000003,81.512,84.311000000000007,87.111000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,491,1,78.747200000000007,0.035580000000000001,70.341999999999999,73.144000000000005,75.944999999999993,78.747,81.549000000000007,84.350999999999999,87.153000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,492,1,78.782600000000002,0.035580000000000001,70.373000000000005,73.176000000000002,75.98,78.783000000000001,81.585999999999999,84.388999999999996,87.191999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,493,1,78.817899999999995,0.035589999999999997,70.403000000000006,73.207999999999998,76.013000000000005,78.817999999999998,81.623000000000005,84.427999999999997,87.233000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,494,1,78.853200000000001,0.0356,70.432000000000002,73.239000000000004,76.046000000000006,78.852999999999994,81.66,84.468000000000004,87.275000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,495,1,78.888400000000004,0.0356,70.462999999999994,73.272000000000006,76.08,78.888000000000005,81.697000000000003,84.504999999999995,87.313999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,496,1,78.923599999999993,0.035610000000000003,70.492000000000004,73.302999999999997,76.113,78.924000000000007,81.733999999999995,84.545000000000002,87.355000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,497,1,78.958799999999997,0.035619999999999999,70.521000000000001,73.334000000000003,76.146000000000001,78.959000000000003,81.771000000000001,84.584000000000003,87.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,498,1,78.994,0.035619999999999999,70.552999999999997,73.366,76.180000000000007,78.994,81.808000000000007,84.622,87.435000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,499,1,79.0291,0.035630000000000002,70.581999999999994,73.397000000000006,76.212999999999994,79.028999999999996,81.844999999999999,84.661000000000001,87.477000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,500,1,79.0642,0.035639999999999998,70.611000000000004,73.429000000000002,76.245999999999995,79.063999999999993,81.882000000000005,84.7,87.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,501,1,79.099299999999999,0.035650000000000001,70.64,73.459999999999994,76.278999999999996,79.099000000000004,81.918999999999997,84.739000000000004,87.558999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,502,1,79.134299999999996,0.035650000000000001,70.671000000000006,73.492000000000004,76.313000000000002,79.134,81.954999999999998,84.777000000000001,87.597999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,503,1,79.169300000000007,0.035659999999999997,70.7,73.522999999999996,76.346000000000004,79.168999999999997,81.992000000000004,84.816000000000003,87.638999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,504,1,79.2042,0.03567,70.728999999999999,73.554000000000002,76.379000000000005,79.203999999999994,82.028999999999996,84.855000000000004,87.68 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,505,1,79.239199999999997,0.03567,70.760000000000005,73.585999999999999,76.412999999999997,79.239000000000004,82.066000000000003,84.891999999999996,87.718999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,506,1,79.274100000000004,0.035680000000000003,70.789000000000001,73.617000000000004,76.445999999999998,79.274000000000001,82.102999999999994,84.930999999999997,87.76 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,507,1,79.308899999999994,0.03569,70.816999999999993,73.647999999999996,76.477999999999994,79.308999999999997,82.138999999999996,84.97,87.801000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,508,1,79.343800000000002,0.03569,70.847999999999999,73.680000000000007,76.512,79.343999999999994,82.176000000000002,85.007000000000005,87.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,509,1,79.378600000000006,0.035700000000000003,70.876999999999995,73.710999999999999,76.545000000000002,79.379000000000005,82.212000000000003,85.046000000000006,87.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,510,1,79.413399999999996,0.035709999999999999,70.906000000000006,73.742000000000004,76.578000000000003,79.412999999999997,82.248999999999995,85.084999999999994,87.921000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,511,1,79.448099999999997,0.035720000000000002,70.933999999999997,73.772000000000006,76.61,79.447999999999993,82.286000000000001,85.123999999999995,87.962000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,512,1,79.482799999999997,0.035720000000000002,70.965000000000003,73.805000000000007,76.644000000000005,79.483000000000004,82.322000000000003,85.161000000000001,88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,513,1,79.517499999999998,0.035729999999999998,70.994,73.834999999999994,76.676000000000002,79.518000000000001,82.358999999999995,85.2,88.040999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,514,1,79.552099999999996,0.035740000000000001,71.022999999999996,73.866,76.709000000000003,79.552000000000007,82.394999999999996,85.238,88.081999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,515,1,79.586799999999997,0.035740000000000001,71.054000000000002,73.897999999999996,76.742000000000004,79.587000000000003,82.430999999999997,85.275999999999996,88.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,516,1,79.621300000000005,0.035749999999999997,71.081999999999994,73.927999999999997,76.775000000000006,79.620999999999995,82.468000000000004,85.313999999999993,88.161000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,517,1,79.655900000000003,0.03576,71.11,73.959000000000003,76.807000000000002,79.656000000000006,82.504000000000005,85.352999999999994,88.200999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,518,1,79.690399999999997,0.035770000000000003,71.138999999999996,73.989000000000004,76.84,79.69,82.540999999999997,85.391000000000005,88.242000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,519,1,79.724900000000005,0.035770000000000003,71.17,74.021000000000001,76.873000000000005,79.724999999999994,82.576999999999998,85.427999999999997,88.28 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,520,1,79.759399999999999,0.035779999999999999,71.197999999999993,74.052000000000007,76.906000000000006,79.759,82.613,85.466999999999999,88.320999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,521,1,79.793800000000005,0.035790000000000002,71.225999999999999,74.081999999999994,76.938000000000002,79.793999999999997,82.65,85.504999999999995,88.361000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,522,1,79.828199999999995,0.035790000000000002,71.257000000000005,74.114000000000004,76.971000000000004,79.828000000000003,82.685000000000002,85.542000000000002,88.399000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,523,1,79.8626,0.035799999999999998,71.284999999999997,74.144000000000005,77.004000000000005,79.863,82.721999999999994,85.581000000000003,88.44 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,524,1,79.896900000000002,0.035810000000000002,71.313999999999993,74.174999999999997,77.036000000000001,79.897000000000006,82.757999999999996,85.619,88.48 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,525,1,79.931200000000004,0.035819999999999998,71.341999999999999,74.204999999999998,77.067999999999998,79.930999999999997,82.793999999999997,85.656999999999996,88.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,526,1,79.965500000000006,0.035819999999999998,71.372,74.236999999999995,77.100999999999999,79.965999999999994,82.83,85.694000000000003,88.558999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,527,1,79.999799999999993,0.035830000000000001,71.400999999999996,74.266999999999996,77.132999999999996,80,82.866,85.733000000000004,88.599000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,528,1,80.034000000000006,0.035839999999999997,71.429000000000002,74.296999999999997,77.165999999999997,80.034000000000006,82.902000000000001,85.771000000000001,88.638999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,529,1,80.068200000000004,0.035839999999999997,71.459000000000003,74.328999999999994,77.198999999999998,80.067999999999998,82.938000000000002,85.807000000000002,88.677000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,530,1,80.1023,0.03585,71.486999999999995,74.358999999999995,77.230999999999995,80.102000000000004,82.974000000000004,85.846000000000004,88.716999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,531,1,80.136499999999998,0.035860000000000003,71.515000000000001,74.388999999999996,77.263000000000005,80.135999999999996,83.01,85.884,88.757999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,532,1,80.170599999999993,0.035869999999999999,71.543000000000006,74.418999999999997,77.295000000000002,80.171000000000006,83.046000000000006,85.921999999999997,88.798000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,533,1,80.204599999999999,0.035869999999999999,71.573999999999998,74.450999999999993,77.328000000000003,80.204999999999998,83.081999999999994,85.957999999999998,88.834999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,534,1,80.238699999999994,0.035880000000000002,71.602000000000004,74.480999999999995,77.36,80.239000000000004,83.117999999999995,85.997,88.876000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,535,1,80.2727,0.035889999999999998,71.63,74.510999999999996,77.391999999999996,80.272999999999996,83.153999999999996,86.034999999999997,88.915999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,536,1,80.306700000000006,0.035889999999999998,71.66,74.542000000000002,77.424000000000007,80.307000000000002,83.188999999999993,86.070999999999998,88.953000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,537,1,80.340599999999995,0.035900000000000001,71.688000000000002,74.572000000000003,77.456000000000003,80.340999999999994,83.224999999999994,86.108999999999995,88.992999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,538,1,80.374499999999998,0.035909999999999997,71.715999999999994,74.602000000000004,77.488,80.373999999999995,83.260999999999996,86.147000000000006,89.033000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,539,1,80.4084,0.035920000000000001,71.744,74.632000000000005,77.52,80.408000000000001,83.296999999999997,86.185000000000002,89.072999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,540,1,80.442300000000003,0.035920000000000001,71.774000000000001,74.662999999999997,77.552999999999997,80.441999999999993,83.331999999999994,86.221000000000004,89.111000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,541,1,80.476100000000002,0.035929999999999997,71.802000000000007,74.692999999999998,77.584999999999994,80.475999999999999,83.367999999999995,86.259,89.150999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,542,1,80.509900000000002,0.03594,71.828999999999994,74.722999999999999,77.616,80.510000000000005,83.403000000000006,86.296999999999997,89.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,543,1,80.543700000000001,0.03594,71.858999999999995,74.754000000000005,77.649000000000001,80.543999999999997,83.438000000000002,86.332999999999998,89.227999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,544,1,80.577399999999997,0.035950000000000003,71.887,74.784000000000006,77.680999999999997,80.576999999999998,83.474000000000004,86.370999999999995,89.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,545,1,80.611199999999997,0.035959999999999999,71.915000000000006,74.813999999999993,77.712000000000003,80.611000000000004,83.51,86.409000000000006,89.308000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,546,1,80.644800000000004,0.035970000000000002,71.941999999999993,74.843000000000004,77.744,80.644999999999996,83.546000000000006,86.445999999999998,89.346999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,547,1,80.6785,0.035970000000000002,71.971999999999994,74.873999999999995,77.775999999999996,80.677999999999997,83.581000000000003,86.483000000000004,89.385000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,548,1,80.712100000000007,0.035979999999999998,72,74.903999999999996,77.808000000000007,80.712000000000003,83.616,86.52,89.424000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,549,1,80.745699999999999,0.035990000000000001,72.028000000000006,74.933999999999997,77.84,80.745999999999995,83.652000000000001,86.558000000000007,89.463999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,550,1,80.779300000000006,0.035999999999999997,72.055000000000007,74.962999999999994,77.870999999999995,80.778999999999996,83.686999999999998,86.594999999999999,89.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,551,1,80.812799999999996,0.035999999999999997,72.084999999999994,74.994,77.903999999999996,80.813000000000002,83.721999999999994,86.631,89.540999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,552,1,80.846400000000003,0.03601,72.113,75.024000000000001,77.935000000000002,80.846000000000004,83.757999999999996,86.668999999999997,89.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,553,1,80.879800000000003,0.036020000000000003,72.14,75.052999999999997,77.966999999999999,80.88,83.793000000000006,86.706000000000003,89.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,554,1,80.913300000000007,0.036020000000000003,72.17,75.084000000000003,77.998999999999995,80.912999999999997,83.828000000000003,86.742000000000004,89.656999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,555,1,80.946700000000007,0.03603,72.197000000000003,75.114000000000004,78.03,80.947000000000003,83.863,86.78,89.695999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,556,1,80.980099999999993,0.036040000000000003,72.224999999999994,75.143000000000001,78.061999999999998,80.98,83.899000000000001,86.816999999999993,89.736000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,557,1,81.013499999999993,0.036049999999999999,72.251999999999995,75.171999999999997,78.093000000000004,81.013999999999996,83.933999999999997,86.855000000000004,89.775000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,558,1,81.046800000000005,0.036049999999999999,72.281999999999996,75.203000000000003,78.125,81.046999999999997,83.968999999999994,86.89,89.811999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,559,1,81.080200000000005,0.036060000000000002,72.308999999999997,75.233000000000004,78.156000000000006,81.08,84.004000000000005,86.927999999999997,89.850999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,560,1,81.113399999999999,0.036069999999999998,72.335999999999999,75.262,78.188000000000002,81.113,84.039000000000001,86.965000000000003,89.891000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,561,1,81.146699999999996,0.036080000000000001,72.363,75.290999999999997,78.218999999999994,81.147000000000006,84.073999999999998,87.001999999999995,89.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,562,1,81.179900000000004,0.036080000000000001,72.393000000000001,75.322000000000003,78.251000000000005,81.180000000000007,84.108999999999995,87.037999999999997,89.966999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,563,1,81.213099999999997,0.036089999999999997,72.42,75.350999999999999,78.281999999999996,81.212999999999994,84.144000000000005,87.075000000000003,90.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,564,1,81.246300000000005,0.0361,72.447000000000003,75.38,78.313000000000002,81.245999999999995,84.179000000000002,87.111999999999995,90.045000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,565,1,81.279499999999999,0.036110000000000003,72.474000000000004,75.409000000000006,78.343999999999994,81.28,84.215000000000003,87.15,90.084999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,566,1,81.312600000000003,0.036110000000000003,72.504000000000005,75.44,78.376000000000005,81.313000000000002,84.248999999999995,87.185000000000002,90.120999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,567,1,81.345699999999994,0.036119999999999999,72.531000000000006,75.468999999999994,78.406999999999996,81.346000000000004,84.284000000000006,87.221999999999994,90.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,568,1,81.378799999999998,0.036130000000000002,72.558000000000007,75.498000000000005,78.438999999999993,81.379000000000005,84.319000000000003,87.259,90.198999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,569,1,81.411799999999999,0.036130000000000002,72.587999999999994,75.528999999999996,78.47,81.412000000000006,84.352999999999994,87.295000000000002,90.236000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,570,1,81.444800000000001,0.036139999999999999,72.614999999999995,75.558000000000007,78.501000000000005,81.444999999999993,84.388000000000005,87.331999999999994,90.275000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,571,1,81.477800000000002,0.036150000000000002,72.641999999999996,75.587000000000003,78.531999999999996,81.477999999999994,84.423000000000002,87.369,90.313999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,572,1,81.510800000000003,0.036159999999999998,72.668999999999997,75.616,78.563000000000002,81.510999999999996,84.457999999999998,87.406000000000006,90.352999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,573,1,81.543700000000001,0.036159999999999998,72.697999999999993,75.646000000000001,78.594999999999999,81.543999999999997,84.492000000000004,87.441000000000003,90.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,574,1,81.576599999999999,0.036170000000000001,72.724999999999994,75.674999999999997,78.626000000000005,81.576999999999998,84.527000000000001,87.477999999999994,90.427999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,575,1,81.609499999999997,0.036179999999999997,72.751999999999995,75.703999999999994,78.656999999999996,81.61,84.561999999999998,87.515000000000001,90.466999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,576,1,81.642300000000006,0.03619,72.778000000000006,75.733000000000004,78.688000000000002,81.641999999999996,84.596999999999994,87.552000000000007,90.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,577,1,81.675200000000004,0.03619,72.808000000000007,75.763999999999996,78.718999999999994,81.674999999999997,84.631,87.587000000000003,90.543000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,578,1,81.707999999999998,0.036200000000000003,72.834999999999994,75.792000000000002,78.75,81.707999999999998,84.665999999999997,87.623999999999995,90.581000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,579,1,81.740700000000004,0.036209999999999999,72.861000000000004,75.820999999999998,78.781000000000006,81.741,84.700999999999993,87.66,90.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,580,1,81.773499999999999,0.036220000000000002,72.888000000000005,75.849999999999994,78.811999999999998,81.774000000000001,84.734999999999999,87.697000000000003,90.659000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,581,1,81.806200000000004,0.036220000000000002,72.917000000000002,75.88,78.843000000000004,81.805999999999997,84.769000000000005,87.731999999999999,90.694999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,582,1,81.838899999999995,0.036229999999999998,72.944000000000003,75.909000000000006,78.873999999999995,81.838999999999999,84.804000000000002,87.769000000000005,90.733999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,583,1,81.871499999999997,0.036240000000000001,72.97,75.936999999999998,78.903999999999996,81.872,84.838999999999999,87.805999999999997,90.772999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,584,1,81.904200000000003,0.036240000000000001,73,75.968000000000004,78.936000000000007,81.903999999999996,84.872,87.840999999999994,90.808999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,585,1,81.936800000000005,0.036249999999999998,73.025999999999996,75.995999999999995,78.966999999999999,81.936999999999998,84.906999999999996,87.876999999999995,90.846999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,586,1,81.969399999999993,0.036260000000000001,73.052999999999997,76.025000000000006,78.997,81.968999999999994,84.941999999999993,87.914000000000001,90.885999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,587,1,82.001900000000006,0.036269999999999997,73.078999999999994,76.052999999999997,79.028000000000006,82.001999999999995,84.975999999999999,87.95,90.924999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,588,1,82.034499999999994,0.036269999999999997,73.108000000000004,76.084000000000003,79.058999999999997,82.034000000000006,85.01,87.984999999999999,90.960999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,589,1,82.066999999999993,0.03628,73.135000000000005,76.111999999999995,79.09,82.066999999999993,85.043999999999997,88.022000000000006,90.998999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,590,1,82.099400000000003,0.036290000000000003,73.161000000000001,76.141000000000005,79.12,82.099000000000004,85.078999999999994,88.058000000000007,91.037999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,591,1,82.131900000000002,0.036299999999999999,73.188000000000002,76.168999999999997,79.150999999999996,82.132000000000005,85.113,88.094999999999999,91.075999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,592,1,82.164299999999997,0.036299999999999999,73.216999999999999,76.198999999999998,79.182000000000002,82.164000000000001,85.147000000000006,88.129000000000005,91.111999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,593,1,82.196700000000007,0.036310000000000002,73.242999999999995,76.227999999999994,79.212000000000003,82.197000000000003,85.180999999999997,88.165999999999997,91.15 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,594,1,82.229100000000003,0.036319999999999998,73.269000000000005,76.256,79.242999999999995,82.228999999999999,85.215999999999994,88.201999999999998,91.188999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,595,1,82.261399999999995,0.036330000000000001,73.296000000000006,76.284000000000006,79.272999999999996,82.260999999999996,85.25,88.239000000000004,91.227000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,596,1,82.293800000000005,0.036330000000000001,73.325000000000003,76.313999999999993,79.304000000000002,82.293999999999997,85.284000000000006,88.272999999999996,91.263000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,597,1,82.326099999999997,0.036339999999999997,73.350999999999999,76.343000000000004,79.334000000000003,82.325999999999993,85.317999999999998,88.31,91.301000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,598,1,82.3583,0.03635,73.376999999999995,76.370999999999995,79.364999999999995,82.358000000000004,85.352000000000004,88.346000000000004,91.338999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,599,1,82.390600000000006,0.036360000000000003,73.403000000000006,76.399000000000001,79.394999999999996,82.391000000000005,85.385999999999996,88.382000000000005,91.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,600,1,82.422799999999995,0.036360000000000003,73.432000000000002,76.429000000000002,79.426000000000002,82.423000000000002,85.42,88.417000000000002,91.412999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,601,1,82.454999999999998,0.03637,73.457999999999998,76.456999999999994,79.456000000000003,82.454999999999998,85.453999999999994,88.453000000000003,91.451999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,602,1,82.487200000000001,0.036380000000000003,73.484999999999999,76.484999999999999,79.486000000000004,82.486999999999995,85.488,88.489000000000004,91.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,603,1,82.519300000000001,0.036389999999999999,73.510999999999996,76.513999999999996,79.516000000000005,82.519000000000005,85.522000000000006,88.525000000000006,91.528000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,604,1,82.551400000000001,0.036389999999999999,73.539000000000001,76.543000000000006,79.546999999999997,82.551000000000002,85.555000000000007,88.558999999999997,91.563999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,605,1,82.583500000000001,0.036400000000000002,73.564999999999998,76.570999999999998,79.576999999999998,82.584000000000003,85.59,88.596000000000004,91.602000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,606,1,82.615600000000001,0.036409999999999998,73.590999999999994,76.599999999999994,79.608000000000004,82.616,85.623999999999995,88.632000000000005,91.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,607,1,82.647599999999997,0.036420000000000001,73.617999999999995,76.628,79.638000000000005,82.647999999999996,85.658000000000001,88.668000000000006,91.677999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,608,1,82.679599999999994,0.036420000000000001,73.646000000000001,76.656999999999996,79.668000000000006,82.68,85.691000000000003,88.701999999999998,91.712999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,609,1,82.711600000000004,0.036429999999999997,73.671999999999997,76.685000000000002,79.697999999999993,82.712000000000003,85.724999999999994,88.738,91.751000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,610,1,82.743600000000001,0.03644,73.697999999999993,76.712999999999994,79.727999999999994,82.744,85.759,88.774000000000001,91.789000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,611,1,82.775499999999994,0.036450000000000003,73.724000000000004,76.741,79.757999999999996,82.775999999999996,85.793000000000006,88.81,91.826999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,612,1,82.807400000000001,0.036450000000000003,73.751999999999995,76.771000000000001,79.789000000000001,82.807000000000002,85.825999999999993,88.843999999999994,91.861999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,613,1,82.839299999999994,0.036459999999999999,73.778000000000006,76.799000000000007,79.819000000000003,82.838999999999999,85.86,88.88,91.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,614,1,82.871200000000002,0.036470000000000002,73.804000000000002,76.826999999999998,79.849000000000004,82.870999999999995,85.894000000000005,88.915999999999997,91.938000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,615,1,82.903000000000006,0.036479999999999999,73.83,76.853999999999999,79.879000000000005,82.903000000000006,85.927000000000007,88.951999999999998,91.975999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,616,1,82.934799999999996,0.036479999999999999,73.858000000000004,76.884,79.909000000000006,82.935000000000002,85.96,88.986000000000004,92.010999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,617,1,82.9666,0.036490000000000002,73.884,76.912000000000006,79.938999999999993,82.966999999999999,85.994,89.022000000000006,92.049000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,618,1,82.998400000000004,0.036499999999999998,73.91,76.94,79.968999999999994,82.998000000000005,86.028000000000006,89.057000000000002,92.087000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,619,1,83.030100000000004,0.036499999999999998,73.938000000000002,76.968999999999994,80,83.03,86.061000000000007,89.090999999999994,92.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,620,1,83.061800000000005,0.036510000000000001,73.963999999999999,76.997,80.028999999999996,83.061999999999998,86.093999999999994,89.126999999999995,92.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,621,1,83.093500000000006,0.036519999999999997,73.989999999999995,77.024000000000001,80.058999999999997,83.093999999999994,86.128,89.162999999999997,92.197000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,622,1,83.125100000000003,0.03653,74.015000000000001,77.052000000000007,80.088999999999999,83.125,86.162000000000006,89.197999999999993,92.234999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,623,1,83.156800000000004,0.03653,74.043999999999997,77.081000000000003,80.119,83.156999999999996,86.194999999999993,89.231999999999999,92.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,624,1,83.188400000000001,0.036540000000000003,74.069000000000003,77.108999999999995,80.149000000000001,83.188000000000002,86.227999999999994,89.268000000000001,92.308000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,625,1,83.22,0.036549999999999999,74.094999999999999,77.137,80.177999999999997,83.22,86.262,89.302999999999997,92.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,626,1,83.251499999999993,0.036560000000000002,74.12,77.164000000000001,80.207999999999998,83.251999999999995,86.295000000000002,89.338999999999999,92.382999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,627,1,83.283100000000005,0.036560000000000002,74.149000000000001,77.192999999999998,80.238,83.283000000000001,86.328000000000003,89.373000000000005,92.418000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,628,1,83.314599999999999,0.036569999999999998,74.174000000000007,77.221000000000004,80.268000000000001,83.314999999999998,86.361000000000004,89.408000000000001,92.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,629,1,83.346100000000007,0.036580000000000001,74.2,77.248000000000005,80.296999999999997,83.346000000000004,86.394999999999996,89.444000000000003,92.492999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,630,1,83.377499999999998,0.036589999999999998,74.224999999999994,77.275999999999996,80.326999999999998,83.378,86.427999999999997,89.478999999999999,92.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,631,1,83.408900000000003,0.036589999999999998,74.253,77.305000000000007,80.356999999999999,83.409000000000006,86.460999999999999,89.513000000000005,92.564999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,632,1,83.440299999999993,0.036600000000000001,74.278999999999996,77.331999999999994,80.385999999999996,83.44,86.494,89.548000000000002,92.602000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,633,1,83.471699999999998,0.036609999999999997,74.304000000000002,77.36,80.415999999999997,83.471999999999994,86.528000000000006,89.582999999999998,92.638999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,634,1,83.503100000000003,0.03662,74.328999999999994,77.387,80.444999999999993,83.503,86.561000000000007,89.619,92.677000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,635,1,83.534400000000005,0.03662,74.356999999999999,77.415999999999997,80.474999999999994,83.534000000000006,86.593000000000004,89.652000000000001,92.710999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,636,1,83.565700000000007,0.036630000000000003,74.382999999999996,77.444000000000003,80.504999999999995,83.566000000000003,86.626999999999995,89.688000000000002,92.748999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,637,1,83.596999999999994,0.036639999999999999,74.408000000000001,77.471000000000004,80.534000000000006,83.596999999999994,86.66,89.722999999999999,92.786000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,638,1,83.628299999999996,0.036650000000000002,74.433000000000007,77.498000000000005,80.563000000000002,83.628,86.692999999999998,89.757999999999996,92.822999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,639,1,83.659499999999994,0.036650000000000002,74.460999999999999,77.527000000000001,80.593000000000004,83.66,86.725999999999999,89.792000000000002,92.858000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,640,1,83.690700000000007,0.036659999999999998,74.486000000000004,77.554000000000002,80.623000000000005,83.691000000000003,86.759,89.826999999999998,92.894999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,641,1,83.721900000000005,0.036670000000000001,74.512,77.581999999999994,80.652000000000001,83.721999999999994,86.792000000000002,89.861999999999995,92.932000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,642,1,83.753,0.036679999999999997,74.537000000000006,77.608999999999995,80.680999999999997,83.753,86.825000000000003,89.897000000000006,92.968999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,643,1,83.784199999999998,0.036679999999999997,74.564999999999998,77.638000000000005,80.710999999999999,83.784000000000006,86.856999999999999,89.930999999999997,93.004000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,644,1,83.815299999999993,0.03669,74.59,77.665000000000006,80.739999999999995,83.814999999999998,86.89,89.965999999999994,93.040999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,645,1,83.846400000000003,0.036700000000000003,74.614999999999995,77.691999999999993,80.769000000000005,83.846000000000004,86.924000000000007,90.001000000000005,93.078000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,646,1,83.877399999999994,0.03671,74.64,77.718999999999994,80.798000000000002,83.876999999999995,86.956999999999994,90.036000000000001,93.114999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,647,1,83.908500000000004,0.03671,74.668000000000006,77.748000000000005,80.828000000000003,83.908000000000001,86.989000000000004,90.069000000000003,93.149000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,648,1,83.939499999999995,0.036720000000000003,74.692999999999998,77.775000000000006,80.856999999999999,83.94,87.022000000000006,90.103999999999999,93.186000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,649,1,83.970500000000001,0.036729999999999999,74.718000000000004,77.802000000000007,80.885999999999996,83.97,87.055000000000007,90.138999999999996,93.222999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,650,1,84.001400000000004,0.036740000000000002,74.742999999999995,77.828999999999994,80.915000000000006,84.001000000000005,87.087999999999994,90.174000000000007,93.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,651,1,84.032399999999996,0.036740000000000002,74.77,77.858000000000004,80.944999999999993,84.031999999999996,87.12,90.206999999999994,93.293999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,652,1,84.063299999999998,0.036749999999999998,74.795000000000002,77.885000000000005,80.974000000000004,84.063000000000002,87.153000000000006,90.242000000000004,93.331000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,653,1,84.094099999999997,0.036760000000000001,74.819999999999993,77.912000000000006,81.003,84.093999999999994,87.185000000000002,90.277000000000001,93.367999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,654,1,84.125,0.036769999999999997,74.844999999999999,77.938000000000002,81.031999999999996,84.125,87.218000000000004,90.311999999999998,93.405000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,655,1,84.155799999999999,0.036769999999999997,74.873000000000005,77.966999999999999,81.061000000000007,84.156000000000006,87.25,90.344999999999999,93.438999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,656,1,84.186700000000002,0.03678,74.897999999999996,77.994,81.09,84.186999999999998,87.283000000000001,90.379000000000005,93.475999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,657,1,84.217399999999998,0.036790000000000003,74.921999999999997,78.021000000000001,81.119,84.216999999999999,87.316000000000003,90.414000000000001,93.512 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,658,1,84.248199999999997,0.036799999999999999,74.947000000000003,78.048000000000002,81.147999999999996,84.248000000000005,87.349000000000004,90.448999999999998,93.549000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,659,1,84.278899999999993,0.036799999999999999,74.974999999999994,78.075999999999993,81.177000000000007,84.278999999999996,87.38,90.481999999999999,93.582999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,660,1,84.309600000000003,0.036810000000000002,74.998999999999995,78.102999999999994,81.206000000000003,84.31,87.412999999999997,90.516000000000005,93.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,661,1,84.340299999999999,0.036819999999999999,75.024000000000001,78.129000000000005,81.234999999999999,84.34,87.445999999999998,90.551000000000002,93.656999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,662,1,84.370999999999995,0.036830000000000002,75.049000000000007,78.156000000000006,81.263999999999996,84.370999999999995,87.477999999999994,90.585999999999999,93.692999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,663,1,84.401600000000002,0.036830000000000002,75.075999999999993,78.185000000000002,81.293000000000006,84.402000000000001,87.51,90.619,93.727000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,664,1,84.432299999999998,0.036839999999999998,75.100999999999999,78.210999999999999,81.322000000000003,84.432000000000002,87.543000000000006,90.653000000000006,93.763999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,665,1,84.462800000000001,0.036850000000000001,75.125,78.238,81.349999999999994,84.462999999999994,87.575000000000003,90.688000000000002,93.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,666,1,84.493399999999994,0.036859999999999997,75.150000000000006,78.265000000000001,81.379000000000005,84.492999999999995,87.608000000000004,90.721999999999994,93.837000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,667,1,84.523899999999998,0.036859999999999997,75.177000000000007,78.293000000000006,81.408000000000001,84.524000000000001,87.638999999999996,90.754999999999995,93.870999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,668,1,84.554500000000004,0.03687,75.201999999999998,78.319000000000003,81.436999999999998,84.554000000000002,87.671999999999997,90.79,93.906999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,669,1,84.584999999999994,0.036880000000000003,75.227000000000004,78.346000000000004,81.465999999999994,84.584999999999994,87.703999999999994,90.823999999999998,93.942999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,670,1,84.615399999999994,0.036889999999999999,75.251000000000005,78.372,81.494,84.614999999999995,87.736999999999995,90.858000000000004,93.98 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,671,1,84.645899999999997,0.036889999999999999,75.278000000000006,78.400999999999996,81.522999999999996,84.646000000000001,87.768000000000001,90.891000000000005,94.013999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,672,1,84.676299999999998,0.036900000000000002,75.302999999999997,78.427000000000007,81.552000000000007,84.676000000000002,87.801000000000002,90.924999999999997,94.05 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,673,1,84.706699999999998,0.036909999999999998,75.326999999999998,78.453999999999994,81.58,84.706999999999994,87.832999999999998,90.96,94.085999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,674,1,84.736999999999995,0.036920000000000001,75.352000000000004,78.48,81.608999999999995,84.736999999999995,87.864999999999995,90.994,94.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,675,1,84.767399999999995,0.036920000000000001,75.379000000000005,78.507999999999996,81.638000000000005,84.766999999999996,87.897000000000006,91.027000000000001,94.156000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,676,1,84.797700000000006,0.036929999999999998,75.403000000000006,78.534999999999997,81.665999999999997,84.798000000000002,87.929000000000002,91.061000000000007,94.191999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,677,1,84.828000000000003,0.036940000000000001,75.427000000000007,78.561000000000007,81.694000000000003,84.828000000000003,87.962000000000003,91.094999999999999,94.228999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,678,1,84.8583,0.036949999999999997,75.451999999999998,78.587000000000003,81.722999999999999,84.858000000000004,87.994,91.129000000000005,94.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,679,1,84.888499999999993,0.036949999999999997,75.478999999999999,78.614999999999995,81.751999999999995,84.888000000000005,88.025000000000006,91.162000000000006,94.298000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,680,1,84.918800000000005,0.03696,75.503,78.641999999999996,81.78,84.918999999999997,88.057000000000002,91.195999999999998,94.334999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,681,1,84.948999999999998,0.036970000000000003,75.527000000000001,78.668000000000006,81.808000000000007,84.948999999999998,88.09,91.23,94.370999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,682,1,84.979100000000003,0.036979999999999999,75.552000000000007,78.694000000000003,81.837000000000003,84.978999999999999,88.122,91.263999999999996,94.406999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,683,1,85.009299999999996,0.036979999999999999,75.578000000000003,78.721999999999994,81.866,85.009,88.153000000000006,91.296999999999997,94.44 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,684,1,85.039400000000001,0.036990000000000002,75.602999999999994,78.748000000000005,81.894000000000005,85.039000000000001,88.185000000000002,91.331000000000003,94.475999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,685,1,85.069500000000005,0.036999999999999998,75.626999999999995,78.774000000000001,81.921999999999997,85.07,88.216999999999999,91.364999999999995,94.512 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,686,1,85.099599999999995,0.037010000000000001,75.650999999999996,78.801000000000002,81.95,85.1,88.248999999999995,91.399000000000001,94.548000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,687,1,85.1297,0.037010000000000001,75.677999999999997,78.828000000000003,81.978999999999999,85.13,88.28,91.430999999999997,94.581999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,688,1,85.159700000000001,0.037019999999999997,75.701999999999998,78.853999999999999,82.007000000000005,85.16,88.311999999999998,91.465000000000003,94.617999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,689,1,85.189700000000002,0.03703,75.725999999999999,78.881,82.034999999999997,85.19,88.343999999999994,91.498999999999995,94.653000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,690,1,85.219700000000003,0.037039999999999997,75.75,78.906999999999996,82.063000000000002,85.22,88.376000000000005,91.533000000000001,94.688999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,691,1,85.249700000000004,0.037039999999999997,75.777000000000001,78.933999999999997,82.091999999999999,85.25,88.406999999999996,91.564999999999998,94.722999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,692,1,85.279600000000002,0.03705,75.801000000000002,78.959999999999994,82.12,85.28,88.438999999999993,91.599000000000004,94.757999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,693,1,85.309600000000003,0.037060000000000003,75.825000000000003,78.986000000000004,82.147999999999996,85.31,88.471000000000004,91.632999999999996,94.793999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,694,1,85.339500000000001,0.037060000000000003,75.850999999999999,79.013999999999996,82.177000000000007,85.34,88.501999999999995,91.665000000000006,94.828000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,695,1,85.369299999999996,0.037069999999999999,75.875,79.040000000000006,82.204999999999998,85.369,88.534000000000006,91.698999999999998,94.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,696,1,85.399199999999993,0.037080000000000002,75.899000000000001,79.066000000000003,82.233000000000004,85.399000000000001,88.566000000000003,91.731999999999999,94.899000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,697,1,85.429000000000002,0.037089999999999998,75.923000000000002,79.091999999999999,82.26,85.429000000000002,88.597999999999999,91.766000000000005,94.935000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,698,1,85.458799999999997,0.037089999999999998,75.95,79.119,82.289000000000001,85.459000000000003,88.628,91.798000000000002,94.968000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,699,1,85.488600000000005,0.037100000000000001,75.974000000000004,79.144999999999996,82.316999999999993,85.489000000000004,88.66,91.831999999999994,95.003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,700,1,85.5184,0.037109999999999997,75.998000000000005,79.171000000000006,82.344999999999999,85.518000000000001,88.691999999999993,91.866,95.039000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,701,1,85.548100000000005,0.03712,76.021000000000001,79.197000000000003,82.373000000000005,85.548000000000002,88.724000000000004,91.899000000000001,95.075000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,702,1,85.577799999999996,0.03712,76.048000000000002,79.224999999999994,82.400999999999996,85.578000000000003,88.754000000000005,91.930999999999997,95.108000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,703,1,85.607500000000002,0.037130000000000003,76.072000000000003,79.25,82.429000000000002,85.608000000000004,88.786000000000001,91.965000000000003,95.143000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,704,1,85.637200000000007,0.037139999999999999,76.096000000000004,79.275999999999996,82.456999999999994,85.637,88.817999999999998,91.998000000000005,95.179000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,705,1,85.666799999999995,0.037150000000000002,76.119,79.302000000000007,82.483999999999995,85.667000000000002,88.849000000000004,92.031999999999996,95.213999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,706,1,85.696399999999997,0.037150000000000002,76.146000000000001,79.328999999999994,82.513000000000005,85.695999999999998,88.88,92.063999999999993,95.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,707,1,85.725999999999999,0.037159999999999999,76.168999999999997,79.355000000000004,82.54,85.725999999999999,88.912000000000006,92.096999999999994,95.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,708,1,85.755600000000001,0.037170000000000002,76.192999999999998,79.381,82.567999999999998,85.756,88.942999999999998,92.131,95.317999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,709,1,85.785200000000003,0.037179999999999998,76.216999999999999,79.406000000000006,82.596000000000004,85.784999999999997,88.974999999999994,92.164000000000001,95.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,710,1,85.814700000000002,0.037179999999999998,76.242999999999995,79.433999999999997,82.623999999999995,85.814999999999998,89.004999999999995,92.195999999999998,95.385999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,711,1,85.844200000000001,0.037190000000000001,76.266999999999996,79.459000000000003,82.652000000000001,85.843999999999994,89.037000000000006,92.228999999999999,95.421999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,712,1,85.873699999999999,0.037199999999999997,76.290000000000006,79.484999999999999,82.679000000000002,85.873999999999995,89.067999999999998,92.263000000000005,95.456999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,713,1,85.903199999999998,0.03721,76.313999999999993,79.510000000000005,82.706999999999994,85.903000000000006,89.1,92.296000000000006,95.492999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,714,1,85.932599999999994,0.03721,76.34,79.537000000000006,82.734999999999999,85.933000000000007,89.13,92.328000000000003,95.525000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,715,1,85.962100000000007,0.037220000000000003,76.364000000000004,79.563000000000002,82.763000000000005,85.962000000000003,89.162000000000006,92.361000000000004,95.561000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,716,1,85.991500000000002,0.037229999999999999,76.387,79.588999999999999,82.79,85.992000000000004,89.192999999999998,92.394000000000005,95.596000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,717,1,86.020799999999994,0.037240000000000002,76.411000000000001,79.614000000000004,82.816999999999993,86.021000000000001,89.224000000000004,92.427999999999997,95.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,718,1,86.050200000000004,0.037240000000000002,76.436999999999998,79.641000000000005,82.846000000000004,86.05,89.254999999999995,92.459000000000003,95.664000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,719,1,86.079499999999996,0.037249999999999998,76.459999999999994,79.667000000000002,82.873000000000005,86.08,89.286000000000001,92.492000000000004,95.698999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,720,1,86.108900000000006,0.037260000000000001,76.483999999999995,79.691999999999993,82.9,86.108999999999995,89.316999999999993,92.525999999999996,95.733999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,721,1,86.138099999999994,0.037269999999999998,76.507000000000005,79.716999999999999,82.927999999999997,86.138000000000005,89.347999999999999,92.558999999999997,95.769000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,722,1,86.167400000000001,0.037269999999999998,76.533000000000001,79.744,82.956000000000003,86.167000000000002,89.379000000000005,92.59,95.802000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,723,1,86.196700000000007,0.037280000000000001,76.555999999999997,79.77,82.983000000000004,86.197000000000003,89.41,92.623999999999995,95.837000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,724,1,86.225899999999996,0.037289999999999997,76.58,79.795000000000002,83.010999999999996,86.225999999999999,89.441000000000003,92.656999999999996,95.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,725,1,86.255099999999999,0.037289999999999997,76.605999999999995,79.822000000000003,83.039000000000001,86.254999999999995,89.471999999999994,92.688000000000002,95.903999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,726,1,86.284300000000002,0.0373,76.629000000000005,79.846999999999994,83.066000000000003,86.284000000000006,89.503,92.721000000000004,95.94 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,727,1,86.313400000000001,0.037310000000000003,76.652000000000001,79.873000000000005,83.093000000000004,86.313000000000002,89.534000000000006,92.754000000000005,95.974000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,728,1,86.342600000000004,0.037319999999999999,76.676000000000002,79.897999999999996,83.12,86.343000000000004,89.564999999999998,92.787000000000006,96.01 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,729,1,86.371700000000004,0.037319999999999999,76.701999999999998,79.924999999999997,83.147999999999996,86.372,89.594999999999999,92.817999999999998,96.042000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,730,1,86.400800000000004,0.037330000000000002,76.724999999999994,79.95,83.174999999999997,86.400999999999996,89.626000000000005,92.850999999999999,96.076999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,731,1,85.729900000000001,0.03764,76.049000000000007,79.275999999999996,82.503,85.73,88.956999999999994,92.183999999999997,95.411000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,732,1,85.758899999999997,0.037650000000000003,76.072000000000003,79.301000000000002,82.53,85.759,88.988,92.216999999999999,95.444999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,733,1,85.787999999999997,0.037659999999999999,76.096000000000004,79.325999999999993,82.557000000000002,85.787999999999997,89.019000000000005,92.25,95.48 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,734,1,85.816999999999993,0.037670000000000002,76.119,79.352000000000004,82.584000000000003,85.816999999999993,89.05,92.281999999999996,95.515000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,735,1,85.846000000000004,0.037670000000000002,76.144999999999996,79.378,82.611999999999995,85.846000000000004,89.08,92.313999999999993,95.546999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,736,1,85.874899999999997,0.037679999999999998,76.168000000000006,79.403000000000006,82.638999999999996,85.875,89.111000000000004,92.346000000000004,95.581999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,737,1,85.903899999999993,0.037690000000000001,76.191000000000003,79.427999999999997,82.665999999999997,85.903999999999996,89.141999999999996,92.379000000000005,95.617000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,738,1,85.9328,0.037699999999999997,76.213999999999999,79.453000000000003,82.692999999999998,85.933000000000007,89.171999999999997,92.412000000000006,95.652000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,739,1,85.961699999999993,0.037699999999999997,76.239000000000004,79.48,82.721000000000004,85.962000000000003,89.201999999999998,92.442999999999998,95.683999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,740,1,85.990600000000001,0.03771,76.262,79.504999999999995,82.748000000000005,85.991,89.233000000000004,92.475999999999999,95.718999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,741,1,86.019400000000005,0.037719999999999997,76.284999999999997,79.53,82.775000000000006,86.019000000000005,89.263999999999996,92.509,95.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,742,1,86.048299999999998,0.037719999999999997,76.311000000000007,79.557000000000002,82.802999999999997,86.048000000000002,89.293999999999997,92.54,95.786000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,743,1,86.077100000000002,0.03773,76.334000000000003,79.581999999999994,82.828999999999994,86.076999999999998,89.325000000000003,92.572000000000003,95.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,744,1,86.105900000000005,0.037740000000000003,76.356999999999999,79.606999999999999,82.855999999999995,86.105999999999995,89.355999999999995,92.605000000000004,95.855000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,745,1,86.134699999999995,0.037749999999999999,76.38,79.632000000000005,82.882999999999996,86.135000000000005,89.385999999999996,92.638000000000005,95.888999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,746,1,86.163399999999996,0.037749999999999999,76.405000000000001,79.658000000000001,82.911000000000001,86.162999999999997,89.415999999999997,92.668999999999997,95.921000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,747,1,86.192099999999996,0.037760000000000002,76.427999999999997,79.683000000000007,82.936999999999998,86.191999999999993,89.447000000000003,92.700999999999993,95.956000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,748,1,86.2209,0.037769999999999998,76.450999999999993,79.707999999999998,82.963999999999999,86.221000000000004,89.477000000000004,92.733999999999995,95.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,749,1,86.249499999999998,0.037780000000000001,76.474000000000004,79.731999999999999,82.991,86.25,89.507999999999996,92.766999999999996,96.025000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,750,1,86.278199999999998,0.037780000000000001,76.498999999999995,79.759,83.019000000000005,86.278000000000006,89.537999999999997,92.796999999999997,96.057000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,751,1,86.306899999999999,0.037789999999999997,76.522000000000006,79.784000000000006,83.045000000000002,86.307000000000002,89.567999999999998,92.83,96.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,752,1,86.335499999999996,0.0378,76.545000000000002,79.808999999999997,83.072000000000003,86.335999999999999,89.599000000000004,92.861999999999995,96.126000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,753,1,86.364099999999993,0.0378,76.569999999999993,79.834999999999994,83.1,86.364000000000004,89.629000000000005,92.893000000000001,96.158000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,754,1,86.392700000000005,0.037810000000000003,76.593000000000004,79.86,83.126000000000005,86.393000000000001,89.659000000000006,92.926000000000002,96.191999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,755,1,86.421199999999999,0.037819999999999999,76.616,79.884,83.153000000000006,86.421000000000006,89.69,92.957999999999998,96.227000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,756,1,86.449799999999996,0.037830000000000003,76.638999999999996,79.909000000000006,83.179000000000002,86.45,89.72,92.991,96.260999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,757,1,86.478300000000004,0.037830000000000003,76.664000000000001,79.935000000000002,83.206999999999994,86.477999999999994,89.75,93.021000000000001,96.293000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,758,1,86.506799999999998,0.037839999999999999,76.686999999999998,79.959999999999994,83.233000000000004,86.507000000000005,89.78,93.054000000000002,96.326999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,759,1,86.535300000000007,0.037850000000000002,76.709000000000003,79.984999999999999,83.26,86.534999999999997,89.811000000000007,93.085999999999999,96.361000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,760,1,86.563800000000001,0.037859999999999998,76.731999999999999,80.009,83.286000000000001,86.563999999999993,89.840999999999994,93.117999999999995,96.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,761,1,86.592200000000005,0.037859999999999998,76.757000000000005,80.034999999999997,83.313999999999993,86.591999999999999,89.870999999999995,93.149000000000001,96.427000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,762,1,86.620599999999996,0.037870000000000001,76.78,80.06,83.34,86.620999999999995,89.900999999999996,93.180999999999997,96.462000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,763,1,86.649000000000001,0.037879999999999997,76.802000000000007,80.084000000000003,83.367000000000004,86.649000000000001,89.930999999999997,93.213999999999999,96.495999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,764,1,86.677400000000006,0.037879999999999997,76.826999999999998,80.111000000000004,83.394000000000005,86.677000000000007,89.960999999999999,93.244,96.527000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,765,1,86.705699999999993,0.03789,76.849999999999994,80.135000000000005,83.42,86.706000000000003,89.991,93.275999999999996,96.561999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,766,1,86.734099999999998,0.037900000000000003,76.872,80.16,83.447000000000003,86.733999999999995,90.021000000000001,93.308999999999997,96.596000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,767,1,86.7624,0.037909999999999999,76.894999999999996,80.183999999999997,83.472999999999999,86.762,90.052000000000007,93.340999999999994,96.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,768,1,86.790700000000001,0.037909999999999999,76.92,80.209999999999994,83.5,86.790999999999997,90.081000000000003,93.370999999999995,96.661000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,769,1,86.819000000000003,0.037920000000000002,76.941999999999993,80.234999999999999,83.527000000000001,86.819000000000003,90.111000000000004,93.403000000000006,96.695999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,770,1,86.847200000000001,0.037929999999999998,76.965000000000003,80.259,83.552999999999997,86.846999999999994,90.141000000000005,93.435000000000002,96.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,771,1,86.875399999999999,0.037940000000000002,76.986999999999995,80.283000000000001,83.578999999999994,86.875,90.171000000000006,93.468000000000004,96.763999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,772,1,86.903700000000001,0.037940000000000002,77.012,80.308999999999997,83.606999999999999,86.903999999999996,90.200999999999993,93.498000000000005,96.795000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,773,1,86.931899999999999,0.037949999999999998,77.034999999999997,80.334000000000003,83.632999999999996,86.932000000000002,90.230999999999995,93.53,96.828999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,774,1,86.96,0.037960000000000001,77.057000000000002,80.358000000000004,83.659000000000006,86.96,90.260999999999996,93.561999999999998,96.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,775,1,86.988200000000006,0.037960000000000001,77.081999999999994,80.384,83.686000000000007,86.988,90.29,93.591999999999999,96.894000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,776,1,87.016300000000001,0.037969999999999997,77.103999999999999,80.408000000000001,83.712000000000003,87.016000000000005,90.32,93.623999999999995,96.927999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,777,1,87.044399999999996,0.03798,77.126999999999995,80.433000000000007,83.738,87.043999999999997,90.35,93.656000000000006,96.962000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,778,1,87.072500000000005,0.037990000000000003,77.149000000000001,80.456999999999994,83.765000000000001,87.072000000000003,90.38,93.688000000000002,96.995999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,779,1,87.1006,0.037990000000000003,77.174000000000007,80.483000000000004,83.792000000000002,87.100999999999999,90.41,93.718999999999994,97.027000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,780,1,87.128600000000006,0.037999999999999999,77.195999999999998,80.507000000000005,83.817999999999998,87.129000000000005,90.438999999999993,93.75,97.061000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,781,1,87.156700000000001,0.038010000000000002,77.218000000000004,80.531000000000006,83.843999999999994,87.156999999999996,90.47,93.781999999999996,97.094999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,782,1,87.184700000000007,0.038010000000000002,77.242999999999995,80.557000000000002,83.870999999999995,87.185000000000002,90.498999999999995,93.811999999999998,97.126000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,783,1,87.212599999999995,0.038019999999999998,77.265000000000001,80.581000000000003,83.897000000000006,87.212999999999994,90.528000000000006,93.843999999999994,97.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,784,1,87.240600000000001,0.038030000000000001,77.287000000000006,80.605000000000004,83.923000000000002,87.241,90.558000000000007,93.876000000000005,97.194000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,785,1,87.268600000000006,0.038039999999999997,77.31,80.629000000000005,83.948999999999998,87.269000000000005,90.587999999999994,93.908000000000001,97.227999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,786,1,87.296499999999995,0.038039999999999997,77.334000000000003,80.655000000000001,83.975999999999999,87.296000000000006,90.617000000000004,93.938000000000002,97.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,787,1,87.324399999999997,0.03805,77.355999999999995,80.679000000000002,84.001999999999995,87.323999999999998,90.647000000000006,93.97,97.292000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,788,1,87.3523,0.038059999999999997,77.378,80.703000000000003,84.028000000000006,87.352000000000004,90.677000000000007,94.001999999999995,97.325999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,789,1,87.380099999999999,0.038059999999999997,77.403000000000006,80.728999999999999,84.054000000000002,87.38,90.706000000000003,94.031000000000006,97.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,790,1,87.408000000000001,0.03807,77.424999999999997,80.753,84.08,87.408000000000001,90.736000000000004,94.063000000000002,97.391000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,791,1,87.4358,0.038080000000000003,77.447000000000003,80.777000000000001,84.105999999999995,87.436000000000007,90.765000000000001,94.094999999999999,97.424000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,792,1,87.4636,0.038089999999999999,77.468999999999994,80.801000000000002,84.132000000000005,87.463999999999999,90.795000000000002,94.126999999999995,97.457999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,793,1,87.491399999999999,0.038089999999999999,77.494,80.825999999999993,84.159000000000006,87.491,90.823999999999998,94.156000000000006,97.489000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,794,1,87.519199999999998,0.038100000000000002,77.516000000000005,80.849999999999994,84.185000000000002,87.519000000000005,90.853999999999999,94.188000000000002,97.522999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,795,1,87.546899999999994,0.038109999999999998,77.537999999999997,80.873999999999995,84.21,87.546999999999997,90.882999999999996,94.22,97.555999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,796,1,87.574600000000004,0.038120000000000001,77.56,80.897999999999996,84.236000000000004,87.575000000000003,90.912999999999997,94.251000000000005,97.59 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,797,1,87.6023,0.038120000000000001,77.584000000000003,80.924000000000007,84.263000000000005,87.602000000000004,90.941999999999993,94.281000000000006,97.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,798,1,87.63,0.038129999999999997,77.605999999999995,80.947000000000003,84.289000000000001,87.63,90.971000000000004,94.313000000000002,97.653999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,799,1,87.657700000000006,0.03814,77.628,80.971000000000004,84.313999999999993,87.658000000000001,91.001000000000005,94.343999999999994,97.686999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,800,1,87.685299999999998,0.03814,77.652000000000001,80.997,84.340999999999994,87.685000000000002,91.03,94.373999999999995,97.718000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,801,1,87.712900000000005,0.038150000000000003,77.674000000000007,81.02,84.367000000000004,87.712999999999994,91.058999999999997,94.405000000000001,97.751999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,802,1,87.740499999999997,0.038159999999999999,77.695999999999998,81.043999999999997,84.391999999999996,87.74,91.088999999999999,94.436999999999998,97.784999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,803,1,87.768100000000004,0.038170000000000003,77.718000000000004,81.067999999999998,84.418000000000006,87.768000000000001,91.117999999999995,94.468000000000004,97.817999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,804,1,87.795599999999993,0.038170000000000003,77.742000000000004,81.093000000000004,84.444000000000003,87.796000000000006,91.147000000000006,94.498000000000005,97.849000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,805,1,87.8232,0.038179999999999999,77.763999999999996,81.117000000000004,84.47,87.822999999999993,91.176000000000002,94.528999999999996,97.882000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,806,1,87.850700000000003,0.038190000000000002,77.786000000000001,81.141000000000005,84.495999999999995,87.850999999999999,91.206000000000003,94.561000000000007,97.915999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,807,1,87.878200000000007,0.038190000000000002,77.81,81.165999999999997,84.522000000000006,87.878,91.233999999999995,94.59,97.945999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,808,1,87.905600000000007,0.038199999999999998,77.831999999999994,81.19,84.548000000000002,87.906000000000006,91.263999999999996,94.622,97.98 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,809,1,87.933099999999996,0.038210000000000001,77.852999999999994,81.212999999999994,84.572999999999993,87.933000000000007,91.293000000000006,94.653000000000006,98.013000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,810,1,87.960499999999996,0.038210000000000001,77.878,81.239000000000004,84.6,87.96,91.320999999999998,94.682000000000002,98.043000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,811,1,87.987899999999996,0.038219999999999997,77.899000000000001,81.262,84.625,87.988,91.350999999999999,94.713999999999999,98.076999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,812,1,88.015299999999996,0.03823,77.921000000000006,81.286000000000001,84.65,88.015000000000001,91.38,94.745000000000005,98.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,813,1,88.042699999999996,0.038240000000000003,77.941999999999993,81.308999999999997,84.676000000000002,88.043000000000006,91.409000000000006,94.775999999999996,98.143000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,814,1,88.07,0.038240000000000003,77.966999999999999,81.334000000000003,84.701999999999998,88.07,91.438000000000002,94.805999999999997,98.173000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,815,1,88.097399999999993,0.038249999999999999,77.988,81.358000000000004,84.727999999999994,88.096999999999994,91.466999999999999,94.837000000000003,98.206999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,816,1,88.124700000000004,0.038260000000000002,78.010000000000005,81.381,84.753,88.125,91.495999999999995,94.867999999999995,98.24 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,817,1,88.151899999999998,0.038260000000000002,78.034000000000006,81.406999999999996,84.778999999999996,88.152000000000001,91.525000000000006,94.897000000000006,98.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,818,1,88.179199999999994,0.038269999999999998,78.055000000000007,81.430000000000007,84.805000000000007,88.179000000000002,91.554000000000002,94.927999999999997,98.302999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,819,1,88.206500000000005,0.038280000000000002,78.076999999999998,81.453000000000003,84.83,88.206000000000003,91.582999999999998,94.96,98.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,820,1,88.233699999999999,0.038289999999999998,78.097999999999999,81.477000000000004,84.855000000000004,88.233999999999995,91.611999999999995,94.991,98.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,821,1,88.260900000000007,0.038289999999999998,78.122,81.501999999999995,84.881,88.260999999999996,91.64,95.02,98.399000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,822,1,88.2881,0.038300000000000001,78.144000000000005,81.525000000000006,84.906999999999996,88.287999999999997,91.67,95.051000000000002,98.432000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,823,1,88.315200000000004,0.038309999999999997,78.165000000000006,81.548000000000002,84.932000000000002,88.314999999999998,91.698999999999998,95.081999999999994,98.465000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,824,1,88.342299999999994,0.038309999999999997,78.188999999999993,81.573999999999998,84.957999999999998,88.341999999999999,91.727000000000004,95.111000000000004,98.495000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,825,1,88.369500000000002,0.03832,78.210999999999999,81.596999999999994,84.983000000000004,88.37,91.756,95.141999999999996,98.528000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,826,1,88.396600000000007,0.038330000000000003,78.231999999999999,81.62,85.007999999999996,88.397000000000006,91.784999999999997,95.173000000000002,98.561000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,827,1,88.423599999999993,0.038339999999999999,78.253,81.643000000000001,85.033000000000001,88.424000000000007,91.813999999999993,95.203999999999994,98.593999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,828,1,88.450699999999998,0.038339999999999999,78.277000000000001,81.668000000000006,85.06,88.450999999999993,91.841999999999999,95.233000000000004,98.623999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,829,1,88.477699999999999,0.038350000000000002,78.298000000000002,81.691000000000003,85.084999999999994,88.477999999999994,91.870999999999995,95.263999999999996,98.656999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,830,1,88.5047,0.038359999999999998,78.319999999999993,81.715000000000003,85.11,88.504999999999995,91.9,95.295000000000002,98.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,831,1,88.531700000000001,0.038359999999999998,78.343000000000004,81.739999999999995,85.135999999999996,88.531999999999996,91.927999999999997,95.323999999999998,98.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,832,1,88.558700000000002,0.038370000000000001,78.364999999999995,81.763000000000005,85.161000000000001,88.558999999999997,91.956999999999994,95.355000000000004,98.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,833,1,88.585599999999999,0.038379999999999997,78.385999999999996,81.786000000000001,85.186000000000007,88.585999999999999,91.986000000000004,95.385000000000005,98.784999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,834,1,88.6126,0.038379999999999997,78.41,81.811000000000007,85.212000000000003,88.613,92.013999999999996,95.415000000000006,98.814999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,835,1,88.639499999999998,0.038390000000000001,78.430999999999997,81.834000000000003,85.236999999999995,88.64,92.042000000000002,95.444999999999993,98.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,836,1,88.666399999999996,0.038399999999999997,78.451999999999998,81.856999999999999,85.262,88.665999999999997,92.070999999999998,95.475999999999999,98.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,837,1,88.693200000000004,0.03841,78.472999999999999,81.88,85.286000000000001,88.692999999999998,92.1,95.507000000000005,98.912999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,838,1,88.720100000000002,0.03841,78.497,81.905000000000001,85.311999999999998,88.72,92.128,95.536000000000001,98.942999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,839,1,88.746899999999997,0.038420000000000003,78.518000000000001,81.927999999999997,85.337000000000003,88.747,92.156999999999996,95.566000000000003,98.975999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,840,1,88.773700000000005,0.038429999999999999,78.539000000000001,81.950999999999993,85.361999999999995,88.774000000000001,92.185000000000002,95.596999999999994,99.007999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,841,1,88.8005,0.038429999999999999,78.563000000000002,81.974999999999994,85.388000000000005,88.8,92.212999999999994,95.626000000000005,99.037999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,842,1,88.827299999999994,0.038440000000000002,78.584000000000003,81.998000000000005,85.412999999999997,88.826999999999998,92.242000000000004,95.656000000000006,99.070999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,843,1,88.853999999999999,0.038449999999999998,78.605000000000004,82.021000000000001,85.438000000000002,88.853999999999999,92.27,95.686999999999998,99.102999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,844,1,88.880700000000004,0.038449999999999998,78.628,82.046000000000006,85.462999999999994,88.881,92.298000000000002,95.715999999999994,99.132999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,845,1,88.907399999999996,0.038460000000000001,78.649000000000001,82.069000000000003,85.488,88.906999999999996,92.326999999999998,95.745999999999995,99.165999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,846,1,88.934100000000001,0.038469999999999997,78.67,82.091999999999999,85.513000000000005,88.933999999999997,92.355000000000004,95.777000000000001,99.197999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,847,1,88.960800000000006,0.03848,78.691000000000003,82.114000000000004,85.537999999999997,88.960999999999999,92.384,95.807000000000002,99.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,848,1,88.987399999999994,0.03848,78.715000000000003,82.138999999999996,85.563000000000002,88.986999999999995,92.412000000000006,95.835999999999999,99.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,849,1,89.013999999999996,0.038490000000000003,78.736000000000004,82.162000000000006,85.587999999999994,89.013999999999996,92.44,95.866,99.292000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,850,1,89.040599999999998,0.0385,78.756,82.183999999999997,85.613,89.040999999999997,92.468999999999994,95.897000000000006,99.325000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,851,1,89.0672,0.0385,78.78,82.209000000000003,85.638000000000005,89.066999999999993,92.495999999999995,95.924999999999997,99.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,852,1,89.093800000000002,0.038510000000000003,78.801000000000002,82.231999999999999,85.662999999999997,89.093999999999994,92.525000000000006,95.956000000000003,99.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,853,1,89.1203,0.038519999999999999,78.822000000000003,82.254000000000005,85.686999999999998,89.12,92.552999999999997,95.986000000000004,99.418999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,854,1,89.146799999999999,0.038519999999999999,78.844999999999999,82.278999999999996,85.712999999999994,89.147000000000006,92.581000000000003,96.015000000000001,99.448999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,855,1,89.173299999999998,0.038530000000000002,78.866,82.302000000000007,85.736999999999995,89.173000000000002,92.608999999999995,96.045000000000002,99.480999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,856,1,89.199799999999996,0.038539999999999998,78.887,82.323999999999998,85.762,89.2,92.638000000000005,96.075000000000003,99.513000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,857,1,89.226299999999995,0.038550000000000001,78.906999999999996,82.346999999999994,85.787000000000006,89.225999999999999,92.665999999999997,96.105999999999995,99.545000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,858,1,89.252700000000004,0.038550000000000001,78.930999999999997,82.370999999999995,85.811999999999998,89.253,92.692999999999998,96.134,99.575000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,859,1,89.2791,0.038559999999999997,78.950999999999993,82.394000000000005,85.835999999999999,89.278999999999996,92.721999999999994,96.164000000000001,99.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,860,1,89.305499999999995,0.03857,78.971999999999994,82.415999999999997,85.861000000000004,89.305999999999997,92.75,96.194999999999993,99.638999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,861,1,89.331900000000005,0.03857,78.995000000000005,82.441000000000003,85.885999999999996,89.331999999999994,92.777000000000001,96.222999999999999,99.668000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,862,1,89.3583,0.038580000000000003,79.016000000000005,82.462999999999994,85.911000000000001,89.358000000000004,92.805999999999997,96.253,99.700999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,863,1,89.384600000000006,0.038589999999999999,79.037000000000006,82.486000000000004,85.935000000000002,89.385000000000005,92.834000000000003,96.283000000000001,99.733000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,864,1,89.410899999999998,0.038589999999999999,79.06,82.51,85.960999999999999,89.411000000000001,92.861000000000004,96.311999999999998,99.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,865,1,89.437200000000004,0.038600000000000002,79.08,82.533000000000001,85.984999999999999,89.436999999999998,92.888999999999996,96.341999999999999,99.793999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,866,1,89.463499999999996,0.038609999999999998,79.100999999999999,82.555000000000007,86.009,89.463999999999999,92.918000000000006,96.372,99.825999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,867,1,89.489800000000002,0.038609999999999998,79.123999999999995,82.578999999999994,86.034999999999997,89.49,92.944999999999993,96.4,99.855000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,868,1,89.516000000000005,0.038620000000000002,79.144999999999996,82.602000000000004,86.058999999999997,89.516000000000005,92.972999999999999,96.43,99.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,869,1,89.542199999999994,0.038629999999999998,79.165000000000006,82.623999999999995,86.082999999999998,89.542000000000002,93.001000000000005,96.46,99.918999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,870,1,89.568399999999997,0.038640000000000001,79.186000000000007,82.647000000000006,86.106999999999999,89.567999999999998,93.028999999999996,96.49,99.950999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,871,1,89.5946,0.038640000000000001,79.209000000000003,82.671000000000006,86.132999999999996,89.594999999999999,93.057000000000002,96.518000000000001,99.98 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,872,1,89.620800000000003,0.038649999999999997,79.228999999999999,82.692999999999998,86.156999999999996,89.620999999999995,93.084999999999994,96.548000000000002,100.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,873,1,89.646900000000002,0.03866,79.25,82.715000000000003,86.180999999999997,89.647000000000006,93.113,96.578000000000003,100.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,874,1,89.673000000000002,0.03866,79.272999999999996,82.739000000000004,86.206000000000003,89.673000000000002,93.14,96.606999999999999,100.07299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,875,1,89.699100000000001,0.038670000000000003,79.293000000000006,82.762,86.23,89.698999999999998,93.168000000000006,96.635999999999996,100.105 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,876,1,89.725200000000001,0.038679999999999999,79.313000000000002,82.784000000000006,86.254999999999995,89.724999999999994,93.195999999999998,96.665999999999997,100.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,877,1,89.751300000000001,0.038679999999999999,79.337000000000003,82.808000000000007,86.28,89.751000000000005,93.222999999999999,96.694000000000003,100.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,878,1,89.777299999999997,0.038690000000000002,79.356999999999999,82.83,86.304000000000002,89.777000000000001,93.251000000000005,96.724000000000004,100.19799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,879,1,89.803299999999993,0.038699999999999998,79.376999999999995,82.852999999999994,86.328000000000003,89.802999999999997,93.278999999999996,96.754000000000005,100.229 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,880,1,89.829300000000003,0.038699999999999998,79.400000000000006,82.876999999999995,86.352999999999994,89.828999999999994,93.305999999999997,96.781999999999996,100.258 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,881,1,89.8553,0.038710000000000001,79.42,82.899000000000001,86.376999999999995,89.855000000000004,93.334000000000003,96.811999999999998,100.29 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,882,1,89.881299999999996,0.038719999999999997,79.441000000000003,82.921000000000006,86.400999999999996,89.881,93.361999999999995,96.841999999999999,100.322 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,883,1,89.907200000000003,0.038719999999999997,79.463999999999999,82.944999999999993,86.426000000000002,89.906999999999996,93.388000000000005,96.87,100.351 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,884,1,89.933099999999996,0.038730000000000001,79.483999999999995,82.966999999999999,86.45,89.933000000000007,93.415999999999997,96.899000000000001,100.38200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,885,1,89.959100000000007,0.038739999999999997,79.504000000000005,82.989000000000004,86.474000000000004,89.959000000000003,93.444000000000003,96.929000000000002,100.414 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,886,1,89.984899999999996,0.038739999999999997,79.527000000000001,83.013000000000005,86.498999999999995,89.984999999999999,93.471000000000004,96.956999999999994,100.443 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,887,1,90.010800000000003,0.03875,79.546999999999997,83.034999999999997,86.522999999999996,90.010999999999996,93.498999999999995,96.986999999999995,100.47499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,888,1,90.036600000000007,0.038760000000000003,79.566999999999993,83.057000000000002,86.546999999999997,90.037000000000006,93.525999999999996,97.016000000000005,100.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,889,1,90.0625,0.038769999999999999,79.587000000000003,83.078999999999994,86.570999999999998,90.061999999999998,93.554000000000002,97.046000000000006,100.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,890,1,90.088300000000004,0.038769999999999999,79.61,83.102999999999994,86.596000000000004,90.087999999999994,93.581000000000003,97.073999999999998,100.566 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,891,1,90.114099999999993,0.038780000000000002,79.63,83.125,86.619,90.114000000000004,93.608999999999995,97.102999999999994,100.598 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,892,1,90.139799999999994,0.038789999999999998,79.650000000000006,83.147000000000006,86.643000000000001,90.14,93.635999999999996,97.132999999999996,100.629 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,893,1,90.165599999999998,0.038789999999999998,79.673000000000002,83.171000000000006,86.668000000000006,90.165999999999997,93.662999999999997,97.161000000000001,100.658 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,894,1,90.191299999999998,0.038800000000000001,79.692999999999998,83.191999999999993,86.691999999999993,90.191000000000003,93.691000000000003,97.19,100.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,895,1,90.216999999999999,0.038809999999999997,79.712999999999994,83.213999999999999,86.715999999999994,90.216999999999999,93.718000000000004,97.22,100.721 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,896,1,90.242699999999999,0.038809999999999997,79.736000000000004,83.238,86.74,90.242999999999995,93.745000000000005,97.247,100.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,897,1,90.2684,0.03882,79.756,83.26,86.763999999999996,90.268000000000001,93.772999999999996,97.277000000000001,100.78100000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,898,1,90.293999999999997,0.038830000000000003,79.775999999999996,83.281999999999996,86.787999999999997,90.293999999999997,93.8,97.305999999999997,100.812 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,899,1,90.319699999999997,0.038830000000000003,79.798000000000002,83.305000000000007,86.813000000000002,90.32,93.826999999999998,97.334000000000003,100.84099999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,900,1,90.345299999999995,0.03884,79.817999999999998,83.326999999999998,86.835999999999999,90.344999999999999,93.853999999999999,97.363,100.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,901,1,90.370900000000006,0.038850000000000003,79.837999999999994,83.349000000000004,86.86,90.370999999999995,93.882000000000005,97.393000000000001,100.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,902,1,90.396500000000003,0.038850000000000003,79.861000000000004,83.373000000000005,86.885000000000005,90.396000000000001,93.908000000000001,97.42,100.932 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,903,1,90.421999999999997,0.038859999999999999,79.881,83.394000000000005,86.908000000000001,90.421999999999997,93.936000000000007,97.45,100.96299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,904,1,90.447599999999994,0.038870000000000002,79.900999999999996,83.415999999999997,86.932000000000002,90.447999999999993,93.962999999999994,97.478999999999999,100.995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,905,1,90.473100000000002,0.038870000000000002,79.923000000000002,83.44,86.956000000000003,90.472999999999999,93.99,97.506,101.023 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,906,1,90.498599999999996,0.038879999999999998,79.942999999999998,83.460999999999999,86.98,90.498999999999995,94.016999999999996,97.536000000000001,101.054 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,907,1,90.524000000000001,0.038890000000000001,79.962999999999994,83.483000000000004,87.004000000000005,90.524000000000001,94.043999999999997,97.564999999999998,101.08499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,908,1,90.549499999999995,0.038890000000000001,79.984999999999999,83.507000000000005,87.028000000000006,90.55,94.070999999999998,97.591999999999999,101.114 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,909,1,90.575000000000003,0.038899999999999997,80.004999999999995,83.528000000000006,87.052000000000007,90.575000000000003,94.097999999999999,97.622,101.145 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,910,1,90.600399999999993,0.03891,80.025000000000006,83.55,87.075000000000003,90.6,94.126000000000005,97.650999999999996,101.176 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,911,1,90.625799999999998,0.03891,80.046999999999997,83.572999999999993,87.1,90.626000000000005,94.152000000000001,97.677999999999997,101.205 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,912,1,90.651200000000003,0.038920000000000003,80.066999999999993,83.594999999999999,87.123000000000005,90.650999999999996,94.179000000000002,97.706999999999994,101.236 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,913,1,90.676500000000004,0.038929999999999999,80.085999999999999,83.616,87.146000000000001,90.676000000000002,94.206999999999994,97.736999999999995,101.267 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,914,1,90.701899999999995,0.038929999999999999,80.108999999999995,83.64,87.171000000000006,90.701999999999998,94.233000000000004,97.763999999999996,101.295 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,915,1,90.727199999999996,0.038940000000000002,80.128,83.661000000000001,87.194000000000003,90.727000000000004,94.26,97.793000000000006,101.32599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,916,1,90.752499999999998,0.038949999999999999,80.147999999999996,83.683000000000007,87.218000000000004,90.751999999999995,94.287000000000006,97.822000000000003,101.357 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,917,1,90.777799999999999,0.038949999999999999,80.17,83.706000000000003,87.242000000000004,90.778000000000006,94.313999999999993,97.849000000000004,101.38500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,918,1,90.803100000000001,0.038960000000000002,80.19,83.727999999999994,87.265000000000001,90.802999999999997,94.340999999999994,97.878,101.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,919,1,90.828299999999999,0.038969999999999998,80.209999999999994,83.748999999999995,87.289000000000001,90.828000000000003,94.367999999999995,97.906999999999996,101.447 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,920,1,90.8536,0.038969999999999998,80.231999999999999,83.772000000000006,87.313000000000002,90.853999999999999,94.394000000000005,97.935000000000002,101.47499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,921,1,90.878799999999998,0.038980000000000001,80.251000000000005,83.793999999999997,87.335999999999999,90.879000000000005,94.421000000000006,97.963999999999999,101.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,922,1,90.903999999999996,0.038989999999999997,80.271000000000001,83.814999999999998,87.36,90.903999999999996,94.447999999999993,97.992999999999995,101.53700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,923,1,90.929199999999994,0.038989999999999997,80.293000000000006,83.838999999999999,87.384,90.929000000000002,94.474999999999994,98.02,101.565 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,924,1,90.954400000000007,0.039,80.313000000000002,83.86,87.406999999999996,90.953999999999994,94.501999999999995,98.049000000000007,101.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,925,1,90.979500000000002,0.039010000000000003,80.331999999999994,83.881,87.43,90.98,94.528999999999996,98.078000000000003,101.627 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,926,1,91.004599999999996,0.039010000000000003,80.353999999999999,83.903999999999996,87.454999999999998,91.004999999999995,94.555000000000007,98.105000000000004,101.655 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,927,1,91.029700000000005,0.039019999999999999,80.373999999999995,83.926000000000002,87.477999999999994,91.03,94.581999999999994,98.134,101.68600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,928,1,91.0548,0.039030000000000002,80.393000000000001,83.947000000000003,87.501000000000005,91.055000000000007,94.608999999999995,98.162999999999997,101.71599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,929,1,91.079899999999995,0.039030000000000002,80.415000000000006,83.97,87.525000000000006,91.08,94.635000000000005,98.19,101.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,930,1,91.105000000000004,0.039039999999999998,80.435000000000002,83.992000000000004,87.548000000000002,91.105000000000004,94.662000000000006,98.218000000000004,101.77500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,931,1,91.13,0.039050000000000001,80.453999999999994,84.013000000000005,87.570999999999998,91.13,94.688999999999993,98.247,101.806 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,932,1,91.155000000000001,0.039050000000000001,80.475999999999999,84.036000000000001,87.594999999999999,91.155000000000001,94.715000000000003,98.274000000000001,101.834 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,933,1,91.18,0.039059999999999997,80.495999999999995,84.057000000000002,87.619,91.18,94.741,98.302999999999997,101.864 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,934,1,91.204999999999998,0.039070000000000001,80.515000000000001,84.078000000000003,87.641999999999996,91.204999999999998,94.768000000000001,98.331999999999994,101.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,935,1,91.23,0.039070000000000001,80.537000000000006,84.100999999999999,87.665999999999997,91.23,94.793999999999997,98.358999999999995,101.923 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,936,1,91.254900000000006,0.039079999999999997,80.555999999999997,84.122,87.688999999999993,91.254999999999995,94.820999999999998,98.387,101.95399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,937,1,91.279899999999998,0.03909,80.575999999999993,84.144000000000005,87.712000000000003,91.28,94.847999999999999,98.415999999999997,101.98399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,938,1,91.3048,0.03909,80.596999999999994,84.167000000000002,87.736000000000004,91.305000000000007,94.873999999999995,98.442999999999998,102.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,939,1,91.329700000000003,0.039100000000000003,80.617000000000004,84.188000000000002,87.759,91.33,94.900999999999996,98.471999999999994,102.04300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,940,1,91.354500000000002,0.039109999999999999,80.635999999999996,84.209000000000003,87.781999999999996,91.353999999999999,94.927000000000007,98.5,102.07299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,941,1,91.379400000000004,0.039109999999999999,80.658000000000001,84.231999999999999,87.805999999999997,91.379000000000005,94.953000000000003,98.527000000000001,102.101 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,942,1,91.404300000000006,0.039120000000000002,80.677000000000007,84.253,87.828999999999994,91.403999999999996,94.98,98.555999999999997,102.13200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,943,1,91.429100000000005,0.039129999999999998,80.695999999999998,84.274000000000001,87.850999999999999,91.429000000000002,95.007000000000005,98.584000000000003,102.16200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,944,1,91.453900000000004,0.039129999999999998,80.718000000000004,84.296999999999997,87.875,91.453999999999994,95.031999999999996,98.611000000000004,102.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,945,1,91.478700000000003,0.039140000000000001,80.736999999999995,84.317999999999998,87.897999999999996,91.478999999999999,95.058999999999997,98.64,102.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,946,1,91.503500000000003,0.039149999999999997,80.756,84.338999999999999,87.921000000000006,91.504000000000005,95.085999999999999,98.668000000000006,102.251 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,947,1,91.528199999999998,0.039149999999999997,80.778000000000006,84.361999999999995,87.944999999999993,91.528000000000006,95.111999999999995,98.694999999999993,102.27800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,948,1,91.552999999999997,0.03916,80.796999999999997,84.382999999999996,87.968000000000004,91.552999999999997,95.138000000000005,98.722999999999999,102.309 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,949,1,91.577699999999993,0.039170000000000003,80.816000000000003,84.403999999999996,87.991,91.578000000000003,95.165000000000006,98.751999999999995,102.339 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,950,1,91.602400000000003,0.039170000000000003,80.837999999999994,84.426000000000002,88.013999999999996,91.602000000000004,95.19,98.778999999999996,102.367 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,951,1,91.627099999999999,0.03918,80.856999999999999,84.447000000000003,88.037000000000006,91.626999999999995,95.216999999999999,98.807000000000002,102.39700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,952,1,91.651799999999994,0.03918,80.879000000000005,84.47,88.061000000000007,91.652000000000001,95.242999999999995,98.834000000000003,102.425 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,953,1,91.676400000000001,0.039190000000000003,80.897999999999996,84.491,88.084000000000003,91.676000000000002,95.269000000000005,98.861999999999995,102.455 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,954,1,91.701099999999997,0.039199999999999999,80.917000000000002,84.512,88.105999999999995,91.700999999999993,95.296000000000006,98.89,102.485 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,955,1,91.725700000000003,0.039199999999999999,80.938999999999993,84.534000000000006,88.13,91.725999999999999,95.320999999999998,98.917000000000002,102.51300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,956,1,91.750299999999996,0.039210000000000002,80.957999999999998,84.555000000000007,88.153000000000006,91.75,95.347999999999999,98.944999999999993,102.54300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,957,1,91.774900000000002,0.039219999999999998,80.977000000000004,84.575999999999993,88.174999999999997,91.775000000000006,95.373999999999995,98.974000000000004,102.57299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,958,1,91.799499999999995,0.039219999999999998,80.998000000000005,84.599000000000004,88.198999999999998,91.8,95.4,99,102.601 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,959,1,91.824100000000001,0.039230000000000001,81.016999999999996,84.62,88.221999999999994,91.823999999999998,95.426000000000002,99.028999999999996,102.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,960,1,91.848600000000005,0.039239999999999997,81.036000000000001,84.64,88.244,91.849000000000004,95.453000000000003,99.057000000000002,102.661 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,961,1,91.873099999999994,0.039239999999999997,81.058000000000007,84.662999999999997,88.268000000000001,91.873000000000005,95.477999999999994,99.082999999999998,102.688 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,962,1,91.897599999999997,0.03925,81.076999999999998,84.683999999999997,88.290999999999997,91.897999999999996,95.504999999999995,99.111999999999995,102.71899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,963,1,91.9221,0.039260000000000003,81.096000000000004,84.703999999999994,88.313000000000002,91.921999999999997,95.531000000000006,99.14,102.749 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,964,1,91.946600000000004,0.039260000000000003,81.117000000000004,84.727000000000004,88.337000000000003,91.947000000000003,95.555999999999997,99.165999999999997,102.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,965,1,91.971100000000007,0.039269999999999999,81.135999999999996,84.748000000000005,88.358999999999995,91.971000000000004,95.582999999999998,99.194999999999993,102.806 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,966,1,91.995500000000007,0.039280000000000002,81.155000000000001,84.768000000000001,88.382000000000005,91.995999999999995,95.608999999999995,99.222999999999999,102.836 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,967,1,92.02,0.039280000000000002,81.176000000000002,84.790999999999997,88.405000000000001,92.02,95.635000000000005,99.248999999999995,102.864 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,968,1,92.044399999999996,0.039289999999999999,81.194999999999993,84.811999999999998,88.427999999999997,92.043999999999997,95.661000000000001,99.277000000000001,102.89400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,969,1,92.068799999999996,0.039289999999999999,81.216999999999999,84.834000000000003,88.450999999999993,92.069000000000003,95.686000000000007,99.304000000000002,102.92100000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,970,1,92.093199999999996,0.039300000000000002,81.234999999999999,84.855000000000004,88.474000000000004,92.093000000000004,95.712000000000003,99.331999999999994,102.95099999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,971,1,92.117500000000007,0.039309999999999998,81.254000000000005,84.875,88.495999999999995,92.117999999999995,95.739000000000004,99.36,102.98099999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,972,1,92.141900000000007,0.039309999999999998,81.275999999999996,84.897999999999996,88.52,92.141999999999996,95.763999999999996,99.385999999999996,103.008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,973,1,92.166200000000003,0.039320000000000001,81.293999999999997,84.918000000000006,88.542000000000002,92.165999999999997,95.79,99.414000000000001,103.038 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,974,1,92.190600000000003,0.039329999999999997,81.313000000000002,84.938999999999993,88.564999999999998,92.191000000000003,95.816000000000003,99.441999999999993,103.068 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,975,1,92.2149,0.039329999999999997,81.334000000000003,84.960999999999999,88.587999999999994,92.215000000000003,95.841999999999999,99.468999999999994,103.095 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,976,1,92.239199999999997,0.03934,81.352999999999994,84.981999999999999,88.611000000000004,92.239000000000004,95.867999999999995,99.497,103.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,977,1,92.263499999999993,0.039350000000000003,81.372,85.001999999999995,88.632999999999996,92.263999999999996,95.894000000000005,99.525000000000006,103.155 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,978,1,92.287700000000001,0.039350000000000003,81.393000000000001,85.025000000000006,88.656000000000006,92.287999999999997,95.918999999999997,99.551000000000002,103.182 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,979,1,92.311999999999998,0.039359999999999999,81.412000000000006,85.045000000000002,88.679000000000002,92.311999999999998,95.944999999999993,99.578999999999994,103.212 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,980,1,92.336200000000005,0.039359999999999999,81.433000000000007,85.066999999999993,88.701999999999998,92.335999999999999,95.971000000000004,99.605000000000004,103.239 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,981,1,92.360399999999998,0.039370000000000002,81.451999999999998,85.087999999999994,88.724000000000004,92.36,95.997,99.632999999999996,103.26900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,982,1,92.384600000000006,0.039379999999999998,81.47,85.108000000000004,88.745999999999995,92.385000000000005,96.022999999999996,99.661000000000001,103.29900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,983,1,92.408799999999999,0.039379999999999998,81.492000000000004,85.131,88.77,92.409000000000006,96.048000000000002,99.686999999999998,103.32599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,984,1,92.433000000000007,0.039390000000000001,81.510000000000005,85.150999999999996,88.792000000000002,92.433000000000007,96.073999999999998,99.715000000000003,103.35599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,985,1,92.4572,0.039399999999999998,81.528999999999996,85.171999999999997,88.813999999999993,92.456999999999994,96.1,99.742999999999995,103.386 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,986,1,92.481300000000005,0.039399999999999998,81.55,85.194000000000003,88.837999999999994,92.480999999999995,96.125,99.769000000000005,103.413 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,987,1,92.505399999999995,0.039410000000000001,81.567999999999998,85.213999999999999,88.86,92.504999999999995,96.150999999999996,99.796999999999997,103.44199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,988,1,92.529499999999999,0.039419999999999997,81.587000000000003,85.233999999999995,88.882000000000005,92.53,96.177000000000007,99.825000000000003,103.47199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,989,1,92.553600000000003,0.039419999999999997,81.608000000000004,85.257000000000005,88.905000000000001,92.554000000000002,96.201999999999998,99.850999999999999,103.499 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,990,1,92.577699999999993,0.03943,81.626999999999995,85.277000000000001,88.927000000000007,92.578000000000003,96.227999999999994,99.878,103.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,991,1,92.601799999999997,0.03943,81.647999999999996,85.299000000000007,88.950999999999993,92.602000000000004,96.253,99.903999999999996,103.556 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,992,1,92.625900000000001,0.039440000000000003,81.665999999999997,85.32,88.972999999999999,92.626000000000005,96.278999999999996,99.932000000000002,103.58499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,993,1,92.649900000000002,0.039449999999999999,81.685000000000002,85.34,88.995000000000005,92.65,96.305000000000007,99.96,103.61499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,994,1,92.673900000000003,0.039449999999999999,81.706000000000003,85.361999999999995,89.018000000000001,92.674000000000007,96.33,99.986000000000004,103.642 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,995,1,92.697999999999993,0.039460000000000002,81.724000000000004,85.382000000000005,89.04,92.697999999999993,96.355999999999995,100.014,103.672 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,996,1,92.721999999999994,0.039469999999999998,81.742999999999995,85.403000000000006,89.061999999999998,92.721999999999994,96.382000000000005,100.041,103.70099999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,997,1,92.745900000000006,0.039469999999999998,81.763999999999996,85.424999999999997,89.084999999999994,92.745999999999995,96.406999999999996,100.06699999999999,103.72799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,998,1,92.769900000000007,0.039480000000000001,81.781999999999996,85.444999999999993,89.106999999999999,92.77,96.432000000000002,100.095,103.758 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,999,1,92.793899999999994,0.039480000000000001,81.802999999999997,85.466999999999999,89.13,92.793999999999997,96.456999999999994,100.121,103.78400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1000,1,92.817800000000005,0.039489999999999997,81.822000000000003,85.486999999999995,89.152000000000001,92.817999999999998,96.483000000000004,100.149,103.81399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1001,1,92.841800000000006,0.0395,81.84,85.507000000000005,89.174999999999997,92.841999999999999,96.509,100.176,103.84399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1002,1,92.865700000000004,0.0395,81.861000000000004,85.528999999999996,89.197999999999993,92.866,96.534000000000006,100.202,103.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1003,1,92.889600000000002,0.039510000000000003,81.879000000000005,85.549000000000007,89.22,92.89,96.56,100.23,103.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1004,1,92.913499999999999,0.03952,81.897999999999996,85.57,89.242000000000004,92.914000000000001,96.584999999999994,100.25700000000001,103.929 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1005,1,92.937299999999993,0.03952,81.918999999999997,85.591999999999999,89.263999999999996,92.936999999999998,96.61,100.283,103.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1006,1,92.961200000000005,0.039530000000000003,81.936999999999998,85.611999999999995,89.286000000000001,92.960999999999999,96.635999999999996,100.31100000000001,103.985 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1007,1,92.984999999999999,0.039530000000000003,81.957999999999998,85.634,89.308999999999997,92.984999999999999,96.661000000000001,100.336,104.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1008,1,93.008899999999997,0.039539999999999999,81.975999999999999,85.653999999999996,89.331000000000003,93.009,96.686000000000007,100.364,104.042 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1009,1,93.032700000000006,0.039550000000000002,81.994,85.674000000000007,89.352999999999994,93.033000000000001,96.712000000000003,100.392,104.071 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1010,1,93.0565,0.039550000000000002,82.015000000000001,85.695999999999998,89.376000000000005,93.055999999999997,96.736999999999995,100.417,104.098 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1011,1,93.080299999999994,0.039559999999999998,82.034000000000006,85.715999999999994,89.397999999999996,93.08,96.763000000000005,100.44499999999999,104.127 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1012,1,93.104100000000003,0.039570000000000001,82.052000000000007,85.736000000000004,89.42,93.103999999999999,96.787999999999997,100.47199999999999,104.15600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1013,1,93.127799999999993,0.039570000000000001,82.072999999999993,85.757999999999996,89.442999999999998,93.128,96.813000000000002,100.498,104.18300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1014,1,93.151600000000002,0.039579999999999997,82.090999999999994,85.778000000000006,89.465000000000003,93.152000000000001,96.838999999999999,100.52500000000001,104.212 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1015,1,93.175299999999993,0.039579999999999997,82.111999999999995,85.8,89.486999999999995,93.174999999999997,96.863,100.551,104.239 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1016,1,93.199100000000001,0.03959,82.13,85.82,89.509,93.198999999999998,96.888999999999996,100.57899999999999,104.268 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1017,1,93.222800000000007,0.039600000000000003,82.147999999999996,85.84,89.531000000000006,93.222999999999999,96.914000000000001,100.60599999999999,104.298 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1018,1,93.246499999999997,0.039600000000000003,82.168999999999997,85.861000000000004,89.554000000000002,93.245999999999995,96.938999999999993,100.63200000000001,104.324 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1019,1,93.270200000000003,0.039609999999999999,82.186999999999998,85.881,89.575999999999993,93.27,96.965000000000003,100.65900000000001,104.35299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1020,1,93.293800000000005,0.039609999999999999,82.207999999999998,85.903000000000006,89.597999999999999,93.293999999999997,96.989000000000004,100.685,104.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1021,1,93.317499999999995,0.039620000000000002,82.225999999999999,85.923000000000002,89.62,93.317999999999998,97.015000000000001,100.712,104.40900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1022,1,93.341099999999997,0.039629999999999999,82.244,85.942999999999998,89.641999999999996,93.340999999999994,97.04,100.739,104.438 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1023,1,93.364800000000002,0.039629999999999999,82.265000000000001,85.965000000000003,89.665000000000006,93.364999999999995,97.064999999999998,100.765,104.465 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1024,1,93.388400000000004,0.039640000000000002,82.283000000000001,85.984999999999999,89.686000000000007,93.388000000000005,97.09,100.792,104.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1025,1,93.412000000000006,0.039640000000000002,82.302999999999997,86.006,89.709000000000003,93.412000000000006,97.114999999999995,100.818,104.521 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1026,1,93.435599999999994,0.039649999999999998,82.320999999999998,86.025999999999996,89.730999999999995,93.436000000000007,97.14,100.845,104.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1027,1,93.459199999999996,0.039660000000000001,82.338999999999999,86.046000000000006,89.753,93.459000000000003,97.165999999999997,100.872,104.57899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1028,1,93.482699999999994,0.039660000000000001,82.36,86.067999999999998,89.775000000000006,93.483000000000004,97.19,100.898,104.605 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1029,1,93.506299999999996,0.039669999999999997,82.378,86.087999999999994,89.796999999999997,93.506,97.215999999999994,100.925,104.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1030,1,93.529799999999994,0.03968,82.396000000000001,86.106999999999999,89.819000000000003,93.53,97.241,100.952,104.664 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1031,1,93.553399999999996,0.03968,82.417000000000002,86.129000000000005,89.840999999999994,93.552999999999997,97.266000000000005,100.97799999999999,104.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1032,1,93.576899999999995,0.039690000000000003,82.435000000000002,86.149000000000001,89.863,93.576999999999998,97.290999999999997,101.005,104.71899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1033,1,93.600399999999993,0.039690000000000003,82.454999999999998,86.17,89.885000000000005,93.6,97.314999999999998,101.03,104.745 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1034,1,93.623900000000006,0.039699999999999999,82.472999999999999,86.19,89.906999999999996,93.623999999999995,97.340999999999994,101.05800000000001,104.77500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1035,1,93.647300000000001,0.039710000000000002,82.491,86.21,89.929000000000002,93.647000000000006,97.366,101.08499999999999,104.804 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1036,1,93.6708,0.039710000000000002,82.512,86.230999999999995,89.950999999999993,93.671000000000006,97.39,101.11,104.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1037,1,93.694299999999998,0.039719999999999998,82.53,86.251000000000005,89.972999999999999,93.694000000000003,97.415999999999997,101.137,104.85899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1038,1,93.717699999999994,0.039719999999999998,82.55,86.272999999999996,89.995000000000005,93.718000000000004,97.44,101.163,104.88500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1039,1,93.741100000000003,0.039730000000000001,82.567999999999998,86.292000000000002,90.016999999999996,93.741,97.465000000000003,101.19,104.914 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1040,1,93.764600000000002,0.039739999999999998,82.585999999999999,86.311999999999998,90.037999999999997,93.765000000000001,97.491,101.217,104.943 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1041,1,93.787999999999997,0.039739999999999998,82.606999999999999,86.334000000000003,90.061000000000007,93.787999999999997,97.515000000000001,101.242,104.96899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1042,1,93.811300000000003,0.039750000000000001,82.623999999999995,86.352999999999994,90.081999999999994,93.811000000000007,97.54,101.26900000000001,104.998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1043,1,93.834699999999998,0.039750000000000001,82.644999999999996,86.375,90.105000000000004,93.834999999999994,97.564999999999998,101.295,105.024 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1044,1,93.858099999999993,0.039759999999999997,82.662999999999997,86.394999999999996,90.126000000000005,93.858000000000004,97.59,101.322,105.053 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1045,1,93.881399999999999,0.03977,82.68,86.414000000000001,90.147999999999996,93.881,97.614999999999995,101.349,105.08199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1046,1,93.904799999999994,0.03977,82.700999999999993,86.436000000000007,90.17,93.905000000000001,97.638999999999996,101.374,105.10899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1047,1,93.928100000000001,0.039780000000000003,82.718999999999994,86.454999999999998,90.191999999999993,93.927999999999997,97.665000000000006,101.401,105.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1048,1,93.951400000000007,0.039780000000000003,82.739000000000004,86.477000000000004,90.213999999999999,93.950999999999993,97.688999999999993,101.426,105.164 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1049,1,93.974699999999999,0.039789999999999999,82.757000000000005,86.495999999999995,90.234999999999999,93.974999999999994,97.713999999999999,101.453,105.19199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1050,1,93.998000000000005,0.039800000000000002,82.775000000000006,86.516000000000005,90.257000000000005,93.998000000000005,97.739000000000004,101.48,105.221 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1051,1,94.021299999999997,0.039800000000000002,82.795000000000002,86.537000000000006,90.278999999999996,94.021000000000001,97.763000000000005,101.505,105.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1052,1,94.044600000000003,0.039809999999999998,82.813000000000002,86.557000000000002,90.301000000000002,94.045000000000002,97.789000000000001,101.532,105.276 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1053,1,94.067800000000005,0.039809999999999998,82.832999999999998,86.578000000000003,90.322999999999993,94.067999999999998,97.813000000000002,101.557,105.30200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1054,1,94.091099999999997,0.039820000000000001,82.850999999999999,86.597999999999999,90.343999999999994,94.090999999999994,97.837999999999994,101.58499999999999,105.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1055,1,94.1143,0.039829999999999997,82.869,86.617000000000004,90.366,94.114000000000004,97.863,101.611,105.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1056,1,94.137600000000006,0.039829999999999997,82.888999999999996,86.638999999999996,90.388000000000005,94.138000000000005,97.887,101.637,105.386 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1057,1,94.160799999999995,0.03984,82.906999999999996,86.658000000000001,90.409000000000006,94.161000000000001,97.912000000000006,101.664,105.41500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1058,1,94.183999999999997,0.03984,82.927000000000007,86.679000000000002,90.432000000000002,94.183999999999997,97.936000000000007,101.68899999999999,105.441 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1059,1,94.207099999999997,0.039849999999999997,82.944999999999993,86.698999999999998,90.453000000000003,94.206999999999994,97.960999999999999,101.715,105.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1060,1,94.2303,0.03986,82.962000000000003,86.718000000000004,90.474000000000004,94.23,97.986000000000004,101.742,105.498 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1061,1,94.253500000000003,0.03986,82.983000000000004,86.74,90.497,94.254000000000005,98.01,101.767,105.524 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1062,1,94.276600000000002,0.039870000000000003,83,86.759,90.518000000000001,94.277000000000001,98.034999999999997,101.794,105.553 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1063,1,94.299800000000005,0.039870000000000003,83.021000000000001,86.78,90.54,94.3,98.06,101.819,105.57899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1064,1,94.322900000000004,0.039879999999999999,83.037999999999997,86.8,90.561000000000007,94.322999999999993,98.084000000000003,101.846,105.608 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1065,1,94.346000000000004,0.039890000000000002,83.055999999999997,86.819000000000003,90.582999999999998,94.346000000000004,98.108999999999995,101.873,105.636 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1066,1,94.369100000000003,0.039890000000000002,83.075999999999993,86.84,90.605000000000004,94.369,98.132999999999996,101.898,105.66200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1067,1,94.392200000000003,0.039899999999999998,83.093000000000004,86.86,90.626000000000005,94.391999999999996,98.158000000000001,101.925,105.691 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1068,1,94.415300000000002,0.039899999999999998,83.114000000000004,86.881,90.647999999999996,94.415000000000006,98.182000000000002,101.95,105.717 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1069,1,94.438400000000001,0.039910000000000001,83.131,86.9,90.668999999999997,94.438000000000002,98.206999999999994,101.976,105.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1070,1,94.461500000000001,0.039910000000000001,83.152000000000001,86.921999999999997,90.691999999999993,94.462000000000003,98.230999999999995,102.001,105.771 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1071,1,94.484499999999997,0.039919999999999997,83.168999999999997,86.941000000000003,90.712999999999994,94.483999999999995,98.256,102.02800000000001,105.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1072,1,94.507499999999993,0.03993,83.186000000000007,86.96,90.733999999999995,94.507999999999996,98.281000000000006,102.05500000000001,105.82899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1073,1,94.530600000000007,0.03993,83.206999999999994,86.980999999999995,90.756,94.531000000000006,98.305000000000007,102.08,105.854 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1074,1,94.553600000000003,0.039940000000000003,83.224000000000004,87.001000000000005,90.777000000000001,94.554000000000002,98.33,102.107,105.883 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1075,1,94.576599999999999,0.039940000000000003,83.244,87.022000000000006,90.799000000000007,94.576999999999998,98.353999999999999,102.131,105.90900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1076,1,94.599599999999995,0.039949999999999999,83.262,87.040999999999997,90.82,94.6,98.379000000000005,102.158,105.937 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1077,1,94.622600000000006,0.039960000000000002,83.278999999999996,87.06,90.840999999999994,94.623000000000005,98.403999999999996,102.185,105.96599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1078,1,94.645499999999998,0.039960000000000002,83.299000000000007,87.081000000000003,90.863,94.646000000000001,98.427999999999997,102.21,105.992 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1079,1,94.668499999999995,0.039969999999999999,83.316999999999993,87.100999999999999,90.885000000000005,94.668000000000006,98.451999999999998,102.236,106.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1080,1,94.691400000000002,0.039969999999999999,83.337000000000003,87.122,90.906999999999996,94.691000000000003,98.475999999999999,102.261,106.04600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1081,1,94.714399999999998,0.039980000000000002,83.353999999999999,87.141000000000005,90.927999999999997,94.713999999999999,98.501000000000005,102.288,106.074 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1082,1,94.737300000000005,0.039989999999999998,83.372,87.16,90.948999999999998,94.736999999999995,98.525999999999996,102.31399999999999,106.10299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1083,1,94.760199999999998,0.039989999999999998,83.391999999999996,87.180999999999997,90.971000000000004,94.76,98.55,102.339,106.129 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1084,1,94.783100000000005,0.04,83.409000000000006,87.2,90.992000000000004,94.783000000000001,98.573999999999998,102.366,106.157 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1085,1,94.805999999999997,0.04,83.429000000000002,87.221999999999994,91.013999999999996,94.805999999999997,98.597999999999999,102.39,106.18300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1086,1,94.828900000000004,0.040009999999999997,83.447000000000003,87.241,91.034999999999997,94.828999999999994,98.623000000000005,102.417,106.211 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1087,1,94.851799999999997,0.040009999999999997,83.466999999999999,87.262,91.057000000000002,94.852000000000004,98.647000000000006,102.44199999999999,106.23699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1088,1,94.874700000000004,0.04002,83.483999999999995,87.281000000000006,91.078000000000003,94.875,98.671999999999997,102.468,106.265 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1089,1,94.897499999999994,0.040030000000000003,83.501000000000005,87.3,91.099000000000004,94.897999999999996,98.695999999999998,102.495,106.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1090,1,94.920299999999997,0.040030000000000003,83.521000000000001,87.320999999999998,91.120999999999995,94.92,98.72,102.52,106.319 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1091,1,94.943200000000004,0.040039999999999999,83.539000000000001,87.34,91.141999999999996,94.942999999999998,98.745000000000005,102.54600000000001,106.348 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1092,1,94.965999999999994,0.040039999999999999,83.558999999999997,87.361000000000004,91.164000000000001,94.965999999999994,98.768000000000001,102.571,106.373 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1093,1,94.988799999999998,0.040050000000000002,83.575999999999993,87.38,91.183999999999997,94.989000000000004,98.793000000000006,102.59699999999999,106.402 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1094,1,95.011600000000001,0.040050000000000002,83.596000000000004,87.400999999999996,91.206000000000003,95.012,98.816999999999993,102.622,106.42700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1095,1,95.034400000000005,0.040059999999999998,83.613,87.42,91.227000000000004,95.034000000000006,98.840999999999994,102.649,106.456 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1096,1,95.057199999999995,0.040070000000000001,83.63,87.438999999999993,91.248000000000005,95.057000000000002,98.866,102.675,106.48399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1097,1,95.079899999999995,0.040070000000000001,83.65,87.46,91.27,95.08,98.89,102.7,106.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1098,1,95.102699999999999,0.040079999999999998,83.668000000000006,87.478999999999999,91.290999999999997,95.102999999999994,98.914000000000001,102.726,106.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1099,1,95.125399999999999,0.040079999999999998,83.688000000000002,87.5,91.313000000000002,95.125,98.938000000000002,102.751,106.563 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1100,1,95.148200000000003,0.040090000000000001,83.704999999999998,87.519000000000005,91.334000000000003,95.147999999999996,98.962999999999994,102.777,106.592 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1101,1,95.170900000000003,0.040090000000000001,83.724999999999994,87.54,91.355000000000004,95.171000000000006,98.986000000000004,102.80200000000001,106.617 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1102,1,95.193600000000004,0.040099999999999997,83.742000000000004,87.558999999999997,91.376000000000005,95.194000000000003,99.010999999999996,102.828,106.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1103,1,95.216300000000004,0.04011,83.759,87.578000000000003,91.397000000000006,95.215999999999994,99.034999999999997,102.855,106.67400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1104,1,95.239000000000004,0.04011,83.778999999999996,87.599000000000004,91.418999999999997,95.239000000000004,99.058999999999997,102.879,106.699 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1105,1,95.261700000000005,0.040120000000000003,83.796000000000006,87.617999999999995,91.44,95.262,99.084000000000003,102.905,106.727 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1106,1,95.284400000000005,0.040120000000000003,83.816000000000003,87.638999999999996,91.462000000000003,95.284000000000006,99.106999999999999,102.93,106.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1107,1,95.307000000000002,0.040129999999999999,83.832999999999998,87.658000000000001,91.481999999999999,95.307000000000002,99.132000000000005,102.956,106.78100000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1108,1,95.329700000000003,0.040129999999999999,83.852999999999994,87.679000000000002,91.504000000000005,95.33,99.155000000000001,102.98099999999999,106.806 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1109,1,95.3523,0.040140000000000002,83.87,87.697000000000003,91.525000000000006,95.352000000000004,99.18,103.00700000000001,106.83499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1110,1,95.375,0.040149999999999998,83.887,87.715999999999994,91.546000000000006,95.375,99.203999999999994,103.03400000000001,106.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1111,1,95.397599999999997,0.040149999999999998,83.906999999999996,87.736999999999995,91.566999999999993,95.397999999999996,99.227999999999994,103.05800000000001,106.88800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1112,1,95.420199999999994,0.040160000000000001,83.924000000000007,87.756,91.587999999999994,95.42,99.251999999999995,103.084,106.916 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1113,1,95.442800000000005,0.040160000000000001,83.944000000000003,87.777000000000001,91.61,95.442999999999998,99.275999999999996,103.10899999999999,106.94199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1114,1,95.465400000000002,0.040169999999999997,83.960999999999999,87.796000000000006,91.631,95.465000000000003,99.3,103.13500000000001,106.97 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1115,1,95.488,0.040169999999999997,83.980999999999995,87.816000000000003,91.652000000000001,95.488,99.323999999999998,103.16,106.995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1116,1,95.510499999999993,0.04018,83.998000000000005,87.834999999999994,91.673000000000002,95.51,99.347999999999999,103.18600000000001,107.023 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1117,1,95.533100000000005,0.040189999999999997,84.015000000000001,87.853999999999999,91.694000000000003,95.533000000000001,99.373000000000005,103.212,107.05200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1118,1,95.555599999999998,0.040189999999999997,84.034000000000006,87.875,91.715000000000003,95.555999999999997,99.396000000000001,103.236,107.077 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1119,1,95.578199999999995,0.0402,84.051000000000002,87.894000000000005,91.736000000000004,95.578000000000003,99.42,103.26300000000001,107.105 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1120,1,95.600700000000003,0.0402,84.070999999999998,87.914000000000001,91.757999999999996,95.600999999999999,99.444000000000003,103.28700000000001,107.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1121,1,95.623199999999997,0.040210000000000003,84.087999999999994,87.933000000000007,91.778000000000006,95.623000000000005,99.468000000000004,103.313,107.158 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1122,1,95.645700000000005,0.040210000000000003,84.108000000000004,87.953999999999994,91.8,95.646000000000001,99.492000000000004,103.33799999999999,107.18300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1123,1,95.668199999999999,0.040219999999999999,84.125,87.972999999999999,91.82,95.668000000000006,99.516000000000005,103.364,107.212 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1124,1,95.690700000000007,0.040230000000000002,84.141999999999996,87.991,91.840999999999994,95.691000000000003,99.54,103.39,107.24 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1125,1,95.713200000000001,0.040230000000000002,84.162000000000006,88.012,91.863,95.712999999999994,99.563999999999993,103.414,107.265 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1126,1,95.735600000000005,0.040239999999999998,84.177999999999997,88.031000000000006,91.882999999999996,95.736000000000004,99.587999999999994,103.44,107.29300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1127,1,95.758099999999999,0.040239999999999998,84.197999999999993,88.051000000000002,91.905000000000001,95.757999999999996,99.611000000000004,103.465,107.318 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1128,1,95.780500000000004,0.040250000000000001,84.215000000000003,88.07,91.924999999999997,95.78,99.635999999999996,103.491,107.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1129,1,95.802999999999997,0.040250000000000001,84.234999999999999,88.090999999999994,91.947000000000003,95.802999999999997,99.659000000000006,103.515,107.371 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1130,1,95.825400000000002,0.040259999999999997,84.251999999999995,88.11,91.966999999999999,95.825000000000003,99.683000000000007,103.541,107.399 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1131,1,95.847800000000007,0.040259999999999997,84.271000000000001,88.13,91.989000000000004,95.847999999999999,99.706999999999994,103.565,107.42400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1132,1,95.870199999999997,0.04027,84.287999999999997,88.149000000000001,92.01,95.87,99.730999999999995,103.592,107.452 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1133,1,95.892600000000002,0.040280000000000003,84.305000000000007,88.167000000000002,92.03,95.893000000000001,99.754999999999995,103.61799999999999,107.48 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1134,1,95.915000000000006,0.040280000000000003,84.325000000000003,88.188000000000002,92.052000000000007,95.915000000000006,99.778000000000006,103.642,107.505 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1135,1,95.937399999999997,0.040289999999999999,84.340999999999994,88.206999999999994,92.072000000000003,95.936999999999998,99.802999999999997,103.66800000000001,107.533 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1136,1,95.959699999999998,0.040289999999999999,84.361000000000004,88.227000000000004,92.093000000000004,95.96,99.825999999999993,103.69199999999999,107.55800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1137,1,95.982100000000003,0.040300000000000002,84.378,88.245999999999995,92.114000000000004,95.981999999999999,99.85,103.718,107.586 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1138,1,96.004400000000004,0.040300000000000002,84.397000000000006,88.266000000000005,92.135000000000005,96.004000000000005,99.873000000000005,103.742,107.611 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1139,1,96.026799999999994,0.040309999999999999,84.414000000000001,88.284999999999997,92.156000000000006,96.027000000000001,99.897999999999996,103.768,107.639 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1140,1,96.049099999999996,0.040320000000000002,84.430999999999997,88.304000000000002,92.176000000000002,96.049000000000007,99.921999999999997,103.794,107.667 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1141,1,96.071399999999997,0.040320000000000002,84.450999999999993,88.323999999999998,92.197999999999993,96.070999999999998,99.944999999999993,103.819,107.69199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1142,1,96.093699999999998,0.040329999999999998,84.466999999999999,88.343000000000004,92.218000000000004,96.093999999999994,99.968999999999994,103.845,107.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1143,1,96.116,0.040329999999999998,84.486999999999995,88.363,92.24,96.116,99.992000000000004,103.869,107.745 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1144,1,96.138300000000001,0.040340000000000001,84.504000000000005,88.382000000000005,92.26,96.138000000000005,100.017,103.895,107.773 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1145,1,96.160600000000002,0.040340000000000001,84.522999999999996,88.402000000000001,92.281000000000006,96.161000000000001,100.04,103.919,107.798 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1146,1,96.1828,0.040349999999999997,84.54,88.421000000000006,92.302000000000007,96.183000000000007,100.06399999999999,103.94499999999999,107.82599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1147,1,96.205100000000002,0.040349999999999997,84.558999999999997,88.441000000000003,92.322999999999993,96.204999999999998,100.087,103.96899999999999,107.851 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1148,1,96.2273,0.04036,84.575999999999993,88.46,92.343999999999994,96.227000000000004,100.111,103.995,107.879 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1149,1,96.249499999999998,0.04036,84.596000000000004,88.48,92.364999999999995,96.25,100.134,104.01900000000001,107.90300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1150,1,96.271799999999999,0.040370000000000003,84.611999999999995,88.498999999999995,92.385000000000005,96.272000000000006,100.158,104.045,107.931 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1151,1,96.293999999999997,0.040379999999999999,84.629000000000005,88.516999999999996,92.406000000000006,96.293999999999997,100.182,104.071,107.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1152,1,96.316199999999995,0.040379999999999999,84.647999999999996,88.537999999999997,92.427000000000007,96.316000000000003,100.205,104.095,107.98399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1153,1,96.338399999999993,0.040390000000000002,84.665000000000006,88.555999999999997,92.447000000000003,96.337999999999994,100.23,104.121,108.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1154,1,96.360600000000005,0.040390000000000002,84.685000000000002,88.576999999999998,92.468999999999994,96.361000000000004,100.253,104.145,108.03700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1155,1,96.3827,0.040399999999999998,84.700999999999993,88.594999999999999,92.489000000000004,96.382999999999996,100.277,104.17,108.06399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1156,1,96.404899999999998,0.040399999999999998,84.721000000000004,88.614999999999995,92.51,96.405000000000001,100.3,104.194,108.089 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1157,1,96.427000000000007,0.040410000000000001,84.736999999999995,88.634,92.53,96.427000000000007,100.324,104.22,108.117 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1158,1,96.449200000000005,0.040410000000000001,84.757000000000005,88.653999999999996,92.552000000000007,96.448999999999998,100.34699999999999,104.244,108.142 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1159,1,96.471299999999999,0.040419999999999998,84.772999999999996,88.673000000000002,92.572000000000003,96.471000000000004,100.371,104.27,108.169 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1160,1,96.493399999999994,0.040430000000000001,84.79,88.691000000000003,92.591999999999999,96.492999999999995,100.395,104.29600000000001,108.197 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1161,1,96.515600000000006,0.040430000000000001,84.808999999999997,88.710999999999999,92.613,96.516000000000005,100.41800000000001,104.32,108.22199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1162,1,96.537700000000001,0.040439999999999997,84.825999999999993,88.73,92.634,96.537999999999997,100.44199999999999,104.346,108.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1163,1,96.559799999999996,0.040439999999999997,84.844999999999999,88.75,92.655000000000001,96.56,100.465,104.37,108.274 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1164,1,96.581800000000001,0.04045,84.861999999999995,88.768000000000001,92.674999999999997,96.581999999999994,100.489,104.395,108.30200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1165,1,96.603899999999996,0.04045,84.881,88.789000000000001,92.695999999999998,96.603999999999999,100.512,104.419,108.327 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1166,1,96.626000000000005,0.040460000000000003,84.897999999999996,88.807000000000002,92.716999999999999,96.626000000000005,100.535,104.44499999999999,108.354 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1167,1,96.647999999999996,0.040460000000000003,84.917000000000002,88.826999999999998,92.738,96.647999999999996,100.55800000000001,104.46899999999999,108.379 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1168,1,96.670100000000005,0.040469999999999999,84.933000000000007,88.846000000000004,92.757999999999996,96.67,100.58199999999999,104.495,108.407 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1169,1,96.692099999999996,0.040469999999999999,84.953000000000003,88.866,92.778999999999996,96.691999999999993,100.605,104.518,108.431 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1170,1,96.714100000000002,0.040480000000000002,84.968999999999994,88.884,92.799000000000007,96.713999999999999,100.629,104.544,108.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1171,1,96.736199999999997,0.040489999999999998,84.986000000000004,88.903000000000006,92.819000000000003,96.736000000000004,100.65300000000001,104.57,108.48699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1172,1,96.758200000000002,0.040489999999999998,85.004999999999995,88.923000000000002,92.84,96.757999999999996,100.676,104.59399999999999,108.511 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1173,1,96.780199999999994,0.040500000000000001,85.021000000000001,88.941000000000003,92.861000000000004,96.78,100.7,104.619,108.539 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1174,1,96.802099999999996,0.040500000000000001,85.040999999999997,88.960999999999999,92.882000000000005,96.802000000000007,100.723,104.643,108.56399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1175,1,96.824100000000001,0.040509999999999997,85.057000000000002,88.978999999999999,92.902000000000001,96.823999999999998,100.746,104.669,108.59099999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1176,1,96.846100000000007,0.040509999999999997,85.075999999999993,89,92.923000000000002,96.846000000000004,100.76900000000001,104.693,108.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1177,1,96.867999999999995,0.04052,85.093000000000004,89.018000000000001,92.942999999999998,96.867999999999995,100.79300000000001,104.718,108.643 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1178,1,96.89,0.04052,85.111999999999995,89.037999999999997,92.963999999999999,96.89,100.816,104.742,108.66800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1179,1,96.911900000000003,0.040529999999999997,85.128,89.055999999999997,92.983999999999995,96.912000000000006,100.84,104.768,108.69499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1180,1,96.933899999999994,0.040529999999999997,85.147999999999996,89.075999999999993,93.004999999999995,96.933999999999997,100.863,104.791,108.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1181,1,96.955799999999996,0.04054,85.164000000000001,89.094999999999999,93.025000000000006,96.956000000000003,100.886,104.81699999999999,108.748 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1182,1,96.977699999999999,0.04054,85.183000000000007,89.114999999999995,93.046000000000006,96.977999999999994,100.90900000000001,104.84099999999999,108.77200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1183,1,96.999600000000001,0.040550000000000003,85.2,89.132999999999996,93.066000000000003,97,100.93300000000001,104.866,108.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1184,1,97.021500000000003,0.040559999999999999,85.215999999999994,89.150999999999996,93.085999999999999,97.022000000000006,100.95699999999999,104.892,108.827 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1185,1,97.043400000000005,0.040559999999999999,85.234999999999999,89.171000000000006,93.106999999999999,97.043000000000006,100.979,104.916,108.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1186,1,97.065200000000004,0.040570000000000002,85.251000000000005,89.188999999999993,93.126999999999995,97.064999999999998,101.003,104.941,108.879 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1187,1,97.087100000000007,0.040570000000000002,85.271000000000001,89.209000000000003,93.147999999999996,97.087000000000003,101.026,104.965,108.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1188,1,97.108900000000006,0.040579999999999998,85.287000000000006,89.227999999999994,93.168000000000006,97.108999999999995,101.05,104.99,108.931 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1189,1,97.130799999999994,0.040579999999999998,85.305999999999997,89.248000000000005,93.188999999999993,97.131,101.072,105.014,108.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1190,1,97.152600000000007,0.040590000000000001,85.322000000000003,89.266000000000005,93.209000000000003,97.153000000000006,101.096,105.039,108.983 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1191,1,97.174400000000006,0.040590000000000001,85.340999999999994,89.286000000000001,93.23,97.174000000000007,101.119,105.063,109.00700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1192,1,97.196299999999994,0.040599999999999997,85.358000000000004,89.304000000000002,93.25,97.195999999999998,101.142,105.089,109.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1193,1,97.218100000000007,0.040599999999999997,85.376999999999995,89.323999999999998,93.271000000000001,97.218000000000004,101.16500000000001,105.11199999999999,109.059 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1194,1,97.239900000000006,0.04061,85.393000000000001,89.341999999999999,93.290999999999997,97.24,101.18899999999999,105.13800000000001,109.087 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1195,1,97.261600000000001,0.04061,85.412000000000006,89.361999999999995,93.311999999999998,97.262,101.211,105.161,109.111 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1196,1,97.2834,0.040620000000000003,85.427999999999997,89.38,93.331999999999994,97.283000000000001,101.235,105.187,109.13800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1197,1,97.305199999999999,0.040629999999999999,85.444999999999993,89.397999999999996,93.352000000000004,97.305000000000007,101.259,105.212,109.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1198,1,97.326899999999995,0.040629999999999999,85.463999999999999,89.418000000000006,93.373000000000005,97.326999999999998,101.28100000000001,105.236,109.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1199,1,97.348699999999994,0.040640000000000003,85.48,89.436000000000007,93.391999999999996,97.349000000000004,101.30500000000001,105.261,109.217 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1200,1,97.370400000000004,0.040640000000000003,85.498999999999995,89.456000000000003,93.412999999999997,97.37,101.328,105.285,109.242 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1201,1,97.392200000000003,0.040649999999999999,85.515000000000001,89.474000000000004,93.433000000000007,97.391999999999996,101.351,105.31,109.26900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1202,1,97.413899999999998,0.040649999999999999,85.534000000000006,89.494,93.453999999999994,97.414000000000001,101.374,105.334,109.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1203,1,97.435599999999994,0.040660000000000002,85.55,89.512,93.474000000000004,97.436000000000007,101.39700000000001,105.35899999999999,109.321 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1204,1,97.457300000000004,0.040660000000000002,85.569000000000003,89.531999999999996,93.495000000000005,97.456999999999994,101.42,105.383,109.345 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1205,1,97.478999999999999,0.040669999999999998,85.585999999999999,89.55,93.515000000000001,97.478999999999999,101.443,105.408,109.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1206,1,97.500699999999995,0.040669999999999998,85.605000000000004,89.57,93.534999999999997,97.501000000000005,101.46599999999999,105.431,109.39700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1207,1,97.522300000000001,0.040680000000000001,85.620999999999995,89.587999999999994,93.555000000000007,97.522000000000006,101.49,105.45699999999999,109.42400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1208,1,97.543999999999997,0.040680000000000001,85.64,89.608000000000004,93.575999999999993,97.543999999999997,101.512,105.48,109.44799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1209,1,97.565700000000007,0.040689999999999997,85.656000000000006,89.626000000000005,93.596000000000004,97.566000000000003,101.536,105.506,109.476 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1210,1,97.587299999999999,0.040689999999999997,85.674999999999997,89.646000000000001,93.616,97.587000000000003,101.55800000000001,105.529,109.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1211,1,97.608900000000006,0.0407,85.691000000000003,89.664000000000001,93.635999999999996,97.608999999999995,101.58199999999999,105.554,109.527 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1212,1,97.630600000000001,0.0407,85.71,89.683000000000007,93.656999999999996,97.631,101.604,105.578,109.551 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1213,1,97.652199999999993,0.040710000000000003,85.725999999999999,89.700999999999993,93.677000000000007,97.652000000000001,101.628,105.60299999999999,109.578 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1214,1,97.6738,0.040719999999999999,85.742000000000004,89.718999999999994,93.697000000000003,97.674000000000007,101.651,105.628,109.60599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1215,1,97.695400000000006,0.040719999999999999,85.760999999999996,89.739000000000004,93.716999999999999,97.694999999999993,101.67400000000001,105.652,109.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1216,1,97.716999999999999,0.040730000000000002,85.777000000000001,89.757000000000005,93.736999999999995,97.716999999999999,101.697,105.67700000000001,109.657 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1217,1,97.738500000000002,0.040730000000000002,85.796000000000006,89.777000000000001,93.757999999999996,97.738,101.71899999999999,105.7,109.681 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1218,1,97.760099999999994,0.040739999999999998,85.811999999999998,89.795000000000002,93.777000000000001,97.76,101.74299999999999,105.726,109.708 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1219,1,97.781700000000001,0.040739999999999998,85.831000000000003,89.813999999999993,93.798000000000002,97.781999999999996,101.765,105.749,109.733 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1220,1,97.803200000000004,0.040750000000000001,85.846999999999994,89.831999999999994,93.817999999999998,97.802999999999997,101.789,105.774,109.76 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1221,1,97.824799999999996,0.040750000000000001,85.866,89.852000000000004,93.837999999999994,97.825000000000003,101.81100000000001,105.798,109.78400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1222,1,97.846299999999999,0.040759999999999998,85.882000000000005,89.87,93.858000000000004,97.846000000000004,101.83499999999999,105.82299999999999,109.81100000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1223,1,97.867800000000003,0.040759999999999998,85.900999999999996,89.89,93.879000000000005,97.867999999999995,101.857,105.846,109.83499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1224,1,97.889300000000006,0.040770000000000001,85.915999999999997,89.906999999999996,93.897999999999996,97.888999999999996,101.88,105.871,109.86199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1225,1,97.910799999999995,0.040770000000000001,85.935000000000002,89.927000000000007,93.918999999999997,97.911000000000001,101.90300000000001,105.89400000000001,109.886 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1226,1,97.932299999999998,0.040779999999999997,85.950999999999993,89.944999999999993,93.938999999999993,97.932000000000002,101.926,105.92,109.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1227,1,97.953800000000001,0.040779999999999997,85.97,89.965000000000003,93.959000000000003,97.953999999999994,101.94799999999999,105.943,109.937 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1228,1,97.975300000000004,0.04079,85.986000000000004,89.981999999999999,93.978999999999999,97.974999999999994,101.97199999999999,105.968,109.965 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1229,1,97.996799999999993,0.04079,86.004999999999995,90.001999999999995,94,97.997,101.994,105.991,109.989 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1230,1,98.018199999999993,0.040800000000000003,86.021000000000001,90.02,94.019000000000005,98.018000000000001,102.017,106.01600000000001,110.01600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1231,1,98.039699999999996,0.040800000000000003,86.04,90.04,94.04,98.04,102.04,106.04,110.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1232,1,98.061099999999996,0.040809999999999999,86.055000000000007,90.057000000000002,94.058999999999997,98.061000000000007,102.063,106.065,110.06699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1233,1,98.082499999999996,0.040809999999999999,86.073999999999998,90.076999999999998,94.08,98.081999999999994,102.08499999999999,106.08799999999999,110.09099999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1234,1,98.103899999999996,0.040820000000000002,86.09,90.094999999999999,94.099000000000004,98.103999999999999,102.10899999999999,106.113,110.11799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1235,1,98.125299999999996,0.040820000000000002,86.108999999999995,90.114000000000004,94.12,98.125,102.131,106.136,110.142 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1236,1,98.146699999999996,0.040829999999999998,86.125,90.132000000000005,94.138999999999996,98.147000000000006,102.154,106.161,110.169 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1237,1,98.168099999999995,0.040840000000000001,86.141000000000005,90.15,94.159000000000006,98.168000000000006,102.17700000000001,106.18600000000001,110.196 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1238,1,98.189499999999995,0.040840000000000001,86.159000000000006,90.168999999999997,94.179000000000002,98.19,102.2,106.21,110.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1239,1,98.210899999999995,0.040849999999999997,86.174999999999997,90.186999999999998,94.198999999999998,98.210999999999999,102.223,106.235,110.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1240,1,98.232200000000006,0.040849999999999997,86.194000000000003,90.206999999999994,94.218999999999994,98.231999999999999,102.245,106.258,110.271 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1241,1,98.253600000000006,0.04086,86.21,90.224000000000004,94.239000000000004,98.254000000000005,102.268,106.283,110.298 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1242,1,98.274900000000002,0.04086,86.227999999999994,90.244,94.259,98.275000000000006,102.29,106.306,110.321 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1243,1,98.296300000000002,0.040869999999999997,86.244,90.262,94.278999999999996,98.296000000000006,102.31399999999999,106.331,110.348 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1244,1,98.317599999999999,0.040869999999999997,86.263000000000005,90.281000000000006,94.299000000000007,98.317999999999998,102.336,106.354,110.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1245,1,98.338899999999995,0.04088,86.278999999999996,90.299000000000007,94.319000000000003,98.338999999999999,102.35899999999999,106.379,110.399 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1246,1,98.360200000000006,0.04088,86.296999999999997,90.317999999999998,94.338999999999999,98.36,102.381,106.402,110.423 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1247,1,98.381500000000003,0.040890000000000003,86.313000000000002,90.335999999999999,94.358999999999995,98.382000000000005,102.404,106.42700000000001,110.45 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1248,1,98.402799999999999,0.040890000000000003,86.331999999999994,90.355000000000004,94.379000000000005,98.403000000000006,102.426,106.45,110.474 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1249,1,98.424099999999996,0.040899999999999999,86.346999999999994,90.373000000000005,94.399000000000001,98.424000000000007,102.45,106.47499999999999,110.501 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1250,1,98.445300000000003,0.040899999999999999,86.366,90.391999999999996,94.418999999999997,98.444999999999993,102.47199999999999,106.498,110.52500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1251,1,98.4666,0.040910000000000002,86.382000000000005,90.41,94.438000000000002,98.466999999999999,102.495,106.523,110.551 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1252,1,98.487799999999993,0.040910000000000002,86.4,90.43,94.459000000000003,98.488,102.517,106.54600000000001,110.575 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1253,1,98.509100000000004,0.040919999999999998,86.415999999999997,90.447000000000003,94.477999999999994,98.509,102.54,106.571,110.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1254,1,98.530299999999997,0.040919999999999998,86.435000000000002,90.466999999999999,94.498000000000005,98.53,102.562,106.59399999999999,110.626 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1255,1,98.551500000000004,0.040930000000000001,86.45,90.483999999999995,94.518000000000001,98.552000000000007,102.58499999999999,106.619,110.65300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1256,1,98.572699999999998,0.040930000000000001,86.468999999999994,90.504000000000005,94.537999999999997,98.572999999999993,102.607,106.642,110.676 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1257,1,98.593900000000005,0.040939999999999997,86.484999999999999,90.521000000000001,94.557000000000002,98.593999999999994,102.63,106.667,110.703 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1258,1,98.615099999999998,0.040939999999999997,86.503,90.54,94.578000000000003,98.614999999999995,102.652,106.69,110.727 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1259,1,98.636300000000006,0.04095,86.519000000000005,90.558000000000007,94.596999999999994,98.635999999999996,102.675,106.715,110.754 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1260,1,98.657499999999999,0.04095,86.537000000000006,90.576999999999998,94.617000000000004,98.658000000000001,102.69799999999999,106.738,110.77800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1261,1,98.678600000000003,0.040960000000000003,86.552999999999997,90.594999999999999,94.637,98.679000000000002,102.72,106.762,110.804 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1262,1,98.699799999999996,0.040960000000000003,86.572000000000003,90.614000000000004,94.656999999999996,98.7,102.74299999999999,106.785,110.828 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1263,1,98.7209,0.040969999999999999,86.587000000000003,90.632000000000005,94.676000000000002,98.721000000000004,102.765,106.81,110.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1264,1,98.742099999999994,0.040969999999999999,86.605999999999995,90.650999999999996,94.697000000000003,98.742000000000004,102.788,106.833,110.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1265,1,98.763199999999998,0.040980000000000003,86.620999999999995,90.668999999999997,94.715999999999994,98.763000000000005,102.81100000000001,106.858,110.905 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1266,1,98.784300000000002,0.040980000000000003,86.64,90.688000000000002,94.736000000000004,98.784000000000006,102.83199999999999,106.881,110.929 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1267,1,98.805400000000006,0.040989999999999999,86.655000000000001,90.704999999999998,94.754999999999995,98.805000000000007,102.855,106.905,110.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1268,1,98.826499999999996,0.040989999999999999,86.674000000000007,90.724999999999994,94.775999999999996,98.825999999999993,102.877,106.928,110.979 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1269,1,98.8476,0.041000000000000002,86.688999999999993,90.742000000000004,94.795000000000002,98.847999999999999,102.9,106.953,111.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1270,1,98.868700000000004,0.041000000000000002,86.707999999999998,90.760999999999996,94.814999999999998,98.869,102.922,106.976,111.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1271,1,98.889700000000005,0.041009999999999998,86.722999999999999,90.778999999999996,94.834000000000003,98.89,102.94499999999999,107.001,111.056 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1272,1,98.910799999999995,0.041009999999999998,86.742000000000004,90.798000000000002,94.853999999999999,98.911000000000001,102.967,107.023,111.08 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1273,1,98.931799999999996,0.041020000000000001,86.757000000000005,90.814999999999998,94.873999999999995,98.932000000000002,102.99,107.048,111.10599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1274,1,98.9529,0.041029999999999997,86.772999999999996,90.832999999999998,94.893000000000001,98.953000000000003,103.01300000000001,107.07299999999999,111.133 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1275,1,98.9739,0.041029999999999997,86.790999999999997,90.852000000000004,94.912999999999997,98.974000000000004,103.035,107.096,111.157 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1276,1,98.994900000000001,0.04104,86.807000000000002,90.869,94.932000000000002,98.995000000000005,103.05800000000001,107.12,111.18300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1277,1,99.015900000000002,0.04104,86.825000000000003,90.888999999999996,94.951999999999998,99.016000000000005,103.08,107.143,111.20699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1278,1,99.036900000000003,0.041050000000000003,86.840999999999994,90.906000000000006,94.971000000000004,99.037000000000006,103.102,107.16800000000001,111.233 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1279,1,99.057900000000004,0.041050000000000003,86.858999999999995,90.924999999999997,94.992000000000004,99.058000000000007,103.124,107.191,111.25700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1280,1,99.078900000000004,0.041059999999999999,86.873999999999995,90.942999999999998,95.010999999999996,99.078999999999994,103.14700000000001,107.215,111.283 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1281,1,99.099900000000005,0.041059999999999999,86.893000000000001,90.962000000000003,95.031000000000006,99.1,103.169,107.238,111.307 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1282,1,99.120800000000003,0.041070000000000002,86.908000000000001,90.978999999999999,95.05,99.120999999999995,103.19199999999999,107.26300000000001,111.333 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1283,1,99.141800000000003,0.041070000000000002,86.927000000000007,90.998000000000005,95.07,99.141999999999996,103.214,107.285,111.357 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1284,1,99.162800000000004,0.041079999999999998,86.941999999999993,91.016000000000005,95.088999999999999,99.162999999999997,103.236,107.31,111.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1285,1,99.183700000000002,0.041079999999999998,86.96,91.034999999999997,95.108999999999995,99.183999999999997,103.258,107.333,111.407 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1286,1,99.204599999999999,0.041090000000000002,86.975999999999999,91.052000000000007,95.128,99.204999999999998,103.28100000000001,107.357,111.434 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1287,1,99.225499999999997,0.041090000000000002,86.994,91.070999999999998,95.147999999999996,99.225999999999999,103.303,107.38,111.45699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1288,1,99.246399999999994,0.041099999999999998,87.009,91.087999999999994,95.167000000000002,99.245999999999995,103.325,107.404,111.483 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1289,1,99.267300000000006,0.041099999999999998,87.028000000000006,91.108000000000004,95.186999999999998,99.266999999999996,103.34699999999999,107.42700000000001,111.50700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1290,1,99.288200000000003,0.041110000000000001,87.043000000000006,91.125,95.206000000000003,99.287999999999997,103.37,107.452,111.533 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1291,1,99.309100000000001,0.041110000000000001,87.061000000000007,91.144000000000005,95.227000000000004,99.308999999999997,103.392,107.474,111.557 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1292,1,99.33,0.041119999999999997,87.076999999999998,91.161000000000001,95.245999999999995,99.33,103.414,107.499,111.583 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1293,1,99.350899999999996,0.041119999999999997,87.094999999999999,91.18,95.266000000000005,99.350999999999999,103.43600000000001,107.52200000000001,111.607 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1294,1,99.371700000000004,0.04113,87.11,91.197000000000003,95.284999999999997,99.372,103.459,107.54600000000001,111.633 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1295,1,99.392600000000002,0.04113,87.129000000000005,91.216999999999999,95.305000000000007,99.393000000000001,103.48099999999999,107.569,111.657 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1296,1,99.413399999999996,0.041140000000000003,87.144000000000005,91.233999999999995,95.323999999999998,99.412999999999997,103.503,107.593,111.68300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1297,1,99.434200000000004,0.041140000000000003,87.162000000000006,91.253,95.343000000000004,99.433999999999997,103.52500000000001,107.616,111.706 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1298,1,99.454999999999998,0.041149999999999999,87.177000000000007,91.27,95.361999999999995,99.454999999999998,103.548,107.64,111.733 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1299,1,99.475800000000007,0.041149999999999999,87.195999999999998,91.289000000000001,95.382000000000005,99.475999999999999,103.569,107.663,111.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1300,1,99.496600000000001,0.041160000000000002,87.210999999999999,91.305999999999997,95.400999999999996,99.497,103.592,107.687,111.782 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1301,1,99.517399999999995,0.041160000000000002,87.228999999999999,91.325000000000003,95.421000000000006,99.516999999999996,103.614,107.71,111.806 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1302,1,99.538200000000003,0.041169999999999998,87.244,91.341999999999999,95.44,99.537999999999997,103.636,107.73399999999999,111.83199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1303,1,99.558999999999997,0.041169999999999998,87.262,91.361000000000004,95.46,99.558999999999997,103.658,107.75700000000001,111.85599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1304,1,99.579800000000006,0.041180000000000001,87.278000000000006,91.378,95.478999999999999,99.58,103.68,107.78100000000001,111.88200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1305,1,99.600499999999997,0.041180000000000001,87.296000000000006,91.397000000000006,95.498999999999995,99.6,103.702,107.804,111.905 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1306,1,99.621200000000002,0.041189999999999997,87.311000000000007,91.414000000000001,95.518000000000001,99.620999999999995,103.72499999999999,107.828,111.931 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1307,1,99.641999999999996,0.041189999999999997,87.328999999999994,91.433000000000007,95.537999999999997,99.641999999999996,103.746,107.851,111.955 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1308,1,99.662700000000001,0.041200000000000001,87.343999999999994,91.45,95.557000000000002,99.662999999999997,103.76900000000001,107.875,111.98099999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1309,1,99.683400000000006,0.041200000000000001,87.363,91.468999999999994,95.575999999999993,99.683000000000007,103.79,107.89700000000001,112.004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1310,1,99.704099999999997,0.041209999999999997,87.378,91.486000000000004,95.594999999999999,99.703999999999994,103.813,107.922,112.03100000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1311,1,99.724800000000002,0.041209999999999997,87.396000000000001,91.504999999999995,95.614999999999995,99.724999999999994,103.834,107.944,112.054 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1312,1,99.745500000000007,0.04122,87.411000000000001,91.522000000000006,95.634,99.745999999999995,103.857,107.96899999999999,112.08 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1313,1,99.766199999999998,0.04122,87.429000000000002,91.540999999999997,95.653999999999996,99.766000000000005,103.879,107.991,112.10299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1314,1,99.786900000000003,0.041230000000000003,87.444000000000003,91.558000000000007,95.673000000000002,99.787000000000006,103.901,108.015,112.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1315,1,99.807500000000005,0.041230000000000003,87.462000000000003,91.576999999999998,95.691999999999993,99.808000000000007,103.923,108.038,112.15300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1316,1,99.828199999999995,0.041239999999999999,87.477000000000004,91.593999999999994,95.710999999999999,99.828000000000003,103.94499999999999,108.062,112.179 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1317,1,99.848799999999997,0.041239999999999999,87.495999999999995,91.613,95.730999999999995,99.849000000000004,103.967,108.084,112.202 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1318,1,99.869500000000002,0.041250000000000002,87.510999999999996,91.63,95.75,99.87,103.989,108.10899999999999,112.22799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1319,1,99.890100000000004,0.041250000000000002,87.528999999999996,91.649000000000001,95.77,99.89,104.011,108.131,112.251 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1320,1,99.910700000000006,0.041259999999999998,87.543999999999997,91.665999999999997,95.787999999999997,99.911000000000001,104.033,108.155,112.27800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1321,1,99.931299999999993,0.041259999999999998,87.561999999999998,91.685000000000002,95.808000000000007,99.930999999999997,104.054,108.178,112.301 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1322,1,99.951899999999995,0.041259999999999998,87.58,91.703999999999994,95.828000000000003,99.951999999999998,104.07599999999999,108.2,112.324 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1323,1,99.972499999999997,0.041270000000000001,87.594999999999999,91.721000000000004,95.846999999999994,99.971999999999994,104.098,108.224,112.35 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1324,1,99.993099999999998,0.041270000000000001,87.613,91.74,95.866,99.992999999999995,104.12,108.247,112.373 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1325,1,100.0137,0.041279999999999997,87.628,91.757000000000005,95.885000000000005,100.014,104.142,108.271,112.399 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1326,1,100.0342,0.041279999999999997,87.646000000000001,91.775000000000006,95.905000000000001,100.03400000000001,104.164,108.29300000000001,112.422 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1327,1,100.0548,0.04129,87.661000000000001,91.792000000000002,95.924000000000007,100.05500000000001,104.18600000000001,108.31699999999999,112.449 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1328,1,100.0753,0.04129,87.679000000000002,91.811000000000007,95.942999999999998,100.075,104.20699999999999,108.34,112.47199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1329,1,100.0959,0.041300000000000003,87.694000000000003,91.828000000000003,95.962000000000003,100.096,104.23,108.364,112.498 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1330,1,100.1164,0.041300000000000003,87.712000000000003,91.846999999999994,95.981999999999999,100.116,104.251,108.386,112.521 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1331,1,100.1369,0.041309999999999999,87.727000000000004,91.864000000000004,96,100.137,104.274,108.41,112.547 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1332,1,100.1574,0.041309999999999999,87.745000000000005,91.882000000000005,96.02,100.157,104.295,108.432,112.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1333,1,100.17789999999999,0.041320000000000003,87.76,91.899000000000001,96.039000000000001,100.178,104.31699999999999,108.45699999999999,112.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1334,1,100.19840000000001,0.041320000000000003,87.778000000000006,91.918000000000006,96.058000000000007,100.19799999999999,104.339,108.479,112.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1335,1,100.2189,0.041329999999999999,87.793000000000006,91.935000000000002,96.076999999999998,100.21899999999999,104.361,108.503,112.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1336,1,100.2394,0.041329999999999999,87.811000000000007,91.953999999999994,96.096999999999994,100.239,104.38200000000001,108.52500000000001,112.66800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1337,1,100.2598,0.041340000000000002,87.825999999999993,91.97,96.114999999999995,100.26,104.405,108.54900000000001,112.694 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1338,1,100.2803,0.041340000000000002,87.843999999999994,91.989000000000004,96.135000000000005,100.28,104.426,108.571,112.717 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1339,1,100.30070000000001,0.041349999999999998,87.858000000000004,92.006,96.153000000000006,100.301,104.44799999999999,108.596,112.74299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1340,1,100.3212,0.041349999999999998,87.876000000000005,92.025000000000006,96.173000000000002,100.321,104.46899999999999,108.61799999999999,112.76600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1341,1,100.3416,0.041360000000000001,87.891000000000005,92.040999999999997,96.191000000000003,100.342,104.492,108.642,112.792 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1342,1,100.36199999999999,0.041360000000000001,87.909000000000006,92.06,96.210999999999999,100.36199999999999,104.51300000000001,108.664,112.815 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1343,1,100.3824,0.041369999999999997,87.924000000000007,92.076999999999998,96.23,100.38200000000001,104.535,108.688,112.84099999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1344,1,100.4028,0.041369999999999997,87.941999999999993,92.094999999999999,96.248999999999995,100.40300000000001,104.556,108.71,112.864 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1345,1,100.42319999999999,0.04138,87.956999999999994,92.111999999999995,96.268000000000001,100.423,104.57899999999999,108.73399999999999,112.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1346,1,100.4436,0.04138,87.974999999999994,92.131,96.287000000000006,100.444,104.6,108.756,112.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1347,1,100.464,0.041390000000000003,87.989000000000004,92.147999999999996,96.305999999999997,100.464,104.622,108.78,112.93899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1348,1,100.4843,0.041390000000000003,88.007000000000005,92.165999999999997,96.325000000000003,100.48399999999999,104.643,108.80200000000001,112.961 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1349,1,100.5047,0.041399999999999999,88.022000000000006,92.183000000000007,96.343999999999994,100.505,104.666,108.82599999999999,112.98699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1350,1,100.52500000000001,0.041399999999999999,88.04,92.201999999999998,96.363,100.52500000000001,104.687,108.848,113.01 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1351,1,100.5454,0.041410000000000002,88.055000000000007,92.218000000000004,96.382000000000005,100.545,104.709,108.873,113.036 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1352,1,100.56570000000001,0.041410000000000002,88.072000000000003,92.236999999999995,96.400999999999996,100.566,104.73,108.895,113.059 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1353,1,100.586,0.041419999999999998,88.087000000000003,92.253,96.42,100.586,104.752,108.919,113.08499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1354,1,100.6063,0.041419999999999998,88.105000000000004,92.272000000000006,96.438999999999993,100.60599999999999,104.773,108.941,113.108 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1355,1,100.6266,0.041430000000000002,88.12,92.289000000000001,96.457999999999998,100.627,104.79600000000001,108.965,113.133 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1356,1,100.6469,0.041430000000000002,88.137,92.307000000000002,96.477000000000004,100.64700000000001,104.81699999999999,108.98699999999999,113.15600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1357,1,100.66719999999999,0.041439999999999998,88.152000000000001,92.323999999999998,96.495999999999995,100.667,104.839,109.01,113.182 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1358,1,100.6875,0.041439999999999998,88.17,92.343000000000004,96.515000000000001,100.688,104.86,109.032,113.205 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1359,1,100.7077,0.041450000000000001,88.185000000000002,92.358999999999995,96.533000000000001,100.708,104.88200000000001,109.056,113.23099999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1360,1,100.72799999999999,0.041450000000000001,88.201999999999998,92.378,96.552999999999997,100.72799999999999,104.90300000000001,109.078,113.254 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1361,1,100.7482,0.041459999999999997,88.216999999999999,92.394000000000005,96.570999999999998,100.748,104.925,109.102,113.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1362,1,100.7685,0.041459999999999997,88.234999999999999,92.412999999999997,96.590999999999994,100.768,104.946,109.124,113.30200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1363,1,100.78870000000001,0.041459999999999997,88.253,92.430999999999997,96.61,100.789,104.967,109.146,113.325 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1364,1,100.80889999999999,0.04147,88.266999999999996,92.447999999999993,96.628,100.809,104.989,109.17,113.351 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1365,1,100.8291,0.04147,88.284999999999997,92.465999999999994,96.647999999999996,100.82899999999999,105.01,109.19199999999999,113.373 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1366,1,100.8493,0.041480000000000003,88.3,92.483000000000004,96.665999999999997,100.849,105.033,109.21599999999999,113.399 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1367,1,100.8695,0.041480000000000003,88.316999999999993,92.501000000000005,96.685000000000002,100.87,105.054,109.238,113.422 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1368,1,100.8897,0.041489999999999999,88.331999999999994,92.518000000000001,96.703999999999994,100.89,105.07599999999999,109.262,113.447 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1369,1,100.90989999999999,0.041489999999999999,88.35,92.536000000000001,96.722999999999999,100.91,105.09699999999999,109.283,113.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1370,1,100.9301,0.041500000000000002,88.364000000000004,92.552999999999997,96.742000000000004,100.93,105.119,109.307,113.496 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1371,1,100.9502,0.041500000000000002,88.382000000000005,92.570999999999998,96.760999999999996,100.95,105.14,109.32899999999999,113.518 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1372,1,100.9704,0.041509999999999998,88.397000000000006,92.587999999999994,96.778999999999996,100.97,105.16200000000001,109.35299999999999,113.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1373,1,100.9905,0.041509999999999998,88.414000000000001,92.605999999999995,96.798000000000002,100.99,105.18300000000001,109.375,113.56699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1374,1,101.0107,0.041520000000000001,88.429000000000002,92.623000000000005,96.816999999999993,101.011,105.205,109.399,113.593 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1375,1,101.0308,0.041520000000000001,88.445999999999998,92.641000000000005,96.835999999999999,101.03100000000001,105.226,109.42,113.61499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1376,1,101.0509,0.041529999999999997,88.460999999999999,92.658000000000001,96.853999999999999,101.051,105.248,109.444,113.64100000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1377,1,101.071,0.041529999999999997,88.478999999999999,92.676000000000002,96.873999999999995,101.071,105.268,109.46599999999999,113.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1378,1,101.0911,0.041540000000000001,88.492999999999995,92.691999999999993,96.891999999999996,101.09099999999999,105.29,109.49,113.68899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1379,1,101.1112,0.041540000000000001,88.510999999999996,92.710999999999999,96.911000000000001,101.111,105.31100000000001,109.512,113.712 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1380,1,101.1313,0.041549999999999997,88.525000000000006,92.727000000000004,96.929000000000002,101.131,105.333,109.535,113.73699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1381,1,101.1514,0.041549999999999997,88.543000000000006,92.745999999999995,96.948999999999998,101.151,105.354,109.557,113.76 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1382,1,101.17140000000001,0.04156,88.557000000000002,92.762,96.966999999999999,101.17100000000001,105.376,109.581,113.785 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1383,1,101.1915,0.04156,88.575000000000003,92.78,96.986000000000004,101.19199999999999,105.39700000000001,109.60299999999999,113.80800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1384,1,101.2115,0.041570000000000003,88.588999999999999,92.796999999999997,97.004000000000005,101.212,105.419,109.626,113.834 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1385,1,101.2316,0.041570000000000003,88.606999999999999,92.814999999999998,97.022999999999996,101.232,105.44,109.648,113.85599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1386,1,101.2516,0.041579999999999999,88.620999999999995,92.831999999999994,97.042000000000002,101.252,105.462,109.672,113.88200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1387,1,101.27160000000001,0.041579999999999999,88.638999999999996,92.85,97.061000000000007,101.27200000000001,105.482,109.693,113.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1388,1,101.29170000000001,0.041579999999999999,88.656999999999996,92.867999999999995,97.08,101.292,105.503,109.715,113.92700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1389,1,101.3117,0.041590000000000002,88.671000000000006,92.885000000000005,97.097999999999999,101.312,105.52500000000001,109.739,113.952 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1390,1,101.3317,0.041590000000000002,88.688999999999993,92.903000000000006,97.117000000000004,101.33199999999999,105.54600000000001,109.76,113.97499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1391,1,101.35169999999999,0.041599999999999998,88.703000000000003,92.918999999999997,97.135000000000005,101.352,105.568,109.78400000000001,114 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1392,1,101.3716,0.041599999999999998,88.72,92.936999999999998,97.155000000000001,101.372,105.589,109.806,114.023 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1393,1,101.3916,0.041610000000000001,88.734999999999999,92.953999999999994,97.173000000000002,101.392,105.611,109.82899999999999,114.048 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1394,1,101.41160000000001,0.041610000000000001,88.751999999999995,92.971999999999994,97.191999999999993,101.41200000000001,105.631,109.851,114.071 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1395,1,101.4315,0.041619999999999997,88.766999999999996,92.988,97.21,101.432,105.65300000000001,109.875,114.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1396,1,101.4515,0.041619999999999997,88.784000000000006,93.007000000000005,97.228999999999999,101.452,105.67400000000001,109.896,114.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1397,1,101.4714,0.04163,88.799000000000007,93.022999999999996,97.247,101.471,105.696,109.92,114.14400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1398,1,101.4914,0.04163,88.816000000000003,93.040999999999997,97.266000000000005,101.491,105.71599999999999,109.94199999999999,114.167 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1399,1,101.51130000000001,0.041640000000000003,88.831000000000003,93.057000000000002,97.284000000000006,101.511,105.738,109.965,114.19199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1400,1,101.5312,0.041640000000000003,88.847999999999999,93.075999999999993,97.302999999999997,101.53100000000001,105.759,109.98699999999999,114.214 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1401,1,101.55110000000001,0.04165,88.861999999999995,93.091999999999999,97.320999999999998,101.551,105.78100000000001,110.01,114.24 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1402,1,101.571,0.04165,88.88,93.11,97.340999999999994,101.571,105.801,110.032,114.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1403,1,101.5909,0.041660000000000003,88.894000000000005,93.126000000000005,97.358999999999995,101.59099999999999,105.82299999999999,110.05500000000001,114.288 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1404,1,101.6108,0.041660000000000003,88.911000000000001,93.144999999999996,97.378,101.611,105.84399999999999,110.077,114.31 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1405,1,101.6306,0.041669999999999999,88.926000000000002,93.161000000000001,97.396000000000001,101.631,105.866,110.1,114.33499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1406,1,101.65049999999999,0.041669999999999999,88.942999999999998,93.179000000000002,97.415000000000006,101.65,105.886,110.122,114.358 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1407,1,101.6704,0.041669999999999999,88.960999999999999,93.197000000000003,97.433999999999997,101.67,105.907,110.14400000000001,114.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1408,1,101.6902,0.041680000000000002,88.974999999999994,93.212999999999994,97.451999999999998,101.69,105.929,110.167,114.40600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1409,1,101.7101,0.041680000000000002,88.992000000000004,93.231999999999999,97.471000000000004,101.71,105.949,110.18899999999999,114.428 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1410,1,101.7299,0.041689999999999998,89.007000000000005,93.248000000000005,97.489000000000004,101.73,105.971,110.212,114.453 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1411,1,101.7497,0.041689999999999998,89.024000000000001,93.266000000000005,97.507999999999996,101.75,105.992,110.23399999999999,114.476 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1412,1,101.76949999999999,0.041700000000000001,89.037999999999997,93.281999999999996,97.525999999999996,101.77,106.01300000000001,110.25700000000001,114.501 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1413,1,101.7893,0.041700000000000001,89.055000000000007,93.3,97.545000000000002,101.789,106.03400000000001,110.279,114.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1414,1,101.8091,0.041709999999999997,89.07,93.316000000000003,97.563000000000002,101.809,106.056,110.30200000000001,114.548 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1415,1,101.8289,0.041709999999999997,89.087000000000003,93.334000000000003,97.581999999999994,101.82899999999999,106.07599999999999,110.32299999999999,114.571 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1416,1,101.84869999999999,0.04172,89.100999999999999,93.35,97.6,101.849,106.098,110.34699999999999,114.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1417,1,101.8685,0.04172,89.119,93.369,97.619,101.86799999999999,106.11799999999999,110.36799999999999,114.61799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1418,1,101.8883,0.041730000000000003,89.132999999999996,93.385000000000005,97.637,101.88800000000001,106.14,110.392,114.64400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1419,1,101.908,0.041730000000000003,89.15,93.403000000000006,97.655000000000001,101.908,106.161,110.413,114.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1420,1,101.9278,0.041739999999999999,89.164000000000001,93.418999999999997,97.673000000000002,101.928,106.182,110.437,114.691 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1421,1,101.94750000000001,0.041739999999999999,89.182000000000002,93.436999999999998,97.691999999999993,101.94799999999999,106.203,110.458,114.71299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1422,1,101.96729999999999,0.041750000000000002,89.195999999999998,93.453000000000003,97.71,101.967,106.224,110.482,114.739 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1423,1,101.98699999999999,0.041750000000000002,89.212999999999994,93.471000000000004,97.728999999999999,101.98699999999999,106.245,110.503,114.761 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1424,1,102.0067,0.041750000000000002,89.23,93.489000000000004,97.748000000000005,102.00700000000001,106.265,110.524,114.783 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1425,1,102.0264,0.041759999999999999,89.245000000000005,93.504999999999995,97.766000000000005,102.026,106.28700000000001,110.548,114.80800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1426,1,102.0461,0.041759999999999999,89.262,93.522999999999996,97.784999999999997,102.04600000000001,106.30800000000001,110.569,114.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1427,1,102.0658,0.041770000000000002,89.275999999999996,93.539000000000001,97.802999999999997,102.066,106.32899999999999,110.592,114.85599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1428,1,102.0855,0.041770000000000002,89.293000000000006,93.557000000000002,97.820999999999998,102.086,106.35,110.614,114.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1429,1,102.1052,0.041779999999999998,89.307000000000002,93.572999999999993,97.838999999999999,102.105,106.371,110.637,114.90300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1430,1,102.1249,0.041779999999999998,89.325000000000003,93.590999999999994,97.858000000000004,102.125,106.392,110.658,114.925 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1431,1,102.1446,0.041790000000000001,89.338999999999999,93.606999999999999,97.876000000000005,102.145,106.413,110.682,114.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1432,1,102.16419999999999,0.041790000000000001,89.355999999999995,93.625,97.894999999999996,102.164,106.434,110.703,114.973 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1433,1,102.18389999999999,0.041799999999999997,89.37,93.641000000000005,97.912999999999997,102.184,106.455,110.726,114.998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1434,1,102.20350000000001,0.041799999999999997,89.387,93.659000000000006,97.930999999999997,102.20399999999999,106.476,110.748,115.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1435,1,102.22320000000001,0.04181,89.400999999999996,93.674999999999997,97.948999999999998,102.223,106.497,110.771,115.045 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1436,1,102.2428,0.04181,89.418000000000006,93.692999999999998,97.968000000000004,102.24299999999999,106.518,110.792,115.06699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1437,1,102.2624,0.04181,89.436000000000007,93.710999999999999,97.986999999999995,102.262,106.538,110.81399999999999,115.089 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1438,1,102.282,0.041820000000000003,89.45,93.727000000000004,98.004999999999995,102.282,106.559,110.837,115.114 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1439,1,102.30159999999999,0.041820000000000003,89.466999999999999,93.745000000000005,98.022999999999996,102.30200000000001,106.58,110.858,115.136 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1440,1,102.3212,0.041829999999999999,89.480999999999995,93.760999999999996,98.040999999999997,102.321,106.601,110.881,115.161 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1441,1,102.3408,0.041829999999999999,89.498000000000005,93.778999999999996,98.06,102.34099999999999,106.622,110.90300000000001,115.184 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1442,1,102.3604,0.041840000000000002,89.512,93.795000000000002,98.078000000000003,102.36,106.643,110.926,115.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1443,1,102.38,0.041840000000000002,89.528999999999996,93.813000000000002,98.096000000000004,102.38,106.664,110.947,115.23099999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1444,1,102.39960000000001,0.041849999999999998,89.543000000000006,93.828999999999994,98.114000000000004,102.4,106.685,110.97,115.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1445,1,102.4191,0.041849999999999998,89.56,93.846999999999994,98.132999999999996,102.419,106.705,110.992,115.27800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1446,1,102.4387,0.041860000000000001,89.573999999999998,93.863,98.150999999999996,102.43899999999999,106.727,111.015,115.303 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1447,1,102.45820000000001,0.041860000000000001,89.590999999999994,93.88,98.168999999999997,102.458,106.747,111.036,115.325 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1448,1,102.4778,0.041869999999999997,89.605999999999995,93.896000000000001,98.186999999999998,102.47799999999999,106.76900000000001,111.059,115.35 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1449,1,102.4973,0.041869999999999997,89.623000000000005,93.914000000000001,98.206000000000003,102.497,106.789,111.08,115.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1450,1,102.5168,0.041869999999999997,89.64,93.932000000000002,98.224000000000004,102.517,106.809,111.102,115.39400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1451,1,102.5364,0.041880000000000001,89.653999999999996,93.947999999999993,98.242000000000004,102.536,106.831,111.125,115.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1452,1,102.55589999999999,0.041880000000000001,89.671000000000006,93.965999999999994,98.260999999999996,102.556,106.851,111.146,115.441 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1453,1,102.5754,0.041889999999999997,89.685000000000002,93.981999999999999,98.278999999999996,102.575,106.872,111.169,115.46599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1454,1,102.5949,0.041889999999999997,89.701999999999998,93.998999999999995,98.296999999999997,102.595,106.893,111.19,115.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1455,1,102.6144,0.0419,89.715999999999994,94.015000000000001,98.314999999999998,102.614,106.914,111.21299999999999,115.51300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1456,1,102.63379999999999,0.0419,89.733000000000004,94.033000000000001,98.332999999999998,102.634,106.934,111.235,115.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1457,1,102.6533,0.041910000000000003,89.747,94.049000000000007,98.350999999999999,102.65300000000001,106.955,111.258,115.56 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1458,1,102.6728,0.041910000000000003,89.763999999999996,94.066999999999993,98.37,102.673,106.976,111.279,115.58199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1459,1,102.6923,0.041919999999999999,89.778000000000006,94.082999999999998,98.387,102.69199999999999,106.997,111.30200000000001,115.607 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1460,1,102.71169999999999,0.041919999999999999,89.795000000000002,94.1,98.406000000000006,102.712,107.017,111.32299999999999,115.629 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1461,1,102.7312,0.041930000000000002,89.808999999999997,94.116,98.424000000000007,102.73099999999999,107.039,111.346,115.654 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1462,1,102.75060000000001,0.041930000000000002,89.825999999999993,94.134,98.441999999999993,102.751,107.059,111.367,115.676 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1463,1,102.77,0.041930000000000002,89.843000000000004,94.152000000000001,98.460999999999999,102.77,107.07899999999999,111.38800000000001,115.697 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1464,1,102.7895,0.041939999999999998,89.856999999999999,94.168000000000006,98.478999999999999,102.79,107.1,111.411,115.72199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1465,1,102.80889999999999,0.041939999999999998,89.873000000000005,94.185000000000002,98.497,102.809,107.121,111.43300000000001,115.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1466,1,102.8283,0.041950000000000001,89.887,94.200999999999993,98.515000000000001,102.828,107.142,111.456,115.76900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1467,1,102.8477,0.041950000000000001,89.903999999999996,94.218999999999994,98.533000000000001,102.848,107.16200000000001,111.477,115.791 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1468,1,102.86709999999999,0.041959999999999997,89.918000000000006,94.233999999999995,98.551000000000002,102.867,107.18300000000001,111.5,115.816 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1469,1,102.8865,0.041959999999999997,89.935000000000002,94.251999999999995,98.569000000000003,102.886,107.20399999999999,111.521,115.83799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1470,1,102.9059,0.04197,89.948999999999998,94.268000000000001,98.587000000000003,102.90600000000001,107.22499999999999,111.544,115.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1471,1,102.9252,0.04197,89.965999999999994,94.286000000000001,98.605000000000004,102.925,107.245,111.565,115.88500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1472,1,102.94459999999999,0.041980000000000003,89.98,94.301000000000002,98.623000000000005,102.94499999999999,107.26600000000001,111.58799999999999,115.90900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1473,1,102.964,0.041980000000000003,89.997,94.319000000000003,98.641999999999996,102.964,107.286,111.60899999999999,115.931 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1474,1,102.9833,0.041980000000000003,90.013999999999996,94.337000000000003,98.66,102.983,107.307,111.63,115.953 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1475,1,103.0027,0.04199,90.027000000000001,94.352999999999994,98.677999999999997,103.003,107.328,111.65300000000001,115.97799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1476,1,103.02200000000001,0.04199,90.043999999999997,94.37,98.695999999999998,103.02200000000001,107.348,111.67400000000001,116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1477,1,103.0414,0.042000000000000003,90.058000000000007,94.385999999999996,98.713999999999999,103.041,107.369,111.697,116.02500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1478,1,103.0607,0.042000000000000003,90.075000000000003,94.403999999999996,98.731999999999999,103.06100000000001,107.389,111.718,116.04600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1479,1,103.08,0.042009999999999999,90.088999999999999,94.418999999999997,98.75,103.08,107.41,111.741,116.071 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1480,1,103.0993,0.042009999999999999,90.105999999999995,94.436999999999998,98.768000000000001,103.099,107.431,111.762,116.093 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1481,1,103.1186,0.042020000000000002,90.119,94.453000000000003,98.786000000000001,103.119,107.452,111.785,116.11799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1482,1,103.1379,0.042020000000000002,90.135999999999996,94.47,98.804000000000002,103.13800000000001,107.47199999999999,111.806,116.139 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1483,1,103.1572,0.042029999999999998,90.15,94.486000000000004,98.822000000000003,103.157,107.49299999999999,111.82899999999999,116.164 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1484,1,103.1765,0.042029999999999998,90.167000000000002,94.503,98.84,103.176,107.51300000000001,111.85,116.18600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1485,1,103.19580000000001,0.042029999999999998,90.183999999999997,94.521000000000001,98.858000000000004,103.196,107.533,111.87,116.208 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1486,1,103.21510000000001,0.042040000000000001,90.197999999999993,94.537000000000006,98.876000000000005,103.215,107.554,111.893,116.233 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1487,1,103.2343,0.042040000000000001,90.213999999999999,94.554000000000002,98.894000000000005,103.23399999999999,107.574,111.914,116.254 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1488,1,103.25360000000001,0.042049999999999997,90.227999999999994,94.57,98.912000000000006,103.254,107.595,111.937,116.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1489,1,103.2728,0.042049999999999997,90.245000000000005,94.587999999999994,98.93,103.273,107.61499999999999,111.958,116.301 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1490,1,103.2921,0.04206,90.259,94.602999999999994,98.947999999999993,103.292,107.637,111.98099999999999,116.325 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1491,1,103.3113,0.04206,90.275000000000006,94.620999999999995,98.965999999999994,103.31100000000001,107.657,112.002,116.34699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1492,1,103.3306,0.042070000000000003,90.289000000000001,94.635999999999996,98.983000000000004,103.331,107.678,112.02500000000001,116.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1493,1,103.3498,0.042070000000000003,90.305999999999997,94.653999999999996,99.001999999999995,103.35,107.69799999999999,112.04600000000001,116.39400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1494,1,103.369,0.042079999999999999,90.32,94.668999999999997,99.019000000000005,103.369,107.71899999999999,112.069,116.41800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1495,1,103.3882,0.042079999999999999,90.335999999999999,94.686999999999998,99.037999999999997,103.38800000000001,107.739,112.089,116.44 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1496,1,103.4074,0.042079999999999999,90.352999999999994,94.704999999999998,99.055999999999997,103.407,107.759,112.11,116.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1497,1,103.42659999999999,0.042090000000000002,90.367000000000004,94.72,99.072999999999993,103.42700000000001,107.78,112.133,116.486 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1498,1,103.44580000000001,0.042090000000000002,90.384,94.738,99.091999999999999,103.446,107.8,112.154,116.508 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1499,1,103.465,0.042099999999999999,90.397000000000006,94.753,99.108999999999995,103.465,107.821,112.17700000000001,116.533 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1500,1,103.4842,0.042099999999999999,90.414000000000001,94.771000000000001,99.128,103.48399999999999,107.84099999999999,112.19799999999999,116.554 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1501,1,103.5034,0.042110000000000002,90.427999999999997,94.786000000000001,99.144999999999996,103.503,107.86199999999999,112.22,116.57899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1502,1,103.52249999999999,0.042110000000000002,90.444999999999993,94.804000000000002,99.162999999999997,103.52200000000001,107.88200000000001,112.241,116.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1503,1,103.54170000000001,0.042119999999999998,90.457999999999998,94.819000000000003,99.180999999999997,103.542,107.90300000000001,112.264,116.625 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1504,1,103.5608,0.042119999999999998,90.474999999999994,94.837000000000003,99.198999999999998,103.56100000000001,107.923,112.285,116.64700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1505,1,103.58,0.042119999999999998,90.492000000000004,94.853999999999999,99.216999999999999,103.58,107.943,112.306,116.66800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1506,1,103.59910000000001,0.042130000000000001,90.504999999999995,94.87,99.233999999999995,103.599,107.964,112.328,116.693 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1507,1,103.6183,0.042130000000000001,90.522000000000006,94.887,99.253,103.61799999999999,107.98399999999999,112.349,116.715 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1508,1,103.6374,0.042139999999999997,90.536000000000001,94.903000000000006,99.27,103.637,108.005,112.372,116.739 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1509,1,103.65649999999999,0.042139999999999997,90.552000000000007,94.92,99.287999999999997,103.65600000000001,108.02500000000001,112.393,116.761 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1510,1,103.6756,0.04215,90.566000000000003,94.936000000000007,99.305999999999997,103.676,108.04600000000001,112.41500000000001,116.785 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1511,1,103.6947,0.04215,90.582999999999998,94.953000000000003,99.323999999999998,103.69499999999999,108.065,112.43600000000001,116.807 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1512,1,103.71380000000001,0.042160000000000003,90.596000000000004,94.968999999999994,99.340999999999994,103.714,108.086,112.459,116.83199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1513,1,103.7329,0.042160000000000003,90.613,94.986000000000004,99.36,103.733,108.10599999999999,112.48,116.85299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1514,1,103.752,0.042160000000000003,90.629000000000005,95.004000000000005,99.378,103.752,108.126,112.5,116.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1515,1,103.7711,0.042169999999999999,90.643000000000001,95.019000000000005,99.394999999999996,103.771,108.14700000000001,112.523,116.899 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1516,1,103.7902,0.042169999999999999,90.66,95.037000000000006,99.412999999999997,103.79,108.167,112.544,116.92100000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1517,1,103.8092,0.042180000000000002,90.673000000000002,95.052000000000007,99.430999999999997,103.809,108.188,112.56699999999999,116.94499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1518,1,103.8283,0.042180000000000002,90.69,95.069000000000003,99.448999999999998,103.828,108.208,112.587,116.967 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1519,1,103.8473,0.042189999999999998,90.703000000000003,95.084999999999994,99.465999999999994,103.84699999999999,108.229,112.61,116.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1520,1,103.8664,0.042189999999999998,90.72,95.102000000000004,99.483999999999995,103.866,108.249,112.631,117.01300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1521,1,103.8854,0.042200000000000001,90.733999999999995,95.117000000000004,99.501000000000005,103.88500000000001,108.26900000000001,112.65300000000001,117.03700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1522,1,103.9045,0.042200000000000001,90.75,95.135000000000005,99.52,103.904,108.289,112.67400000000001,117.059 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1523,1,103.9235,0.042200000000000001,90.766999999999996,95.152000000000001,99.537999999999997,103.92400000000001,108.309,112.69499999999999,117.08 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1524,1,103.9425,0.042209999999999998,90.78,95.168000000000006,99.555000000000007,103.94199999999999,108.33,112.717,117.105 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1525,1,103.9616,0.042209999999999998,90.796999999999997,95.185000000000002,99.572999999999993,103.962,108.35,112.738,117.126 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1526,1,103.9806,0.042220000000000001,90.81,95.2,99.590999999999994,103.98099999999999,108.371,112.761,117.151 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1527,1,103.9996,0.042220000000000001,90.826999999999998,95.218000000000004,99.608999999999995,104,108.39,112.78100000000001,117.172 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1528,1,104.01860000000001,0.042229999999999997,90.84,95.233000000000004,99.626000000000005,104.01900000000001,108.411,112.804,117.197 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1529,1,104.0376,0.042229999999999997,90.856999999999999,95.251000000000005,99.644000000000005,104.038,108.431,112.825,117.218 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1530,1,104.0565,0.04224,90.87,95.266000000000005,99.661000000000001,104.056,108.452,112.84699999999999,117.24299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1531,1,104.07550000000001,0.04224,90.887,95.283000000000001,99.679000000000002,104.07599999999999,108.47199999999999,112.86799999999999,117.264 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1532,1,104.0945,0.04224,90.903999999999996,95.301000000000002,99.697999999999993,104.09399999999999,108.491,112.88800000000001,117.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1533,1,104.1135,0.042250000000000003,90.917000000000002,95.316000000000003,99.715000000000003,104.114,108.512,112.911,117.31 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1534,1,104.1324,0.042250000000000003,90.933999999999997,95.332999999999998,99.733000000000004,104.13200000000001,108.532,112.932,117.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1535,1,104.1514,0.042259999999999999,90.947000000000003,95.349000000000004,99.75,104.151,108.553,112.95399999999999,117.35599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1536,1,104.1703,0.042259999999999999,90.963999999999999,95.366,99.768000000000001,104.17,108.57299999999999,112.97499999999999,117.377 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1537,1,104.1893,0.042270000000000002,90.977000000000004,95.381,99.784999999999997,104.18899999999999,108.593,112.997,117.402 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1538,1,104.20820000000001,0.042270000000000002,90.994,95.397999999999996,99.802999999999997,104.208,108.613,113.018,117.423 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1539,1,104.22709999999999,0.042270000000000002,91.01,95.415999999999997,99.820999999999998,104.227,108.633,113.038,117.444 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1540,1,104.2461,0.042279999999999998,91.024000000000001,95.430999999999997,99.838999999999999,104.246,108.654,113.06100000000001,117.46899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1541,1,104.265,0.042279999999999998,91.04,95.447999999999993,99.856999999999999,104.265,108.673,113.08199999999999,117.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1542,1,104.2839,0.042290000000000001,91.052999999999997,95.463999999999999,99.873999999999995,104.28400000000001,108.694,113.104,117.514 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1543,1,104.3028,0.042290000000000001,91.07,95.480999999999995,99.891999999999996,104.303,108.714,113.125,117.536 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1544,1,104.32170000000001,0.042299999999999997,91.082999999999998,95.495999999999995,99.909000000000006,104.322,108.735,113.14700000000001,117.56 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1545,1,104.34059999999999,0.042299999999999997,91.1,95.513000000000005,99.927000000000007,104.34099999999999,108.754,113.16800000000001,117.581 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1546,1,104.3595,0.04231,91.113,95.528999999999996,99.944000000000003,104.36,108.77500000000001,113.19,117.60599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1547,1,104.3784,0.04231,91.13,95.546000000000006,99.962000000000003,104.378,108.795,113.211,117.627 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1548,1,104.3972,0.04231,91.146000000000001,95.563000000000002,99.98,104.39700000000001,108.81399999999999,113.23099999999999,117.648 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1549,1,104.4161,0.042320000000000003,91.159000000000006,95.578000000000003,99.997,104.416,108.83499999999999,113.254,117.673 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1550,1,104.435,0.042320000000000003,91.176000000000002,95.596000000000004,100.015,104.435,108.855,113.274,117.694 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1551,1,104.4538,0.04233,91.188999999999993,95.611000000000004,100.032,104.45399999999999,108.875,113.297,117.718 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1552,1,104.4727,0.04233,91.206000000000003,95.628,100.05,104.473,108.895,113.31699999999999,117.74 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1553,1,104.4915,0.042340000000000003,91.218999999999994,95.643000000000001,100.06699999999999,104.492,108.916,113.34,117.764 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1554,1,104.5104,0.042340000000000003,91.234999999999999,95.66,100.08499999999999,104.51,108.935,113.36,117.785 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1555,1,104.5292,0.042340000000000003,91.251999999999995,95.677999999999997,100.10299999999999,104.529,108.955,113.381,117.806 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1556,1,104.548,0.042349999999999999,91.265000000000001,95.692999999999998,100.12,104.548,108.976,113.40300000000001,117.831 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1557,1,104.5668,0.042349999999999999,91.281999999999996,95.71,100.13800000000001,104.56699999999999,108.995,113.42400000000001,117.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1558,1,104.5856,0.042360000000000002,91.295000000000002,95.724999999999994,100.155,104.586,109.01600000000001,113.446,117.876 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1559,1,104.6045,0.042360000000000002,91.311000000000007,95.742000000000004,100.173,104.604,109.036,113.467,117.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1560,1,104.6233,0.042369999999999998,91.325000000000003,95.757999999999996,100.19,104.623,109.056,113.489,117.922 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1561,1,104.6421,0.042369999999999998,91.340999999999994,95.775000000000006,100.208,104.642,109.07599999999999,113.509,117.943 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1562,1,104.66079999999999,0.042380000000000001,91.353999999999999,95.79,100.22499999999999,104.661,109.096,113.532,117.967 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1563,1,104.67959999999999,0.042380000000000001,91.370999999999995,95.807000000000002,100.24299999999999,104.68,109.116,113.55200000000001,117.989 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1564,1,104.69840000000001,0.042380000000000001,91.387,95.823999999999998,100.261,104.69799999999999,109.136,113.57299999999999,118.01 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1565,1,104.71720000000001,0.042389999999999997,91.4,95.838999999999999,100.27800000000001,104.717,109.15600000000001,113.595,118.03400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1566,1,104.736,0.042389999999999997,91.417000000000002,95.855999999999995,100.29600000000001,104.736,109.176,113.616,118.05500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1567,1,104.7547,0.0424,91.43,95.872,100.313,104.755,109.196,113.63800000000001,118.07899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1568,1,104.7735,0.0424,91.445999999999998,95.888999999999996,100.331,104.774,109.21599999999999,113.658,118.101 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1569,1,104.79219999999999,0.042410000000000003,91.459000000000003,95.903999999999996,100.348,104.792,109.236,113.681,118.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1570,1,104.81100000000001,0.042410000000000003,91.475999999999999,95.921000000000006,100.366,104.81100000000001,109.256,113.70099999999999,118.146 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1571,1,104.8297,0.042410000000000003,91.492000000000004,95.938000000000002,100.384,104.83,109.276,113.721,118.167 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1572,1,104.8484,0.042419999999999999,91.504999999999995,95.953000000000003,100.401,104.848,109.29600000000001,113.744,118.191 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1573,1,104.8672,0.042419999999999999,91.522000000000006,95.97,100.419,104.867,109.316,113.764,118.21299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1574,1,104.88590000000001,0.042430000000000002,91.534999999999997,95.984999999999999,100.43600000000001,104.886,109.336,113.78700000000001,118.23699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1575,1,104.9046,0.042430000000000002,91.551000000000002,96.001999999999995,100.453,104.905,109.35599999999999,113.807,118.258 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1576,1,104.9233,0.042439999999999999,91.563999999999993,96.016999999999996,100.47,104.923,109.376,113.82899999999999,118.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1577,1,104.94199999999999,0.042439999999999999,91.581000000000003,96.034999999999997,100.488,104.94199999999999,109.396,113.849,118.303 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1578,1,104.9607,0.042439999999999999,91.596999999999994,96.052000000000007,100.506,104.961,109.41500000000001,113.87,118.324 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1579,1,104.9794,0.042450000000000002,91.61,96.066999999999993,100.523,104.979,109.43600000000001,113.892,118.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1580,1,104.99809999999999,0.042450000000000002,91.626999999999995,96.084000000000003,100.541,104.998,109.455,113.91200000000001,118.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1581,1,105.0167,0.042459999999999998,91.64,96.099000000000004,100.55800000000001,105.017,109.476,113.935,118.39400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1582,1,105.0354,0.042459999999999998,91.656000000000006,96.116,100.57599999999999,105.035,109.495,113.955,118.41500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1583,1,105.05410000000001,0.042470000000000001,91.668999999999997,96.131,100.592,105.054,109.51600000000001,113.977,118.43899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1584,1,105.0727,0.042470000000000001,91.685000000000002,96.147999999999996,100.61,105.07299999999999,109.535,113.998,118.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1585,1,105.09139999999999,0.042470000000000001,91.701999999999998,96.165000000000006,100.628,105.09099999999999,109.55500000000001,114.018,118.48099999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1586,1,105.11,0.042479999999999997,91.715000000000003,96.18,100.645,105.11,109.575,114.04,118.505 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1587,1,105.12869999999999,0.042479999999999997,91.730999999999995,96.197000000000003,100.663,105.129,109.595,114.06,118.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1588,1,105.1473,0.04249,91.744,96.212000000000003,100.68,105.14700000000001,109.61499999999999,114.083,118.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1589,1,105.166,0.04249,91.76,96.228999999999999,100.697,105.166,109.63500000000001,114.10299999999999,118.572 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1590,1,105.1846,0.042500000000000003,91.774000000000001,96.244,100.714,105.185,109.655,114.125,118.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1591,1,105.2032,0.042500000000000003,91.79,96.260999999999996,100.732,105.203,109.67400000000001,114.145,118.617 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1592,1,105.2218,0.042500000000000003,91.805999999999997,96.278000000000006,100.75,105.22199999999999,109.694,114.166,118.63800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1593,1,105.24039999999999,0.042509999999999999,91.819000000000003,96.293000000000006,100.767,105.24,109.714,114.188,118.66200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1594,1,105.259,0.042509999999999999,91.834999999999994,96.31,100.78400000000001,105.259,109.73399999999999,114.208,118.68300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1595,1,105.27760000000001,0.042520000000000002,91.847999999999999,96.325000000000003,100.801,105.27800000000001,109.754,114.23,118.70699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1596,1,105.2962,0.042520000000000002,91.864999999999995,96.341999999999999,100.819,105.29600000000001,109.773,114.251,118.72799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1597,1,105.31480000000001,0.042529999999999998,91.878,96.356999999999999,100.836,105.315,109.794,114.273,118.752 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1598,1,105.3334,0.042529999999999998,91.894000000000005,96.373999999999995,100.854,105.333,109.813,114.29300000000001,118.773 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1599,1,105.352,0.042529999999999998,91.91,96.391000000000005,100.871,105.352,109.833,114.313,118.794 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1600,1,105.37050000000001,0.042540000000000001,91.923000000000002,96.406000000000006,100.88800000000001,105.37,109.85299999999999,114.33499999999999,118.818 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1601,1,105.3891,0.042540000000000001,91.938999999999993,96.423000000000002,100.90600000000001,105.389,109.872,114.35599999999999,118.839 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1602,1,105.4076,0.042549999999999998,91.951999999999998,96.436999999999998,100.923,105.408,109.893,114.378,118.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1603,1,105.42619999999999,0.042549999999999998,91.968999999999994,96.453999999999994,100.94,105.426,109.91200000000001,114.398,118.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1604,1,105.4447,0.042560000000000001,91.981999999999999,96.468999999999994,100.95699999999999,105.44499999999999,109.932,114.42,118.908 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1605,1,105.4633,0.042560000000000001,91.998000000000005,96.486000000000004,100.97499999999999,105.46299999999999,109.952,114.44,118.929 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1606,1,105.48180000000001,0.042560000000000001,92.013999999999996,96.503,100.992,105.482,109.971,114.46,118.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1607,1,105.5003,0.042569999999999997,92.027000000000001,96.518000000000001,101.009,105.5,109.991,114.483,118.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1608,1,105.5189,0.042569999999999997,92.043000000000006,96.534999999999997,101.027,105.51900000000001,110.011,114.503,118.995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1609,1,105.53740000000001,0.04258,92.055999999999997,96.55,101.044,105.53700000000001,110.03100000000001,114.52500000000001,119.01900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1610,1,105.55589999999999,0.04258,92.072000000000003,96.566999999999993,101.06100000000001,105.556,110.05,114.545,119.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1611,1,105.5744,0.042590000000000003,92.084999999999994,96.581999999999994,101.078,105.574,110.071,114.56699999999999,119.06399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1612,1,105.5929,0.042590000000000003,92.100999999999999,96.597999999999999,101.096,105.593,110.09,114.587,119.08499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1613,1,105.6114,0.042590000000000003,92.117000000000004,96.614999999999995,101.113,105.611,110.10899999999999,114.607,119.105 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1614,1,105.62990000000001,0.042599999999999999,92.13,96.63,101.13,105.63,110.13,114.63,119.129 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1615,1,105.64830000000001,0.042599999999999999,92.146000000000001,96.647000000000006,101.148,105.648,110.149,114.65,119.15 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1616,1,105.66679999999999,0.042610000000000002,92.159000000000006,96.662000000000006,101.164,105.667,110.169,114.672,119.17400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1617,1,105.6853,0.042610000000000002,92.176000000000002,96.679000000000002,101.182,105.685,110.18899999999999,114.69199999999999,119.19499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1618,1,105.7037,0.042619999999999998,92.188000000000002,96.694000000000003,101.199,105.70399999999999,110.209,114.714,119.21899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1619,1,105.7222,0.042619999999999998,92.204999999999998,96.71,101.21599999999999,105.72199999999999,110.22799999999999,114.73399999999999,119.24 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1620,1,105.7406,0.042619999999999998,92.221000000000004,96.727000000000004,101.23399999999999,105.741,110.247,114.754,119.261 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1621,1,105.7591,0.042630000000000001,92.233999999999995,96.742000000000004,101.251,105.759,110.268,114.776,119.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1622,1,105.7775,0.042630000000000001,92.25,96.759,101.268,105.77800000000001,110.28700000000001,114.79600000000001,119.30500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1623,1,105.79600000000001,0.042639999999999997,92.263000000000005,96.774000000000001,101.285,105.79600000000001,110.307,114.818,119.32899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1624,1,105.81440000000001,0.042639999999999997,92.278999999999996,96.790999999999997,101.30200000000001,105.81399999999999,110.32599999999999,114.83799999999999,119.35 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1625,1,105.83280000000001,0.042639999999999997,92.295000000000002,96.807000000000002,101.32,105.833,110.346,114.858,119.371 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1626,1,105.85120000000001,0.04265,92.308000000000007,96.822000000000003,101.337,105.851,110.366,114.88,119.395 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1627,1,105.86960000000001,0.04265,92.323999999999998,96.838999999999999,101.354,105.87,110.38500000000001,114.9,119.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1628,1,105.88800000000001,0.042659999999999997,92.335999999999999,96.853999999999999,101.371,105.88800000000001,110.405,114.922,119.44 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1629,1,105.9064,0.042659999999999997,92.352000000000004,96.87,101.38800000000001,105.90600000000001,110.42400000000001,114.94199999999999,119.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1630,1,105.9248,0.04267,92.364999999999995,96.885000000000005,101.405,105.925,110.44499999999999,114.964,119.48399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1631,1,105.9432,0.04267,92.381,96.902000000000001,101.423,105.943,110.464,114.98399999999999,119.505 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1632,1,105.9616,0.04267,92.397000000000006,96.918999999999997,101.44,105.962,110.483,115.004,119.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1633,1,105.98,0.042680000000000003,92.41,96.933999999999997,101.45699999999999,105.98,110.503,115.026,119.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1634,1,105.9983,0.042680000000000003,92.426000000000002,96.95,101.474,105.998,110.52200000000001,115.04600000000001,119.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1635,1,106.0167,0.042689999999999999,92.438999999999993,96.965000000000003,101.491,106.017,110.54300000000001,115.068,119.59399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1636,1,106.0351,0.042689999999999999,92.454999999999998,96.981999999999999,101.508,106.035,110.562,115.08799999999999,119.61499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1637,1,106.0534,0.042700000000000002,92.468000000000004,96.995999999999995,101.52500000000001,106.053,110.58199999999999,115.11,119.639 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1638,1,106.0718,0.042700000000000002,92.483999999999995,97.013000000000005,101.54300000000001,106.072,110.601,115.13,119.66 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1639,1,106.09010000000001,0.042700000000000002,92.5,97.03,101.56,106.09,110.62,115.15,119.68 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1640,1,106.1084,0.042709999999999998,92.513000000000005,97.045000000000002,101.577,106.108,110.64,115.172,119.70399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1641,1,106.1268,0.042709999999999998,92.528999999999996,97.061000000000007,101.59399999999999,106.127,110.65900000000001,115.19199999999999,119.72499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1642,1,106.1451,0.042720000000000001,92.542000000000002,97.075999999999993,101.611,106.145,110.68,115.214,119.749 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1643,1,106.1634,0.042720000000000001,92.557000000000002,97.093000000000004,101.628,106.163,110.699,115.23399999999999,119.76900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1644,1,106.18170000000001,0.042720000000000001,92.572999999999993,97.11,101.646,106.182,110.718,115.254,119.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1645,1,106.2,0.042729999999999997,92.585999999999999,97.123999999999995,101.66200000000001,106.2,110.738,115.276,119.81399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1646,1,106.2183,0.042729999999999997,92.602000000000004,97.141000000000005,101.68,106.218,110.75700000000001,115.29600000000001,119.834 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1647,1,106.2366,0.04274,92.614999999999995,97.155000000000001,101.696,106.23699999999999,110.777,115.318,119.858 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1648,1,106.25490000000001,0.04274,92.631,97.171999999999997,101.714,106.255,110.79600000000001,115.33799999999999,119.879 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1649,1,106.2732,0.042750000000000003,92.644000000000005,97.186999999999998,101.73,106.273,110.816,115.36,119.90300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1650,1,106.2915,0.042750000000000003,92.66,97.203999999999994,101.748,106.292,110.83499999999999,115.379,119.923 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1651,1,106.30970000000001,0.042750000000000003,92.674999999999997,97.22,101.765,106.31,110.854,115.399,119.944 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1652,1,106.328,0.042759999999999999,92.688000000000002,97.234999999999999,101.78100000000001,106.328,110.875,115.42100000000001,119.968 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1653,1,106.3463,0.042759999999999999,92.703999999999994,97.251999999999995,101.79900000000001,106.346,110.89400000000001,115.441,119.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1654,1,106.36450000000001,0.042770000000000002,92.716999999999999,97.266000000000005,101.815,106.364,110.914,115.46299999999999,120.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1655,1,106.3828,0.042770000000000002,92.733000000000004,97.283000000000001,101.833,106.383,110.93300000000001,115.483,120.033 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1656,1,106.401,0.042770000000000002,92.748999999999995,97.299000000000007,101.85,106.401,110.952,115.503,120.053 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1657,1,106.4192,0.042779999999999999,92.760999999999996,97.313999999999993,101.867,106.419,110.97199999999999,115.524,120.077 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1658,1,106.4375,0.042779999999999999,92.777000000000001,97.331000000000003,101.884,106.438,110.991,115.544,120.098 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1659,1,106.45569999999999,0.042790000000000002,92.79,97.344999999999999,101.9,106.456,111.011,115.566,120.121 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1660,1,106.4739,0.042790000000000002,92.805999999999997,97.361999999999995,101.91800000000001,106.474,111.03,115.586,120.142 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1661,1,106.49209999999999,0.042799999999999998,92.819000000000003,97.376000000000005,101.934,106.492,111.05,115.608,120.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1662,1,106.5103,0.042799999999999998,92.834000000000003,97.393000000000001,101.952,106.51,111.069,115.628,120.18600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1663,1,106.52849999999999,0.042799999999999998,92.85,97.41,101.96899999999999,106.52800000000001,111.08799999999999,115.64700000000001,120.20699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1664,1,106.5467,0.042810000000000001,92.863,97.424000000000007,101.985,106.547,111.108,115.669,120.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1665,1,106.56489999999999,0.042810000000000001,92.879000000000005,97.441000000000003,102.003,106.565,111.127,115.68899999999999,120.251 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1666,1,106.5831,0.042819999999999997,92.891000000000005,97.454999999999998,102.01900000000001,106.583,111.14700000000001,115.711,120.27500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1667,1,106.60129999999999,0.042819999999999997,92.906999999999996,97.471999999999994,102.03700000000001,106.601,111.166,115.73099999999999,120.295 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1668,1,106.6195,0.042819999999999997,92.923000000000002,97.489000000000004,102.054,106.62,111.185,115.75,120.316 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1669,1,106.63760000000001,0.04283,92.936000000000007,97.503,102.07,106.63800000000001,111.205,115.77200000000001,120.339 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1670,1,106.6558,0.04283,92.951999999999998,97.52,102.08799999999999,106.65600000000001,111.224,115.792,120.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1671,1,106.6739,0.042840000000000003,92.963999999999999,97.534000000000006,102.104,106.67400000000001,111.244,115.81399999999999,120.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1672,1,106.6921,0.042840000000000003,92.98,97.551000000000002,102.121,106.69199999999999,111.26300000000001,115.833,120.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1673,1,106.7102,0.042849999999999999,92.992999999999995,97.564999999999998,102.13800000000001,106.71,111.283,115.855,120.428 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1674,1,106.72839999999999,0.042849999999999999,93.007999999999996,97.581999999999994,102.155,106.72799999999999,111.30200000000001,115.875,120.44799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1675,1,106.7465,0.042849999999999999,93.024000000000001,97.597999999999999,102.172,106.746,111.321,115.895,120.46899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1676,1,106.7646,0.042860000000000002,93.037000000000006,97.613,102.18899999999999,106.765,111.34099999999999,115.916,120.492 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1677,1,106.78279999999999,0.042860000000000002,93.052999999999997,97.629000000000005,102.206,106.783,111.36,115.93600000000001,120.51300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1678,1,106.8009,0.042869999999999998,93.064999999999998,97.644000000000005,102.22199999999999,106.801,111.379,115.958,120.53700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1679,1,106.819,0.042869999999999998,93.081000000000003,97.66,102.24,106.819,111.398,115.97799999999999,120.557 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1680,1,106.83710000000001,0.042869999999999998,93.096999999999994,97.677000000000007,102.25700000000001,106.837,111.417,115.997,120.577 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1681,1,106.8552,0.042880000000000001,93.108999999999995,97.691000000000003,102.273,106.855,111.437,116.01900000000001,120.601 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1682,1,106.8733,0.042880000000000001,93.125,97.707999999999998,102.291,106.873,111.456,116.039,120.621 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1683,1,106.8914,0.042889999999999998,93.138000000000005,97.721999999999994,102.307,106.89100000000001,111.476,116.06100000000001,120.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1684,1,106.90940000000001,0.042889999999999998,93.153000000000006,97.739000000000004,102.324,106.90900000000001,111.495,116.08,120.66500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1685,1,106.92749999999999,0.042889999999999998,93.168999999999997,97.754999999999995,102.34099999999999,106.928,111.514,116.1,120.68600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1686,1,106.9456,0.042900000000000001,93.182000000000002,97.77,102.358,106.946,111.53400000000001,116.122,120.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1687,1,106.9636,0.042900000000000001,93.197000000000003,97.786000000000001,102.375,106.964,111.55200000000001,116.14100000000001,120.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1688,1,106.9817,0.042909999999999997,93.21,97.801000000000002,102.39100000000001,106.982,111.572,116.163,120.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1689,1,106.99979999999999,0.042909999999999997,93.225999999999999,97.816999999999993,102.408,107,111.59099999999999,116.18300000000001,120.774 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1690,1,107.01779999999999,0.04292,93.238,97.831000000000003,102.425,107.018,111.611,116.20399999999999,120.797 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1691,1,107.03579999999999,0.04292,93.254000000000005,97.847999999999999,102.44199999999999,107.036,111.63,116.224,120.818 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1692,1,107.0539,0.04292,93.27,97.864000000000004,102.459,107.054,111.649,116.24299999999999,120.83799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1693,1,107.0719,0.042930000000000003,93.281999999999996,97.879000000000005,102.47499999999999,107.072,111.66800000000001,116.265,120.86199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1694,1,107.0899,0.042930000000000003,93.298000000000002,97.894999999999996,102.49299999999999,107.09,111.687,116.285,120.88200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1695,1,107.1079,0.042939999999999999,93.31,97.909000000000006,102.509,107.108,111.70699999999999,116.306,120.90600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1696,1,107.126,0.042939999999999999,93.325999999999993,97.926000000000002,102.526,107.126,111.726,116.32599999999999,120.926 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1697,1,107.14400000000001,0.042939999999999999,93.341999999999999,97.941999999999993,102.54300000000001,107.14400000000001,111.745,116.346,120.946 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1698,1,107.16200000000001,0.042950000000000002,93.353999999999999,97.956999999999994,102.559,107.16200000000001,111.765,116.367,120.97 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1699,1,107.1799,0.042950000000000002,93.37,97.972999999999999,102.577,107.18,111.783,116.387,120.99 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1700,1,107.1979,0.042959999999999998,93.382000000000005,97.986999999999995,102.593,107.19799999999999,111.803,116.408,121.014 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1701,1,107.2159,0.042959999999999998,93.397999999999996,98.004000000000005,102.61,107.21599999999999,111.822,116.428,121.03400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1702,1,107.23390000000001,0.042959999999999998,93.414000000000001,98.02,102.627,107.23399999999999,111.84099999999999,116.447,121.054 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1703,1,107.25190000000001,0.042970000000000001,93.426000000000002,98.034999999999997,102.643,107.252,111.861,116.46899999999999,121.078 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1704,1,107.2698,0.042970000000000001,93.441999999999993,98.051000000000002,102.66,107.27,111.879,116.489,121.098 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1705,1,107.2878,0.042979999999999997,93.453999999999994,98.064999999999998,102.67700000000001,107.288,111.899,116.51,121.121 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1706,1,107.3057,0.042979999999999997,93.47,98.081999999999994,102.694,107.306,111.91800000000001,116.53,121.142 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1707,1,107.3237,0.04299,93.481999999999999,98.096000000000004,102.71,107.324,111.938,116.551,121.16500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1708,1,107.3416,0.04299,93.498000000000005,98.111999999999995,102.727,107.342,111.956,116.571,121.185 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1709,1,107.3596,0.04299,93.513000000000005,98.129000000000005,102.744,107.36,111.97499999999999,116.59,121.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1710,1,107.3775,0.042999999999999997,93.525999999999996,98.143000000000001,102.76,107.378,111.995,116.61199999999999,121.229 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1711,1,107.3954,0.042999999999999997,93.540999999999997,98.159000000000006,102.777,107.395,112.01300000000001,116.631,121.249 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1712,1,107.41330000000001,0.04301,93.554000000000002,98.174000000000007,102.79300000000001,107.413,112.033,116.65300000000001,121.273 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1713,1,107.4312,0.04301,93.569000000000003,98.19,102.81100000000001,107.431,112.05200000000001,116.672,121.29300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1714,1,107.4492,0.04301,93.584999999999994,98.206000000000003,102.828,107.449,112.071,116.69199999999999,121.313 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1715,1,107.4671,0.043020000000000003,93.596999999999994,98.221000000000004,102.84399999999999,107.467,112.09,116.714,121.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1716,1,107.4849,0.043020000000000003,93.613,98.236999999999995,102.861,107.485,112.10899999999999,116.733,121.357 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1717,1,107.50279999999999,0.043029999999999999,93.625,98.251000000000005,102.877,107.503,112.129,116.754,121.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1718,1,107.52070000000001,0.043029999999999999,93.641000000000005,98.266999999999996,102.89400000000001,107.521,112.14700000000001,116.774,121.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1719,1,107.5386,0.043029999999999999,93.656000000000006,98.284000000000006,102.911,107.539,112.166,116.79300000000001,121.42100000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1720,1,107.5565,0.043040000000000002,93.668999999999997,98.298000000000002,102.92700000000001,107.556,112.18600000000001,116.815,121.444 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1721,1,107.57429999999999,0.043040000000000002,93.683999999999997,98.313999999999993,102.944,107.574,112.20399999999999,116.834,121.464 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1722,1,107.59220000000001,0.043049999999999998,93.697000000000003,98.328999999999994,102.96,107.592,112.224,116.85599999999999,121.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1723,1,107.61,0.043049999999999998,93.712000000000003,98.344999999999999,102.977,107.61,112.24299999999999,116.875,121.508 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1724,1,107.6279,0.043049999999999998,93.727999999999994,98.361000000000004,102.995,107.628,112.261,116.895,121.52800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1725,1,107.64570000000001,0.043060000000000001,93.74,98.375,103.01,107.646,112.28100000000001,116.916,121.551 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1726,1,107.6636,0.043060000000000001,93.756,98.391999999999996,103.02800000000001,107.664,112.3,116.93600000000001,121.572 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1727,1,107.6814,0.043069999999999997,93.768000000000001,98.406000000000006,103.044,107.681,112.319,116.95699999999999,121.595 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1728,1,107.6992,0.043069999999999997,93.783000000000001,98.421999999999997,103.06100000000001,107.699,112.33799999999999,116.976,121.61499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1729,1,107.717,0.04308,93.796000000000006,98.436000000000007,103.077,107.717,112.357,116.998,121.63800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1730,1,107.7349,0.04308,93.811000000000007,98.451999999999998,103.09399999999999,107.735,112.376,117.017,121.65900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1731,1,107.7527,0.04308,93.826999999999998,98.468999999999994,103.111,107.753,112.395,117.03700000000001,121.679 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1732,1,107.7705,0.043090000000000003,93.838999999999999,98.483000000000004,103.127,107.77,112.414,117.05800000000001,121.702 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1733,1,107.78830000000001,0.043090000000000003,93.855000000000004,98.498999999999995,103.14400000000001,107.788,112.43300000000001,117.077,121.72199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1734,1,107.806,0.043099999999999999,93.867000000000004,98.513000000000005,103.16,107.806,112.452,117.099,121.745 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1735,1,107.82380000000001,0.043099999999999999,93.882000000000005,98.528999999999996,103.17700000000001,107.824,112.471,117.11799999999999,121.765 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1736,1,107.8416,0.043099999999999999,93.897999999999996,98.546000000000006,103.194,107.842,112.49,117.13800000000001,121.786 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1737,1,107.85939999999999,0.043110000000000002,93.91,98.56,103.21,107.85899999999999,112.509,117.15900000000001,121.809 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1738,1,107.8772,0.043110000000000002,93.924999999999997,98.575999999999993,103.227,107.877,112.52800000000001,117.178,121.82899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1739,1,107.89490000000001,0.043119999999999999,93.938000000000002,98.59,103.242,107.895,112.547,117.2,121.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1740,1,107.9127,0.043119999999999999,93.953000000000003,98.605999999999995,103.26,107.913,112.566,117.21899999999999,121.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1741,1,107.93040000000001,0.043119999999999999,93.968999999999994,98.622,103.276,107.93,112.584,117.238,121.892 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1742,1,107.9482,0.043130000000000002,93.980999999999995,98.637,103.292,107.94799999999999,112.604,117.26,121.916 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1743,1,107.9659,0.043130000000000002,93.995999999999995,98.653000000000006,103.309,107.96599999999999,112.622,117.279,121.93600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1744,1,107.9836,0.043139999999999998,94.007999999999996,98.667000000000002,103.325,107.98399999999999,112.642,117.3,121.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1745,1,108.0014,0.043139999999999998,94.024000000000001,98.683000000000007,103.342,108.001,112.661,117.32,121.979 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1746,1,108.01909999999999,0.043139999999999998,94.039000000000001,98.698999999999998,103.35899999999999,108.01900000000001,112.679,117.339,121.999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1747,1,108.0368,0.043150000000000001,94.051000000000002,98.712999999999994,103.375,108.03700000000001,112.699,117.36,122.02200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1748,1,108.0545,0.043150000000000001,94.066999999999993,98.728999999999999,103.392,108.054,112.717,117.38,122.042 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1749,1,108.0722,0.043159999999999997,94.078999999999994,98.742999999999995,103.408,108.072,112.73699999999999,117.401,122.065 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1750,1,108.0899,0.043159999999999997,94.093999999999994,98.76,103.425,108.09,112.755,117.42,122.08499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1751,1,108.10760000000001,0.043159999999999997,94.11,98.775999999999996,103.44199999999999,108.108,112.774,117.43899999999999,122.105 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1752,1,108.1253,0.04317,94.122,98.79,103.458,108.125,112.79300000000001,117.461,122.129 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1753,1,108.143,0.04317,94.137,98.805999999999997,103.474,108.143,112.812,117.48,122.149 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1754,1,108.16070000000001,0.043180000000000003,94.15,98.82,103.49,108.161,112.831,117.501,122.172 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1755,1,108.17829999999999,0.043180000000000003,94.165000000000006,98.835999999999999,103.50700000000001,108.178,112.849,117.521,122.19199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1756,1,108.196,0.043180000000000003,94.18,98.852000000000004,103.524,108.196,112.86799999999999,117.54,122.212 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1757,1,108.2137,0.043189999999999999,94.191999999999993,98.866,103.54,108.214,112.887,117.56100000000001,122.235 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1758,1,108.2313,0.043189999999999999,94.207999999999998,98.882000000000005,103.557,108.23099999999999,112.90600000000001,117.58,122.255 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1759,1,108.249,0.043200000000000002,94.22,98.896000000000001,103.57299999999999,108.249,112.925,117.602,122.27800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1760,1,108.2666,0.043200000000000002,94.234999999999999,98.912000000000006,103.589,108.267,112.944,117.621,122.298 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1761,1,108.2842,0.043209999999999998,94.247,98.926000000000002,103.605,108.28400000000001,112.96299999999999,117.642,122.321 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1762,1,108.3019,0.043209999999999998,94.263000000000005,98.941999999999993,103.622,108.30200000000001,112.982,117.661,122.34099999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1763,1,108.31950000000001,0.043209999999999998,94.278000000000006,98.959000000000003,103.639,108.32,113,117.68,122.361 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1764,1,108.33710000000001,0.043220000000000001,94.29,98.971999999999994,103.655,108.337,113.01900000000001,117.702,122.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1765,1,108.35469999999999,0.043220000000000001,94.305000000000007,98.989000000000004,103.672,108.355,113.038,117.721,122.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1766,1,108.3723,0.043229999999999998,94.316999999999993,99.001999999999995,103.687,108.372,113.057,117.742,122.42700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1767,1,108.3899,0.043229999999999998,94.332999999999998,99.019000000000005,103.70399999999999,108.39,113.07599999999999,117.761,122.447 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1768,1,108.4075,0.043229999999999998,94.347999999999999,99.034999999999997,103.721,108.408,113.09399999999999,117.78,122.467 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1769,1,108.4251,0.043240000000000001,94.36,99.048000000000002,103.73699999999999,108.425,113.113,117.80200000000001,122.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1770,1,108.4427,0.043240000000000001,94.376000000000005,99.064999999999998,103.754,108.443,113.13200000000001,117.821,122.51 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1771,1,108.4603,0.043249999999999997,94.388000000000005,99.078000000000003,103.76900000000001,108.46,113.151,117.842,122.533 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1772,1,108.47790000000001,0.043249999999999997,94.403000000000006,99.094999999999999,103.786,108.47799999999999,113.17,117.861,122.553 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1773,1,108.4954,0.043249999999999997,94.418000000000006,99.111000000000004,103.803,108.495,113.188,117.88,122.57299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1774,1,108.51300000000001,0.04326,94.43,99.123999999999995,103.819,108.51300000000001,113.20699999999999,117.902,122.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1775,1,108.53060000000001,0.04326,94.444999999999993,99.141000000000005,103.836,108.53100000000001,113.226,117.92100000000001,122.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1776,1,108.54810000000001,0.043270000000000003,94.456999999999994,99.153999999999996,103.851,108.548,113.245,117.94199999999999,122.639 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1777,1,108.56570000000001,0.043270000000000003,94.472999999999999,99.17,103.86799999999999,108.566,113.26300000000001,117.961,122.65900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1778,1,108.58320000000001,0.043270000000000003,94.488,99.186000000000007,103.88500000000001,108.583,113.282,117.98,122.678 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1779,1,108.60080000000001,0.043279999999999999,94.5,99.2,103.901,108.601,113.301,118.001,122.702 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1780,1,108.6183,0.043279999999999999,94.515000000000001,99.215999999999994,103.917,108.61799999999999,113.319,118.02,122.721 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1781,1,108.6358,0.043290000000000002,94.527000000000001,99.23,103.93300000000001,108.636,113.339,118.041,122.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1782,1,108.6533,0.043290000000000002,94.542000000000002,99.245999999999995,103.95,108.65300000000001,113.357,118.06100000000001,122.764 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1783,1,108.6709,0.043290000000000002,94.558000000000007,99.262,103.967,108.67100000000001,113.375,118.08,122.78400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1784,1,108.6884,0.043299999999999998,94.57,99.275999999999996,103.982,108.688,113.395,118.101,122.807 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1785,1,108.7059,0.043299999999999998,94.584999999999994,99.292000000000002,103.999,108.706,113.413,118.12,122.827 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1786,1,108.7234,0.043310000000000001,94.596999999999994,99.305999999999997,104.015,108.723,113.432,118.14100000000001,122.85 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1787,1,108.7409,0.043310000000000001,94.611999999999995,99.322000000000003,104.03100000000001,108.741,113.45,118.16,122.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1788,1,108.75830000000001,0.043310000000000001,94.626999999999995,99.337999999999994,104.048,108.758,113.46899999999999,118.179,122.889 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1789,1,108.7758,0.043319999999999997,94.638999999999996,99.350999999999999,104.06399999999999,108.776,113.488,118.2,122.91200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1790,1,108.7933,0.043319999999999997,94.655000000000001,99.367000000000004,104.08,108.79300000000001,113.506,118.21899999999999,122.932 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1791,1,108.8108,0.04333,94.665999999999997,99.381,104.096,108.81100000000001,113.526,118.24,122.955 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1792,1,108.8282,0.04333,94.682000000000002,99.397000000000006,104.113,108.828,113.544,118.259,122.97499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1793,1,108.84569999999999,0.04333,94.697000000000003,99.412999999999997,104.129,108.846,113.562,118.27800000000001,122.995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1794,1,108.86320000000001,0.043339999999999997,94.709000000000003,99.427000000000007,104.145,108.863,113.581,118.29900000000001,123.018 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1795,1,108.8806,0.043339999999999997,94.724000000000004,99.442999999999998,104.16200000000001,108.881,113.599,118.318,123.03700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1796,1,108.8981,0.04335,94.736000000000004,99.456999999999994,104.17700000000001,108.898,113.619,118.34,123.06 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1797,1,108.91549999999999,0.04335,94.751000000000005,99.472999999999999,104.194,108.916,113.637,118.358,123.08 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1798,1,108.9329,0.04335,94.766000000000005,99.488,104.211,108.93300000000001,113.655,118.377,123.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1799,1,108.9504,0.043360000000000003,94.778000000000006,99.501999999999995,104.226,108.95,113.67400000000001,118.399,123.123 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1800,1,108.9678,0.043360000000000003,94.793000000000006,99.518000000000001,104.24299999999999,108.968,113.693,118.417,123.142 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1801,1,108.98520000000001,0.043369999999999999,94.805000000000007,99.531999999999996,104.259,108.985,113.712,118.43899999999999,123.16500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1802,1,109.0026,0.043369999999999999,94.82,99.548000000000002,104.27500000000001,109.003,113.73,118.45699999999999,123.185 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1803,1,109.02,0.043369999999999999,94.834999999999994,99.563999999999993,104.292,109.02,113.748,118.476,123.205 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1804,1,109.03740000000001,0.043380000000000002,94.846999999999994,99.576999999999998,104.307,109.03700000000001,113.767,118.497,123.22799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1805,1,109.0548,0.043380000000000002,94.861999999999995,99.593000000000004,104.324,109.05500000000001,113.786,118.51600000000001,123.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1806,1,109.0722,0.043389999999999998,94.873999999999995,99.606999999999999,104.34,109.072,113.80500000000001,118.53700000000001,123.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1807,1,109.0896,0.043389999999999998,94.888999999999996,99.623000000000005,104.35599999999999,109.09,113.82299999999999,118.556,123.29 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1808,1,109.107,0.043389999999999998,94.905000000000001,99.638999999999996,104.373,109.107,113.84099999999999,118.575,123.309 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1809,1,109.12439999999999,0.043400000000000001,94.915999999999997,99.652000000000001,104.38800000000001,109.124,113.86,118.596,123.33199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1810,1,109.1417,0.043400000000000001,94.930999999999997,99.668000000000006,104.405,109.142,113.878,118.61499999999999,123.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1811,1,109.1591,0.043409999999999997,94.942999999999998,99.682000000000002,104.42100000000001,109.15900000000001,113.898,118.636,123.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1812,1,109.1764,0.043409999999999997,94.957999999999998,99.697999999999993,104.437,109.176,113.916,118.655,123.39400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1813,1,109.1938,0.043409999999999997,94.972999999999999,99.713999999999999,104.45399999999999,109.194,113.934,118.67400000000001,123.414 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1814,1,109.21120000000001,0.04342,94.984999999999999,99.727000000000004,104.46899999999999,109.211,113.953,118.69499999999999,123.437 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1815,1,109.2285,0.04342,95,99.742999999999995,104.486,109.22799999999999,113.971,118.714,123.45699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1816,1,109.2458,0.043430000000000003,95.012,99.757000000000005,104.501,109.246,113.99,118.735,123.479 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1817,1,109.2632,0.043430000000000003,95.027000000000001,99.772999999999996,104.518,109.26300000000001,114.009,118.754,123.499 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1818,1,109.2805,0.043430000000000003,95.042000000000002,99.787999999999997,104.53400000000001,109.28,114.027,118.773,123.51900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1819,1,109.2978,0.043439999999999999,95.054000000000002,99.802000000000007,104.55,109.298,114.04600000000001,118.794,123.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1820,1,109.3151,0.043439999999999999,95.069000000000003,99.817999999999998,104.566,109.315,114.06399999999999,118.812,123.56100000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1821,1,109.33240000000001,0.043450000000000003,95.081000000000003,99.831000000000003,104.58199999999999,109.33199999999999,114.083,118.833,123.584 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1822,1,109.3498,0.043450000000000003,95.096000000000004,99.846999999999994,104.599,109.35,114.101,118.852,123.604 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1823,1,109.36709999999999,0.043450000000000003,95.111000000000004,99.863,104.61499999999999,109.367,114.119,118.871,123.623 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1824,1,109.3844,0.043459999999999999,95.123000000000005,99.876999999999995,104.631,109.384,114.13800000000001,118.892,123.646 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1825,1,109.4016,0.043459999999999999,95.138000000000005,99.891999999999996,104.64700000000001,109.402,114.15600000000001,118.911,123.66500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1826,1,109.41889999999999,0.043459999999999999,95.153000000000006,99.908000000000001,104.664,109.419,114.17400000000001,118.93,123.685 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1827,1,109.4362,0.043470000000000002,95.165000000000006,99.921999999999997,104.679,109.43600000000001,114.193,118.95099999999999,123.708 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1828,1,109.45350000000001,0.043470000000000002,95.18,99.938000000000002,104.696,109.45399999999999,114.211,118.96899999999999,123.727 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1829,1,109.4708,0.043479999999999998,95.191000000000003,99.950999999999993,104.711,109.471,114.23099999999999,118.99,123.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1830,1,109.488,0.043479999999999998,95.206000000000003,99.966999999999999,104.727,109.488,114.249,119.009,123.77 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1831,1,109.50530000000001,0.043479999999999998,95.221000000000004,99.983000000000004,104.744,109.505,114.267,119.02800000000001,123.789 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1832,1,109.52249999999999,0.043490000000000001,95.233000000000004,99.995999999999995,104.759,109.52200000000001,114.286,119.04900000000001,123.812 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1833,1,109.5398,0.043490000000000001,95.248000000000005,100.012,104.776,109.54,114.304,119.068,123.831 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1834,1,109.557,0.043499999999999997,95.26,100.026,104.791,109.557,114.32299999999999,119.08799999999999,123.854 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1835,1,109.57429999999999,0.043499999999999997,95.275000000000006,100.041,104.80800000000001,109.574,114.34099999999999,119.107,123.874 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1836,1,109.5915,0.043499999999999997,95.29,100.057,104.824,109.592,114.35899999999999,119.126,123.893 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1837,1,109.6088,0.04351,95.302000000000007,100.071,104.84,109.60899999999999,114.378,119.14700000000001,123.916 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1838,1,109.626,0.04351,95.316999999999993,100.086,104.85599999999999,109.626,114.396,119.166,123.935 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1839,1,109.64319999999999,0.043520000000000003,95.328000000000003,100.1,104.872,109.643,114.41500000000001,119.187,123.958 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1840,1,109.6604,0.043520000000000003,95.343000000000004,100.116,104.88800000000001,109.66,114.43300000000001,119.205,123.97799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1841,1,109.6776,0.043520000000000003,95.358000000000004,100.131,104.904,109.678,114.45099999999999,119.224,123.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1842,1,109.6948,0.043529999999999999,95.37,100.145,104.92,109.69499999999999,114.47,119.245,124.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1843,1,109.712,0.043529999999999999,95.385000000000005,100.16,104.93600000000001,109.712,114.488,119.264,124.039 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1844,1,109.72920000000001,0.043540000000000002,95.396000000000001,100.17400000000001,104.952,109.729,114.50700000000001,119.28400000000001,124.062 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1845,1,109.74639999999999,0.043540000000000002,95.411000000000001,100.19,104.968,109.746,114.52500000000001,119.303,124.081 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1846,1,109.7636,0.043540000000000002,95.426000000000002,100.205,104.98399999999999,109.764,114.54300000000001,119.322,124.101 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1847,1,109.7808,0.043549999999999998,95.438000000000002,100.21899999999999,105,109.78100000000001,114.562,119.343,124.124 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1848,1,109.798,0.043549999999999998,95.453000000000003,100.235,105.01600000000001,109.798,114.58,119.361,124.143 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1849,1,109.8151,0.043560000000000001,95.463999999999999,100.248,105.032,109.815,114.599,119.38200000000001,124.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1850,1,109.8323,0.043560000000000001,95.478999999999999,100.264,105.048,109.83199999999999,114.617,119.401,124.185 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1851,1,109.8494,0.043560000000000001,95.494,100.279,105.06399999999999,109.849,114.634,119.419,124.205 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1852,1,109.86660000000001,0.043569999999999998,95.506,100.29300000000001,105.08,109.867,114.65300000000001,119.44,124.227 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1853,1,109.8837,0.043569999999999998,95.521000000000001,100.30800000000001,105.096,109.884,114.67100000000001,119.459,124.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1854,1,109.90089999999999,0.043580000000000001,95.531999999999996,100.322,105.111,109.901,114.69,119.48,124.26900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1855,1,109.91800000000001,0.043580000000000001,95.546999999999997,100.33799999999999,105.128,109.91800000000001,114.708,119.498,124.289 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1856,1,109.93519999999999,0.043580000000000001,95.561999999999998,100.35299999999999,105.14400000000001,109.935,114.726,119.517,124.30800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/growth-reference-5-19-years/height-for-age-(5-19-years)/hfa-girls-z-who-2007-exp.xlsx,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,0,1,49.8842,0.037949999999999998,44.204999999999998,46.097999999999999,47.991,49.884,51.777000000000001,53.67,55.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1,1,50.060099999999998,0.037850000000000002,44.375999999999998,46.271000000000001,48.164999999999999,50.06,51.954999999999998,53.85,55.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,2,1,50.235900000000001,0.037749999999999999,44.546999999999997,46.442999999999998,48.338999999999999,50.235999999999997,52.131999999999998,54.029000000000003,55.924999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,3,1,50.411799999999999,0.03764,44.719000000000001,46.616999999999997,48.514000000000003,50.411999999999999,52.308999999999997,54.207000000000001,56.103999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,4,1,50.587600000000002,0.037539999999999997,44.89,46.789000000000001,48.689,50.588000000000001,52.487000000000002,54.386000000000003,56.284999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,5,1,50.763500000000001,0.037440000000000001,45.061999999999998,46.962000000000003,48.863,50.764000000000003,52.664000000000001,54.564999999999998,56.465000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,6,1,50.939300000000003,0.037339999999999998,45.232999999999997,47.134999999999998,49.036999999999999,50.939,52.841000000000001,54.743000000000002,56.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,7,1,51.115200000000002,0.037229999999999999,45.405999999999999,47.308999999999997,49.212000000000003,51.115000000000002,53.018000000000001,54.920999999999999,56.823999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,8,1,51.290999999999997,0.037130000000000003,45.578000000000003,47.481999999999999,49.387,51.290999999999997,53.195,55.1,57.003999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,9,1,51.466900000000003,0.03703,45.749000000000002,47.655000000000001,49.561,51.466999999999999,53.372999999999998,55.279000000000003,57.183999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,10,1,51.642699999999998,0.036929999999999998,45.920999999999999,47.828000000000003,49.735999999999997,51.643000000000001,53.55,55.457000000000001,57.363999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,11,1,51.818600000000004,0.036819999999999999,46.094999999999999,48.003,49.911000000000001,51.819000000000003,53.726999999999997,55.634999999999998,57.542000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,12,1,51.994399999999999,0.036720000000000003,46.267000000000003,48.176000000000002,50.085000000000001,51.994,53.904000000000003,55.813000000000002,57.722000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,13,1,52.170200000000001,0.03662,46.439,48.348999999999997,50.26,52.17,54.081000000000003,55.991,57.902000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,14,1,52.3461,0.036519999999999997,46.610999999999997,48.523000000000003,50.433999999999997,52.345999999999997,54.258000000000003,56.168999999999997,58.081000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,15,1,52.497799999999998,0.036450000000000003,46.756999999999998,48.670999999999999,50.584000000000003,52.497999999999998,54.411000000000001,56.325000000000003,58.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,16,1,52.648800000000001,0.036389999999999999,46.901000000000003,48.817,50.732999999999997,52.649000000000001,54.564999999999998,56.481000000000002,58.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,17,1,52.798999999999999,0.036330000000000001,47.043999999999997,48.963000000000001,50.881,52.798999999999999,54.716999999999999,56.634999999999998,58.554000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,18,1,52.948300000000003,0.036269999999999997,47.186999999999998,49.106999999999999,51.027999999999999,52.948,54.869,56.789000000000001,58.71 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,19,1,53.096699999999998,0.036209999999999999,47.329000000000001,49.250999999999998,51.173999999999999,53.097000000000001,55.018999999999998,56.942,58.865000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,20,1,53.244100000000003,0.036150000000000002,47.47,49.395000000000003,51.319000000000003,53.244,55.168999999999997,57.094000000000001,59.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,21,1,53.390500000000003,0.036089999999999997,47.61,49.536999999999999,51.463999999999999,53.39,55.317,57.244,59.170999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,22,1,53.536000000000001,0.03603,47.749000000000002,49.677999999999997,51.606999999999999,53.536000000000001,55.465000000000003,57.393999999999998,59.323 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,23,1,53.680500000000002,0.035970000000000002,47.887999999999998,49.819000000000003,51.75,53.68,55.610999999999997,57.542000000000002,59.472999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,24,1,53.823900000000002,0.035920000000000001,48.024000000000001,49.957000000000001,51.890999999999998,53.823999999999998,55.756999999999998,57.691000000000003,59.624000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,25,1,53.9664,0.035860000000000003,48.161000000000001,50.095999999999997,52.030999999999999,53.966000000000001,55.902000000000001,57.837000000000003,59.771999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,26,1,54.107900000000001,0.035810000000000002,48.295000000000002,50.232999999999997,52.17,54.107999999999997,56.045999999999999,57.982999999999997,59.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,27,1,54.2485,0.035749999999999997,48.43,50.37,52.308999999999997,54.247999999999998,56.188000000000002,58.127000000000002,60.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,28,1,54.388100000000001,0.035700000000000003,48.563000000000002,50.505000000000003,52.445999999999998,54.387999999999998,56.33,58.271000000000001,60.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,29,1,54.526800000000001,0.035650000000000001,48.695,50.639000000000003,52.582999999999998,54.527000000000001,56.470999999999997,58.414999999999999,60.357999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,30,1,54.664499999999997,0.035589999999999997,48.828000000000003,50.773000000000003,52.719000000000001,54.664000000000001,56.61,58.555999999999997,60.500999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,31,1,54.801200000000001,0.035540000000000002,48.957999999999998,50.905999999999999,52.853999999999999,54.801000000000002,56.749000000000002,58.695999999999998,60.643999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,32,1,54.936799999999998,0.035490000000000001,49.088000000000001,51.036999999999999,52.987000000000002,54.936999999999998,56.887,58.835999999999999,60.786000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,33,1,55.071399999999997,0.035439999999999999,49.216000000000001,51.167999999999999,53.12,55.070999999999998,57.023000000000003,58.975000000000001,60.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,34,1,55.204900000000002,0.035389999999999998,49.344000000000001,51.296999999999997,53.250999999999998,55.204999999999998,57.158999999999999,59.112000000000002,61.066000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,35,1,55.337400000000002,0.035340000000000003,49.470999999999997,51.426000000000002,53.381999999999998,55.337000000000003,57.292999999999999,59.249000000000002,61.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,36,1,55.468800000000002,0.035290000000000002,49.595999999999997,51.554000000000002,53.511000000000003,55.469000000000001,57.426000000000002,59.384,61.341000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,37,1,55.599200000000003,0.03524,49.720999999999997,51.680999999999997,53.64,55.598999999999997,57.558999999999997,59.518000000000001,61.476999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,38,1,55.728499999999997,0.035200000000000002,49.844000000000001,51.805,53.767000000000003,55.728000000000002,57.69,59.652000000000001,61.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,39,1,55.8568,0.035150000000000001,49.966999999999999,51.93,53.893000000000001,55.856999999999999,57.82,59.783999999999999,61.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,40,1,55.984099999999998,0.035099999999999999,50.088999999999999,52.054000000000002,54.018999999999998,55.984000000000002,57.948999999999998,59.914000000000001,61.878999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,41,1,56.110399999999998,0.035060000000000001,50.209000000000003,52.176000000000002,54.143000000000001,56.11,58.078000000000003,60.045000000000002,62.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,42,1,56.235700000000001,0.035009999999999999,50.329000000000001,52.298000000000002,54.267000000000003,56.235999999999997,58.204999999999998,60.173000000000002,62.142000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,43,1,56.359900000000003,0.034959999999999998,50.448999999999998,52.418999999999997,54.39,56.36,58.33,60.301000000000002,62.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,44,1,56.4833,0.03492,50.566000000000003,52.539000000000001,54.511000000000003,56.482999999999997,58.456000000000003,60.427999999999997,62.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,45,1,56.605600000000003,0.034880000000000001,50.682000000000002,52.656999999999996,54.631,56.606000000000002,58.58,60.554000000000002,62.529000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,46,1,56.726900000000001,0.03483,50.8,52.774999999999999,54.750999999999998,56.726999999999997,58.703000000000003,60.677999999999997,62.654000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,47,1,56.847200000000001,0.034790000000000001,50.914000000000001,52.892000000000003,54.869,56.847000000000001,58.825000000000003,60.802999999999997,62.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,48,1,56.9666,0.034750000000000003,51.027999999999999,53.006999999999998,54.987000000000002,56.966999999999999,58.945999999999998,60.926000000000002,62.905000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,49,1,57.085099999999997,0.034700000000000002,51.143000000000001,53.122999999999998,55.103999999999999,57.085000000000001,59.066000000000003,61.046999999999997,63.027999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,50,1,57.202599999999997,0.034660000000000003,51.255000000000003,53.237000000000002,55.22,57.203000000000003,59.185000000000002,61.167999999999999,63.151000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,51,1,57.319200000000002,0.034619999999999998,51.366,53.35,55.335000000000001,57.319000000000003,59.304000000000002,61.287999999999997,63.271999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,52,1,57.434899999999999,0.03458,51.476999999999997,53.463000000000001,55.448999999999998,57.435000000000002,59.420999999999999,61.406999999999996,63.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,53,1,57.549700000000001,0.034540000000000001,51.585999999999999,53.573999999999998,55.561999999999998,57.55,59.536999999999999,61.524999999999999,63.512999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,54,1,57.663699999999999,0.034500000000000003,51.695999999999998,53.685000000000002,55.673999999999999,57.664000000000001,59.652999999999999,61.642000000000003,63.631999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,55,1,57.776699999999998,0.034459999999999998,51.804000000000002,53.795000000000002,55.786000000000001,57.777000000000001,59.768000000000001,61.759,63.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,56,1,57.8889,0.034419999999999999,51.911000000000001,53.904000000000003,55.896000000000001,57.889000000000003,59.881,61.874000000000002,63.866999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,57,1,58.000300000000003,0.034380000000000001,52.018000000000001,54.012,56.006,58,59.994,61.988,63.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,58,1,58.110900000000001,0.034340000000000002,52.124000000000002,54.12,56.115000000000002,58.110999999999997,60.106000000000002,62.101999999999997,64.096999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,59,1,58.220700000000001,0.03431,52.228000000000002,54.225999999999999,56.222999999999999,58.220999999999997,60.218000000000004,62.216000000000001,64.212999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,60,1,58.329900000000002,0.034270000000000002,52.332999999999998,54.332000000000001,56.331000000000003,58.33,60.329000000000001,62.328000000000003,64.326999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,61,1,58.438400000000001,0.034229999999999997,52.436999999999998,54.438000000000002,56.438000000000002,58.438000000000002,60.439,62.439,64.438999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,62,1,58.546300000000002,0.034200000000000001,52.539000000000001,54.542000000000002,56.543999999999997,58.545999999999999,60.548999999999999,62.551000000000002,64.552999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,63,1,58.653599999999997,0.034160000000000003,52.643000000000001,54.646000000000001,56.65,58.654000000000003,60.656999999999996,62.661000000000001,64.664000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,64,1,58.760300000000001,0.034119999999999998,52.746000000000002,54.75,56.755000000000003,58.76,60.765000000000001,62.77,64.775000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,65,1,58.866399999999999,0.034090000000000002,52.845999999999997,54.853000000000002,56.86,58.866,60.872999999999998,62.88,64.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,66,1,58.971800000000002,0.034049999999999997,52.948,54.956000000000003,56.963999999999999,58.972000000000001,60.98,62.988,64.995999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,67,1,59.076599999999999,0.034020000000000002,53.046999999999997,55.057000000000002,57.067,59.076999999999998,61.085999999999999,63.095999999999997,65.105999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,68,1,59.180799999999998,0.033980000000000003,53.148000000000003,55.158999999999999,57.17,59.180999999999997,61.192,63.203000000000003,65.213999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,69,1,59.284300000000002,0.033950000000000001,53.246000000000002,55.259,57.271999999999998,59.283999999999999,61.296999999999997,63.31,65.322000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,70,1,59.3872,0.033919999999999999,53.344000000000001,55.357999999999997,57.372999999999998,59.387,61.402000000000001,63.415999999999997,65.430000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,71,1,59.489400000000003,0.03388,53.442999999999998,55.457999999999998,57.473999999999997,59.488999999999997,61.505000000000003,63.52,65.536000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,72,1,59.591000000000001,0.033849999999999998,53.54,55.557000000000002,57.573999999999998,59.591000000000001,61.607999999999997,63.625,65.641999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,73,1,59.692,0.033820000000000003,53.636000000000003,55.654000000000003,57.673000000000002,59.692,61.710999999999999,63.73,65.748000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,74,1,59.792299999999997,0.033790000000000001,53.731000000000002,55.752000000000002,57.771999999999998,59.792000000000002,61.813000000000002,63.832999999999998,65.852999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,75,1,59.892000000000003,0.033750000000000002,53.828000000000003,55.848999999999997,57.871000000000002,59.892000000000003,61.912999999999997,63.935000000000002,65.956000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,76,1,59.991,0.03372,53.921999999999997,55.945,57.968000000000004,59.991,62.014000000000003,64.037000000000006,66.06 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,77,1,60.089399999999998,0.033689999999999998,54.015999999999998,56.040999999999997,58.064999999999998,60.088999999999999,62.113999999999997,64.138000000000005,66.162999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,78,1,60.187199999999997,0.033660000000000002,54.109000000000002,56.134999999999998,58.161000000000001,60.186999999999998,62.213000000000001,64.239000000000004,66.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,79,1,60.284300000000002,0.03363,54.201999999999998,56.23,58.256999999999998,60.283999999999999,62.311999999999998,64.338999999999999,66.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,80,1,60.380800000000001,0.033599999999999998,54.293999999999997,56.323,58.351999999999997,60.381,62.41,64.438000000000002,66.466999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,81,1,60.476700000000001,0.033570000000000003,54.386000000000003,56.415999999999997,58.445999999999998,60.476999999999997,62.506999999999998,64.537000000000006,66.566999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,82,1,60.571899999999999,0.03354,54.476999999999997,56.509,58.54,60.572000000000003,62.603000000000002,64.635000000000005,66.667000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,83,1,60.666499999999999,0.033509999999999998,54.567999999999998,56.600999999999999,58.634,60.665999999999997,62.698999999999998,64.731999999999999,66.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,84,1,60.7605,0.033480000000000003,54.658000000000001,56.692,58.725999999999999,60.76,62.795000000000002,64.828999999999994,66.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,85,1,60.853900000000003,0.033450000000000001,54.747,56.783000000000001,58.817999999999998,60.853999999999999,62.889000000000003,64.924999999999997,66.960999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,86,1,60.946599999999997,0.033419999999999998,54.835999999999999,56.872999999999998,58.91,60.947000000000003,62.982999999999997,65.02,67.057000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,87,1,61.038800000000002,0.033399999999999999,54.923000000000002,56.960999999999999,59,61.039000000000001,63.076999999999998,65.116,67.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,88,1,61.130299999999998,0.033369999999999997,55.011000000000003,57.05,59.09,61.13,63.17,65.209999999999994,67.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,89,1,61.221200000000003,0.033340000000000002,55.097999999999999,57.139000000000003,59.18,61.220999999999997,63.262,65.302999999999997,67.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,90,1,61.311500000000002,0.033309999999999999,55.185000000000002,57.226999999999997,59.268999999999998,61.311999999999998,63.353999999999999,65.396000000000001,67.438000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,91,1,61.401299999999999,0.03329,55.268999999999998,57.313000000000002,59.356999999999999,61.401000000000003,63.445,65.489000000000004,67.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,92,1,61.490400000000001,0.033259999999999998,55.354999999999997,57.4,59.445,61.49,63.536000000000001,65.581000000000003,67.626000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,93,1,61.579000000000001,0.033230000000000003,55.44,57.485999999999997,59.533000000000001,61.579000000000001,63.625,65.671999999999997,67.718000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,94,1,61.667000000000002,0.033210000000000003,55.523000000000003,57.570999999999998,59.619,61.667000000000002,63.715000000000003,65.763000000000005,67.811000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,95,1,61.754300000000001,0.033180000000000001,55.606999999999999,57.655999999999999,59.704999999999998,61.753999999999998,63.802999999999997,65.852000000000004,67.900999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,96,1,61.841099999999997,0.033160000000000002,55.689,57.74,59.79,61.841000000000001,63.892000000000003,65.941999999999993,67.992999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,97,1,61.927399999999999,0.03313,55.771999999999998,57.823999999999998,59.875999999999998,61.927,63.978999999999999,66.031000000000006,68.081999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,98,1,62.012999999999998,0.033110000000000001,55.853000000000002,57.905999999999999,59.96,62.012999999999998,64.066000000000003,66.12,68.173000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,99,1,62.098100000000002,0.033079999999999998,55.935000000000002,57.99,60.043999999999997,62.097999999999999,64.152000000000001,66.206999999999994,68.260999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,100,1,62.182600000000001,0.033059999999999999,56.015000000000001,58.070999999999998,60.127000000000002,62.183,64.238,66.293999999999997,68.349999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,101,1,62.266500000000001,0.033029999999999997,56.097000000000001,58.152999999999999,60.21,62.265999999999998,64.322999999999993,66.38,68.436000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,102,1,62.349899999999998,0.033009999999999998,56.174999999999997,58.234000000000002,60.292000000000002,62.35,64.408000000000001,66.465999999999994,68.524000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,103,1,62.432699999999997,0.032980000000000002,56.256,58.314999999999998,60.374000000000002,62.433,64.492000000000004,66.551000000000002,68.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,104,1,62.514899999999997,0.032960000000000003,56.332999999999998,58.393999999999998,60.454000000000001,62.515000000000001,64.575000000000003,66.635999999999996,68.695999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,105,1,62.596600000000002,0.032939999999999997,56.411000000000001,58.472999999999999,60.534999999999997,62.597000000000001,64.659000000000006,66.72,68.781999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,106,1,62.677799999999998,0.032910000000000002,56.49,58.552,60.615000000000002,62.677999999999997,64.741,66.802999999999997,68.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,107,1,62.758400000000002,0.032890000000000003,56.566000000000003,58.63,60.694000000000003,62.758000000000003,64.822999999999993,66.887,68.950999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,108,1,62.8384,0.032870000000000003,56.642000000000003,58.707000000000001,60.773000000000003,62.838000000000001,64.903999999999996,66.968999999999994,69.034999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,109,1,62.917999999999999,0.032840000000000001,56.719000000000001,58.786000000000001,60.851999999999997,62.917999999999999,64.983999999999995,67.05,69.117000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,110,1,62.996899999999997,0.032820000000000002,56.793999999999997,58.862000000000002,60.929000000000002,62.997,65.063999999999993,67.132000000000005,69.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,111,1,63.075400000000002,0.032800000000000003,56.869,58.938000000000002,61.006999999999998,63.075000000000003,65.144000000000005,67.212999999999994,69.281999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,112,1,63.153300000000002,0.032779999999999997,56.942999999999998,59.012999999999998,61.082999999999998,63.152999999999999,65.222999999999999,67.293999999999997,69.364000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,113,1,63.230699999999999,0.032759999999999997,57.015999999999998,59.088000000000001,61.158999999999999,63.231000000000002,65.302000000000007,67.373999999999995,69.444999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,114,1,63.307600000000001,0.032730000000000002,57.091000000000001,59.162999999999997,61.235999999999997,63.308,65.38,67.451999999999998,69.524000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,115,1,63.383899999999997,0.032710000000000003,57.164000000000001,59.237000000000002,61.311,63.384,65.456999999999994,67.53,69.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,116,1,63.459800000000001,0.032689999999999997,57.235999999999997,59.311,61.384999999999998,63.46,65.534000000000006,67.608999999999995,69.683000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,117,1,63.5351,0.032669999999999998,57.308,59.384,61.459000000000003,63.534999999999997,65.611000000000004,67.686000000000007,69.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,118,1,63.609900000000003,0.032649999999999998,57.378999999999998,59.456000000000003,61.533000000000001,63.61,65.686999999999998,67.763999999999996,69.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,119,1,63.684199999999997,0.032629999999999999,57.45,59.527999999999999,61.606000000000002,63.683999999999997,65.762,67.84,69.918000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,120,1,63.758000000000003,0.03261,57.521000000000001,59.6,61.679000000000002,63.758000000000003,65.837000000000003,67.915999999999997,69.995000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,121,1,63.831299999999999,0.032590000000000001,57.591000000000001,59.670999999999999,61.750999999999998,63.831000000000003,65.912000000000006,67.992000000000004,70.072000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,122,1,63.9041,0.032570000000000002,57.66,59.741,61.823,63.904000000000003,65.984999999999999,68.066999999999993,70.147999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,123,1,63.976500000000001,0.032550000000000003,57.728999999999999,59.811999999999998,61.893999999999998,63.975999999999999,66.058999999999997,68.141000000000005,70.224000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,124,1,64.048299999999998,0.032530000000000003,57.798000000000002,59.881,61.965000000000003,64.048000000000002,66.132000000000005,68.215000000000003,70.299000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,125,1,64.119699999999995,0.032509999999999997,57.866,59.951000000000001,62.034999999999997,64.12,66.203999999999994,68.289000000000001,70.373000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,126,1,64.190600000000003,0.032489999999999998,57.933999999999997,60.018999999999998,62.104999999999997,64.191000000000003,66.275999999999996,68.361999999999995,70.447000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,127,1,64.260999999999996,0.032469999999999999,58.000999999999998,60.088000000000001,62.173999999999999,64.260999999999996,66.347999999999999,68.433999999999997,70.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,128,1,64.331000000000003,0.03245,58.067999999999998,60.155999999999999,62.243000000000002,64.331000000000003,66.418999999999997,68.506,70.593999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,129,1,64.400599999999997,0.03243,58.134999999999998,60.223999999999997,62.311999999999998,64.400999999999996,66.489000000000004,68.578000000000003,70.665999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,130,1,64.469700000000003,0.032410000000000001,58.201000000000001,60.290999999999997,62.38,64.47,66.558999999999997,68.649000000000001,70.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,131,1,64.538300000000007,0.032390000000000002,58.267000000000003,60.357999999999997,62.448,64.537999999999997,66.629000000000005,68.718999999999994,70.808999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,132,1,64.6066,0.032379999999999999,58.331000000000003,60.423000000000002,62.515000000000001,64.606999999999999,66.698999999999998,68.790999999999997,70.882000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,133,1,64.674400000000006,0.03236,58.396000000000001,60.488999999999997,62.582000000000001,64.674000000000007,66.766999999999996,68.86,70.953000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,134,1,64.741799999999998,0.032340000000000001,58.460999999999999,60.554000000000002,62.648000000000003,64.742000000000004,66.835999999999999,68.929000000000002,71.022999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,135,1,64.808800000000005,0.032320000000000002,58.524999999999999,60.62,62.713999999999999,64.808999999999997,66.903000000000006,68.998000000000005,71.093000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,136,1,64.875500000000002,0.032300000000000002,58.588999999999999,60.685000000000002,62.78,64.876000000000005,66.971000000000004,69.066000000000003,71.162000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,137,1,64.941699999999997,0.032289999999999999,58.651000000000003,60.747999999999998,62.844999999999999,64.941999999999993,67.039000000000001,69.135999999999996,71.233000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,138,1,65.007499999999993,0.03227,58.713999999999999,60.811999999999998,62.91,65.007000000000005,67.105000000000004,69.203000000000003,71.301000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,139,1,65.072999999999993,0.032250000000000001,58.777000000000001,60.875999999999998,62.973999999999997,65.072999999999993,67.171999999999997,69.27,71.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,140,1,65.138000000000005,0.032230000000000002,58.84,60.939,63.039000000000001,65.138000000000005,67.236999999999995,69.337000000000003,71.436000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,141,1,65.202699999999993,0.032219999999999999,58.9,61.000999999999998,63.101999999999997,65.203000000000003,67.304000000000002,69.403999999999996,71.504999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,142,1,65.267099999999999,0.032199999999999999,58.962000000000003,61.064,63.164999999999999,65.266999999999996,67.369,69.47,71.572000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,143,1,65.331000000000003,0.03218,59.024000000000001,61.125999999999998,63.228999999999999,65.331000000000003,67.433000000000007,69.536000000000001,71.638000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,144,1,65.394599999999997,0.032169999999999997,59.082999999999998,61.186999999999998,63.290999999999997,65.394999999999996,67.498000000000005,69.602000000000004,71.706000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,145,1,65.457899999999995,0.032149999999999998,59.143999999999998,61.249000000000002,63.353000000000002,65.457999999999998,67.561999999999998,69.667000000000002,71.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,146,1,65.520799999999994,0.032140000000000002,59.203000000000003,61.308999999999997,63.414999999999999,65.521000000000001,67.626999999999995,69.731999999999999,71.837999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,147,1,65.583399999999997,0.032120000000000003,59.264000000000003,61.37,63.476999999999997,65.582999999999998,67.69,69.796000000000006,71.903000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,148,1,65.645600000000002,0.032099999999999997,59.323999999999998,61.430999999999997,63.537999999999997,65.646000000000001,67.753,69.86,71.966999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,149,1,65.707499999999996,0.03209,59.381999999999998,61.49,63.598999999999997,65.707999999999998,67.816000000000003,69.924999999999997,72.033000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,150,1,65.769000000000005,0.032070000000000001,59.441000000000003,61.551000000000002,63.66,65.769000000000005,67.878,69.986999999999995,72.096999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,151,1,65.830299999999994,0.032059999999999998,59.499000000000002,61.609000000000002,63.72,65.83,67.941000000000003,70.051000000000002,72.162000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,152,1,65.891199999999998,0.032039999999999999,59.558,61.668999999999997,63.78,65.891000000000005,68.001999999999995,70.114000000000004,72.224999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,153,1,65.951800000000006,0.032030000000000003,59.613999999999997,61.726999999999997,63.838999999999999,65.951999999999998,68.063999999999993,70.177000000000007,72.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,154,1,66.012100000000004,0.032009999999999997,59.673000000000002,61.786000000000001,63.899000000000001,66.012,68.125,70.238,72.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,155,1,66.072100000000006,0.032000000000000001,59.728999999999999,61.843000000000004,63.957999999999998,66.072000000000003,68.186000000000007,70.301000000000002,72.415000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,156,1,66.131699999999995,0.031980000000000001,59.786999999999999,61.902000000000001,64.016999999999996,66.132000000000005,68.247,70.361000000000004,72.475999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,157,1,66.191100000000006,0.031969999999999998,59.843000000000004,61.959000000000003,64.075000000000003,66.191000000000003,68.307000000000002,70.423000000000002,72.539000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,158,1,66.250200000000007,0.031960000000000002,59.898000000000003,62.015000000000001,64.132999999999996,66.25,68.367999999999995,70.484999999999999,72.602000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,159,1,66.308899999999994,0.031940000000000003,59.954999999999998,62.073,64.191000000000003,66.308999999999997,68.427000000000007,70.545000000000002,72.662999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,160,1,66.367400000000004,0.03193,60.01,62.128999999999998,64.248000000000005,66.367000000000004,68.486999999999995,70.605999999999995,72.724999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,161,1,66.425600000000003,0.031910000000000001,60.067,62.186,64.305999999999997,66.426000000000002,68.545000000000002,70.665000000000006,72.784999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,162,1,66.483500000000006,0.031899999999999998,60.121000000000002,62.241999999999997,64.363,66.483999999999995,68.603999999999999,70.724999999999994,72.846000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,163,1,66.541200000000003,0.031890000000000002,60.174999999999997,62.296999999999997,64.418999999999997,66.540999999999997,68.662999999999997,70.784999999999997,72.906999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,164,1,66.598500000000001,0.031870000000000002,60.231000000000002,62.353999999999999,64.475999999999999,66.597999999999999,68.721000000000004,70.843000000000004,72.965999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,165,1,66.655600000000007,0.031859999999999999,60.284999999999997,62.408000000000001,64.531999999999996,66.656000000000006,68.778999999999996,70.903000000000006,73.027000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,166,1,66.712500000000006,0.031850000000000003,60.338000000000001,62.463000000000001,64.587999999999994,66.712000000000003,68.837000000000003,70.962000000000003,73.087000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,167,1,66.769099999999995,0.031829999999999997,60.393000000000001,62.518999999999998,64.644000000000005,66.769000000000005,68.894000000000005,71.02,73.144999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,168,1,66.825400000000002,0.031820000000000001,60.445999999999998,62.573,64.698999999999998,66.825000000000003,68.951999999999998,71.078000000000003,73.204999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,169,1,66.881500000000003,0.031809999999999998,60.499000000000002,62.625999999999998,64.754000000000005,66.882000000000005,69.009,71.137,73.263999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,170,1,66.937299999999993,0.031800000000000002,60.551000000000002,62.68,64.808999999999997,66.936999999999998,69.066000000000003,71.194999999999993,73.322999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,171,1,66.992999999999995,0.031789999999999999,60.603999999999999,62.734000000000002,64.863,66.992999999999995,69.123000000000005,71.251999999999995,73.382000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,172,1,67.048299999999998,0.03177,60.658000000000001,62.787999999999997,64.918000000000006,67.048000000000002,69.177999999999997,71.308999999999997,73.438999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,173,1,67.103499999999997,0.031759999999999997,60.71,62.841000000000001,64.971999999999994,67.103999999999999,69.234999999999999,71.366,73.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,174,1,67.1584,0.03175,60.762,62.893999999999998,65.025999999999996,67.158000000000001,69.290999999999997,71.423000000000002,73.555000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,175,1,67.213200000000001,0.031739999999999997,60.813000000000002,62.947000000000003,65.08,67.212999999999994,69.346999999999994,71.48,73.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,176,1,67.267700000000005,0.031730000000000001,60.863999999999997,62.999000000000002,65.132999999999996,67.268000000000001,69.402000000000001,71.537000000000006,73.671000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,177,1,67.321899999999999,0.031710000000000002,60.917999999999999,63.052,65.186999999999998,67.322000000000003,69.456999999999994,71.590999999999994,73.725999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,178,1,67.376000000000005,0.031699999999999999,60.969000000000001,63.103999999999999,65.239999999999995,67.376000000000005,69.512,71.647999999999996,73.783000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,179,1,67.429900000000004,0.031690000000000003,61.018999999999998,63.155999999999999,65.293000000000006,67.430000000000007,69.566999999999993,71.703999999999994,73.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,180,1,67.483599999999996,0.03168,61.07,63.207999999999998,65.346000000000004,67.483999999999995,69.620999999999995,71.759,73.897000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,181,1,67.537099999999995,0.031669999999999997,61.12,63.259,65.397999999999996,67.537000000000006,69.676000000000002,71.814999999999998,73.953999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,182,1,67.590400000000002,0.031660000000000001,61.170999999999999,63.311,65.45,67.59,69.73,71.87,74.010000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,183,1,67.643500000000003,0.031649999999999998,61.220999999999997,63.362000000000002,65.503,67.644000000000005,69.784000000000006,71.924999999999997,74.066000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,184,1,67.696399999999997,0.031640000000000001,61.271000000000001,63.412999999999997,65.554000000000002,67.695999999999998,69.837999999999994,71.98,74.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,185,1,67.749099999999999,0.031629999999999998,61.32,63.463000000000001,65.605999999999995,67.748999999999995,69.891999999999996,72.034999999999997,74.177999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,186,1,67.801699999999997,0.031620000000000002,61.37,63.514000000000003,65.658000000000001,67.802000000000007,69.945999999999998,72.088999999999999,74.233000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,187,1,67.854100000000003,0.031609999999999999,61.418999999999997,63.564,65.709000000000003,67.853999999999999,69.998999999999995,72.144000000000005,74.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,188,1,67.906199999999998,0.031600000000000003,61.469000000000001,63.615000000000002,65.760000000000005,67.906000000000006,70.052000000000007,72.197999999999993,74.343999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,189,1,67.958299999999994,0.03159,61.518000000000001,63.664999999999999,65.811000000000007,67.957999999999998,70.105000000000004,72.251999999999995,74.399000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,190,1,68.010099999999994,0.031579999999999997,61.567,63.715000000000003,65.861999999999995,68.010000000000005,70.158000000000001,72.305999999999997,74.453000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,191,1,68.061800000000005,0.031570000000000001,61.616,63.764000000000003,65.912999999999997,68.061999999999998,70.210999999999999,72.358999999999995,74.507999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,192,1,68.113299999999995,0.031559999999999998,61.664000000000001,63.814,65.963999999999999,68.113,70.263000000000005,72.412999999999997,74.561999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,193,1,68.164699999999996,0.031550000000000002,61.713000000000001,63.863999999999997,66.013999999999996,68.165000000000006,70.314999999999998,72.465999999999994,74.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,194,1,68.215800000000002,0.031539999999999999,61.761000000000003,63.912999999999997,66.063999999999993,68.215999999999994,70.367000000000004,72.519000000000005,74.67 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,195,1,68.266900000000007,0.031530000000000002,61.81,63.962000000000003,66.114000000000004,68.266999999999996,70.418999999999997,72.572000000000003,74.724000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,196,1,68.317700000000002,0.031519999999999999,61.857999999999997,64.010999999999996,66.164000000000001,68.317999999999998,70.471000000000004,72.623999999999995,74.778000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,197,1,68.368499999999997,0.031519999999999999,61.904000000000003,64.058999999999997,66.213999999999999,68.367999999999995,70.522999999999996,72.677999999999997,74.832999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,198,1,68.418999999999997,0.031510000000000003,61.951000000000001,64.106999999999999,66.263000000000005,68.418999999999997,70.575000000000003,72.730999999999995,74.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,199,1,68.469499999999996,0.0315,61.999000000000002,64.156000000000006,66.313000000000002,68.47,70.626000000000005,72.783000000000001,74.94 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,200,1,68.519800000000004,0.031489999999999997,62.046999999999997,64.203999999999994,66.361999999999995,68.52,70.677000000000007,72.834999999999994,74.992999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,201,1,68.569900000000004,0.031480000000000001,62.094000000000001,64.253,66.411000000000001,68.569999999999993,70.727999999999994,72.887,75.046000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,202,1,68.619900000000001,0.031469999999999998,62.140999999999998,64.301000000000002,66.459999999999994,68.62,70.778999999999996,72.938999999999993,75.097999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,203,1,68.669799999999995,0.031469999999999998,62.186999999999998,64.347999999999999,66.509,68.67,70.831000000000003,72.992000000000004,75.153000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,204,1,68.719499999999996,0.031460000000000002,62.234000000000002,64.396000000000001,66.558000000000007,68.72,70.881,73.043000000000006,75.204999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,205,1,68.769099999999995,0.031449999999999999,62.280999999999999,64.444000000000003,66.605999999999995,68.769000000000005,70.932000000000002,73.094999999999999,75.257000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,206,1,68.818600000000004,0.031440000000000003,62.328000000000003,64.491,66.655000000000001,68.819000000000003,70.981999999999999,73.146000000000001,75.31 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,207,1,68.867900000000006,0.031440000000000003,62.372,64.537000000000006,66.703000000000003,68.867999999999995,71.033000000000001,73.197999999999993,75.364000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,208,1,68.917100000000005,0.03143,62.418999999999997,64.584999999999994,66.751000000000005,68.917000000000002,71.082999999999998,73.248999999999995,75.415000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,209,1,68.966200000000001,0.031419999999999997,62.465000000000003,64.632000000000005,66.799000000000007,68.965999999999994,71.132999999999996,73.3,75.466999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,210,1,69.015199999999993,0.03141,62.512,64.680000000000007,66.846999999999994,69.015000000000001,71.183000000000007,73.350999999999999,75.519000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,211,1,69.064099999999996,0.03141,62.555999999999997,64.724999999999994,66.894999999999996,69.063999999999993,71.233000000000004,73.403000000000006,75.572000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,212,1,69.112799999999993,0.031399999999999997,62.601999999999997,64.772999999999996,66.942999999999998,69.113,71.283000000000001,73.453000000000003,75.623000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,213,1,69.161500000000004,0.031390000000000001,62.649000000000001,64.819999999999993,66.991,69.162000000000006,71.331999999999994,73.503,75.674000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,214,1,69.209999999999994,0.031390000000000001,62.692,64.864999999999995,67.037000000000006,69.209999999999994,71.382999999999996,73.555000000000007,75.727999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,215,1,69.258399999999995,0.031379999999999998,62.738,64.912000000000006,67.084999999999994,69.257999999999996,71.432000000000002,73.605000000000004,75.778000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,216,1,69.306700000000006,0.031370000000000002,62.783999999999999,64.957999999999998,67.132999999999996,69.307000000000002,71.480999999999995,73.655000000000001,75.828999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,217,1,69.354900000000001,0.031370000000000002,62.828000000000003,65.004000000000005,67.179000000000002,69.355000000000004,71.531000000000006,73.706000000000003,75.882000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,218,1,69.403099999999995,0.031359999999999999,62.874000000000002,65.05,67.227000000000004,69.403000000000006,71.58,73.756,75.933000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,219,1,69.451099999999997,0.031359999999999999,62.917000000000002,65.094999999999999,67.272999999999996,69.450999999999993,71.629000000000005,73.807000000000002,75.984999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,220,1,69.498999999999995,0.031350000000000003,62.963000000000001,65.141000000000005,67.319999999999993,69.498999999999995,71.677999999999997,73.856999999999999,76.034999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,221,1,69.546800000000005,0.03134,63.008000000000003,65.188000000000002,67.367000000000004,69.546999999999997,71.725999999999999,73.906000000000006,76.085999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,222,1,69.594499999999996,0.03134,63.051000000000002,65.231999999999999,67.412999999999997,69.593999999999994,71.775999999999996,73.956999999999994,76.138000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,223,1,69.642099999999999,0.031329999999999997,63.095999999999997,65.278000000000006,67.459999999999994,69.641999999999996,71.823999999999998,74.006,76.188000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,224,1,69.689599999999999,0.031329999999999997,63.139000000000003,65.322999999999993,67.506,69.69,71.873000000000005,74.055999999999997,76.239999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,225,1,69.736999999999995,0.031320000000000001,63.185000000000002,65.369,67.552999999999997,69.736999999999995,71.921000000000006,74.105000000000004,76.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,226,1,69.784400000000005,0.031320000000000001,63.226999999999997,65.412999999999997,67.599000000000004,69.784000000000006,71.97,74.156000000000006,76.340999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,227,1,69.831599999999995,0.031309999999999998,63.271999999999998,65.459000000000003,67.644999999999996,69.831999999999994,72.018000000000001,74.203999999999994,76.391000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,228,1,69.878699999999995,0.031309999999999998,63.314999999999998,65.503,67.691000000000003,69.879000000000005,72.066999999999993,74.254999999999995,76.441999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,229,1,69.925799999999995,0.031300000000000001,63.36,65.548000000000002,67.736999999999995,69.926000000000002,72.114000000000004,74.302999999999997,76.492000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,230,1,69.972800000000007,0.031300000000000001,63.402000000000001,65.593000000000004,67.783000000000001,69.972999999999999,72.162999999999997,74.352999999999994,76.543000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,231,1,70.0197,0.031289999999999998,63.447000000000003,65.638000000000005,67.828999999999994,70.02,72.210999999999999,74.402000000000001,76.591999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,232,1,70.066500000000005,0.031289999999999998,63.488999999999997,65.682000000000002,67.873999999999995,70.066000000000003,72.259,74.450999999999993,76.644000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,233,1,70.113200000000006,0.031280000000000002,63.533999999999999,65.727000000000004,67.92,70.113,72.305999999999997,74.498999999999995,76.692999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,234,1,70.159899999999993,0.031280000000000002,63.576000000000001,65.771000000000001,67.965000000000003,70.16,72.355000000000004,74.549000000000007,76.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,235,1,70.206400000000002,0.031269999999999999,63.62,65.816000000000003,68.010999999999996,70.206000000000003,72.402000000000001,74.596999999999994,76.792000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,236,1,70.252899999999997,0.031269999999999999,63.661999999999999,65.858999999999995,68.055999999999997,70.253,72.45,74.647000000000006,76.843000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,237,1,70.299400000000006,0.031260000000000003,63.707000000000001,65.903999999999996,68.102000000000004,70.299000000000007,72.497,74.694999999999993,76.891999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,238,1,70.345699999999994,0.031260000000000003,63.749000000000002,65.947999999999993,68.147000000000006,70.346000000000004,72.545000000000002,74.744,76.942999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,239,1,70.391999999999996,0.031260000000000003,63.790999999999997,65.991,68.191999999999993,70.391999999999996,72.591999999999999,74.793000000000006,76.992999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,240,1,70.438199999999995,0.03125,63.835000000000001,66.036000000000001,68.236999999999995,70.438000000000002,72.638999999999996,74.840999999999994,77.042000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,241,1,70.484300000000005,0.03125,63.875999999999998,66.078999999999994,68.281999999999996,70.483999999999995,72.686999999999998,74.89,77.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,242,1,70.5304,0.03125,63.917999999999999,66.122,68.325999999999993,70.53,72.733999999999995,74.938999999999993,77.143000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,243,1,70.576400000000007,0.03124,63.962000000000003,66.167000000000002,68.372,70.575999999999993,72.781000000000006,74.986000000000004,77.191000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,244,1,70.622399999999999,0.03124,64.004000000000005,66.209999999999994,68.415999999999997,70.622,72.828999999999994,75.034999999999997,77.241 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,245,1,70.668300000000002,0.031230000000000001,64.046999999999997,66.254000000000005,68.460999999999999,70.668000000000006,72.875,75.081999999999994,77.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,246,1,70.714100000000002,0.031230000000000001,64.088999999999999,66.296999999999997,68.506,70.713999999999999,72.923000000000002,75.131,77.338999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,247,1,70.759799999999998,0.031230000000000001,64.13,66.34,68.55,70.760000000000005,72.97,75.179000000000002,77.388999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,248,1,70.805499999999995,0.031220000000000001,64.174000000000007,66.384,68.594999999999999,70.805999999999997,73.016000000000005,75.227000000000004,77.436999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,249,1,70.851100000000002,0.031220000000000001,64.215000000000003,66.427000000000007,68.638999999999996,70.850999999999999,73.063000000000002,75.275000000000006,77.486999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,250,1,70.896699999999996,0.031220000000000001,64.257000000000005,66.47,68.683000000000007,70.897000000000006,73.11,75.322999999999993,77.537000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,251,1,70.9422,0.031220000000000001,64.298000000000002,66.513000000000005,68.727000000000004,70.941999999999993,73.156999999999996,75.372,77.587000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,252,1,70.9876,0.031210000000000002,64.340999999999994,66.557000000000002,68.772000000000006,70.988,73.203000000000003,75.418999999999997,77.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,253,1,71.033000000000001,0.031210000000000002,64.382000000000005,66.599000000000004,68.816000000000003,71.033000000000001,73.25,75.466999999999999,77.683999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,254,1,71.078299999999999,0.031210000000000002,64.423000000000002,66.641999999999996,68.86,71.078000000000003,73.296999999999997,75.515000000000001,77.733000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,255,1,71.123500000000007,0.031210000000000002,64.463999999999999,66.683999999999997,68.903999999999996,71.123999999999995,73.343000000000004,75.563000000000002,77.783000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,256,1,71.168700000000001,0.031199999999999999,64.507000000000005,66.727999999999994,68.947999999999993,71.168999999999997,73.388999999999996,75.61,77.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,257,1,71.213800000000006,0.031199999999999999,64.548000000000002,66.77,68.992000000000004,71.213999999999999,73.436000000000007,75.658000000000001,77.879000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,258,1,71.258899999999997,0.031199999999999999,64.588999999999999,66.811999999999998,69.036000000000001,71.259,73.481999999999999,75.704999999999998,77.929000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,259,1,71.303899999999999,0.031199999999999999,64.63,66.855000000000004,69.078999999999994,71.304000000000002,73.528999999999996,75.753,77.977999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,260,1,71.348799999999997,0.031189999999999999,64.673000000000002,66.897999999999996,69.123000000000005,71.349000000000004,73.573999999999998,75.8,78.025000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,261,1,71.393699999999995,0.031189999999999999,64.712999999999994,66.94,69.167000000000002,71.394000000000005,73.62,75.846999999999994,78.073999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,262,1,71.438500000000005,0.031189999999999999,64.754000000000005,66.981999999999999,69.209999999999994,71.438000000000002,73.667000000000002,75.894999999999996,78.123000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,263,1,71.483199999999997,0.031189999999999999,64.795000000000002,67.024000000000001,69.254000000000005,71.483000000000004,73.712999999999994,75.941999999999993,78.171999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,264,1,71.527900000000002,0.031189999999999999,64.834999999999994,67.066000000000003,69.296999999999997,71.528000000000006,73.759,75.989999999999995,78.221000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,265,1,71.572500000000005,0.031179999999999999,64.878,67.108999999999995,69.340999999999994,71.572000000000003,73.804000000000002,76.036000000000001,78.266999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,266,1,71.617099999999994,0.031179999999999999,64.918000000000006,67.150999999999996,69.384,71.617000000000004,73.849999999999994,76.082999999999998,78.316000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,267,1,71.661600000000007,0.031179999999999999,64.957999999999998,67.192999999999998,69.427000000000007,71.662000000000006,73.896000000000001,76.13,78.364999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,268,1,71.706000000000003,0.031179999999999999,64.998999999999995,67.233999999999995,69.47,71.706000000000003,73.941999999999993,76.177999999999997,78.412999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,269,1,71.750399999999999,0.031179999999999999,65.039000000000001,67.275999999999996,69.513000000000005,71.75,73.988,76.224999999999994,78.462000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,270,1,71.794700000000006,0.031179999999999999,65.078999999999994,67.317999999999998,69.555999999999997,71.795000000000002,74.033000000000001,76.272000000000006,78.510000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,271,1,71.838999999999999,0.031179999999999999,65.119,67.358999999999995,69.599000000000004,71.838999999999999,74.078999999999994,76.319000000000003,78.558999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,272,1,71.883200000000002,0.031179999999999999,65.159000000000006,67.400999999999996,69.641999999999996,71.882999999999996,74.125,76.366,78.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,273,1,71.927300000000002,0.03117,65.200999999999993,67.442999999999998,69.685000000000002,71.927000000000007,74.168999999999997,76.411000000000001,78.653000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,274,1,71.971400000000003,0.03117,65.241,67.484999999999999,69.727999999999994,71.971000000000004,74.215000000000003,76.457999999999998,78.700999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,275,1,72.0154,0.03117,65.281000000000006,67.525999999999996,69.771000000000001,72.015000000000001,74.260000000000005,76.504999999999995,78.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,276,1,72.059399999999997,0.03117,65.320999999999998,67.566999999999993,69.813000000000002,72.058999999999997,74.305000000000007,76.552000000000007,78.798000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,277,1,72.103300000000004,0.03117,65.361000000000004,67.608000000000004,69.855999999999995,72.102999999999994,74.350999999999999,76.597999999999999,78.846000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,278,1,72.147199999999998,0.03117,65.400999999999996,67.650000000000006,69.897999999999996,72.147000000000006,74.396000000000001,76.644999999999996,78.894000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,279,1,72.190899999999999,0.03117,65.44,67.691000000000003,69.941000000000003,72.191000000000003,74.441000000000003,76.691000000000003,78.941000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,280,1,72.234700000000004,0.03117,65.48,67.731999999999999,69.983000000000004,72.234999999999999,74.486000000000004,76.738,78.989000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,281,1,72.278300000000002,0.03117,65.52,67.772000000000006,70.025000000000006,72.278000000000006,74.531000000000006,76.784000000000006,79.037000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,282,1,72.321899999999999,0.03117,65.558999999999997,67.813000000000002,70.067999999999998,72.322000000000003,74.575999999999993,76.83,79.084999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,283,1,72.365499999999997,0.03117,65.599000000000004,67.853999999999999,70.11,72.366,74.620999999999995,76.876999999999995,79.132000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,284,1,72.408900000000003,0.03117,65.638000000000005,67.894999999999996,70.152000000000001,72.409000000000006,74.665999999999997,76.923000000000002,79.180000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,285,1,72.452299999999994,0.03117,65.677000000000007,67.936000000000007,70.194000000000003,72.451999999999998,74.710999999999999,76.968999999999994,79.227000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,286,1,72.495699999999999,0.03117,65.716999999999999,67.975999999999999,70.236000000000004,72.495999999999995,74.754999999999995,77.015000000000001,79.275000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,287,1,72.539000000000001,0.03117,65.756,68.016999999999996,70.278000000000006,72.539000000000001,74.8,77.061000000000007,79.322000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,288,1,72.5822,0.03117,65.795000000000002,68.057000000000002,70.319999999999993,72.581999999999994,74.844999999999999,77.106999999999999,79.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,289,1,72.625299999999996,0.03117,65.834000000000003,68.097999999999999,70.361999999999995,72.625,74.888999999999996,77.153000000000006,79.415999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,290,1,72.668400000000005,0.03117,65.873000000000005,68.138000000000005,70.403000000000006,72.668000000000006,74.933000000000007,77.198999999999998,79.463999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,291,1,72.711500000000001,0.03117,65.912000000000006,68.179000000000002,70.444999999999993,72.712000000000003,74.977999999999994,77.244,79.510999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,292,1,72.754400000000004,0.03117,65.950999999999993,68.218999999999994,70.486999999999995,72.754000000000005,75.022000000000006,77.290000000000006,79.558000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,293,1,72.797399999999996,0.03117,65.989999999999995,68.259,70.528000000000006,72.796999999999997,75.066000000000003,77.335999999999999,79.605000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,294,1,72.840199999999996,0.03117,66.028999999999996,68.299000000000007,70.569999999999993,72.84,75.111000000000004,77.381,79.650999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,295,1,72.882999999999996,0.03117,66.067999999999998,68.338999999999999,70.611000000000004,72.882999999999996,75.155000000000001,77.427000000000007,79.697999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,296,1,72.925700000000006,0.03117,66.105999999999995,68.38,70.653000000000006,72.926000000000002,75.198999999999998,77.471999999999994,79.745000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,297,1,72.968400000000003,0.03117,66.144999999999996,68.42,70.694000000000003,72.968000000000004,75.242999999999995,77.516999999999996,79.792000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,298,1,73.010999999999996,0.03117,66.183999999999997,68.459000000000003,70.734999999999999,73.010999999999996,75.287000000000006,77.563000000000002,79.837999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,299,1,73.0535,0.031179999999999999,66.22,68.498000000000005,70.775999999999996,73.054000000000002,75.331000000000003,77.608999999999995,79.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,300,1,73.096000000000004,0.031179999999999999,66.259,68.537999999999997,70.816999999999993,73.096000000000004,75.375,77.653999999999996,79.933000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,301,1,73.138400000000004,0.031179999999999999,66.296999999999997,68.576999999999998,70.858000000000004,73.138000000000005,75.418999999999997,77.698999999999998,79.98 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,302,1,73.180800000000005,0.031179999999999999,66.334999999999994,68.617000000000004,70.899000000000001,73.180999999999997,75.462999999999994,77.744,80.025999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,303,1,73.223100000000002,0.031179999999999999,66.373999999999995,68.656999999999996,70.94,73.222999999999999,75.506,77.789000000000001,80.072000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,304,1,73.265299999999996,0.031179999999999999,66.412000000000006,68.695999999999998,70.980999999999995,73.265000000000001,75.55,77.834000000000003,80.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,305,1,73.307500000000005,0.031179999999999999,66.45,68.736000000000004,71.022000000000006,73.308000000000007,75.593000000000004,77.879000000000005,80.165000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,306,1,73.349699999999999,0.031179999999999999,66.489000000000004,68.775999999999996,71.063000000000002,73.349999999999994,75.637,77.924000000000007,80.210999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,307,1,73.3917,0.031189999999999999,66.524000000000001,68.813999999999993,71.102999999999994,73.391999999999996,75.680999999999997,77.97,80.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,308,1,73.433700000000002,0.031189999999999999,66.563000000000002,68.852999999999994,71.143000000000001,73.433999999999997,75.724000000000004,78.013999999999996,80.305000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,309,1,73.475700000000003,0.031189999999999999,66.600999999999999,68.891999999999996,71.183999999999997,73.475999999999999,75.766999999999996,78.058999999999997,80.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,310,1,73.517600000000002,0.031189999999999999,66.638999999999996,68.932000000000002,71.224999999999994,73.518000000000001,75.811000000000007,78.103999999999999,80.397000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,311,1,73.559399999999997,0.031189999999999999,66.676000000000002,68.971000000000004,71.265000000000001,73.558999999999997,75.853999999999999,78.147999999999996,80.441999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,312,1,73.601200000000006,0.031189999999999999,66.713999999999999,69.010000000000005,71.305999999999997,73.600999999999999,75.897000000000006,78.191999999999993,80.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,313,1,73.642899999999997,0.031199999999999999,66.75,69.048000000000002,71.344999999999999,73.643000000000001,75.941000000000003,78.238,80.536000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,314,1,73.6845,0.031199999999999999,66.787999999999997,69.087000000000003,71.385999999999996,73.683999999999997,75.983000000000004,78.281999999999996,80.581000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,315,1,73.726100000000002,0.031199999999999999,66.825000000000003,69.126000000000005,71.426000000000002,73.725999999999999,76.025999999999996,78.326999999999998,80.626999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,316,1,73.767700000000005,0.031199999999999999,66.863,69.165000000000006,71.465999999999994,73.768000000000001,76.069000000000003,78.370999999999995,80.671999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,317,1,73.809100000000001,0.031199999999999999,66.900999999999996,69.203000000000003,71.506,73.808999999999997,76.111999999999995,78.415000000000006,80.718000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,318,1,73.8506,0.031210000000000002,66.936000000000007,69.241,71.546000000000006,73.850999999999999,76.155000000000001,78.459999999999994,80.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,319,1,73.891900000000007,0.031210000000000002,66.972999999999999,69.28,71.585999999999999,73.891999999999996,76.197999999999993,78.504000000000005,80.81 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,320,1,73.933300000000003,0.031210000000000002,67.010999999999996,69.317999999999998,71.626000000000005,73.933000000000007,76.241,78.548000000000002,80.855999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,321,1,73.974500000000006,0.031210000000000002,67.048000000000002,69.356999999999999,71.665999999999997,73.974000000000004,76.283000000000001,78.591999999999999,80.900999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,322,1,74.015699999999995,0.031220000000000001,67.082999999999998,69.394000000000005,71.704999999999998,74.016000000000005,76.325999999999993,78.637,80.947999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,323,1,74.056899999999999,0.031220000000000001,67.120999999999995,69.433000000000007,71.745000000000005,74.057000000000002,76.369,78.680999999999997,80.992999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,324,1,74.097899999999996,0.031220000000000001,67.158000000000001,69.471000000000004,71.784999999999997,74.097999999999999,76.411000000000001,78.724999999999994,81.037999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,325,1,74.138999999999996,0.031220000000000001,67.194999999999993,69.510000000000005,71.823999999999998,74.138999999999996,76.453999999999994,78.768000000000001,81.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,326,1,74.180000000000007,0.031230000000000001,67.23,69.546999999999997,71.863,74.180000000000007,76.497,78.813000000000002,81.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,327,1,74.2209,0.031230000000000001,67.266999999999996,69.584999999999994,71.903000000000006,74.221000000000004,76.539000000000001,78.856999999999999,81.174999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,328,1,74.261799999999994,0.031230000000000001,67.304000000000002,69.623000000000005,71.942999999999998,74.262,76.581000000000003,78.900000000000006,81.218999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,329,1,74.302599999999998,0.03124,67.338999999999999,69.66,71.980999999999995,74.302999999999997,76.623999999999995,78.944999999999993,81.266000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,330,1,74.343299999999999,0.03124,67.376000000000005,69.697999999999993,72.021000000000001,74.343000000000004,76.665999999999997,78.988,81.311000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,331,1,74.384100000000004,0.03124,67.412999999999997,69.736999999999995,72.06,74.384,76.707999999999998,79.031999999999996,81.355000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,332,1,74.424700000000001,0.03124,67.45,69.775000000000006,72.099999999999994,74.424999999999997,76.75,79.075000000000003,81.400000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,333,1,74.465299999999999,0.03125,67.483999999999995,69.811000000000007,72.138000000000005,74.465000000000003,76.792000000000002,79.119,81.445999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,334,1,74.505899999999997,0.03125,67.521000000000001,69.849000000000004,72.177999999999997,74.506,76.834000000000003,79.162999999999997,81.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,335,1,74.546400000000006,0.03125,67.558000000000007,69.887,72.216999999999999,74.546000000000006,76.876000000000005,79.206000000000003,81.534999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,336,1,74.586799999999997,0.031260000000000003,67.591999999999999,69.924000000000007,72.254999999999995,74.587000000000003,76.918000000000006,79.25,81.581999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,337,1,74.627200000000002,0.031260000000000003,67.629000000000005,69.962000000000003,72.293999999999997,74.626999999999995,76.959999999999994,79.293000000000006,81.626000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,338,1,74.667599999999993,0.031260000000000003,67.665000000000006,69.998999999999995,72.332999999999998,74.668000000000006,77.001999999999995,79.335999999999999,81.67 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,339,1,74.707899999999995,0.031269999999999999,67.7,70.036000000000001,72.372,74.707999999999998,77.043999999999997,79.38,81.715999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,340,1,74.748099999999994,0.031269999999999999,67.736000000000004,70.072999999999993,72.411000000000001,74.748000000000005,77.084999999999994,79.423000000000002,81.760000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,341,1,74.788300000000007,0.031269999999999999,67.772000000000006,70.111000000000004,72.45,74.787999999999997,77.126999999999995,79.465999999999994,81.804000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,342,1,74.828500000000005,0.031280000000000002,67.807000000000002,70.147000000000006,72.488,74.828000000000003,77.168999999999997,79.510000000000005,81.849999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,343,1,74.868600000000001,0.031280000000000002,67.843000000000004,70.185000000000002,72.527000000000001,74.869,77.209999999999994,79.552000000000007,81.894000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,344,1,74.908600000000007,0.031280000000000002,67.879000000000005,70.221999999999994,72.564999999999998,74.909000000000006,77.251999999999995,79.594999999999999,81.938000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,345,1,74.948599999999999,0.031289999999999998,67.912999999999997,70.257999999999996,72.602999999999994,74.948999999999998,77.293999999999997,79.638999999999996,81.983999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,346,1,74.988600000000005,0.031289999999999998,67.948999999999998,70.296000000000006,72.641999999999996,74.989000000000004,77.334999999999994,79.680999999999997,82.028000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,347,1,75.028499999999994,0.031300000000000001,67.983000000000004,70.331999999999994,72.680000000000007,75.028000000000006,77.376999999999995,79.724999999999994,82.073999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,348,1,75.068299999999994,0.031300000000000001,68.019000000000005,70.369,72.718999999999994,75.067999999999998,77.418000000000006,79.768000000000001,82.117000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,349,1,75.108099999999993,0.031300000000000001,68.055000000000007,70.406000000000006,72.757000000000005,75.108000000000004,77.459000000000003,79.81,82.161000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,350,1,75.147900000000007,0.031309999999999998,68.088999999999999,70.441999999999993,72.795000000000002,75.147999999999996,77.501000000000005,79.853999999999999,82.206999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,351,1,75.187600000000003,0.031309999999999998,68.125,70.478999999999999,72.832999999999998,75.188000000000002,77.542000000000002,79.896000000000001,82.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,352,1,75.2273,0.031320000000000001,68.159000000000006,70.515000000000001,72.870999999999995,75.227000000000004,77.582999999999998,79.94,82.296000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,353,1,75.266900000000007,0.031320000000000001,68.194999999999993,70.552000000000007,72.91,75.266999999999996,77.623999999999995,79.981999999999999,82.338999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,354,1,75.3065,0.031320000000000001,68.230999999999995,70.588999999999999,72.947999999999993,75.305999999999997,77.665000000000006,80.024000000000001,82.382000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,355,1,75.346000000000004,0.031329999999999997,68.263999999999996,70.625,72.984999999999999,75.346000000000004,77.706999999999994,80.066999999999993,82.427999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,356,1,75.385499999999993,0.031329999999999997,68.3,70.662000000000006,73.024000000000001,75.385999999999996,77.747,80.108999999999995,82.471000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,357,1,75.424999999999997,0.03134,68.334000000000003,70.697000000000003,73.061000000000007,75.424999999999997,77.789000000000001,80.153000000000006,82.516000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,358,1,75.464399999999998,0.03134,68.369,70.733999999999995,73.099000000000004,75.463999999999999,77.828999999999994,80.194999999999993,82.56 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,359,1,75.503699999999995,0.031350000000000003,68.403000000000006,70.77,73.137,75.504000000000005,77.870999999999995,80.238,82.605000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,360,1,75.543099999999995,0.031350000000000003,68.438000000000002,70.807000000000002,73.174999999999997,75.543000000000006,77.911000000000001,80.28,82.647999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,361,1,75.582400000000007,0.031359999999999999,68.471999999999994,70.841999999999999,73.212000000000003,75.581999999999994,77.953000000000003,80.322999999999993,82.692999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,362,1,75.621600000000001,0.031359999999999999,68.507000000000005,70.879000000000005,73.25,75.622,77.992999999999995,80.364999999999995,82.736000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,363,1,75.660799999999995,0.031359999999999999,68.543000000000006,70.915000000000006,73.287999999999997,75.661000000000001,78.034000000000006,80.406000000000006,82.778999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,364,1,75.6999,0.031370000000000002,68.575999999999993,70.95,73.325000000000003,75.7,78.075000000000003,80.448999999999998,82.823999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,365,1,75.739099999999993,0.031370000000000002,68.611000000000004,70.986999999999995,73.363,75.739000000000004,78.114999999999995,80.491,82.867000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,366,1,75.778099999999995,0.031379999999999998,68.644000000000005,71.022000000000006,73.400000000000006,75.778000000000006,78.156000000000006,80.534000000000006,82.912000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,367,1,75.8172,0.031379999999999998,68.680000000000007,71.058999999999997,73.438000000000002,75.816999999999993,78.195999999999998,80.575000000000003,82.954999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,368,1,75.856200000000001,0.031390000000000001,68.712999999999994,71.093999999999994,73.474999999999994,75.855999999999995,78.236999999999995,80.617999999999995,83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,369,1,75.895099999999999,0.031390000000000001,68.748000000000005,71.13,73.513000000000005,75.894999999999996,78.277000000000001,80.66,83.042000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,370,1,75.933999999999997,0.031399999999999997,68.781000000000006,71.165000000000006,73.55,75.933999999999997,78.317999999999998,80.703000000000003,83.087000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,371,1,75.972899999999996,0.031399999999999997,68.816000000000003,71.201999999999998,73.587000000000003,75.972999999999999,78.358000000000004,80.744,83.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,372,1,76.011700000000005,0.03141,68.849000000000004,71.236999999999995,73.623999999999995,76.012,78.399000000000001,80.787000000000006,83.174000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,373,1,76.0505,0.03141,68.884,71.272999999999996,73.662000000000006,76.05,78.438999999999993,80.828000000000003,83.216999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,374,1,76.089200000000005,0.031419999999999997,68.917000000000002,71.308000000000007,73.697999999999993,76.088999999999999,78.48,80.870999999999995,83.260999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,375,1,76.127899999999997,0.031419999999999997,68.951999999999998,71.343999999999994,73.736000000000004,76.128,78.52,80.912000000000006,83.304000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,376,1,76.166499999999999,0.03143,68.984999999999999,71.379000000000005,73.772999999999996,76.165999999999997,78.56,80.953999999999994,83.347999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,377,1,76.205100000000002,0.03143,69.02,71.415000000000006,73.81,76.204999999999998,78.599999999999994,80.995000000000005,83.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,378,1,76.243700000000004,0.031440000000000003,69.052000000000007,71.448999999999998,73.846999999999994,76.244,78.641000000000005,81.037999999999997,83.435000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,379,1,76.282200000000003,0.031440000000000003,69.087000000000003,71.486000000000004,73.884,76.281999999999996,78.680999999999997,81.078999999999994,83.477000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,380,1,76.320700000000002,0.031449999999999999,69.12,71.52,73.92,76.320999999999998,78.721000000000004,81.120999999999995,83.522000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,381,1,76.359099999999998,0.031460000000000002,69.152000000000001,71.555000000000007,73.956999999999994,76.358999999999995,78.760999999999996,81.164000000000001,83.566000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,382,1,76.397499999999994,0.031460000000000002,69.186999999999998,71.590999999999994,73.994,76.397999999999996,78.801000000000002,81.203999999999994,83.608000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,383,1,76.4358,0.031469999999999998,69.218999999999994,71.625,74.03,76.436000000000007,78.840999999999994,81.247,83.652000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,384,1,76.474100000000007,0.031469999999999998,69.254000000000005,71.661000000000001,74.066999999999993,76.474000000000004,78.881,81.287000000000006,83.694000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,385,1,76.5124,0.031480000000000001,69.287000000000006,71.694999999999993,74.103999999999999,76.512,78.921000000000006,81.33,83.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,386,1,76.550600000000003,0.031480000000000001,69.320999999999998,71.730999999999995,74.141000000000005,76.551000000000002,78.959999999999994,81.37,83.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,387,1,76.588800000000006,0.031489999999999997,69.352999999999994,71.765000000000001,74.177000000000007,76.588999999999999,79.001000000000005,81.412000000000006,83.823999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,388,1,76.626900000000006,0.031489999999999997,69.388000000000005,71.801000000000002,74.213999999999999,76.626999999999995,79.040000000000006,81.453000000000003,83.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,389,1,76.665000000000006,0.0315,69.42,71.834999999999994,74.25,76.665000000000006,79.08,81.495000000000005,83.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,390,1,76.703000000000003,0.031510000000000003,69.451999999999998,71.869,74.286000000000001,76.703000000000003,79.12,81.537000000000006,83.953999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,391,1,76.741,0.031510000000000003,69.486999999999995,71.905000000000001,74.322999999999993,76.741,79.159000000000006,81.576999999999998,83.995000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,392,1,76.778999999999996,0.031519999999999999,69.519000000000005,71.938999999999993,74.358999999999995,76.778999999999996,79.198999999999998,81.619,84.039000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,393,1,76.816900000000004,0.031519999999999999,69.552999999999997,71.974000000000004,74.396000000000001,76.816999999999993,79.238,81.659000000000006,84.081000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,394,1,76.854799999999997,0.031530000000000002,69.584999999999994,72.007999999999996,74.432000000000002,76.855000000000004,79.278000000000006,81.700999999999993,84.123999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,395,1,76.892600000000002,0.031539999999999999,69.617000000000004,72.042000000000002,74.466999999999999,76.893000000000001,79.317999999999998,81.742999999999995,84.168000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,396,1,76.930400000000006,0.031539999999999999,69.650999999999996,72.078000000000003,74.504000000000005,76.930000000000007,79.356999999999999,81.783000000000001,84.21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,397,1,76.968199999999996,0.031550000000000002,69.683000000000007,72.111999999999995,74.540000000000006,76.968000000000004,79.397000000000006,81.825000000000003,84.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,398,1,77.005899999999997,0.031550000000000002,69.716999999999999,72.147000000000006,74.575999999999993,77.006,79.435000000000002,81.864999999999995,84.295000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,399,1,77.043499999999995,0.031559999999999998,69.748999999999995,72.180999999999997,74.611999999999995,77.043999999999997,79.474999999999994,81.906000000000006,84.337999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,400,1,77.081199999999995,0.031570000000000001,69.781000000000006,72.213999999999999,74.647999999999996,77.081000000000003,79.515000000000001,81.947999999999993,84.382000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,401,1,77.118700000000004,0.031570000000000001,69.814999999999998,72.248999999999995,74.683999999999997,77.119,79.552999999999997,81.988,84.423000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,402,1,77.156300000000002,0.031579999999999997,69.846999999999994,72.283000000000001,74.72,77.156000000000006,79.593000000000004,82.028999999999996,84.465999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,403,1,77.193799999999996,0.03159,69.878,72.316999999999993,74.754999999999995,77.194000000000003,79.632000000000005,82.070999999999998,84.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,404,1,77.231300000000005,0.03159,69.912000000000006,72.352000000000004,74.792000000000002,77.230999999999995,79.671000000000006,82.111000000000004,84.551000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,405,1,77.268699999999995,0.031600000000000003,69.944000000000003,72.385000000000005,74.826999999999998,77.269000000000005,79.709999999999994,82.152000000000001,84.593999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,406,1,77.305999999999997,0.031600000000000003,69.977000000000004,72.42,74.863,77.305999999999997,79.748999999999995,82.191999999999993,84.635000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,407,1,77.343400000000003,0.031609999999999999,70.009,72.453999999999994,74.899000000000001,77.343000000000004,79.787999999999997,82.233000000000004,84.677999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,408,1,77.380700000000004,0.031620000000000002,70.040000000000006,72.486999999999995,74.933999999999997,77.381,79.826999999999998,82.274000000000001,84.721000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,409,1,77.417900000000003,0.031620000000000002,70.073999999999998,72.522000000000006,74.97,77.418000000000006,79.866,82.313999999999993,84.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,410,1,77.455100000000002,0.031629999999999998,70.105000000000004,72.555000000000007,75.004999999999995,77.454999999999998,79.905000000000001,82.355000000000004,84.805000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,411,1,77.4923,0.031640000000000001,70.137,72.588999999999999,75.040000000000006,77.492000000000004,79.944000000000003,82.396000000000001,84.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,412,1,77.529499999999999,0.031640000000000001,70.17,72.623000000000005,75.075999999999993,77.53,79.983000000000004,82.436000000000007,84.888999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,413,1,77.566500000000005,0.031649999999999998,70.201999999999998,72.656999999999996,75.111999999999995,77.566000000000003,80.021000000000001,82.475999999999999,84.930999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,414,1,77.6036,0.031660000000000001,70.233000000000004,72.69,75.147000000000006,77.603999999999999,80.061000000000007,82.516999999999996,84.974000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,415,1,77.640600000000006,0.031660000000000001,70.266000000000005,72.724000000000004,75.182000000000002,77.641000000000005,80.099000000000004,82.557000000000002,85.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,416,1,77.677599999999998,0.031669999999999997,70.296999999999997,72.757999999999996,75.218000000000004,77.677999999999997,80.138000000000005,82.597999999999999,85.058000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,417,1,77.714500000000001,0.03168,70.328999999999994,72.790999999999997,75.253,77.713999999999999,80.176000000000002,82.638000000000005,85.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,418,1,77.751400000000004,0.03168,70.361999999999995,72.825000000000003,75.287999999999997,77.751000000000005,80.215000000000003,82.677999999999997,85.141000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,419,1,77.788300000000007,0.031690000000000003,70.393000000000001,72.858000000000004,75.322999999999993,77.787999999999997,80.253,82.718999999999994,85.183999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,420,1,77.825100000000006,0.031699999999999999,70.424000000000007,72.891000000000005,75.358000000000004,77.825000000000003,80.292000000000002,82.759,85.225999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,421,1,77.861800000000002,0.031699999999999999,70.456999999999994,72.924999999999997,75.394000000000005,77.861999999999995,80.33,82.798000000000002,85.266000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,422,1,77.898600000000002,0.031710000000000002,70.488,72.957999999999998,75.427999999999997,77.899000000000001,80.369,82.838999999999999,85.308999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,423,1,77.935299999999998,0.031719999999999998,70.519000000000005,72.991,75.462999999999994,77.935000000000002,80.406999999999996,82.88,85.352000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,424,1,77.971900000000005,0.031719999999999998,70.552000000000007,73.025000000000006,75.498999999999995,77.971999999999994,80.444999999999993,82.918000000000006,85.391999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,425,1,78.008499999999998,0.031730000000000001,70.582999999999998,73.058000000000007,75.533000000000001,78.007999999999996,80.483999999999995,82.959000000000003,85.433999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,426,1,78.045100000000005,0.031739999999999997,70.614000000000004,73.090999999999994,75.567999999999998,78.045000000000002,80.522000000000006,82.998999999999995,85.477000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,427,1,78.081699999999998,0.03175,70.644000000000005,73.123999999999995,75.602999999999994,78.081999999999994,80.561000000000007,83.04,85.519000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,428,1,78.118200000000002,0.03175,70.677000000000007,73.158000000000001,75.638000000000005,78.117999999999995,80.597999999999999,83.078999999999994,85.558999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,429,1,78.154600000000002,0.031759999999999997,70.707999999999998,73.19,75.671999999999997,78.155000000000001,80.637,83.119,85.600999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,430,1,78.191100000000006,0.03177,70.739000000000004,73.222999999999999,75.706999999999994,78.191000000000003,80.674999999999997,83.159000000000006,85.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,431,1,78.227500000000006,0.03177,70.772000000000006,73.257000000000005,75.742000000000004,78.227999999999994,80.712999999999994,83.197999999999993,85.683000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,432,1,78.263800000000003,0.031780000000000003,70.802000000000007,73.289000000000001,75.777000000000001,78.263999999999996,80.751000000000005,83.238,85.724999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,433,1,78.3001,0.031789999999999999,70.832999999999998,73.322000000000003,75.811000000000007,78.3,80.789000000000001,83.278000000000006,85.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,434,1,78.336399999999998,0.031800000000000002,70.863,73.353999999999999,75.844999999999999,78.335999999999999,80.826999999999998,83.319000000000003,85.81 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,435,1,78.372699999999995,0.031800000000000002,70.896000000000001,73.388000000000005,75.88,78.373000000000005,80.864999999999995,83.356999999999999,85.849000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,436,1,78.408900000000003,0.031809999999999998,70.926000000000002,73.421000000000006,75.915000000000006,78.409000000000006,80.903000000000006,83.397000000000006,85.891000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,437,1,78.445099999999996,0.031820000000000001,70.956999999999994,73.453000000000003,75.948999999999998,78.444999999999993,80.941000000000003,83.436999999999998,85.933000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,438,1,78.481200000000001,0.031829999999999997,70.986999999999995,73.484999999999999,75.983000000000004,78.480999999999995,80.978999999999999,83.477000000000004,85.974999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,439,1,78.517300000000006,0.031829999999999997,71.02,73.519000000000005,76.018000000000001,78.516999999999996,81.016999999999996,83.516000000000005,86.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,440,1,78.553399999999996,0.03184,71.05,73.551000000000002,76.052000000000007,78.552999999999997,81.055000000000007,83.555999999999997,86.057000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,441,1,78.589399999999998,0.031850000000000003,71.08,73.582999999999998,76.085999999999999,78.588999999999999,81.091999999999999,83.596000000000004,86.099000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,442,1,78.625399999999999,0.031859999999999999,71.11,73.614999999999995,76.12,78.625,81.13,83.635000000000005,86.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,443,1,78.6614,0.031859999999999999,71.143000000000001,73.649000000000001,76.155000000000001,78.661000000000001,81.168000000000006,83.674000000000007,86.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,444,1,78.697299999999998,0.031870000000000002,71.173000000000002,73.680999999999997,76.188999999999993,78.697000000000003,81.204999999999998,83.712999999999994,86.221999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,445,1,78.733199999999997,0.031879999999999999,71.203000000000003,73.712999999999994,76.222999999999999,78.733000000000004,81.242999999999995,83.753,86.263000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,446,1,78.769099999999995,0.031890000000000002,71.233000000000004,73.745000000000005,76.257000000000005,78.769000000000005,81.281000000000006,83.793000000000006,86.305000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,447,1,78.804900000000004,0.031890000000000002,71.266000000000005,73.778999999999996,76.292000000000002,78.805000000000007,81.317999999999998,83.831000000000003,86.343999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,448,1,78.840699999999998,0.031899999999999998,71.296000000000006,73.811000000000007,76.325999999999993,78.840999999999994,81.355999999999995,83.870999999999995,86.385999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,449,1,78.876400000000004,0.031910000000000001,71.325999999999993,73.843000000000004,76.358999999999995,78.876000000000005,81.393000000000001,83.91,86.427000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,450,1,78.912199999999999,0.031919999999999997,71.355999999999995,73.873999999999995,76.393000000000001,78.912000000000006,81.430999999999997,83.95,86.468999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,451,1,78.947900000000004,0.031919999999999997,71.388000000000005,73.908000000000001,76.427999999999997,78.947999999999993,81.468000000000004,83.988,86.507999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,452,1,78.983500000000006,0.03193,71.418000000000006,73.94,76.462000000000003,78.983999999999995,81.504999999999995,84.027000000000001,86.549000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,453,1,79.019099999999995,0.031940000000000003,71.447000000000003,73.971000000000004,76.495000000000005,79.019000000000005,81.543000000000006,84.066999999999993,86.590999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,454,1,79.054699999999997,0.031949999999999999,71.477000000000004,74.003,76.528999999999996,79.055000000000007,81.58,84.105999999999995,86.632000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,455,1,79.090299999999999,0.031960000000000002,71.507000000000005,74.034999999999997,76.563000000000002,79.09,81.617999999999995,84.146000000000001,86.673000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,456,1,79.125799999999998,0.031960000000000002,71.539000000000001,74.067999999999998,76.596999999999994,79.126000000000005,81.655000000000001,84.183999999999997,86.712000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,457,1,79.161299999999997,0.031969999999999998,71.569000000000003,74.099999999999994,76.631,79.161000000000001,81.691999999999993,84.222999999999999,86.754000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,458,1,79.196799999999996,0.031980000000000001,71.599000000000004,74.131,76.664000000000001,79.197000000000003,81.73,84.262,86.795000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,459,1,79.232200000000006,0.031989999999999998,71.628,74.162999999999997,76.697999999999993,79.231999999999999,81.766999999999996,84.301000000000002,86.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,460,1,79.267600000000002,0.032000000000000001,71.658000000000001,74.194000000000003,76.730999999999995,79.268000000000001,81.804000000000002,84.340999999999994,86.876999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,461,1,79.302999999999997,0.032000000000000001,71.69,74.227999999999994,76.765000000000001,79.302999999999997,81.840999999999994,84.378,86.915999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,462,1,79.338300000000004,0.032009999999999997,71.718999999999994,74.259,76.799000000000007,79.337999999999994,81.878,84.418000000000006,86.956999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,463,1,79.373599999999996,0.03202,71.748999999999995,74.290999999999997,76.831999999999994,79.373999999999995,81.915000000000006,84.456999999999994,86.998000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,464,1,79.408900000000003,0.032030000000000003,71.778000000000006,74.322000000000003,76.864999999999995,79.409000000000006,81.951999999999998,84.495999999999995,87.039000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,465,1,79.444100000000006,0.032039999999999999,71.808000000000007,74.352999999999994,76.899000000000001,79.444000000000003,81.989000000000004,84.534999999999997,87.08 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,466,1,79.479299999999995,0.032039999999999999,71.84,74.385999999999996,76.933000000000007,79.478999999999999,82.025999999999996,84.572000000000003,87.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,467,1,79.514499999999998,0.032050000000000002,71.869,74.418000000000006,76.965999999999994,79.513999999999996,82.063000000000002,84.611000000000004,87.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,468,1,79.549599999999998,0.032059999999999998,71.899000000000001,74.448999999999998,76.998999999999995,79.55,82.1,84.65,87.200999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,469,1,79.584699999999998,0.032070000000000001,71.927999999999997,74.48,77.031999999999996,79.584999999999994,82.137,84.688999999999993,87.242000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,470,1,79.619799999999998,0.032079999999999997,71.956999999999994,74.510999999999996,77.066000000000003,79.62,82.174000000000007,84.727999999999994,87.281999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,471,1,79.654799999999994,0.03209,71.986000000000004,74.543000000000006,77.099000000000004,79.655000000000001,82.210999999999999,84.766999999999996,87.322999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,472,1,79.689800000000005,0.03209,72.018000000000001,74.575000000000003,77.132999999999996,79.69,82.247,84.804000000000002,87.361999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,473,1,79.724800000000002,0.032099999999999997,72.046999999999997,74.605999999999995,77.165999999999997,79.724999999999994,82.284000000000006,84.843000000000004,87.402000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,474,1,79.759799999999998,0.03211,72.076999999999998,74.638000000000005,77.198999999999998,79.760000000000005,82.320999999999998,84.882000000000005,87.442999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,475,1,79.794700000000006,0.032120000000000003,72.105999999999995,74.668999999999997,77.231999999999999,79.795000000000002,82.358000000000004,84.921000000000006,87.483999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,476,1,79.829599999999999,0.032129999999999999,72.135000000000005,74.7,77.265000000000001,79.83,82.394999999999996,84.959000000000003,87.524000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,477,1,79.864400000000003,0.032140000000000002,72.164000000000001,74.730999999999995,77.298000000000002,79.864000000000004,82.430999999999997,84.998000000000005,87.564999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,478,1,79.899299999999997,0.032140000000000002,72.194999999999993,74.763000000000005,77.331000000000003,79.899000000000001,82.466999999999999,85.034999999999997,87.602999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,479,1,79.934100000000001,0.032149999999999998,72.224000000000004,74.793999999999997,77.364000000000004,79.933999999999997,82.504000000000005,85.073999999999998,87.644000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,480,1,79.968800000000002,0.032160000000000001,72.253,74.825000000000003,77.397000000000006,79.968999999999994,82.540999999999997,85.111999999999995,87.683999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,481,1,80.003600000000006,0.032169999999999997,72.281999999999996,74.855999999999995,77.430000000000007,80.004000000000005,82.576999999999998,85.150999999999996,87.724999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,482,1,80.038300000000007,0.03218,72.311000000000007,74.887,77.462999999999994,80.037999999999997,82.614000000000004,85.19,87.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,483,1,80.072900000000004,0.032190000000000003,72.34,74.918000000000006,77.495000000000005,80.072999999999993,82.65,85.227999999999994,87.805999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,484,1,80.107600000000005,0.032199999999999999,72.369,74.948999999999998,77.528000000000006,80.108000000000004,82.686999999999998,85.266999999999996,87.846000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,485,1,80.142200000000003,0.032199999999999999,72.400000000000006,74.980999999999995,77.561999999999998,80.141999999999996,82.722999999999999,85.302999999999997,87.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,486,1,80.1768,0.032210000000000003,72.429000000000002,75.012,77.593999999999994,80.177000000000007,82.759,85.341999999999999,87.924000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,487,1,80.211299999999994,0.032219999999999999,72.457999999999998,75.042000000000002,77.626999999999995,80.210999999999999,82.796000000000006,85.38,87.965000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,488,1,80.245900000000006,0.032230000000000002,72.486999999999995,75.072999999999993,77.66,80.245999999999995,82.831999999999994,85.418999999999997,88.004999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,489,1,80.2804,0.032239999999999998,72.516000000000005,75.103999999999999,77.691999999999993,80.28,82.869,85.456999999999994,88.045000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,490,1,80.314800000000005,0.032250000000000001,72.543999999999997,75.134,77.724999999999994,80.314999999999998,82.905000000000001,85.495000000000005,88.084999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,491,1,80.349299999999999,0.032259999999999997,72.572999999999993,75.165000000000006,77.757000000000005,80.349000000000004,82.941000000000003,85.533000000000001,88.126000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,492,1,80.383700000000005,0.032259999999999997,72.603999999999999,75.197000000000003,77.790999999999997,80.384,82.977000000000004,85.57,88.162999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,493,1,80.418099999999995,0.03227,72.632999999999996,75.227999999999994,77.822999999999993,80.418000000000006,83.013000000000005,85.608000000000004,88.203000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,494,1,80.452399999999997,0.032280000000000003,72.661000000000001,75.257999999999996,77.855000000000004,80.451999999999998,83.049000000000007,85.646000000000001,88.242999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,495,1,80.486699999999999,0.032289999999999999,72.69,75.289000000000001,77.888000000000005,80.486999999999995,83.085999999999999,85.685000000000002,88.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,496,1,80.521000000000001,0.032300000000000002,72.718999999999994,75.319000000000003,77.92,80.521000000000001,83.122,85.722999999999999,88.322999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,497,1,80.555300000000003,0.032309999999999998,72.747,75.349999999999994,77.953000000000003,80.555000000000007,83.158000000000001,85.760999999999996,88.364000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,498,1,80.589500000000001,0.032320000000000002,72.775999999999996,75.38,77.984999999999999,80.59,83.194000000000003,85.799000000000007,88.403000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,499,1,80.623699999999999,0.032329999999999998,72.804000000000002,75.411000000000001,78.016999999999996,80.623999999999995,83.23,85.837000000000003,88.442999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,500,1,80.657799999999995,0.032340000000000001,72.831999999999994,75.441000000000003,78.049000000000007,80.658000000000001,83.266000000000005,85.875,88.483000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,501,1,80.691999999999993,0.032340000000000001,72.863,75.472999999999999,78.081999999999994,80.691999999999993,83.302000000000007,85.911000000000001,88.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,502,1,80.726100000000002,0.032349999999999997,72.891999999999996,75.503,78.114999999999995,80.725999999999999,83.337999999999994,85.948999999999998,88.561000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,503,1,80.760199999999998,0.03236,72.92,75.533000000000001,78.147000000000006,80.760000000000005,83.373999999999995,85.986999999999995,88.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,504,1,80.794200000000004,0.032370000000000003,72.947999999999993,75.563999999999993,78.179000000000002,80.793999999999997,83.41,86.025000000000006,88.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,505,1,80.828199999999995,0.032379999999999999,72.977000000000004,75.593999999999994,78.210999999999999,80.828000000000003,83.444999999999993,86.063000000000002,88.68 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,506,1,80.862200000000001,0.032390000000000002,73.004999999999995,75.623999999999995,78.242999999999995,80.861999999999995,83.480999999999995,86.1,88.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,507,1,80.896100000000004,0.032399999999999998,73.033000000000001,75.653999999999996,78.275000000000006,80.896000000000001,83.516999999999996,86.138000000000005,88.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,508,1,80.930099999999996,0.032410000000000001,73.061000000000007,75.683999999999997,78.307000000000002,80.930000000000007,83.552999999999997,86.176000000000002,88.799000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,509,1,80.963999999999999,0.032419999999999997,73.088999999999999,75.713999999999999,78.338999999999999,80.963999999999999,83.588999999999999,86.213999999999999,88.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,510,1,80.997799999999998,0.03243,73.117999999999995,75.744,78.370999999999995,80.998000000000005,83.625,86.251000000000005,88.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,511,1,81.031700000000001,0.032439999999999997,73.146000000000001,75.774000000000001,78.403000000000006,81.031999999999996,83.66,86.289000000000001,88.918000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,512,1,81.0655,0.03245,73.174000000000007,75.804000000000002,78.435000000000002,81.066000000000003,83.695999999999998,86.326999999999998,88.956999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,513,1,81.099199999999996,0.03245,73.203999999999994,75.835999999999999,78.468000000000004,81.099000000000004,83.730999999999995,86.363,88.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,514,1,81.132999999999996,0.032460000000000003,73.231999999999999,75.866,78.498999999999995,81.132999999999996,83.766999999999996,86.4,89.034000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,515,1,81.166700000000006,0.032469999999999999,73.260000000000005,75.896000000000001,78.531000000000006,81.167000000000002,83.802000000000007,86.438000000000002,89.072999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,516,1,81.200400000000002,0.032480000000000002,73.287999999999997,75.926000000000002,78.563000000000002,81.2,83.837999999999994,86.474999999999994,89.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,517,1,81.233999999999995,0.032489999999999998,73.316000000000003,75.954999999999998,78.594999999999999,81.233999999999995,83.873000000000005,86.513000000000005,89.152000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,518,1,81.267700000000005,0.032500000000000001,73.343999999999994,75.984999999999999,78.626000000000005,81.268000000000001,83.909000000000006,86.55,89.191000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,519,1,81.301299999999998,0.032509999999999997,73.372,76.015000000000001,78.658000000000001,81.301000000000002,83.944000000000003,86.587999999999994,89.230999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,520,1,81.334800000000001,0.03252,73.400000000000006,76.045000000000002,78.69,81.334999999999994,83.98,86.625,89.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,521,1,81.368399999999994,0.032530000000000003,73.427999999999997,76.075000000000003,78.721000000000004,81.367999999999995,84.015000000000001,86.662000000000006,89.308999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,522,1,81.401899999999998,0.032539999999999999,73.454999999999998,76.103999999999999,78.753,81.402000000000001,84.051000000000002,86.7,89.347999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,523,1,81.435299999999998,0.032550000000000003,73.483000000000004,76.134,78.784999999999997,81.435000000000002,84.085999999999999,86.736999999999995,89.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,524,1,81.468800000000002,0.032559999999999999,73.510999999999996,76.164000000000001,78.816000000000003,81.468999999999994,84.120999999999995,86.774000000000001,89.427000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,525,1,81.502200000000002,0.032570000000000002,73.539000000000001,76.192999999999998,78.847999999999999,81.501999999999995,84.156999999999996,86.811000000000007,89.465999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,526,1,81.535600000000002,0.032579999999999998,73.566000000000003,76.222999999999999,78.879000000000005,81.536000000000001,84.191999999999993,86.847999999999999,89.504999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,527,1,81.569000000000003,0.032590000000000001,73.593999999999994,76.251999999999995,78.911000000000001,81.569000000000003,84.227000000000004,86.885999999999996,89.543999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,528,1,81.6023,0.032599999999999997,73.622,76.281999999999996,78.941999999999993,81.602000000000004,84.263000000000005,86.923000000000002,89.582999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,529,1,81.635599999999997,0.03261,73.649000000000001,76.311000000000007,78.972999999999999,81.635999999999996,84.298000000000002,86.96,89.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,530,1,81.668899999999994,0.03261,73.679000000000002,76.341999999999999,79.006,81.668999999999997,84.331999999999994,86.995000000000005,89.659000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,531,1,81.702100000000002,0.032620000000000003,73.706999999999994,76.372,79.037000000000006,81.701999999999998,84.367000000000004,87.031999999999996,89.697000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,532,1,81.735299999999995,0.032629999999999999,73.733999999999995,76.400999999999996,79.067999999999998,81.734999999999999,84.402000000000001,87.069000000000003,89.736000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,533,1,81.768500000000003,0.032640000000000002,73.762,76.430999999999997,79.099999999999994,81.768000000000001,84.436999999999998,87.105999999999995,89.775000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,534,1,81.801699999999997,0.032649999999999998,73.789000000000001,76.459999999999994,79.131,81.802000000000007,84.472999999999999,87.143000000000001,89.813999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,535,1,81.834800000000001,0.032660000000000002,73.816999999999993,76.489000000000004,79.162000000000006,81.834999999999994,84.507999999999996,87.18,89.852999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,536,1,81.867900000000006,0.032669999999999998,73.843999999999994,76.519000000000005,79.192999999999998,81.867999999999995,84.543000000000006,87.216999999999999,89.891999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,537,1,81.900899999999993,0.032680000000000001,73.870999999999995,76.548000000000002,79.224000000000004,81.900999999999996,84.576999999999998,87.254000000000005,89.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,538,1,81.933999999999997,0.032689999999999997,73.899000000000001,76.576999999999998,79.256,81.933999999999997,84.611999999999995,87.290999999999997,89.968999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,539,1,81.966999999999999,0.0327,73.926000000000002,76.605999999999995,79.287000000000006,81.966999999999999,84.647000000000006,87.328000000000003,90.007999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,540,1,82,0.032710000000000003,73.953000000000003,76.635999999999996,79.317999999999998,82,84.682000000000002,87.364000000000004,90.046999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,541,1,82.032899999999998,0.032719999999999999,73.980999999999995,76.665000000000006,79.349000000000004,82.033000000000001,84.716999999999999,87.400999999999996,90.084999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,542,1,82.065899999999999,0.032730000000000002,74.007999999999996,76.694000000000003,79.38,82.066000000000003,84.751999999999995,87.438000000000002,90.123999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,543,1,82.098699999999994,0.032739999999999998,74.034999999999997,76.722999999999999,79.411000000000001,82.099000000000004,84.787000000000006,87.474999999999994,90.162000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,544,1,82.131600000000006,0.032750000000000001,74.061999999999998,76.751999999999995,79.441999999999993,82.132000000000005,84.820999999999998,87.510999999999996,90.200999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,545,1,82.164400000000001,0.032759999999999997,74.088999999999999,76.781000000000006,79.472999999999999,82.164000000000001,84.855999999999995,87.548000000000002,90.24 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,546,1,82.197299999999998,0.032770000000000001,74.116,76.81,79.504000000000005,82.197000000000003,84.891000000000005,87.584999999999994,90.278000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,547,1,82.23,0.032779999999999997,74.144000000000005,76.838999999999999,79.534999999999997,82.23,84.924999999999997,87.620999999999995,90.316000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,548,1,82.262799999999999,0.03279,74.171000000000006,76.867999999999995,79.564999999999998,82.263000000000005,84.96,87.658000000000001,90.355000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,549,1,82.295500000000004,0.032800000000000003,74.197999999999993,76.897000000000006,79.596000000000004,82.296000000000006,84.995000000000005,87.694000000000003,90.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,550,1,82.328199999999995,0.032809999999999999,74.224999999999994,76.926000000000002,79.626999999999995,82.328000000000003,85.028999999999996,87.730999999999995,90.432000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,551,1,82.360900000000001,0.032820000000000002,74.251999999999995,76.954999999999998,79.658000000000001,82.361000000000004,85.063999999999993,87.766999999999996,90.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,552,1,82.393500000000003,0.032829999999999998,74.278999999999996,76.983999999999995,79.688999999999993,82.394000000000005,85.097999999999999,87.802999999999997,90.507999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,553,1,82.426100000000005,0.032840000000000001,74.305000000000007,77.012,79.718999999999994,82.426000000000002,85.132999999999996,87.84,90.546999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,554,1,82.458699999999993,0.032849999999999997,74.331999999999994,77.040999999999997,79.75,82.459000000000003,85.167000000000002,87.876000000000005,90.584999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,555,1,82.491200000000006,0.03286,74.358999999999995,77.069999999999993,79.781000000000006,82.491,85.201999999999998,87.912999999999997,90.623000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,556,1,82.523700000000005,0.032870000000000003,74.385999999999996,77.099000000000004,79.811000000000007,82.524000000000001,85.236000000000004,87.948999999999998,90.661000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,557,1,82.556200000000004,0.03288,74.412999999999997,77.126999999999995,79.841999999999999,82.555999999999997,85.271000000000001,87.984999999999999,90.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,558,1,82.588700000000003,0.032890000000000003,74.44,77.156000000000006,79.872,82.588999999999999,85.305000000000007,88.021000000000001,90.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,559,1,82.621099999999998,0.032899999999999999,74.465999999999994,77.185000000000002,79.903000000000006,82.620999999999995,85.338999999999999,88.058000000000007,90.775999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,560,1,82.653499999999994,0.032910000000000002,74.492999999999995,77.212999999999994,79.933000000000007,82.653999999999996,85.373999999999995,88.093999999999994,90.813999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,561,1,82.685900000000004,0.032919999999999998,74.52,77.242000000000004,79.963999999999999,82.686000000000007,85.408000000000001,88.13,90.852000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,562,1,82.718199999999996,0.032930000000000001,74.546000000000006,77.27,79.994,82.718000000000004,85.441999999999993,88.165999999999997,90.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,563,1,82.750500000000002,0.032939999999999997,74.572999999999993,77.299000000000007,80.025000000000006,82.75,85.475999999999999,88.201999999999998,90.927999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,564,1,82.782799999999995,0.03295,74.599999999999994,77.326999999999998,80.055000000000007,82.783000000000001,85.51,88.238,90.965999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,565,1,82.815100000000001,0.032960000000000003,74.626000000000005,77.355999999999995,80.085999999999999,82.814999999999998,85.545000000000002,88.274000000000001,91.004000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,566,1,82.847300000000004,0.032969999999999999,74.653000000000006,77.384,80.116,82.846999999999994,85.578999999999994,88.31,91.042000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,567,1,82.879499999999993,0.032980000000000002,74.679000000000002,77.412999999999997,80.146000000000001,82.88,85.613,88.346000000000004,91.08 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,568,1,82.911699999999996,0.032989999999999998,74.706000000000003,77.441000000000003,80.176000000000002,82.912000000000006,85.647000000000006,88.382000000000005,91.117000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,569,1,82.943799999999996,0.033000000000000002,74.731999999999999,77.47,80.206999999999994,82.944000000000003,85.680999999999997,88.418000000000006,91.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,570,1,82.975899999999996,0.033009999999999998,74.759,77.498000000000005,80.236999999999995,82.975999999999999,85.715000000000003,88.453999999999994,91.192999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,571,1,83.007999999999996,0.033020000000000001,74.784999999999997,77.525999999999996,80.266999999999996,83.007999999999996,85.748999999999995,88.49,91.230999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,572,1,83.04,0.033029999999999997,74.811999999999998,77.554000000000002,80.296999999999997,83.04,85.783000000000001,88.525999999999996,91.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,573,1,83.072100000000006,0.03304,74.837999999999994,77.582999999999998,80.326999999999998,83.072000000000003,85.816999999999993,88.561999999999998,91.305999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,574,1,83.104100000000003,0.033050000000000003,74.864000000000004,77.611000000000004,80.358000000000004,83.103999999999999,85.850999999999999,88.596999999999994,91.343999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,575,1,83.135999999999996,0.033059999999999999,74.891000000000005,77.638999999999996,80.388000000000005,83.135999999999996,85.884,88.632999999999996,91.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,576,1,83.168000000000006,0.033079999999999998,74.914000000000001,77.665999999999997,80.417000000000002,83.168000000000006,85.918999999999997,88.67,91.421999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,577,1,83.1999,0.033090000000000001,74.941000000000003,77.694000000000003,80.447000000000003,83.2,85.953000000000003,88.706000000000003,91.459000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,578,1,83.231800000000007,0.033099999999999997,74.966999999999999,77.721999999999994,80.477000000000004,83.231999999999999,85.986999999999995,88.742000000000004,91.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,579,1,83.2637,0.033110000000000001,74.992999999999995,77.75,80.507000000000005,83.263999999999996,86.021000000000001,88.777000000000001,91.534000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,580,1,83.295500000000004,0.033119999999999997,75.019000000000005,77.778000000000006,80.537000000000006,83.296000000000006,86.054000000000002,88.813000000000002,91.572000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,581,1,83.327299999999994,0.03313,75.045000000000002,77.805999999999997,80.566999999999993,83.326999999999998,86.087999999999994,88.849000000000004,91.608999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,582,1,83.359099999999998,0.033140000000000003,75.072000000000003,77.834000000000003,80.596999999999994,83.358999999999995,86.122,88.884,91.647000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,583,1,83.390799999999999,0.033149999999999999,75.097999999999999,77.861999999999995,80.626000000000005,83.391000000000005,86.155000000000001,88.92,91.683999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,584,1,83.422600000000003,0.033160000000000002,75.123999999999995,77.89,80.656000000000006,83.423000000000002,86.188999999999993,88.954999999999998,91.721000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,585,1,83.454300000000003,0.033169999999999998,75.150000000000006,77.918000000000006,80.686000000000007,83.453999999999994,86.221999999999994,88.991,91.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,586,1,83.485900000000001,0.033180000000000001,75.176000000000002,77.945999999999998,80.715999999999994,83.486000000000004,86.256,89.025999999999996,91.796000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,587,1,83.517600000000002,0.033189999999999997,75.201999999999998,77.974000000000004,80.745999999999995,83.518000000000001,86.29,89.061000000000007,91.832999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,588,1,83.549199999999999,0.0332,75.227999999999994,78.001999999999995,80.775000000000006,83.549000000000007,86.322999999999993,89.096999999999994,91.870999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,589,1,83.580799999999996,0.033210000000000003,75.254000000000005,78.028999999999996,80.805000000000007,83.581000000000003,86.356999999999999,89.132000000000005,91.908000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,590,1,83.612399999999994,0.03322,75.28,78.057000000000002,80.834999999999994,83.611999999999995,86.39,89.168000000000006,91.944999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,591,1,83.643900000000002,0.033230000000000003,75.305000000000007,78.084999999999994,80.864000000000004,83.644000000000005,86.423000000000002,89.203000000000003,91.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,592,1,83.675399999999996,0.033239999999999999,75.331000000000003,78.113,80.894000000000005,83.674999999999997,86.456999999999994,89.238,92.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,593,1,83.706900000000005,0.033250000000000002,75.356999999999999,78.14,80.924000000000007,83.706999999999994,86.49,89.272999999999996,92.057000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,594,1,83.738399999999999,0.033259999999999998,75.382999999999996,78.168000000000006,80.953000000000003,83.738,86.524000000000001,89.308999999999997,92.093999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,595,1,83.769800000000004,0.033270000000000001,75.409000000000006,78.195999999999998,80.983000000000004,83.77,86.557000000000002,89.343999999999994,92.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,596,1,83.801199999999994,0.03329,75.432000000000002,78.221999999999994,81.010999999999996,83.801000000000002,86.590999999999994,89.381,92.17 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,597,1,83.832599999999999,0.033300000000000003,75.457999999999998,78.248999999999995,81.040999999999997,83.832999999999998,86.623999999999995,89.415999999999997,92.206999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,598,1,83.864000000000004,0.033309999999999999,75.483000000000004,78.277000000000001,81.069999999999993,83.864000000000004,86.658000000000001,89.450999999999993,92.245000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,599,1,83.895300000000006,0.033320000000000002,75.509,78.305000000000007,81.099999999999994,83.894999999999996,86.691000000000003,89.486000000000004,92.281000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,600,1,83.926699999999997,0.033329999999999999,75.534999999999997,78.331999999999994,81.129000000000005,83.927000000000007,86.724000000000004,89.521000000000001,92.319000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,601,1,83.957899999999995,0.033340000000000002,75.56,78.36,81.159000000000006,83.957999999999998,86.757000000000005,89.555999999999997,92.355000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,602,1,83.989199999999997,0.033349999999999998,75.585999999999999,78.387,81.188000000000002,83.989000000000004,86.79,89.590999999999994,92.391999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,603,1,84.020499999999998,0.033360000000000001,75.611999999999995,78.415000000000006,81.218000000000004,84.02,86.822999999999993,89.626000000000005,92.429000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,604,1,84.051699999999997,0.033369999999999997,75.637,78.441999999999993,81.247,84.052000000000007,86.856999999999999,89.661000000000001,92.465999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,605,1,84.082899999999995,0.03338,75.662999999999997,78.47,81.275999999999996,84.082999999999998,86.89,89.695999999999998,92.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,606,1,84.114000000000004,0.033390000000000003,75.688000000000002,78.497,81.305000000000007,84.114000000000004,86.923000000000002,89.730999999999995,92.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,607,1,84.145200000000003,0.033399999999999999,75.713999999999999,78.524000000000001,81.334999999999994,84.144999999999996,86.956000000000003,89.766000000000005,92.576999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,608,1,84.176299999999998,0.033410000000000002,75.739000000000004,78.552000000000007,81.364000000000004,84.176000000000002,86.989000000000004,89.801000000000002,92.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,609,1,84.207400000000007,0.033419999999999998,75.765000000000001,78.578999999999994,81.393000000000001,84.206999999999994,87.022000000000006,89.835999999999999,92.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,610,1,84.238500000000002,0.033439999999999998,75.787999999999997,78.605000000000004,81.421999999999997,84.238,87.055000000000007,89.872,92.688999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,611,1,84.269499999999994,0.033450000000000001,75.813000000000002,78.632000000000005,81.450999999999993,84.27,87.087999999999994,89.906999999999996,92.725999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,612,1,84.300600000000003,0.033459999999999997,75.838999999999999,78.659000000000006,81.48,84.301000000000002,87.120999999999995,89.941999999999993,92.763000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,613,1,84.331599999999995,0.03347,75.864000000000004,78.686000000000007,81.509,84.331999999999994,87.153999999999996,89.977000000000004,92.799000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,614,1,84.3626,0.033480000000000003,75.888999999999996,78.713999999999999,81.537999999999997,84.363,87.186999999999998,90.012,92.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,615,1,84.393500000000003,0.033489999999999999,75.914000000000001,78.741,81.566999999999993,84.394000000000005,87.22,90.046000000000006,92.873000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,616,1,84.424499999999995,0.033500000000000002,75.94,78.768000000000001,81.596000000000004,84.424000000000007,87.253,90.081000000000003,92.909000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,617,1,84.455399999999997,0.033509999999999998,75.965000000000003,78.795000000000002,81.625,84.454999999999998,87.286000000000001,90.116,92.945999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,618,1,84.486199999999997,0.033520000000000001,75.989999999999995,78.822000000000003,81.653999999999996,84.486000000000004,87.317999999999998,90.15,92.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,619,1,84.517099999999999,0.033529999999999997,76.016000000000005,78.849000000000004,81.683000000000007,84.516999999999996,87.350999999999999,90.185000000000002,93.019000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,620,1,84.547899999999998,0.03354,76.040999999999997,78.876000000000005,81.712000000000003,84.548000000000002,87.384,90.218999999999994,93.055000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,621,1,84.578699999999998,0.03356,76.063000000000002,78.902000000000001,81.739999999999995,84.578999999999994,87.417000000000002,90.256,93.093999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,622,1,84.609499999999997,0.033570000000000003,76.087999999999994,78.929000000000002,81.769000000000005,84.61,87.45,90.29,93.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,623,1,84.640299999999996,0.033579999999999999,76.114000000000004,78.956000000000003,81.798000000000002,84.64,87.483000000000004,90.325000000000003,93.167000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,624,1,84.671000000000006,0.033590000000000002,76.138999999999996,78.983000000000004,81.826999999999998,84.671000000000006,87.515000000000001,90.358999999999995,93.203000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,625,1,84.701700000000002,0.033599999999999998,76.164000000000001,79.010000000000005,81.855999999999995,84.701999999999998,87.548000000000002,90.394000000000005,93.24 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,626,1,84.732399999999998,0.033610000000000001,76.188999999999993,79.037000000000006,81.885000000000005,84.731999999999999,87.58,90.427999999999997,93.275999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,627,1,84.763099999999994,0.033619999999999997,76.213999999999999,79.063999999999993,81.912999999999997,84.763000000000005,87.613,90.462999999999994,93.311999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,628,1,84.793700000000001,0.03363,76.239000000000004,79.09,81.941999999999993,84.793999999999997,87.644999999999996,90.497,93.349000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,629,1,84.824299999999994,0.033640000000000003,76.263999999999996,79.117000000000004,81.971000000000004,84.823999999999998,87.677999999999997,90.531000000000006,93.385000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,630,1,84.854900000000001,0.033649999999999999,76.289000000000001,79.144000000000005,82,84.855000000000004,87.71,90.566000000000003,93.421000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,631,1,84.885499999999993,0.033669999999999999,76.311000000000007,79.168999999999997,82.027000000000001,84.885999999999996,87.744,90.602000000000004,93.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,632,1,84.915999999999997,0.033680000000000002,76.335999999999999,79.195999999999998,82.055999999999997,84.915999999999997,87.775999999999996,90.635999999999996,93.495999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,633,1,84.9465,0.033689999999999998,76.361000000000004,79.222999999999999,82.084999999999994,84.945999999999998,87.808000000000007,90.67,93.531999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,634,1,84.977000000000004,0.033700000000000001,76.385999999999996,79.25,82.113,84.977000000000004,87.840999999999994,90.703999999999994,93.567999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,635,1,85.007499999999993,0.033709999999999997,76.411000000000001,79.275999999999996,82.141999999999996,85.007999999999996,87.873000000000005,90.739000000000004,93.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,636,1,85.037899999999993,0.03372,76.435000000000002,79.302999999999997,82.17,85.037999999999997,87.905000000000001,90.772999999999996,93.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,637,1,85.068299999999994,0.033730000000000003,76.459999999999994,79.33,82.198999999999998,85.067999999999998,87.938000000000002,90.807000000000002,93.676000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,638,1,85.098699999999994,0.033739999999999999,76.484999999999999,79.355999999999995,82.227000000000004,85.099000000000004,87.97,90.840999999999994,93.712000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,639,1,85.129099999999994,0.033750000000000002,76.510000000000005,79.382999999999996,82.256,85.129000000000005,88.001999999999995,90.875,93.748000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,640,1,85.159400000000005,0.033770000000000001,76.531999999999996,79.408000000000001,82.284000000000006,85.159000000000006,88.034999999999997,90.911000000000001,93.787000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,641,1,85.189700000000002,0.033779999999999998,76.557000000000002,79.433999999999997,82.311999999999998,85.19,88.066999999999993,90.944999999999993,93.822999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,642,1,85.22,0.033790000000000001,76.581000000000003,79.460999999999999,82.34,85.22,88.1,90.978999999999999,93.858999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,643,1,85.250299999999996,0.033799999999999997,76.605999999999995,79.486999999999995,82.369,85.25,88.132000000000005,91.013000000000005,93.894999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,644,1,85.280500000000004,0.03381,76.63,79.513999999999996,82.397000000000006,85.28,88.164000000000001,91.046999999999997,93.930999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,645,1,85.3108,0.033820000000000003,76.655000000000001,79.540000000000006,82.426000000000002,85.311000000000007,88.195999999999998,91.081000000000003,93.965999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,646,1,85.340999999999994,0.033829999999999999,76.680000000000007,79.566999999999993,82.453999999999994,85.340999999999994,88.227999999999994,91.114999999999995,94.001999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,647,1,85.371099999999998,0.033840000000000002,76.703999999999994,79.593000000000004,82.481999999999999,85.370999999999995,88.26,91.149000000000001,94.037999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,648,1,85.401300000000006,0.033849999999999998,76.728999999999999,79.62,82.51,85.400999999999996,88.292000000000002,91.183000000000007,94.073999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,649,1,85.431399999999996,0.033869999999999997,76.751000000000005,79.644000000000005,82.537999999999997,85.430999999999997,88.325000000000003,91.218999999999994,94.111999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,650,1,85.461500000000001,0.03388,76.775000000000006,79.671000000000006,82.566000000000003,85.462000000000003,88.356999999999999,91.251999999999995,94.147999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,651,1,85.491600000000005,0.033890000000000003,76.8,79.697000000000003,82.593999999999994,85.492000000000004,88.388999999999996,91.286000000000001,94.183999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,652,1,85.521699999999996,0.0339,76.823999999999998,79.722999999999999,82.623000000000005,85.522000000000006,88.421000000000006,91.32,94.218999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,653,1,85.551699999999997,0.033910000000000003,76.849000000000004,79.75,82.650999999999996,85.552000000000007,88.453000000000003,91.353999999999999,94.254999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,654,1,85.581699999999998,0.033919999999999999,76.873000000000005,79.775999999999996,82.679000000000002,85.581999999999994,88.484999999999999,91.388000000000005,94.29 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,655,1,85.611699999999999,0.033930000000000002,76.897000000000006,79.802000000000007,82.706999999999994,85.611999999999995,88.516999999999996,91.421000000000006,94.325999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,656,1,85.6417,0.033939999999999998,76.921999999999997,79.828000000000003,82.734999999999999,85.641999999999996,88.548000000000002,91.454999999999998,94.361999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,657,1,85.671599999999998,0.033959999999999997,76.942999999999998,79.852999999999994,82.762,85.671999999999997,88.581000000000003,91.49,94.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,658,1,85.701499999999996,0.03397,76.968000000000004,79.879000000000005,82.79,85.701999999999998,88.613,91.524000000000001,94.435000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,659,1,85.731399999999994,0.033980000000000003,76.992000000000004,79.905000000000001,82.817999999999998,85.730999999999995,88.644999999999996,91.558000000000007,94.471000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,660,1,85.761300000000006,0.033989999999999999,77.016000000000005,79.930999999999997,82.846000000000004,85.760999999999996,88.676000000000002,91.590999999999994,94.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,661,1,85.791200000000003,0.034000000000000002,77.040000000000006,79.956999999999994,82.873999999999995,85.790999999999997,88.707999999999998,91.625,94.542000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,662,1,85.820999999999998,0.034009999999999999,77.064999999999998,79.983000000000004,82.902000000000001,85.820999999999998,88.74,91.659000000000006,94.576999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,663,1,85.850800000000007,0.034020000000000002,77.088999999999999,80.010000000000005,82.93,85.850999999999999,88.771000000000001,91.691999999999993,94.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,664,1,85.880600000000001,0.034040000000000001,77.11,80.034000000000006,82.956999999999994,85.881,88.804000000000002,91.727000000000004,94.650999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,665,1,85.910399999999996,0.034049999999999997,77.135000000000005,80.06,82.984999999999999,85.91,88.835999999999999,91.760999999999996,94.686000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,666,1,85.940100000000001,0.03406,77.159000000000006,80.085999999999999,83.013000000000005,85.94,88.867000000000004,91.793999999999997,94.721000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,667,1,85.969800000000006,0.034070000000000003,77.183000000000007,80.111999999999995,83.040999999999997,85.97,88.899000000000001,91.828000000000003,94.757000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,668,1,85.999499999999998,0.034079999999999999,77.206999999999994,80.138000000000005,83.069000000000003,86,88.93,91.861000000000004,94.792000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,669,1,86.029200000000003,0.034090000000000002,77.230999999999995,80.164000000000001,83.096000000000004,86.028999999999996,88.962000000000003,91.894999999999996,94.826999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,670,1,86.058899999999994,0.034099999999999998,77.254999999999995,80.19,83.123999999999995,86.058999999999997,88.994,91.927999999999997,94.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,671,1,86.088499999999996,0.034110000000000001,77.278999999999996,80.215999999999994,83.152000000000001,86.087999999999994,89.025000000000006,91.960999999999999,94.897999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,672,1,86.118099999999998,0.034130000000000001,77.3,80.239999999999995,83.179000000000002,86.117999999999995,89.057000000000002,91.997,94.936000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,673,1,86.1477,0.034139999999999997,77.323999999999998,80.266000000000005,83.206999999999994,86.147999999999996,89.088999999999999,92.03,94.971000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,674,1,86.177300000000002,0.03415,77.347999999999999,80.290999999999997,83.233999999999995,86.177000000000007,89.12,92.063000000000002,95.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,675,1,86.206800000000001,0.034160000000000003,77.372,80.316999999999993,83.262,86.206999999999994,89.152000000000001,92.096000000000004,95.040999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,676,1,86.2363,0.034169999999999999,77.396000000000001,80.343000000000004,83.29,86.236000000000004,89.183000000000007,92.13,95.075999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,677,1,86.265900000000002,0.034180000000000002,77.42,80.369,83.316999999999993,86.266000000000005,89.213999999999999,92.162999999999997,95.111999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,678,1,86.295400000000001,0.034189999999999998,77.444000000000003,80.394999999999996,83.344999999999999,86.295000000000002,89.245999999999995,92.195999999999998,95.147000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,679,1,86.324799999999996,0.034209999999999997,77.465000000000003,80.418000000000006,83.372,86.325000000000003,89.278000000000006,92.230999999999995,95.183999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,680,1,86.354299999999995,0.03422,77.489000000000004,80.444000000000003,83.399000000000001,86.353999999999999,89.308999999999997,92.263999999999996,95.218999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,681,1,86.383700000000005,0.034229999999999997,77.513000000000005,80.47,83.427000000000007,86.384,89.340999999999994,92.298000000000002,95.254000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,682,1,86.4131,0.03424,77.537000000000006,80.495999999999995,83.453999999999994,86.412999999999997,89.372,92.331000000000003,95.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,683,1,86.442499999999995,0.034250000000000003,77.561000000000007,80.521000000000001,83.481999999999999,86.441999999999993,89.403000000000006,92.364000000000004,95.323999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,684,1,86.471900000000005,0.034259999999999999,77.584000000000003,80.546999999999997,83.509,86.471999999999994,89.433999999999997,92.397000000000006,95.358999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,685,1,86.501199999999997,0.034270000000000002,77.608000000000004,80.572000000000003,83.537000000000006,86.501000000000005,89.465999999999994,92.43,95.394000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,686,1,86.530600000000007,0.034290000000000001,77.629000000000005,80.596000000000004,83.563000000000002,86.531000000000006,89.498000000000005,92.465000000000003,95.432000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,687,1,86.559899999999999,0.034299999999999997,77.653000000000006,80.622,83.590999999999994,86.56,89.528999999999996,92.498000000000005,95.466999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,688,1,86.589200000000005,0.03431,77.677000000000007,80.647000000000006,83.617999999999995,86.588999999999999,89.56,92.531000000000006,95.501999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,689,1,86.618399999999994,0.034320000000000003,77.7,80.673000000000002,83.646000000000001,86.617999999999995,89.590999999999994,92.563999999999993,95.537000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,690,1,86.6477,0.034329999999999999,77.724000000000004,80.697999999999993,83.673000000000002,86.647999999999996,89.622,92.596999999999994,95.572000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,691,1,86.676900000000003,0.034340000000000002,77.747,80.724000000000004,83.7,86.677000000000007,89.653000000000006,92.63,95.605999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,692,1,86.706100000000006,0.034349999999999999,77.771000000000001,80.748999999999995,83.727999999999994,86.706000000000003,89.683999999999997,92.662999999999997,95.641000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,693,1,86.735299999999995,0.034369999999999998,77.792000000000002,80.772999999999996,83.754000000000005,86.734999999999999,89.715999999999994,92.697000000000003,95.679000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,694,1,86.764499999999998,0.034380000000000001,77.816000000000003,80.799000000000007,83.781999999999996,86.763999999999996,89.747,92.73,95.712999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,695,1,86.793700000000001,0.034389999999999997,77.838999999999999,80.823999999999998,83.808999999999997,86.793999999999997,89.778999999999996,92.763000000000005,95.748000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,696,1,86.822800000000001,0.0344,77.863,80.849000000000004,83.835999999999999,86.822999999999993,89.81,92.796000000000006,95.783000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,697,1,86.851900000000001,0.034410000000000003,77.885999999999996,80.875,83.863,86.852000000000004,89.84,92.828999999999994,95.817999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,698,1,86.881,0.034419999999999999,77.91,80.900000000000006,83.891000000000005,86.881,89.870999999999995,92.861999999999995,95.852000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,699,1,86.9101,0.034430000000000002,77.933000000000007,80.924999999999997,83.918000000000006,86.91,89.902000000000001,92.894999999999996,95.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,700,1,86.9392,0.034450000000000001,77.953999999999994,80.948999999999998,83.944000000000003,86.938999999999993,89.933999999999997,92.929000000000002,95.924000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,701,1,86.968199999999996,0.034459999999999998,77.977000000000004,80.974000000000004,83.971000000000004,86.968000000000004,89.965000000000003,92.962000000000003,95.959000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,702,1,86.997200000000007,0.034470000000000001,78.001000000000005,81,83.998000000000005,86.997,89.995999999999995,92.995000000000005,95.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,703,1,87.026200000000003,0.034479999999999997,78.024000000000001,81.025000000000006,84.025999999999996,87.025999999999996,90.027000000000001,93.028000000000006,96.028000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,704,1,87.055199999999999,0.03449,78.048000000000002,81.05,84.052999999999997,87.055000000000007,90.058000000000007,93.06,96.063000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,705,1,87.084199999999996,0.034500000000000003,78.070999999999998,81.075000000000003,84.08,87.084000000000003,90.088999999999999,93.093000000000004,96.096999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,706,1,87.113100000000003,0.034509999999999999,78.093999999999994,81.100999999999999,84.106999999999999,87.113,90.119,93.126000000000005,96.132000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,707,1,87.141999999999996,0.034529999999999998,78.114999999999995,81.123999999999995,84.132999999999996,87.141999999999996,90.150999999999996,93.16,96.168999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,708,1,87.170900000000003,0.034540000000000001,78.138000000000005,81.149000000000001,84.16,87.171000000000006,90.182000000000002,93.192999999999998,96.203999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,709,1,87.199799999999996,0.034549999999999997,78.162000000000006,81.174000000000007,84.186999999999998,87.2,90.212999999999994,93.224999999999994,96.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,710,1,87.228700000000003,0.03456,78.185000000000002,81.198999999999998,84.213999999999999,87.228999999999999,90.242999999999995,93.257999999999996,96.272999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,711,1,87.257499999999993,0.034569999999999997,78.207999999999998,81.224999999999994,84.241,87.257999999999996,90.274000000000001,93.29,96.307000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,712,1,87.286299999999997,0.03458,78.230999999999995,81.25,84.268000000000001,87.286000000000001,90.305000000000007,93.322999999999993,96.340999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,713,1,87.315100000000001,0.034590000000000003,78.254000000000005,81.275000000000006,84.295000000000002,87.314999999999998,90.334999999999994,93.355999999999995,96.376000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,714,1,87.343900000000005,0.034610000000000002,78.275000000000006,81.298000000000002,84.320999999999998,87.343999999999994,90.367000000000004,93.39,96.412999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,715,1,87.372699999999995,0.034619999999999998,78.298000000000002,81.322999999999993,84.347999999999999,87.373000000000005,90.397999999999996,93.421999999999997,96.447000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,716,1,87.401399999999995,0.034630000000000001,78.320999999999998,81.347999999999999,84.375,87.400999999999996,90.427999999999997,93.454999999999998,96.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,717,1,87.430199999999999,0.034639999999999997,78.343999999999994,81.373000000000005,84.402000000000001,87.43,90.459000000000003,93.486999999999995,96.516000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,718,1,87.4589,0.03465,78.367999999999995,81.397999999999996,84.427999999999997,87.459000000000003,90.489000000000004,93.52,96.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,719,1,87.4876,0.034660000000000003,78.391000000000005,81.423000000000002,84.454999999999998,87.488,90.52,93.552000000000007,96.584999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,720,1,87.516199999999998,0.034669999999999999,78.414000000000001,81.447999999999993,84.481999999999999,87.516000000000005,90.55,93.584999999999994,96.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,721,1,87.544899999999998,0.034689999999999999,78.433999999999997,81.471000000000004,84.507999999999996,87.545000000000002,90.581999999999994,93.619,96.656000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,722,1,87.573499999999996,0.034700000000000002,78.456999999999994,81.495999999999995,84.534999999999997,87.573999999999998,90.611999999999995,93.650999999999996,96.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,723,1,87.602099999999993,0.034709999999999998,78.48,81.521000000000001,84.561000000000007,87.602000000000004,90.643000000000001,93.683000000000007,96.724000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,724,1,87.630700000000004,0.034720000000000001,78.503,81.546000000000006,84.587999999999994,87.631,90.673000000000002,93.715999999999994,96.757999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,725,1,87.659300000000002,0.034729999999999997,78.525999999999996,81.569999999999993,84.614999999999995,87.659000000000006,90.703999999999994,93.748000000000005,96.793000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,726,1,87.687799999999996,0.03474,78.549000000000007,81.594999999999999,84.641999999999996,87.688000000000002,90.733999999999995,93.78,96.826999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,727,1,87.716399999999993,0.034750000000000003,78.572000000000003,81.62,84.668000000000006,87.715999999999994,90.765000000000001,93.813000000000002,96.861000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,728,1,87.744900000000001,0.034770000000000002,78.591999999999999,81.643000000000001,84.694000000000003,87.745000000000005,90.796000000000006,93.846999999999994,96.897999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,729,1,87.773399999999995,0.034779999999999998,78.614999999999995,81.668000000000006,84.721000000000004,87.772999999999996,90.825999999999993,93.879000000000005,96.932000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,730,1,87.8018,0.034790000000000001,78.638000000000005,81.692999999999998,84.747,87.802000000000007,90.855999999999995,93.911000000000001,96.965999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,731,1,87.130300000000005,0.03508,77.960999999999999,81.016999999999996,84.073999999999998,87.13,90.186999999999998,93.242999999999995,96.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,732,1,87.158699999999996,0.035090000000000003,77.983999999999995,81.042000000000002,84.1,87.159000000000006,90.216999999999999,93.275000000000006,96.334000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,733,1,87.187100000000001,0.035099999999999999,78.006,81.066999999999993,84.126999999999995,87.186999999999998,90.247,93.308000000000007,96.367999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,734,1,87.215500000000006,0.035110000000000002,78.028999999999996,81.090999999999994,84.153000000000006,87.215999999999994,90.278000000000006,93.34,96.402000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,735,1,87.243899999999996,0.035130000000000002,78.049000000000007,81.114000000000004,84.179000000000002,87.244,90.308999999999997,93.373999999999995,96.438999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,736,1,87.272199999999998,0.035139999999999998,78.072000000000003,81.138999999999996,84.204999999999998,87.272000000000006,90.338999999999999,93.406000000000006,96.471999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,737,1,87.300600000000003,0.035150000000000001,78.094999999999999,81.162999999999997,84.231999999999999,87.301000000000002,90.369,93.438000000000002,96.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,738,1,87.328900000000004,0.035159999999999997,78.117000000000004,81.188000000000002,84.257999999999996,87.328999999999994,90.399000000000001,93.47,96.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,739,1,87.357100000000003,0.03517,78.14,81.212000000000003,84.284999999999997,87.356999999999999,90.429000000000002,93.501999999999995,96.573999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,740,1,87.385400000000004,0.035180000000000003,78.162999999999997,81.236999999999995,84.311000000000007,87.385000000000005,90.46,93.534000000000006,96.608000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,741,1,87.413600000000002,0.035189999999999999,78.185000000000002,81.260999999999996,84.337999999999994,87.414000000000001,90.49,93.566000000000003,96.641999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,742,1,87.441900000000004,0.035209999999999998,78.204999999999998,81.284000000000006,84.363,87.441999999999993,90.521000000000001,93.6,96.677999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,743,1,87.470100000000002,0.035220000000000001,78.227999999999994,81.308999999999997,84.388999999999996,87.47,90.551000000000002,93.631,96.712000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,744,1,87.498199999999997,0.035229999999999997,78.251000000000005,81.332999999999998,84.415999999999997,87.498000000000005,90.581000000000003,93.662999999999997,96.745999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,745,1,87.526399999999995,0.03524,78.272999999999996,81.358000000000004,84.441999999999993,87.525999999999996,90.611000000000004,93.694999999999993,96.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,746,1,87.554500000000004,0.035249999999999997,78.296000000000006,81.382000000000005,84.468000000000004,87.554000000000002,90.641000000000005,93.727000000000004,96.813000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,747,1,87.582599999999999,0.03526,78.317999999999998,81.406000000000006,84.494,87.582999999999998,90.671000000000006,93.759,96.846999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,748,1,87.610699999999994,0.035270000000000003,78.340999999999994,81.430999999999997,84.521000000000001,87.611000000000004,90.700999999999993,93.790999999999997,96.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,749,1,87.638800000000003,0.035279999999999999,78.363,81.454999999999998,84.546999999999997,87.638999999999996,90.730999999999995,93.822999999999993,96.914000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,750,1,87.666799999999995,0.035299999999999998,78.382999999999996,81.477999999999994,84.572000000000003,87.667000000000002,90.760999999999996,93.855999999999995,96.950999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,751,1,87.694800000000001,0.035310000000000001,78.405000000000001,81.501999999999995,84.597999999999999,87.694999999999993,90.790999999999997,93.888000000000005,96.983999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,752,1,87.722800000000007,0.035319999999999997,78.427999999999997,81.525999999999996,84.623999999999995,87.722999999999999,90.820999999999998,93.92,97.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,753,1,87.750799999999998,0.03533,78.45,81.55,84.650999999999996,87.751000000000005,90.850999999999999,93.950999999999993,97.052000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,754,1,87.778800000000004,0.035340000000000003,78.471999999999994,81.575000000000003,84.677000000000007,87.778999999999996,90.881,93.983000000000004,97.084999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,755,1,87.806700000000006,0.035349999999999999,78.495000000000005,81.599000000000004,84.703000000000003,87.807000000000002,90.911000000000001,94.015000000000001,97.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,756,1,87.834599999999995,0.035360000000000003,78.516999999999996,81.623000000000005,84.728999999999999,87.834999999999994,90.94,94.046000000000006,97.152000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,757,1,87.862499999999997,0.035380000000000002,78.537000000000006,81.644999999999996,84.754000000000005,87.861999999999995,90.971000000000004,94.08,97.188000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,758,1,87.890299999999996,0.035389999999999998,78.558999999999997,81.668999999999997,84.78,87.89,91.001000000000005,94.111000000000004,97.221999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,759,1,87.918099999999995,0.035400000000000001,78.581000000000003,81.692999999999998,84.805999999999997,87.918000000000006,91.03,94.143000000000001,97.254999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,760,1,87.945999999999998,0.035409999999999997,78.602999999999994,81.718000000000004,84.831999999999994,87.945999999999998,91.06,94.174000000000007,97.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,761,1,87.973699999999994,0.03542,78.626000000000005,81.742000000000004,84.858000000000004,87.974000000000004,91.09,94.206000000000003,97.322000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,762,1,88.001499999999993,0.035430000000000003,78.647999999999996,81.766000000000005,84.884,88.001999999999995,91.119,94.236999999999995,97.355000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,763,1,88.029200000000003,0.035439999999999999,78.67,81.790000000000006,84.909000000000006,88.028999999999996,91.149000000000001,94.269000000000005,97.388000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,764,1,88.057000000000002,0.035450000000000002,78.691999999999993,81.813999999999993,84.935000000000002,88.057000000000002,91.179000000000002,94.3,97.421999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,765,1,88.084599999999995,0.035470000000000002,78.712000000000003,81.835999999999999,84.96,88.084999999999994,91.209000000000003,94.332999999999998,97.457999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,766,1,88.112300000000005,0.035479999999999998,78.733999999999995,81.86,84.986000000000004,88.111999999999995,91.239000000000004,94.364999999999995,97.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,767,1,88.14,0.035490000000000001,78.756,81.884,85.012,88.14,91.268000000000001,94.396000000000001,97.524000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,768,1,88.167599999999993,0.035499999999999997,78.778000000000006,81.908000000000001,85.037999999999997,88.168000000000006,91.298000000000002,94.427000000000007,97.557000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,769,1,88.1952,0.03551,78.8,81.932000000000002,85.063000000000002,88.194999999999993,91.326999999999998,94.459000000000003,97.590999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,770,1,88.222800000000007,0.035520000000000003,78.822000000000003,81.954999999999998,85.088999999999999,88.222999999999999,91.355999999999995,94.49,97.623999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,771,1,88.250299999999996,0.035529999999999999,78.843999999999994,81.978999999999999,85.114999999999995,88.25,91.385999999999996,94.521000000000001,97.656999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,772,1,88.277799999999999,0.035549999999999998,78.863,82.001000000000005,85.14,88.278000000000006,91.415999999999997,94.554000000000002,97.692999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,773,1,88.305300000000003,0.035560000000000001,78.885000000000005,82.025000000000006,85.165000000000006,88.305000000000007,91.444999999999993,94.585999999999999,97.725999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,774,1,88.332800000000006,0.035569999999999997,78.906999999999996,82.049000000000007,85.191000000000003,88.332999999999998,91.474999999999994,94.617000000000004,97.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,775,1,88.360299999999995,0.035580000000000001,78.929000000000002,82.072999999999993,85.215999999999994,88.36,91.504000000000005,94.647999999999996,97.792000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,776,1,88.387699999999995,0.035589999999999997,78.950999999999993,82.096000000000004,85.242000000000004,88.388000000000005,91.533000000000001,94.679000000000002,97.825000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,777,1,88.415099999999995,0.0356,78.971999999999994,82.12,85.268000000000001,88.415000000000006,91.563000000000002,94.71,97.858000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,778,1,88.442499999999995,0.035610000000000003,78.994,82.144000000000005,85.293000000000006,88.441999999999993,91.591999999999999,94.741,97.891000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,779,1,88.469899999999996,0.035619999999999999,79.016000000000005,82.167000000000002,85.319000000000003,88.47,91.620999999999995,94.772000000000006,97.924000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,780,1,88.497200000000007,0.035639999999999998,79.034999999999997,82.188999999999993,85.343000000000004,88.497,91.650999999999996,94.805000000000007,97.959000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,781,1,88.524500000000003,0.035650000000000001,79.057000000000002,82.212999999999994,85.369,88.524000000000001,91.68,94.835999999999999,97.992000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,782,1,88.5518,0.035659999999999997,79.078999999999994,82.236000000000004,85.394000000000005,88.552000000000007,91.71,94.867000000000004,98.025000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,783,1,88.579099999999997,0.03567,79.099999999999994,82.26,85.418999999999997,88.578999999999994,91.739000000000004,94.897999999999996,98.058000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,784,1,88.606300000000005,0.035680000000000003,79.122,82.283000000000001,85.444999999999993,88.605999999999995,91.768000000000001,94.929000000000002,98.090999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,785,1,88.633499999999998,0.03569,79.144000000000005,82.307000000000002,85.47,88.634,91.796999999999997,94.96,98.123000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,786,1,88.660700000000006,0.035700000000000003,79.165000000000006,82.33,85.495999999999995,88.661000000000001,91.825999999999993,94.991,98.156000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,787,1,88.687899999999999,0.035709999999999999,79.186999999999998,82.353999999999999,85.521000000000001,88.688000000000002,91.855000000000004,95.022000000000006,98.188999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,788,1,88.715000000000003,0.035720000000000002,79.207999999999998,82.376999999999995,85.546000000000006,88.715000000000003,91.884,95.052999999999997,98.221999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,789,1,88.742199999999997,0.035740000000000001,79.227000000000004,82.399000000000001,85.570999999999998,88.742000000000004,91.914000000000001,95.084999999999994,98.257000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,790,1,88.769300000000001,0.035749999999999997,79.248999999999995,82.421999999999997,85.596000000000004,88.769000000000005,91.942999999999998,95.116,98.29 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,791,1,88.796400000000006,0.03576,79.27,82.445999999999998,85.620999999999995,88.796000000000006,91.971999999999994,95.147000000000006,98.322000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,792,1,88.823400000000007,0.035770000000000003,79.292000000000002,82.468999999999994,85.646000000000001,88.822999999999993,92.001000000000005,95.177999999999997,98.355000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,793,1,88.850399999999993,0.035779999999999999,79.313000000000002,82.492000000000004,85.671000000000006,88.85,92.028999999999996,95.209000000000003,98.388000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,794,1,88.877499999999998,0.035790000000000002,79.334999999999994,82.516000000000005,85.697000000000003,88.878,92.058000000000007,95.239000000000004,98.42 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,795,1,88.904399999999995,0.035799999999999998,79.355999999999995,82.539000000000001,85.721999999999994,88.903999999999996,92.087000000000003,95.27,98.453000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,796,1,88.931399999999996,0.035810000000000002,79.376999999999995,82.561999999999998,85.747,88.930999999999997,92.116,95.301000000000002,98.484999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,797,1,88.958399999999997,0.035819999999999998,79.399000000000001,82.584999999999994,85.772000000000006,88.957999999999998,92.144999999999996,95.331000000000003,98.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,798,1,88.985299999999995,0.035839999999999997,79.418000000000006,82.606999999999999,85.796000000000006,88.984999999999999,92.174999999999997,95.364000000000004,98.552999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,799,1,89.012200000000007,0.03585,79.438999999999993,82.63,85.820999999999998,89.012,92.203000000000003,95.394000000000005,98.584999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,800,1,89.039100000000005,0.035860000000000003,79.459999999999994,82.653000000000006,85.846000000000004,89.039000000000001,92.231999999999999,95.424999999999997,98.617999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,801,1,89.065899999999999,0.035869999999999999,79.481999999999999,82.676000000000002,85.870999999999995,89.066000000000003,92.260999999999996,95.454999999999998,98.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,802,1,89.092699999999994,0.035880000000000002,79.503,82.698999999999998,85.896000000000001,89.093000000000004,92.289000000000001,95.486000000000004,98.683000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,803,1,89.119500000000002,0.035889999999999998,79.524000000000001,82.722999999999999,85.921000000000006,89.12,92.317999999999998,95.516000000000005,98.715000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,804,1,89.146299999999997,0.035900000000000001,79.545000000000002,82.745999999999995,85.945999999999998,89.146000000000001,92.346999999999994,95.546999999999997,98.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,805,1,89.173100000000005,0.035909999999999997,79.566000000000003,82.769000000000005,85.971000000000004,89.173000000000002,92.375,95.578000000000003,98.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,806,1,89.199799999999996,0.035920000000000001,79.587999999999994,82.792000000000002,85.995999999999995,89.2,92.403999999999996,95.608000000000004,98.811999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,807,1,89.226600000000005,0.035929999999999997,79.608999999999995,82.814999999999998,86.021000000000001,89.227000000000004,92.433000000000007,95.638000000000005,98.843999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,808,1,89.253299999999996,0.035950000000000003,79.626999999999995,82.835999999999999,86.045000000000002,89.253,92.462000000000003,95.671000000000006,98.879000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,809,1,89.279899999999998,0.035959999999999999,79.647999999999996,82.858999999999995,86.069000000000003,89.28,92.49,95.700999999999993,98.911000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,810,1,89.306600000000003,0.035970000000000002,79.67,82.882000000000005,86.093999999999994,89.307000000000002,92.519000000000005,95.730999999999995,98.944000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,811,1,89.333200000000005,0.035979999999999998,79.691000000000003,82.905000000000001,86.119,89.332999999999998,92.546999999999997,95.762,98.975999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,812,1,89.359800000000007,0.035990000000000001,79.712000000000003,82.927999999999997,86.144000000000005,89.36,92.575999999999993,95.792000000000002,99.007999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,813,1,89.386399999999995,0.035999999999999997,79.733000000000004,82.950999999999993,86.168000000000006,89.385999999999996,92.603999999999999,95.822000000000003,99.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,814,1,89.412999999999997,0.03601,79.754000000000005,82.972999999999999,86.192999999999998,89.412999999999997,92.632999999999996,95.852999999999994,99.072000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,815,1,89.439499999999995,0.036020000000000003,79.775000000000006,82.995999999999995,86.218000000000004,89.44,92.661000000000001,95.882999999999996,99.103999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,816,1,89.465999999999994,0.03603,79.796000000000006,83.019000000000005,86.242999999999995,89.465999999999994,92.688999999999993,95.912999999999997,99.135999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,817,1,89.492500000000007,0.036040000000000003,79.816999999999993,83.042000000000002,86.266999999999996,89.492000000000004,92.718000000000004,95.942999999999998,99.168000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,818,1,89.519000000000005,0.036049999999999999,79.837999999999994,83.064999999999998,86.292000000000002,89.519000000000005,92.745999999999995,95.972999999999999,99.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,819,1,89.545500000000004,0.036069999999999998,79.855999999999995,83.085999999999999,86.316000000000003,89.546000000000006,92.775000000000006,96.004999999999995,99.234999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,820,1,89.571899999999999,0.036080000000000001,79.876999999999995,83.108000000000004,86.34,89.572000000000003,92.804000000000002,96.034999999999997,99.266999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,821,1,89.598299999999995,0.036089999999999997,79.897000000000006,83.131,86.364999999999995,89.597999999999999,92.831999999999994,96.066000000000003,99.299000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,822,1,89.624700000000004,0.0361,79.918000000000006,83.153999999999996,86.388999999999996,89.625,92.86,96.096000000000004,99.331000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,823,1,89.650999999999996,0.036110000000000003,79.938999999999993,83.176000000000002,86.414000000000001,89.650999999999996,92.888000000000005,96.126000000000005,99.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,824,1,89.677400000000006,0.036119999999999999,79.959999999999994,83.198999999999998,86.438000000000002,89.677000000000007,92.917000000000002,96.156000000000006,99.394999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,825,1,89.703699999999998,0.036130000000000002,79.980999999999995,83.221999999999994,86.462999999999994,89.703999999999994,92.944999999999993,96.186000000000007,99.427000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,826,1,89.73,0.036139999999999999,80.001000000000005,83.244,86.486999999999995,89.73,92.972999999999999,96.215999999999994,99.459000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,827,1,89.756299999999996,0.036150000000000002,80.022000000000006,83.266999999999996,86.512,89.756,93.001000000000005,96.245999999999995,99.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,828,1,89.782499999999999,0.036159999999999998,80.043000000000006,83.289000000000001,86.536000000000001,89.781999999999996,93.028999999999996,96.275999999999996,99.522000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,829,1,89.808700000000002,0.036170000000000001,80.063999999999993,83.311999999999998,86.56,89.808999999999997,93.057000000000002,96.305000000000007,99.554000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,830,1,89.834900000000005,0.036179999999999997,80.084000000000003,83.334000000000003,86.584999999999994,89.834999999999994,93.084999999999994,96.334999999999994,99.585999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,831,1,89.861099999999993,0.036200000000000003,80.102000000000004,83.355000000000004,86.608000000000004,89.861000000000004,93.114000000000004,96.367000000000004,99.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,832,1,89.887299999999996,0.036209999999999999,80.123000000000005,83.378,86.632000000000005,89.887,93.141999999999996,96.397000000000006,99.652000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,833,1,89.913399999999996,0.036220000000000002,80.143000000000001,83.4,86.656999999999996,89.912999999999997,93.17,96.427000000000007,99.683000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,834,1,89.939499999999995,0.036229999999999998,80.164000000000001,83.421999999999997,86.680999999999997,89.94,93.197999999999993,96.456999999999994,99.715000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,835,1,89.965599999999995,0.036240000000000001,80.185000000000002,83.444999999999993,86.704999999999998,89.965999999999994,93.225999999999999,96.486000000000004,99.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,836,1,89.991699999999994,0.036249999999999998,80.204999999999998,83.466999999999999,86.73,89.992000000000004,93.254000000000005,96.516000000000005,99.778000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,837,1,90.017700000000005,0.036260000000000001,80.225999999999999,83.49,86.754000000000005,90.018000000000001,93.281999999999996,96.546000000000006,99.81 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,838,1,90.043700000000001,0.036269999999999997,80.245999999999995,83.512,86.778000000000006,90.043999999999997,93.31,96.575000000000003,99.840999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,839,1,90.069699999999997,0.03628,80.266999999999996,83.534000000000006,86.802000000000007,90.07,93.337000000000003,96.605000000000004,99.873000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,840,1,90.095699999999994,0.036290000000000003,80.287000000000006,83.557000000000002,86.825999999999993,90.096000000000004,93.364999999999995,96.635000000000005,99.903999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,841,1,90.121600000000001,0.036299999999999999,80.307000000000002,83.578999999999994,86.85,90.122,93.393000000000001,96.664000000000001,99.936000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,842,1,90.147599999999997,0.036310000000000002,80.328000000000003,83.600999999999999,86.873999999999995,90.147999999999996,93.421000000000006,96.694000000000003,99.966999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,843,1,90.173500000000004,0.036319999999999998,80.347999999999999,83.623000000000005,86.897999999999996,90.174000000000007,93.448999999999998,96.724000000000004,99.998999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,844,1,90.199399999999997,0.036330000000000001,80.369,83.646000000000001,86.921999999999997,90.198999999999998,93.475999999999999,96.753,100.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,845,1,90.225200000000001,0.036339999999999997,80.388999999999996,83.668000000000006,86.945999999999998,90.224999999999994,93.504000000000005,96.783000000000001,100.062 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,846,1,90.251000000000005,0.036360000000000003,80.406000000000006,83.688000000000002,86.968999999999994,90.251000000000005,93.533000000000001,96.813999999999993,100.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,847,1,90.276899999999998,0.03637,80.427000000000007,83.71,86.994,90.277000000000001,93.56,96.843999999999994,100.127 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,848,1,90.302599999999998,0.036380000000000003,80.447000000000003,83.731999999999999,87.016999999999996,90.302999999999997,93.587999999999994,96.873000000000005,100.158 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,849,1,90.328400000000002,0.036389999999999999,80.466999999999999,83.754000000000005,87.040999999999997,90.328000000000003,93.614999999999995,96.903000000000006,100.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,850,1,90.354100000000003,0.036400000000000002,80.486999999999995,83.775999999999996,87.064999999999998,90.353999999999999,93.643000000000001,96.932000000000002,100.221 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,851,1,90.379900000000006,0.036409999999999998,80.507999999999996,83.798000000000002,87.088999999999999,90.38,93.671000000000006,96.960999999999999,100.252 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,852,1,90.405600000000007,0.036420000000000001,80.528000000000006,83.82,87.113,90.406000000000006,93.697999999999993,96.991,100.283 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,853,1,90.431200000000004,0.036429999999999997,80.548000000000002,83.841999999999999,87.137,90.430999999999997,93.725999999999999,97.02,100.31399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,854,1,90.456900000000005,0.03644,80.567999999999998,83.864000000000004,87.161000000000001,90.456999999999994,93.753,97.049000000000007,100.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,855,1,90.482500000000002,0.036450000000000003,80.587999999999994,83.885999999999996,87.183999999999997,90.481999999999999,93.781000000000006,97.078999999999994,100.377 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,856,1,90.508099999999999,0.036459999999999999,80.608000000000004,83.908000000000001,87.207999999999998,90.507999999999996,93.808000000000007,97.108000000000004,100.408 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,857,1,90.533699999999996,0.036470000000000002,80.628,83.93,87.231999999999999,90.534000000000006,93.834999999999994,97.137,100.43899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,858,1,90.559200000000004,0.036479999999999999,80.647999999999996,83.951999999999998,87.256,90.558999999999997,93.863,97.165999999999997,100.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,859,1,90.584800000000001,0.036490000000000002,80.668000000000006,83.974000000000004,87.278999999999996,90.584999999999994,93.89,97.195999999999998,100.501 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,860,1,90.610299999999995,0.036499999999999998,80.688000000000002,83.995999999999995,87.302999999999997,90.61,93.918000000000006,97.224999999999994,100.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,861,1,90.635800000000003,0.036510000000000001,80.707999999999998,84.018000000000001,87.326999999999998,90.635999999999996,93.944999999999993,97.254000000000005,100.563 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,862,1,90.661199999999994,0.036519999999999997,80.727999999999994,84.039000000000001,87.35,90.661000000000001,93.971999999999994,97.283000000000001,100.59399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,863,1,90.686700000000002,0.03653,80.748000000000005,84.061000000000007,87.373999999999995,90.686999999999998,93.998999999999995,97.311999999999998,100.625 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,864,1,90.712100000000007,0.036540000000000003,80.768000000000001,84.082999999999998,87.397000000000006,90.712000000000003,94.027000000000001,97.340999999999994,100.65600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,865,1,90.737499999999997,0.036549999999999999,80.787999999999997,84.105000000000004,87.421000000000006,90.738,94.054000000000002,97.37,100.687 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,866,1,90.762799999999999,0.036560000000000002,80.808000000000007,84.126000000000005,87.444999999999993,90.763000000000005,94.081000000000003,97.399000000000001,100.718 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,867,1,90.788200000000003,0.036569999999999998,80.828000000000003,84.147999999999996,87.468000000000004,90.787999999999997,94.108000000000004,97.427999999999997,100.749 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,868,1,90.813500000000005,0.036589999999999998,80.844999999999999,84.168000000000006,87.491,90.813999999999993,94.135999999999996,97.459000000000003,100.782 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,869,1,90.838800000000006,0.036600000000000001,80.864999999999995,84.188999999999993,87.513999999999996,90.838999999999999,94.164000000000001,97.488,100.813 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,870,1,90.864099999999993,0.036609999999999997,80.884,84.210999999999999,87.537999999999997,90.864000000000004,94.191000000000003,97.516999999999996,100.84399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,871,1,90.889300000000006,0.03662,80.903999999999996,84.233000000000004,87.561000000000007,90.888999999999996,94.218000000000004,97.546000000000006,100.874 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,872,1,90.914599999999993,0.036630000000000003,80.924000000000007,84.254000000000005,87.584000000000003,90.915000000000006,94.245000000000005,97.575000000000003,100.905 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,873,1,90.939800000000005,0.036639999999999999,80.944000000000003,84.275999999999996,87.608000000000004,90.94,94.272000000000006,97.603999999999999,100.93600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,874,1,90.965000000000003,0.036650000000000002,80.962999999999994,84.296999999999997,87.631,90.965000000000003,94.299000000000007,97.632999999999996,100.967 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,875,1,90.990099999999998,0.036659999999999998,80.983000000000004,84.319000000000003,87.653999999999996,90.99,94.325999999999993,97.661000000000001,100.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,876,1,91.015299999999996,0.036670000000000001,81.003,84.34,87.677999999999997,91.015000000000001,94.352999999999994,97.69,101.02800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,877,1,91.040400000000005,0.036679999999999997,81.022000000000006,84.361999999999995,87.700999999999993,91.04,94.38,97.718999999999994,101.05800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,878,1,91.0655,0.03669,81.042000000000002,84.382999999999996,87.724000000000004,91.066000000000003,94.406999999999996,97.748000000000005,101.089 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,879,1,91.090500000000006,0.036700000000000003,81.061000000000007,84.403999999999996,87.747,91.09,94.433999999999997,97.777000000000001,101.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,880,1,91.115600000000001,0.03671,81.081000000000003,84.426000000000002,87.771000000000001,91.116,94.46,97.805000000000007,101.15 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,881,1,91.140600000000006,0.036720000000000003,81.100999999999999,84.447000000000003,87.793999999999997,91.141000000000005,94.486999999999995,97.834000000000003,101.181 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,882,1,91.165599999999998,0.036729999999999999,81.12,84.468999999999994,87.816999999999993,91.165999999999997,94.513999999999996,97.863,101.211 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,883,1,91.190600000000003,0.036740000000000002,81.14,84.49,87.84,91.191000000000003,94.540999999999997,97.891000000000005,101.242 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,884,1,91.215500000000006,0.036749999999999998,81.159000000000006,84.510999999999996,87.863,91.215999999999994,94.567999999999998,97.92,101.27200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,885,1,91.240499999999997,0.036760000000000001,81.177999999999997,84.531999999999996,87.885999999999996,91.24,94.594999999999999,97.948999999999998,101.303 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,886,1,91.2654,0.036769999999999997,81.197999999999993,84.554000000000002,87.91,91.265000000000001,94.620999999999995,97.977000000000004,101.333 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,887,1,91.290300000000002,0.03678,81.216999999999999,84.575000000000003,87.933000000000007,91.29,94.647999999999996,98.006,101.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,888,1,91.315100000000001,0.036790000000000003,81.236999999999995,84.596000000000004,87.956000000000003,91.314999999999998,94.674999999999997,98.034000000000006,101.39400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,889,1,91.34,0.036799999999999999,81.256,84.617000000000004,87.978999999999999,91.34,94.700999999999993,98.063000000000002,101.42400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,890,1,91.364800000000002,0.036810000000000002,81.275000000000006,84.638999999999996,88.001999999999995,91.364999999999995,94.727999999999994,98.090999999999994,101.45399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,891,1,91.389600000000002,0.036819999999999999,81.295000000000002,84.66,88.025000000000006,91.39,94.754999999999995,98.12,101.48399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,892,1,91.414400000000001,0.036830000000000002,81.313999999999993,84.680999999999997,88.048000000000002,91.414000000000001,94.781000000000006,98.147999999999996,101.515 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,893,1,91.439099999999996,0.036839999999999998,81.332999999999998,84.701999999999998,88.07,91.438999999999993,94.808000000000007,98.176000000000002,101.545 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,894,1,91.463899999999995,0.036850000000000001,81.352999999999994,84.722999999999999,88.093000000000004,91.463999999999999,94.834000000000003,98.204999999999998,101.575 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,895,1,91.488600000000005,0.036859999999999997,81.372,84.744,88.116,91.489000000000004,94.861000000000004,98.233000000000004,101.605 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,896,1,91.513300000000001,0.03687,81.391000000000005,84.765000000000001,88.138999999999996,91.513000000000005,94.887,98.260999999999996,101.636 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,897,1,91.537899999999993,0.036880000000000003,81.41,84.786000000000001,88.162000000000006,91.537999999999997,94.914000000000001,98.29,101.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,898,1,91.562600000000003,0.036889999999999999,81.429000000000002,84.807000000000002,88.185000000000002,91.563000000000002,94.94,98.317999999999998,101.696 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,899,1,91.587199999999996,0.036900000000000002,81.447999999999993,84.828000000000003,88.207999999999998,91.587000000000003,94.966999999999999,98.346000000000004,101.726 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,900,1,91.611800000000002,0.036909999999999998,81.468000000000004,84.849000000000004,88.23,91.611999999999995,94.992999999999995,98.375,101.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,901,1,91.636399999999995,0.036920000000000001,81.486999999999995,84.87,88.253,91.635999999999996,95.02,98.403000000000006,101.786 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,902,1,91.660899999999998,0.036929999999999998,81.506,84.891000000000005,88.275999999999996,91.661000000000001,95.046000000000006,98.430999999999997,101.816 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,903,1,91.685500000000005,0.036940000000000001,81.525000000000006,84.912000000000006,88.299000000000007,91.686000000000007,95.072000000000003,98.459000000000003,101.846 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,904,1,91.71,0.036949999999999997,81.543999999999997,84.933000000000007,88.320999999999998,91.71,95.099000000000004,98.486999999999995,101.876 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,905,1,91.734499999999997,0.03696,81.563000000000002,84.953000000000003,88.343999999999994,91.733999999999995,95.125,98.516000000000005,101.90600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,906,1,91.759,0.036970000000000003,81.581999999999994,84.974000000000004,88.367000000000004,91.759,95.150999999999996,98.543999999999997,101.93600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,907,1,91.7834,0.036979999999999999,81.600999999999999,84.995000000000005,88.388999999999996,91.783000000000001,95.177999999999997,98.572000000000003,101.96599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,908,1,91.8078,0.036990000000000002,81.62,85.016000000000005,88.412000000000006,91.808000000000007,95.203999999999994,98.6,101.996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,909,1,91.832300000000004,0.036999999999999998,81.638999999999996,85.037000000000006,88.435000000000002,91.831999999999994,95.23,98.628,102.026 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,910,1,91.8566,0.037010000000000001,81.658000000000001,85.057000000000002,88.456999999999994,91.856999999999999,95.256,98.656000000000006,102.05500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,911,1,91.881,0.037019999999999997,81.677000000000007,85.078000000000003,88.48,91.881,95.281999999999996,98.683999999999997,102.08499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,912,1,91.905299999999997,0.03703,81.695999999999998,85.099000000000004,88.501999999999995,91.905000000000001,95.308999999999997,98.712000000000003,102.11499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,913,1,91.929699999999997,0.037039999999999997,81.713999999999999,85.12,88.525000000000006,91.93,95.334999999999994,98.74,102.145 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,914,1,91.953999999999994,0.03705,81.733000000000004,85.14,88.546999999999997,91.953999999999994,95.361000000000004,98.768000000000001,102.175 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,915,1,91.978300000000004,0.037060000000000003,81.751999999999995,85.161000000000001,88.57,91.977999999999994,95.387,98.796000000000006,102.20399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,916,1,92.002499999999998,0.037069999999999999,81.771000000000001,85.180999999999997,88.591999999999999,92.001999999999995,95.412999999999997,98.823999999999998,102.23399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,917,1,92.026799999999994,0.037080000000000002,81.790000000000006,85.201999999999998,88.614000000000004,92.027000000000001,95.438999999999993,98.852000000000004,102.264 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,918,1,92.051000000000002,0.037089999999999998,81.808000000000007,85.222999999999999,88.637,92.051000000000002,95.465000000000003,98.879000000000005,102.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,919,1,92.075199999999995,0.037100000000000001,81.826999999999998,85.242999999999995,88.659000000000006,92.075000000000003,95.491,98.906999999999996,102.32299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,920,1,92.099299999999999,0.037109999999999997,81.846000000000004,85.263999999999996,88.680999999999997,92.099000000000004,95.516999999999996,98.935000000000002,102.35299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,921,1,92.123500000000007,0.037109999999999997,81.867000000000004,85.286000000000001,88.704999999999998,92.123999999999995,95.542000000000002,98.960999999999999,102.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,922,1,92.147599999999997,0.03712,81.885999999999996,85.307000000000002,88.727000000000004,92.147999999999996,95.567999999999998,98.989000000000004,102.40900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,923,1,92.171700000000001,0.037130000000000003,81.905000000000001,85.326999999999998,88.748999999999995,92.171999999999997,95.593999999999994,99.016000000000005,102.43899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,924,1,92.195800000000006,0.037139999999999999,81.923000000000002,85.346999999999994,88.772000000000006,92.195999999999998,95.62,99.043999999999997,102.468 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,925,1,92.219899999999996,0.037150000000000002,81.941999999999993,85.367999999999995,88.793999999999997,92.22,95.646000000000001,99.072000000000003,102.498 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,926,1,92.244,0.037159999999999999,81.960999999999999,85.388000000000005,88.816000000000003,92.244,95.671999999999997,99.1,102.527 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,927,1,92.268000000000001,0.037170000000000002,81.978999999999999,85.409000000000006,88.837999999999994,92.268000000000001,95.697999999999993,99.126999999999995,102.557 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,928,1,92.292000000000002,0.037179999999999998,81.998000000000005,85.429000000000002,88.861000000000004,92.292000000000002,95.722999999999999,99.155000000000001,102.586 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,929,1,92.316000000000003,0.037190000000000001,82.016000000000005,85.45,88.882999999999996,92.316000000000003,95.748999999999995,99.182000000000002,102.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,930,1,92.34,0.037199999999999997,82.034999999999997,85.47,88.905000000000001,92.34,95.775000000000006,99.21,102.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,931,1,92.363900000000001,0.03721,82.052999999999997,85.49,88.927000000000007,92.364000000000004,95.801000000000002,99.238,102.67400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,932,1,92.387900000000002,0.037220000000000003,82.072000000000003,85.510999999999996,88.948999999999998,92.388000000000005,95.826999999999998,99.265000000000001,102.70399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,933,1,92.411799999999999,0.037229999999999999,82.09,85.531000000000006,88.971000000000004,92.412000000000006,95.852000000000004,99.293000000000006,102.733 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,934,1,92.435699999999997,0.037240000000000002,82.108999999999995,85.551000000000002,88.992999999999995,92.436000000000007,95.878,99.32,102.76300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,935,1,92.459500000000006,0.037249999999999998,82.126999999999995,85.570999999999998,89.015000000000001,92.46,95.903999999999996,99.347999999999999,102.792 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,936,1,92.483400000000003,0.037260000000000001,82.146000000000001,85.591999999999999,89.037000000000006,92.483000000000004,95.929000000000002,99.375,102.821 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,937,1,92.507199999999997,0.037269999999999998,82.164000000000001,85.611999999999995,89.058999999999997,92.507000000000005,95.954999999999998,99.403000000000006,102.85 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,938,1,92.531000000000006,0.037280000000000001,82.182000000000002,85.632000000000005,89.081000000000003,92.531000000000006,95.980999999999995,99.43,102.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,939,1,92.5548,0.037289999999999997,82.200999999999993,85.652000000000001,89.102999999999994,92.555000000000007,96.006,99.457999999999998,102.90900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,940,1,92.578599999999994,0.0373,82.218999999999994,85.671999999999997,89.125,92.578999999999994,96.031999999999996,99.484999999999999,102.938 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,941,1,92.6023,0.0373,82.24,85.694000000000003,89.147999999999996,92.602000000000004,96.055999999999997,99.51,102.964 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,942,1,92.626099999999994,0.037310000000000003,82.257999999999996,85.713999999999999,89.17,92.626000000000005,96.081999999999994,99.537999999999997,102.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,943,1,92.649799999999999,0.037319999999999999,82.277000000000001,85.733999999999995,89.191999999999993,92.65,96.106999999999999,99.564999999999998,103.023 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,944,1,92.673500000000004,0.037330000000000002,82.295000000000002,85.754000000000005,89.213999999999999,92.674000000000007,96.132999999999996,99.593000000000004,103.05200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,945,1,92.697100000000006,0.037339999999999998,82.313000000000002,85.774000000000001,89.236000000000004,92.697000000000003,96.158000000000001,99.62,103.081 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,946,1,92.720799999999997,0.037350000000000001,82.331000000000003,85.795000000000002,89.257999999999996,92.721000000000004,96.183999999999997,99.647000000000006,103.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,947,1,92.744399999999999,0.037359999999999997,82.35,85.814999999999998,89.278999999999996,92.744,96.209000000000003,99.674000000000007,103.139 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,948,1,92.768000000000001,0.03737,82.367999999999995,85.834999999999994,89.301000000000002,92.768000000000001,96.234999999999999,99.700999999999993,103.16800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,949,1,92.791600000000003,0.037379999999999997,82.385999999999996,85.853999999999999,89.322999999999993,92.792000000000002,96.26,99.728999999999999,103.197 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,950,1,92.815200000000004,0.03739,82.403999999999996,85.873999999999995,89.344999999999999,92.814999999999998,96.286000000000001,99.756,103.226 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,951,1,92.838800000000006,0.037400000000000003,82.421999999999997,85.894000000000005,89.367000000000004,92.838999999999999,96.311000000000007,99.783000000000001,103.255 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,952,1,92.862300000000005,0.037409999999999999,82.44,85.914000000000001,89.388000000000005,92.861999999999995,96.335999999999999,99.81,103.28400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,953,1,92.885800000000003,0.037420000000000002,82.457999999999998,85.933999999999997,89.41,92.885999999999996,96.361999999999995,99.837000000000003,103.313 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,954,1,92.909300000000002,0.037429999999999998,82.477000000000004,85.953999999999994,89.432000000000002,92.909000000000006,96.387,99.864000000000004,103.342 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,955,1,92.9328,0.037429999999999998,82.497,85.975999999999999,89.453999999999994,92.933000000000007,96.411000000000001,99.89,103.36799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,956,1,92.956199999999995,0.037440000000000001,82.515000000000001,85.995999999999995,89.475999999999999,92.956000000000003,96.436000000000007,99.917000000000002,103.39700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,957,1,92.979699999999994,0.037449999999999997,82.533000000000001,86.016000000000005,89.498000000000005,92.98,96.462000000000003,99.944000000000003,103.426 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,958,1,93.003100000000003,0.03746,82.551000000000002,86.034999999999997,89.519000000000005,93.003,96.486999999999995,99.971000000000004,103.455 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,959,1,93.026499999999999,0.037470000000000003,82.569000000000003,86.055000000000007,89.540999999999997,93.025999999999996,96.512,99.998000000000005,103.48399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,960,1,93.049899999999994,0.037479999999999999,82.587000000000003,86.075000000000003,89.561999999999998,93.05,96.537000000000006,100.02500000000001,103.512 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,961,1,93.0732,0.037490000000000002,82.605000000000004,86.094999999999999,89.584000000000003,93.072999999999993,96.563000000000002,100.05200000000001,103.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,962,1,93.096599999999995,0.037499999999999999,82.623000000000005,86.114000000000004,89.605000000000004,93.096999999999994,96.587999999999994,100.07899999999999,103.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,963,1,93.119900000000001,0.037510000000000002,82.641000000000005,86.134,89.626999999999995,93.12,96.613,100.10599999999999,103.599 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,964,1,93.143199999999993,0.037519999999999998,82.659000000000006,86.153999999999996,89.647999999999996,93.143000000000001,96.638000000000005,100.133,103.627 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,965,1,93.166499999999999,0.037530000000000001,82.677000000000007,86.173000000000002,89.67,93.165999999999997,96.662999999999997,100.16,103.65600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,966,1,93.189800000000005,0.037530000000000001,82.697999999999993,86.194999999999993,89.691999999999993,93.19,96.686999999999998,100.185,103.682 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,967,1,93.212999999999994,0.037539999999999997,82.715000000000003,86.215000000000003,89.713999999999999,93.212999999999994,96.712000000000003,100.211,103.711 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,968,1,93.2363,0.03755,82.733000000000004,86.233999999999995,89.734999999999999,93.236000000000004,96.736999999999995,100.238,103.739 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,969,1,93.259500000000003,0.037560000000000003,82.751000000000005,86.254000000000005,89.757000000000005,93.26,96.762,100.265,103.768 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,970,1,93.282700000000006,0.037569999999999999,82.769000000000005,86.272999999999996,89.778000000000006,93.283000000000001,96.787000000000006,100.292,103.797 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,971,1,93.305899999999994,0.037580000000000002,82.787000000000006,86.293000000000006,89.799000000000007,93.305999999999997,96.811999999999998,100.319,103.825 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,972,1,93.328999999999994,0.037589999999999998,82.804000000000002,86.313000000000002,89.820999999999998,93.328999999999994,96.837000000000003,100.345,103.854 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,973,1,93.352199999999996,0.037600000000000001,82.822000000000003,86.331999999999994,89.841999999999999,93.352000000000004,96.861999999999995,100.372,103.88200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,974,1,93.375299999999996,0.037609999999999998,82.84,86.352000000000004,89.863,93.375,96.887,100.399,103.911 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,975,1,93.398399999999995,0.037620000000000001,82.856999999999999,86.370999999999995,89.885000000000005,93.397999999999996,96.912000000000006,100.426,103.93899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,976,1,93.421499999999995,0.037620000000000001,82.878,86.391999999999996,89.906999999999996,93.421999999999997,96.936000000000007,100.45099999999999,103.965 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,977,1,93.444599999999994,0.037629999999999997,82.896000000000001,86.412000000000006,89.927999999999997,93.444999999999993,96.960999999999999,100.477,103.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,978,1,93.467600000000004,0.03764,82.912999999999997,86.430999999999997,89.948999999999998,93.468000000000004,96.986000000000004,100.504,104.02200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,979,1,93.490600000000001,0.037650000000000003,82.930999999999997,86.450999999999993,89.971000000000004,93.491,97.010999999999996,100.53,104.05 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,980,1,93.5137,0.037659999999999999,82.948999999999998,86.47,89.992000000000004,93.513999999999996,97.034999999999997,100.557,104.07899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,981,1,93.536699999999996,0.037670000000000002,82.965999999999994,86.49,90.013000000000005,93.537000000000006,97.06,100.584,104.107 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,982,1,93.559600000000003,0.037679999999999998,82.983999999999995,86.509,90.034000000000006,93.56,97.084999999999994,100.61,104.136 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,983,1,93.582599999999999,0.037690000000000001,83.001000000000005,86.528000000000006,90.055000000000007,93.582999999999998,97.11,100.637,104.164 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,984,1,93.605599999999995,0.037690000000000001,83.022000000000006,86.55,90.078000000000003,93.605999999999995,97.134,100.66200000000001,104.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,985,1,93.628500000000003,0.037699999999999997,83.039000000000001,86.569000000000003,90.099000000000004,93.628,97.158000000000001,100.688,104.218 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,986,1,93.651399999999995,0.03771,83.057000000000002,86.587999999999994,90.12,93.650999999999996,97.183000000000007,100.715,104.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,987,1,93.674300000000002,0.037719999999999997,83.073999999999998,86.608000000000004,90.141000000000005,93.674000000000007,97.207999999999998,100.741,104.274 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,988,1,93.697199999999995,0.03773,83.091999999999999,86.626999999999995,90.162000000000006,93.697000000000003,97.231999999999999,100.768,104.303 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,989,1,93.720100000000002,0.037740000000000003,83.108999999999995,86.646000000000001,90.183000000000007,93.72,97.257000000000005,100.794,104.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,990,1,93.742900000000006,0.037749999999999999,83.126999999999995,86.665000000000006,90.203999999999994,93.742999999999995,97.281999999999996,100.82,104.35899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,991,1,93.765799999999999,0.037760000000000002,83.144000000000005,86.685000000000002,90.224999999999994,93.766000000000005,97.305999999999997,100.84699999999999,104.38800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,992,1,93.788600000000002,0.037760000000000002,83.164000000000001,86.706000000000003,90.247,93.789000000000001,97.33,100.872,104.413 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,993,1,93.811400000000006,0.037769999999999998,83.182000000000002,86.724999999999994,90.268000000000001,93.811000000000007,97.355000000000004,100.898,104.441 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,994,1,93.834199999999996,0.037780000000000001,83.198999999999998,86.744,90.289000000000001,93.834000000000003,97.379000000000005,100.92400000000001,104.46899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,995,1,93.856899999999996,0.037789999999999997,83.215999999999994,86.763000000000005,90.31,93.856999999999999,97.403999999999996,100.95099999999999,104.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,996,1,93.8797,0.0378,83.233999999999995,86.781999999999996,90.331000000000003,93.88,97.427999999999997,100.977,104.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,997,1,93.9024,0.037810000000000003,83.251000000000005,86.802000000000007,90.352000000000004,93.902000000000001,97.453000000000003,101.003,104.554 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,998,1,93.925200000000004,0.037819999999999999,83.268000000000001,86.820999999999998,90.373000000000005,93.924999999999997,97.477000000000004,101.03,104.58199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,999,1,93.947900000000004,0.037819999999999999,83.289000000000001,86.841999999999999,90.394999999999996,93.947999999999993,97.501000000000005,101.054,104.607 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1000,1,93.970600000000005,0.037830000000000003,83.305999999999997,86.861000000000004,90.415999999999997,93.971000000000004,97.525999999999996,101.08,104.63500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1001,1,93.993200000000002,0.037839999999999999,83.322999999999993,86.88,90.436000000000007,93.992999999999995,97.55,101.107,104.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1002,1,94.015900000000002,0.037850000000000002,83.34,86.899000000000001,90.456999999999994,94.016000000000005,97.573999999999998,101.133,104.691 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1003,1,94.038499999999999,0.037859999999999998,83.358000000000004,86.918000000000006,90.477999999999994,94.037999999999997,97.599000000000004,101.15900000000001,104.71899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1004,1,94.061199999999999,0.037870000000000001,83.375,86.936999999999998,90.498999999999995,94.061000000000007,97.623000000000005,101.185,104.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1005,1,94.083799999999997,0.037879999999999997,83.391999999999996,86.956000000000003,90.52,94.084000000000003,97.647999999999996,101.212,104.77500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1006,1,94.106399999999994,0.037879999999999997,83.412000000000006,86.977000000000004,90.542000000000002,94.105999999999995,97.671000000000006,101.236,104.801 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1007,1,94.129000000000005,0.03789,83.429000000000002,86.995999999999995,90.561999999999998,94.129000000000005,97.695999999999998,101.262,104.82899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1008,1,94.151600000000002,0.037900000000000003,83.447000000000003,87.015000000000001,90.582999999999998,94.152000000000001,97.72,101.288,104.857 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1009,1,94.174099999999996,0.037909999999999999,83.463999999999999,87.034000000000006,90.603999999999999,94.174000000000007,97.744,101.31399999999999,104.88500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1010,1,94.196700000000007,0.037920000000000002,83.480999999999995,87.052999999999997,90.625,94.197000000000003,97.769000000000005,101.34099999999999,104.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1011,1,94.219200000000001,0.037929999999999998,83.498000000000005,87.072000000000003,90.644999999999996,94.218999999999994,97.793000000000006,101.367,104.94 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1012,1,94.241699999999994,0.037929999999999998,83.518000000000001,87.093000000000004,90.667000000000002,94.242000000000004,97.816000000000003,101.39100000000001,104.965 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1013,1,94.264200000000002,0.037940000000000002,83.534999999999997,87.111000000000004,90.688000000000002,94.263999999999996,97.840999999999994,101.417,104.99299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1014,1,94.286699999999996,0.037949999999999998,83.552000000000007,87.13,90.709000000000003,94.287000000000006,97.864999999999995,101.443,105.021 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1015,1,94.309200000000004,0.037960000000000001,83.569000000000003,87.149000000000001,90.728999999999999,94.308999999999997,97.888999999999996,101.46899999999999,105.04900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1016,1,94.331699999999998,0.037969999999999997,83.585999999999999,87.168000000000006,90.75,94.331999999999994,97.912999999999997,101.495,105.077 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1017,1,94.354100000000003,0.03798,83.602999999999994,87.186999999999998,90.771000000000001,94.353999999999999,97.938000000000002,101.521,105.105 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1018,1,94.376499999999993,0.03798,83.623000000000005,87.207999999999998,90.792000000000002,94.376000000000005,97.960999999999999,101.545,105.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1019,1,94.399000000000001,0.037990000000000003,83.64,87.227000000000004,90.813000000000002,94.399000000000001,97.984999999999999,101.571,105.158 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1020,1,94.421400000000006,0.037999999999999999,83.656999999999996,87.245000000000005,90.832999999999998,94.421000000000006,98.009,101.59699999999999,105.185 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1021,1,94.443799999999996,0.038010000000000002,83.674000000000007,87.263999999999996,90.853999999999999,94.444000000000003,98.034000000000006,101.623,105.21299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1022,1,94.466200000000001,0.038019999999999998,83.691000000000003,87.283000000000001,90.875,94.465999999999994,98.058000000000007,101.649,105.241 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1023,1,94.488500000000002,0.038019999999999998,83.710999999999999,87.304000000000002,90.896000000000001,94.488,98.081000000000003,101.673,105.26600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1024,1,94.510900000000007,0.038030000000000001,83.727999999999994,87.322000000000003,90.917000000000002,94.510999999999996,98.105000000000004,101.699,105.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1025,1,94.533199999999994,0.038039999999999997,83.745000000000005,87.340999999999994,90.936999999999998,94.533000000000001,98.129000000000005,101.72499999999999,105.321 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1026,1,94.555599999999998,0.03805,83.762,87.36,90.957999999999998,94.555999999999997,98.153000000000006,101.751,105.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1027,1,94.5779,0.038059999999999997,83.778999999999996,87.379000000000005,90.977999999999994,94.578000000000003,98.177999999999997,101.777,105.377 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1028,1,94.600200000000001,0.03807,83.796000000000006,87.397000000000006,90.998999999999995,94.6,98.201999999999998,101.803,105.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1029,1,94.622500000000002,0.03807,83.816000000000003,87.418000000000006,91.02,94.622,98.224999999999994,101.827,105.429 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1030,1,94.6447,0.038080000000000003,83.831999999999994,87.436999999999998,91.040999999999997,94.644999999999996,98.248999999999995,101.85299999999999,105.45699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1031,1,94.667000000000002,0.038089999999999999,83.849000000000004,87.454999999999998,91.061000000000007,94.667000000000002,98.272999999999996,101.879,105.485 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1032,1,94.689300000000003,0.038100000000000002,83.866,87.474000000000004,91.081999999999994,94.688999999999993,98.296999999999997,101.905,105.512 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1033,1,94.711500000000001,0.038109999999999998,83.882999999999996,87.492999999999995,91.102000000000004,94.712000000000003,98.320999999999998,101.93,105.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1034,1,94.733699999999999,0.038109999999999998,83.903000000000006,87.513000000000005,91.123000000000005,94.733999999999995,98.343999999999994,101.95399999999999,105.565 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1035,1,94.755899999999997,0.038120000000000001,83.92,87.531999999999996,91.144000000000005,94.756,98.367999999999995,101.98,105.592 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1036,1,94.778199999999998,0.038129999999999997,83.936999999999998,87.55,91.164000000000001,94.778000000000006,98.391999999999996,102.006,105.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1037,1,94.800299999999993,0.03814,83.953000000000003,87.569000000000003,91.185000000000002,94.8,98.415999999999997,102.032,105.64700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1038,1,94.822500000000005,0.038150000000000003,83.97,87.587999999999994,91.204999999999998,94.822000000000003,98.44,102.057,105.675 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1039,1,94.844700000000003,0.038150000000000003,83.99,87.608000000000004,91.225999999999999,94.844999999999999,98.462999999999994,102.081,105.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1040,1,94.866799999999998,0.038159999999999999,84.006,87.626999999999995,91.247,94.867000000000004,98.486999999999995,102.107,105.727 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1041,1,94.888999999999996,0.038170000000000003,84.022999999999996,87.644999999999996,91.266999999999996,94.888999999999996,98.510999999999996,102.133,105.755 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1042,1,94.911100000000005,0.038179999999999999,84.04,87.664000000000001,91.287000000000006,94.911000000000001,98.534999999999997,102.15900000000001,105.782 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1043,1,94.933199999999999,0.038190000000000002,84.057000000000002,87.682000000000002,91.308000000000007,94.933000000000007,98.558999999999997,102.184,105.81 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1044,1,94.955299999999994,0.038190000000000002,84.075999999999993,87.703000000000003,91.328999999999994,94.954999999999998,98.581999999999994,102.208,105.834 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1045,1,94.977400000000003,0.038199999999999998,84.093000000000004,87.721000000000004,91.349000000000004,94.977000000000004,98.605999999999995,102.23399999999999,105.86199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1046,1,94.999499999999998,0.038210000000000001,84.11,87.74,91.37,95,98.629000000000005,102.259,105.889 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1047,1,95.021600000000007,0.038219999999999997,84.126000000000005,87.757999999999996,91.39,95.022000000000006,98.653000000000006,102.285,105.917 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1048,1,95.043599999999998,0.038219999999999997,84.146000000000001,87.778000000000006,91.411000000000001,95.043999999999997,98.676000000000002,102.309,105.941 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1049,1,95.065700000000007,0.03823,84.162999999999997,87.796999999999997,91.430999999999997,95.066000000000003,98.7,102.334,105.96899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1050,1,95.087699999999998,0.038240000000000003,84.179000000000002,87.814999999999998,91.451999999999998,95.087999999999994,98.724000000000004,102.36,105.996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1051,1,95.109700000000004,0.038249999999999999,84.195999999999998,87.834000000000003,91.471999999999994,95.11,98.748000000000005,102.386,106.024 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1052,1,95.131699999999995,0.038260000000000002,84.212000000000003,87.852000000000004,91.492000000000004,95.132000000000005,98.771000000000001,102.411,106.051 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1053,1,95.153700000000001,0.038260000000000002,84.231999999999999,87.873000000000005,91.513000000000005,95.153999999999996,98.793999999999997,102.435,106.075 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1054,1,95.175700000000006,0.038269999999999998,84.248999999999995,87.891000000000005,91.533000000000001,95.176000000000002,98.817999999999998,102.46,106.10299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1055,1,95.197699999999998,0.038280000000000002,84.265000000000001,87.909000000000006,91.554000000000002,95.197999999999993,98.841999999999999,102.486,106.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1056,1,95.219700000000003,0.038289999999999998,84.281999999999996,87.927999999999997,91.573999999999998,95.22,98.866,102.512,106.158 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1057,1,95.241600000000005,0.038289999999999998,84.301000000000002,87.947999999999993,91.594999999999999,95.242000000000004,98.888000000000005,102.535,106.182 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1058,1,95.263599999999997,0.038300000000000001,84.317999999999998,87.965999999999994,91.614999999999995,95.263999999999996,98.912000000000006,102.56100000000001,106.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1059,1,95.285499999999999,0.038309999999999997,84.334000000000003,87.984999999999999,91.635000000000005,95.286000000000001,98.936000000000007,102.586,106.23699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1060,1,95.307400000000001,0.03832,84.350999999999999,88.003,91.655000000000001,95.307000000000002,98.96,102.61199999999999,106.264 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1061,1,95.329300000000003,0.038330000000000003,84.367000000000004,88.021000000000001,91.674999999999997,95.328999999999994,98.983000000000004,102.637,106.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1062,1,95.351200000000006,0.038330000000000003,84.387,88.042000000000002,91.695999999999998,95.350999999999999,99.006,102.661,106.316 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1063,1,95.373099999999994,0.038339999999999999,84.403000000000006,88.06,91.715999999999994,95.373000000000005,99.03,102.68600000000001,106.343 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1064,1,95.394900000000007,0.038350000000000002,84.42,88.078000000000003,91.736999999999995,95.394999999999996,99.052999999999997,102.712,106.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1065,1,95.416799999999995,0.038359999999999998,84.436000000000007,88.096000000000004,91.757000000000005,95.417000000000002,99.076999999999998,102.73699999999999,106.39700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1066,1,95.438599999999994,0.038359999999999998,84.456000000000003,88.117000000000004,91.778000000000006,95.438999999999993,99.1,102.761,106.422 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1067,1,95.460499999999996,0.038370000000000001,84.471999999999994,88.135000000000005,91.798000000000002,95.46,99.123000000000005,102.786,106.449 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1068,1,95.482299999999995,0.038379999999999997,84.488,88.153000000000006,91.817999999999998,95.481999999999999,99.147000000000006,102.812,106.476 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1069,1,95.504099999999994,0.038390000000000001,84.504999999999995,88.171000000000006,91.837999999999994,95.504000000000005,99.171000000000006,102.837,106.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1070,1,95.525899999999993,0.038390000000000001,84.524000000000001,88.191000000000003,91.858999999999995,95.525999999999996,99.192999999999998,102.86,106.52800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1071,1,95.547700000000006,0.038399999999999997,84.540999999999997,88.21,91.879000000000005,95.548000000000002,99.216999999999999,102.886,106.55500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1072,1,95.569500000000005,0.03841,84.557000000000002,88.227999999999994,91.899000000000001,95.57,99.24,102.911,106.58199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1073,1,95.591300000000004,0.038420000000000003,84.572999999999993,88.245999999999995,91.918999999999997,95.590999999999994,99.263999999999996,102.937,106.60899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1074,1,95.613,0.038420000000000003,84.593000000000004,88.266000000000005,91.94,95.613,99.286000000000001,102.96,106.633 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1075,1,95.634799999999998,0.038429999999999999,84.608999999999995,88.284000000000006,91.96,95.635000000000005,99.31,102.985,106.661 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1076,1,95.656499999999994,0.038440000000000002,84.625,88.302000000000007,91.978999999999999,95.656000000000006,99.334000000000003,103.011,106.688 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1077,1,95.678200000000004,0.038449999999999998,84.641999999999996,88.320999999999998,91.998999999999995,95.677999999999997,99.356999999999999,103.036,106.715 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1078,1,95.6999,0.038449999999999998,84.661000000000001,88.340999999999994,92.02,95.7,99.38,103.059,106.739 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1079,1,95.721599999999995,0.038460000000000001,84.677000000000007,88.358999999999995,92.04,95.721999999999994,99.403000000000006,103.08499999999999,106.76600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1080,1,95.743300000000005,0.038469999999999997,84.694000000000003,88.376999999999995,92.06,95.742999999999995,99.427000000000007,103.11,106.79300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1081,1,95.765000000000001,0.03848,84.71,88.394999999999996,92.08,95.765000000000001,99.45,103.13500000000001,106.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1082,1,95.786699999999996,0.03848,84.728999999999999,88.415000000000006,92.100999999999999,95.787000000000006,99.472999999999999,103.158,106.84399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1083,1,95.808300000000003,0.038490000000000003,84.745000000000005,88.433000000000007,92.120999999999995,95.808000000000007,99.495999999999995,103.184,106.871 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1084,1,95.83,0.0385,84.762,88.450999999999993,92.141000000000005,95.83,99.519000000000005,103.209,106.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1085,1,95.851600000000005,0.0385,84.781000000000006,88.471000000000004,92.161000000000001,95.852000000000004,99.542000000000002,103.232,106.922 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1086,1,95.873199999999997,0.038510000000000003,84.796999999999997,88.489000000000004,92.180999999999997,95.873000000000005,99.564999999999998,103.25700000000001,106.949 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1087,1,95.894800000000004,0.038519999999999999,84.813000000000002,88.507000000000005,92.200999999999993,95.894999999999996,99.588999999999999,103.283,106.976 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1088,1,95.916499999999999,0.038530000000000002,84.83,88.525000000000006,92.221000000000004,95.915999999999997,99.611999999999995,103.30800000000001,107.003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1089,1,95.938000000000002,0.038530000000000002,84.849000000000004,88.545000000000002,92.242000000000004,95.938000000000002,99.634,103.331,107.027 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1090,1,95.959599999999995,0.038539999999999998,84.864999999999995,88.563000000000002,92.260999999999996,95.96,99.658000000000001,103.35599999999999,107.054 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1091,1,95.981200000000001,0.038550000000000001,84.881,88.581000000000003,92.281000000000006,95.980999999999995,99.680999999999997,103.381,107.081 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1092,1,96.002799999999993,0.038559999999999997,84.897000000000006,88.599000000000004,92.301000000000002,96.003,99.704999999999998,103.407,107.108 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1093,1,96.024299999999997,0.038559999999999997,84.915999999999997,88.619,92.322000000000003,96.024000000000001,99.727000000000004,103.43,107.13200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1094,1,96.045900000000003,0.03857,84.932000000000002,88.637,92.340999999999994,96.046000000000006,99.75,103.455,107.15900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1095,1,96.067400000000006,0.038580000000000003,84.948999999999998,88.655000000000001,92.361000000000004,96.066999999999993,99.774000000000001,103.48,107.18600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1096,1,96.088899999999995,0.038580000000000003,84.968000000000004,88.674999999999997,92.382000000000005,96.088999999999999,99.796000000000006,103.503,107.21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1097,1,96.110399999999998,0.038589999999999999,84.983999999999995,88.692999999999998,92.400999999999996,96.11,99.819000000000003,103.52800000000001,107.23699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1098,1,96.131900000000002,0.038600000000000002,85,88.710999999999999,92.421000000000006,96.132000000000005,99.843000000000004,103.553,107.264 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1099,1,96.153400000000005,0.038609999999999998,85.016000000000005,88.727999999999994,92.441000000000003,96.153000000000006,99.866,103.578,107.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1100,1,96.174899999999994,0.038609999999999998,85.034999999999997,88.748000000000005,92.462000000000003,96.174999999999997,99.888000000000005,103.602,107.315 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1101,1,96.196399999999997,0.038620000000000002,85.051000000000002,88.766000000000005,92.480999999999995,96.195999999999998,99.912000000000006,103.627,107.342 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1102,1,96.217799999999997,0.038629999999999998,85.066999999999993,88.784000000000006,92.501000000000005,96.218000000000004,99.935000000000002,103.652,107.36799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1103,1,96.2393,0.038629999999999998,85.085999999999999,88.804000000000002,92.522000000000006,96.239000000000004,99.956999999999994,103.675,107.392 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1104,1,96.2607,0.038640000000000001,85.102000000000004,88.822000000000003,92.540999999999997,96.260999999999996,99.98,103.7,107.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1105,1,96.2821,0.038649999999999997,85.117999999999995,88.838999999999999,92.561000000000007,96.281999999999996,100.003,103.72499999999999,107.446 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1106,1,96.3035,0.03866,85.134,88.856999999999999,92.58,96.304000000000002,100.027,103.75,107.473 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1107,1,96.325000000000003,0.03866,85.153000000000006,88.876999999999995,92.600999999999999,96.325000000000003,100.04900000000001,103.773,107.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1108,1,96.346400000000003,0.038670000000000003,85.168999999999997,88.894999999999996,92.620999999999995,96.346000000000004,100.072,103.798,107.524 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1109,1,96.367699999999999,0.038679999999999999,85.185000000000002,88.912999999999997,92.64,96.367999999999995,100.095,103.82299999999999,107.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1110,1,96.389099999999999,0.038679999999999999,85.203999999999994,88.932000000000002,92.661000000000001,96.388999999999996,100.117,103.846,107.574 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1111,1,96.410499999999999,0.038690000000000002,85.22,88.95,92.68,96.41,100.14100000000001,103.871,107.601 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1112,1,96.431799999999996,0.038699999999999998,85.236000000000004,88.968000000000004,92.7,96.432000000000002,100.164,103.896,107.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1113,1,96.453199999999995,0.038699999999999998,85.254999999999995,88.988,92.72,96.453000000000003,100.18600000000001,103.919,107.651 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1114,1,96.474500000000006,0.038710000000000001,85.271000000000001,89.004999999999995,92.74,96.474000000000004,100.209,103.944,107.678 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1115,1,96.495800000000003,0.038719999999999997,85.287000000000006,89.022999999999996,92.759,96.495999999999995,100.232,103.968,107.705 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1116,1,96.517200000000003,0.038730000000000001,85.302999999999997,89.040999999999997,92.778999999999996,96.516999999999996,100.255,103.99299999999999,107.732 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1117,1,96.538499999999999,0.038730000000000001,85.322000000000003,89.061000000000007,92.8,96.537999999999997,100.277,104.01600000000001,107.755 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1118,1,96.559799999999996,0.038739999999999997,85.337999999999994,89.078000000000003,92.819000000000003,96.56,100.301,104.041,107.782 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1119,1,96.581000000000003,0.03875,85.352999999999994,89.096000000000004,92.837999999999994,96.581000000000003,100.324,104.066,107.809 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1120,1,96.6023,0.03875,85.372,89.116,92.858999999999995,96.602000000000004,100.346,104.089,107.83199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1121,1,96.623599999999996,0.038760000000000003,85.388000000000005,89.132999999999996,92.878,96.623999999999995,100.369,104.114,107.85899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1122,1,96.644800000000004,0.038769999999999999,85.403999999999996,89.150999999999996,92.897999999999996,96.644999999999996,100.392,104.139,107.886 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1123,1,96.6661,0.038769999999999999,85.423000000000002,89.171000000000006,92.918000000000006,96.665999999999997,100.414,104.16200000000001,107.90900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1124,1,96.687299999999993,0.038780000000000002,85.438999999999993,89.188000000000002,92.938000000000002,96.686999999999998,100.437,104.18600000000001,107.93600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1125,1,96.708500000000001,0.038789999999999998,85.454999999999998,89.206000000000003,92.956999999999994,96.707999999999998,100.46,104.211,107.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1126,1,96.729799999999997,0.038789999999999998,85.472999999999999,89.225999999999999,92.977999999999994,96.73,100.482,104.23399999999999,107.986 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1127,1,96.751000000000005,0.038800000000000001,85.489000000000004,89.242999999999995,92.997,96.751000000000005,100.505,104.259,108.01300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1128,1,96.772199999999998,0.038809999999999997,85.504999999999995,89.260999999999996,93.016000000000005,96.772000000000006,100.52800000000001,104.28400000000001,108.039 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1129,1,96.793300000000002,0.038809999999999997,85.524000000000001,89.28,93.037000000000006,96.793000000000006,100.55,104.306,108.063 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1130,1,96.814499999999995,0.03882,85.539000000000001,89.298000000000002,93.055999999999997,96.813999999999993,100.57299999999999,104.331,108.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1131,1,96.835700000000003,0.038830000000000003,85.555000000000007,89.314999999999998,93.075999999999993,96.835999999999999,100.596,104.35599999999999,108.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1132,1,96.856800000000007,0.038830000000000003,85.573999999999998,89.334999999999994,93.096000000000004,96.856999999999999,100.61799999999999,104.379,108.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1133,1,96.878,0.03884,85.59,89.352999999999994,93.114999999999995,96.878,100.64100000000001,104.40300000000001,108.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1134,1,96.899100000000004,0.038850000000000003,85.605999999999995,89.37,93.135000000000005,96.899000000000001,100.664,104.428,108.193 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1135,1,96.920299999999997,0.038850000000000003,85.623999999999995,89.39,93.155000000000001,96.92,100.68600000000001,104.45099999999999,108.21599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1136,1,96.941400000000002,0.038859999999999999,85.64,89.406999999999996,93.174000000000007,96.941000000000003,100.709,104.476,108.24299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1137,1,96.962500000000006,0.038870000000000002,85.656000000000006,89.424999999999997,93.194000000000003,96.962000000000003,100.73099999999999,104.5,108.26900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1138,1,96.983599999999996,0.038870000000000002,85.674000000000007,89.444000000000003,93.213999999999999,96.983999999999995,100.753,104.523,108.29300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1139,1,97.0047,0.038879999999999998,85.69,89.462000000000003,93.233000000000004,97.004999999999995,100.776,104.548,108.319 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1140,1,97.025800000000004,0.038890000000000001,85.706000000000003,89.478999999999999,93.251999999999995,97.025999999999996,100.79900000000001,104.572,108.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1141,1,97.046800000000005,0.038890000000000001,85.724000000000004,89.498000000000005,93.272999999999996,97.046999999999997,100.821,104.595,108.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1142,1,97.067899999999995,0.038899999999999997,85.74,89.516000000000005,93.292000000000002,97.067999999999998,100.84399999999999,104.62,108.396 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1143,1,97.088899999999995,0.03891,85.756,89.533000000000001,93.311000000000007,97.088999999999999,100.867,104.64400000000001,108.422 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1144,1,97.11,0.03891,85.774000000000001,89.552999999999997,93.331000000000003,97.11,100.889,104.667,108.446 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1145,1,97.131,0.038920000000000003,85.79,89.57,93.350999999999999,97.131,100.911,104.69199999999999,108.47199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1146,1,97.152100000000004,0.038929999999999999,85.805999999999997,89.587999999999994,93.37,97.152000000000001,100.934,104.71599999999999,108.498 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1147,1,97.173100000000005,0.038929999999999999,85.823999999999998,89.606999999999999,93.39,97.173000000000002,100.956,104.739,108.52200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1148,1,97.194100000000006,0.038940000000000002,85.84,89.625,93.409000000000006,97.194000000000003,100.979,104.764,108.548 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1149,1,97.215100000000007,0.038949999999999999,85.855999999999995,89.641999999999996,93.429000000000002,97.215000000000003,101.002,104.788,108.575 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1150,1,97.236099999999993,0.038949999999999999,85.873999999999995,89.661000000000001,93.448999999999998,97.236000000000004,101.023,104.81100000000001,108.598 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1151,1,97.257000000000005,0.038960000000000002,85.89,89.679000000000002,93.468000000000004,97.257000000000005,101.04600000000001,104.83499999999999,108.624 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1152,1,97.278000000000006,0.038969999999999998,85.905000000000001,89.695999999999998,93.486999999999995,97.278000000000006,101.069,104.86,108.651 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1153,1,97.299000000000007,0.038969999999999998,85.924000000000007,89.715999999999994,93.507000000000005,97.299000000000007,101.09099999999999,104.88200000000001,108.67400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1154,1,97.319900000000004,0.038980000000000001,85.938999999999993,89.733000000000004,93.525999999999996,97.32,101.113,104.907,108.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1155,1,97.340900000000005,0.038989999999999997,85.954999999999998,89.75,93.546000000000006,97.340999999999994,101.136,104.932,108.727 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1156,1,97.361800000000002,0.038989999999999997,85.972999999999999,89.77,93.566000000000003,97.361999999999995,101.158,104.95399999999999,108.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1157,1,97.3827,0.039,85.989000000000004,89.787000000000006,93.584999999999994,97.382999999999996,101.181,104.979,108.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1158,1,97.403599999999997,0.039010000000000003,86.004000000000005,89.804000000000002,93.603999999999999,97.403999999999996,101.203,105.003,108.803 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1159,1,97.424499999999995,0.039010000000000003,86.022999999999996,89.822999999999993,93.623999999999995,97.424000000000007,101.22499999999999,105.026,108.82599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1160,1,97.445400000000006,0.039019999999999999,86.037999999999997,89.840999999999994,93.643000000000001,97.444999999999993,101.248,105.05,108.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1161,1,97.466300000000004,0.039019999999999999,86.057000000000002,89.86,93.662999999999997,97.465999999999994,101.26900000000001,105.07299999999999,108.876 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1162,1,97.487200000000001,0.039030000000000002,86.072000000000003,89.876999999999995,93.682000000000002,97.486999999999995,101.292,105.09699999999999,108.902 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1163,1,97.508099999999999,0.039039999999999998,86.087999999999994,89.894999999999996,93.700999999999993,97.507999999999996,101.315,105.122,108.928 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1164,1,97.528899999999993,0.039039999999999998,86.105999999999995,89.914000000000001,93.721000000000004,97.528999999999996,101.336,105.14400000000001,108.95099999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1165,1,97.549800000000005,0.039050000000000001,86.122,89.930999999999997,93.74,97.55,101.35899999999999,105.16800000000001,108.97799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1166,1,97.570599999999999,0.039059999999999997,86.137,89.947999999999993,93.759,97.570999999999998,101.38200000000001,105.193,109.004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1167,1,97.591399999999993,0.039059999999999997,86.156000000000006,89.968000000000004,93.778999999999996,97.590999999999994,101.40300000000001,105.215,109.027 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1168,1,97.612300000000005,0.039070000000000001,86.171000000000006,89.984999999999999,93.799000000000007,97.611999999999995,101.426,105.24,109.053 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1169,1,97.633099999999999,0.039079999999999997,86.186999999999998,90.001999999999995,93.817999999999998,97.632999999999996,101.449,105.264,109.08 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1170,1,97.653899999999993,0.039079999999999997,86.204999999999998,90.021000000000001,93.837999999999994,97.653999999999996,101.47,105.28700000000001,109.10299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1171,1,97.674700000000001,0.03909,86.22,90.037999999999997,93.856999999999999,97.674999999999997,101.49299999999999,105.31100000000001,109.129 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1172,1,97.695400000000006,0.03909,86.239000000000004,90.058000000000007,93.876000000000005,97.694999999999993,101.514,105.333,109.152 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1173,1,97.716200000000001,0.039100000000000003,86.254000000000005,90.075000000000003,93.894999999999996,97.715999999999994,101.53700000000001,105.358,109.178 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1174,1,97.736999999999995,0.039109999999999999,86.27,90.091999999999999,93.915000000000006,97.736999999999995,101.559,105.38200000000001,109.20399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1175,1,97.7577,0.039109999999999999,86.287999999999997,90.111000000000004,93.933999999999997,97.757999999999996,101.581,105.404,109.22799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1176,1,97.778499999999994,0.039120000000000002,86.302999999999997,90.128,93.953000000000003,97.778000000000006,101.604,105.429,109.254 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1177,1,97.799199999999999,0.039129999999999998,86.319000000000003,90.144999999999996,93.971999999999994,97.799000000000007,101.626,105.453,109.28 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1178,1,97.819900000000004,0.039129999999999998,86.337000000000003,90.165000000000006,93.992000000000004,97.82,101.648,105.47499999999999,109.303 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1179,1,97.840599999999995,0.039140000000000001,86.352000000000004,90.182000000000002,94.010999999999996,97.840999999999994,101.67,105.5,109.32899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1180,1,97.861400000000003,0.039140000000000001,86.370999999999995,90.200999999999993,94.031000000000006,97.861000000000004,101.69199999999999,105.52200000000001,109.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1181,1,97.882099999999994,0.039149999999999997,86.385999999999996,90.218000000000004,94.05,97.882000000000005,101.714,105.54600000000001,109.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1182,1,97.902699999999996,0.03916,86.400999999999996,90.234999999999999,94.069000000000003,97.903000000000006,101.73699999999999,105.57,109.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1183,1,97.923400000000001,0.03916,86.418999999999997,90.254000000000005,94.088999999999999,97.923000000000002,101.758,105.593,109.42700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1184,1,97.944100000000006,0.039170000000000003,86.435000000000002,90.271000000000001,94.108000000000004,97.944000000000003,101.78100000000001,105.617,109.45399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1185,1,97.964699999999993,0.039170000000000003,86.453000000000003,90.29,94.126999999999995,97.965000000000003,101.80200000000001,105.639,109.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1186,1,97.985399999999998,0.03918,86.468000000000004,90.307000000000002,94.146000000000001,97.984999999999999,101.824,105.664,109.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1187,1,98.006,0.039190000000000003,86.483000000000004,90.323999999999998,94.165000000000006,98.006,101.84699999999999,105.688,109.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1188,1,98.026700000000005,0.039190000000000003,86.501999999999995,90.343000000000004,94.185000000000002,98.027000000000001,101.86799999999999,105.71,109.55200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1189,1,98.047300000000007,0.039199999999999999,86.516999999999996,90.36,94.203999999999994,98.046999999999997,101.89100000000001,105.73399999999999,109.578 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1190,1,98.067899999999995,0.039199999999999999,86.534999999999997,90.379000000000005,94.224000000000004,98.067999999999998,101.91200000000001,105.756,109.601 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1191,1,98.088499999999996,0.039210000000000002,86.55,90.396000000000001,94.242000000000004,98.087999999999994,101.935,105.78100000000001,109.627 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1192,1,98.109099999999998,0.039219999999999998,86.566000000000003,90.412999999999997,94.260999999999996,98.108999999999995,101.95699999999999,105.80500000000001,109.65300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1193,1,98.1297,0.039219999999999998,86.584000000000003,90.432000000000002,94.281000000000006,98.13,101.97799999999999,105.827,109.676 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1194,1,98.150300000000001,0.039230000000000001,86.599000000000004,90.448999999999998,94.3,98.15,102.001,105.851,109.702 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1195,1,98.1708,0.039239999999999997,86.614000000000004,90.465999999999994,94.319000000000003,98.171000000000006,102.023,105.875,109.727 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1196,1,98.191400000000002,0.039239999999999997,86.632000000000005,90.484999999999999,94.337999999999994,98.191000000000003,102.044,105.89700000000001,109.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1197,1,98.2119,0.03925,86.647000000000006,90.501999999999995,94.356999999999999,98.212000000000003,102.06699999999999,105.922,109.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1198,1,98.232500000000002,0.03925,86.665999999999997,90.521000000000001,94.376999999999995,98.231999999999999,102.08799999999999,105.944,109.79900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1199,1,98.253,0.039260000000000003,86.680999999999997,90.537999999999997,94.396000000000001,98.253,102.11,105.968,109.825 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1200,1,98.273499999999999,0.039269999999999999,86.695999999999998,90.555000000000007,94.414000000000001,98.274000000000001,102.133,105.992,109.851 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1201,1,98.293999999999997,0.039269999999999999,86.713999999999999,90.573999999999998,94.433999999999997,98.293999999999997,102.154,106.014,109.874 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1202,1,98.314499999999995,0.039280000000000002,86.728999999999999,90.590999999999994,94.453000000000003,98.313999999999993,102.176,106.038,109.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1203,1,98.334999999999994,0.039280000000000002,86.747,90.61,94.471999999999994,98.334999999999994,102.19799999999999,106.06,109.923 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1204,1,98.355500000000006,0.039289999999999999,86.762,90.626999999999995,94.491,98.355999999999995,102.22,106.084,109.949 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1205,1,98.375900000000001,0.039289999999999999,86.78,90.646000000000001,94.510999999999996,98.376000000000005,102.241,106.10599999999999,109.971 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1206,1,98.3964,0.039300000000000002,86.795000000000002,90.662000000000006,94.528999999999996,98.396000000000001,102.26300000000001,106.13,109.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1207,1,98.416899999999998,0.039309999999999998,86.811000000000007,90.679000000000002,94.548000000000002,98.417000000000002,102.286,106.154,110.023 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1208,1,98.437299999999993,0.039309999999999998,86.828999999999994,90.697999999999993,94.567999999999998,98.436999999999998,102.307,106.176,110.04600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1209,1,98.457700000000003,0.039320000000000001,86.843999999999994,90.715000000000003,94.585999999999999,98.457999999999998,102.32899999999999,106.2,110.072 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1210,1,98.478200000000001,0.039320000000000001,86.861999999999995,90.733999999999995,94.605999999999995,98.477999999999994,102.35,106.223,110.095 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1211,1,98.498599999999996,0.039329999999999997,86.876999999999995,90.751000000000005,94.625,98.498999999999995,102.373,106.246,110.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1212,1,98.519000000000005,0.03934,86.891999999999996,90.768000000000001,94.643000000000001,98.519000000000005,102.395,106.27,110.146 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1213,1,98.539400000000001,0.03934,86.91,90.786000000000001,94.662999999999997,98.539000000000001,102.416,106.292,110.169 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1214,1,98.559799999999996,0.039350000000000003,86.924999999999997,90.802999999999997,94.680999999999997,98.56,102.438,106.316,110.19499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1215,1,98.580100000000002,0.039350000000000003,86.942999999999998,90.822000000000003,94.700999999999993,98.58,102.459,106.33799999999999,110.217 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1216,1,98.600499999999997,0.039359999999999999,86.957999999999998,90.838999999999999,94.72,98.6,102.48099999999999,106.36199999999999,110.24299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1217,1,98.620900000000006,0.039370000000000002,86.972999999999999,90.855000000000004,94.738,98.620999999999995,102.504,106.386,110.26900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1218,1,98.641199999999998,0.039370000000000002,86.991,90.873999999999995,94.757999999999996,98.641000000000005,102.52500000000001,106.408,110.292 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1219,1,98.661500000000004,0.039379999999999998,87.006,90.891000000000005,94.775999999999996,98.662000000000006,102.547,106.432,110.31699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1220,1,98.681899999999999,0.039379999999999998,87.024000000000001,90.91,94.796000000000006,98.682000000000002,102.568,106.45399999999999,110.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1221,1,98.702200000000005,0.039390000000000001,87.039000000000001,90.926000000000002,94.813999999999993,98.701999999999998,102.59,106.47799999999999,110.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1222,1,98.722499999999997,0.039390000000000001,87.055999999999997,90.944999999999993,94.834000000000003,98.721999999999994,102.611,106.5,110.389 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1223,1,98.742800000000003,0.039399999999999998,87.070999999999998,90.962000000000003,94.852000000000004,98.742999999999995,102.633,106.524,110.414 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1224,1,98.763099999999994,0.039410000000000001,87.085999999999999,90.978999999999999,94.870999999999995,98.763000000000005,102.655,106.548,110.44 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1225,1,98.7834,0.039410000000000001,87.103999999999999,90.997,94.89,98.783000000000001,102.676,106.57,110.46299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1226,1,98.803600000000003,0.039419999999999997,87.119,91.013999999999996,94.909000000000006,98.804000000000002,102.69799999999999,106.593,110.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1227,1,98.823899999999995,0.039419999999999997,87.137,91.033000000000001,94.927999999999997,98.823999999999998,102.72,106.61499999999999,110.511 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1228,1,98.844200000000001,0.03943,87.152000000000001,91.049000000000007,94.947000000000003,98.843999999999994,102.742,106.639,110.536 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1229,1,98.864400000000003,0.03943,87.17,91.067999999999998,94.965999999999994,98.864000000000004,102.76300000000001,106.661,110.559 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1230,1,98.884600000000006,0.039440000000000003,87.185000000000002,91.084999999999994,94.984999999999999,98.885000000000005,102.785,106.685,110.58499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1231,1,98.904899999999998,0.039449999999999999,87.2,91.100999999999999,95.003,98.905000000000001,102.807,106.708,110.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1232,1,98.9251,0.039449999999999999,87.216999999999999,91.12,95.022999999999996,98.924999999999997,102.828,106.73,110.633 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1233,1,98.945300000000003,0.039460000000000002,87.231999999999999,91.137,95.040999999999997,98.944999999999993,102.85,106.754,110.658 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1234,1,98.965500000000006,0.039460000000000002,87.25,91.155000000000001,95.06,98.965999999999994,102.871,106.776,110.681 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1235,1,98.985699999999994,0.039469999999999998,87.265000000000001,91.171999999999997,95.078999999999994,98.986000000000004,102.893,106.8,110.70699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1236,1,99.005799999999994,0.039469999999999998,87.283000000000001,91.19,95.097999999999999,99.006,102.914,106.821,110.729 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1237,1,99.025999999999996,0.039480000000000001,87.296999999999997,91.206999999999994,95.116,99.025999999999996,102.93600000000001,106.845,110.755 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1238,1,99.046099999999996,0.039489999999999997,87.311999999999998,91.222999999999999,95.135000000000005,99.046000000000006,102.95699999999999,106.869,110.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1239,1,99.066299999999998,0.039489999999999997,87.33,91.242000000000004,95.153999999999996,99.066000000000003,102.97799999999999,106.89100000000001,110.803 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1240,1,99.086399999999998,0.0395,87.344999999999999,91.259,95.171999999999997,99.085999999999999,103,106.914,110.828 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1241,1,99.106499999999997,0.0395,87.361999999999995,91.277000000000001,95.191999999999993,99.105999999999995,103.021,106.93600000000001,110.851 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1242,1,99.1267,0.039510000000000003,87.376999999999995,91.293999999999997,95.21,99.126999999999995,103.04300000000001,106.96,110.876 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1243,1,99.146799999999999,0.039510000000000003,87.394999999999996,91.311999999999998,95.23,99.147000000000006,103.06399999999999,106.98099999999999,110.899 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1244,1,99.166899999999998,0.03952,87.41,91.328999999999994,95.248000000000005,99.167000000000002,103.086,107.005,110.92400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1245,1,99.186899999999994,0.03952,87.427000000000007,91.346999999999994,95.266999999999996,99.186999999999998,103.107,107.027,110.946 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1246,1,99.206999999999994,0.039530000000000003,87.441999999999993,91.364000000000004,95.284999999999997,99.206999999999994,103.129,107.05,110.97199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1247,1,99.227099999999993,0.039539999999999999,87.456999999999994,91.38,95.304000000000002,99.227000000000004,103.151,107.074,110.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1248,1,99.247100000000003,0.039539999999999999,87.474000000000004,91.399000000000001,95.322999999999993,99.247,103.17100000000001,107.096,111.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1249,1,99.267200000000003,0.039550000000000002,87.489000000000004,91.415000000000006,95.340999999999994,99.266999999999996,103.193,107.119,111.045 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1250,1,99.287199999999999,0.039550000000000002,87.507000000000005,91.433999999999997,95.36,99.287000000000006,103.214,107.14100000000001,111.068 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1251,1,99.307199999999995,0.039559999999999998,87.521000000000001,91.45,95.379000000000005,99.307000000000002,103.236,107.164,111.093 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1252,1,99.327200000000005,0.039559999999999998,87.539000000000001,91.468000000000004,95.397999999999996,99.326999999999998,103.25700000000001,107.18600000000001,111.11499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1253,1,99.347200000000001,0.039570000000000001,87.554000000000002,91.484999999999999,95.415999999999997,99.346999999999994,103.27800000000001,107.21,111.14100000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1254,1,99.367199999999997,0.039570000000000001,87.570999999999998,91.503,95.435000000000002,99.367000000000004,103.29900000000001,107.23099999999999,111.163 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1255,1,99.387200000000007,0.039579999999999997,87.585999999999999,91.52,95.453000000000003,99.387,103.321,107.255,111.188 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1256,1,99.407200000000003,0.039579999999999997,87.603999999999999,91.537999999999997,95.472999999999999,99.406999999999996,103.342,107.276,111.211 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1257,1,99.427199999999999,0.03959,87.617999999999995,91.555000000000007,95.491,99.427000000000007,103.364,107.3,111.236 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1258,1,99.447100000000006,0.039600000000000003,87.632999999999996,91.570999999999998,95.509,99.447000000000003,103.38500000000001,107.32299999999999,111.261 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1259,1,99.467100000000002,0.039600000000000003,87.65,91.588999999999999,95.528000000000006,99.466999999999999,103.40600000000001,107.345,111.28400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1260,1,99.486999999999995,0.039609999999999999,87.665000000000006,91.605999999999995,95.546000000000006,99.486999999999995,103.428,107.36799999999999,111.309 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1261,1,99.506900000000002,0.039609999999999999,87.682000000000002,91.623999999999995,95.564999999999998,99.507000000000005,103.44799999999999,107.39,111.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1262,1,99.526799999999994,0.039620000000000002,87.697000000000003,91.64,95.584000000000003,99.527000000000001,103.47,107.413,111.357 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1263,1,99.546700000000001,0.039620000000000002,87.715000000000003,91.659000000000006,95.602999999999994,99.546999999999997,103.491,107.435,111.379 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1264,1,99.566599999999994,0.039629999999999999,87.728999999999999,91.674999999999997,95.620999999999995,99.566999999999993,103.512,107.458,111.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1265,1,99.586500000000001,0.039629999999999999,87.747,91.692999999999998,95.64,99.585999999999999,103.533,107.48,111.426 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1266,1,99.606399999999994,0.039640000000000002,87.760999999999996,91.71,95.658000000000001,99.605999999999995,103.55500000000001,107.503,111.452 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1267,1,99.626199999999997,0.039640000000000002,87.778999999999996,91.727999999999994,95.677000000000007,99.626000000000005,103.575,107.52500000000001,111.474 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1268,1,99.646100000000004,0.039649999999999998,87.793000000000006,91.744,95.694999999999993,99.646000000000001,103.59699999999999,107.548,111.499 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1269,1,99.665999999999997,0.039660000000000001,87.808000000000007,91.76,95.712999999999994,99.665999999999997,103.619,107.572,111.524 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1270,1,99.6858,0.039660000000000001,87.825000000000003,91.778999999999996,95.731999999999999,99.686000000000007,103.639,107.593,111.54600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1271,1,99.705600000000004,0.039669999999999997,87.84,91.795000000000002,95.75,99.706000000000003,103.661,107.616,111.572 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1272,1,99.725399999999993,0.039669999999999997,87.856999999999999,91.813000000000002,95.769000000000005,99.724999999999994,103.682,107.63800000000001,111.59399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1273,1,99.745199999999997,0.03968,87.872,91.828999999999994,95.787000000000006,99.745000000000005,103.703,107.661,111.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1274,1,99.765000000000001,0.03968,87.888999999999996,91.847999999999999,95.805999999999997,99.765000000000001,103.724,107.682,111.64100000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1275,1,99.784800000000004,0.039690000000000003,87.903000000000006,91.864000000000004,95.823999999999998,99.784999999999997,103.745,107.706,111.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1276,1,99.804599999999994,0.039690000000000003,87.921000000000006,91.882000000000005,95.843000000000004,99.805000000000007,103.76600000000001,107.727,111.688 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1277,1,99.824399999999997,0.039699999999999999,87.935000000000002,91.897999999999996,95.861000000000004,99.823999999999998,103.78700000000001,107.75,111.71299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1278,1,99.844099999999997,0.039699999999999999,87.953000000000003,91.915999999999997,95.88,99.843999999999994,103.80800000000001,107.77200000000001,111.736 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1279,1,99.863900000000001,0.039710000000000002,87.966999999999999,91.933000000000007,95.897999999999996,99.864000000000004,103.82899999999999,107.795,111.761 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1280,1,99.883600000000001,0.039710000000000002,87.983999999999995,91.950999999999993,95.917000000000002,99.884,103.85,107.816,111.783 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1281,1,99.903400000000005,0.039719999999999998,87.998999999999995,91.966999999999999,95.935000000000002,99.903000000000006,103.872,107.84,111.80800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1282,1,99.923100000000005,0.039719999999999998,88.016000000000005,91.984999999999999,95.953999999999994,99.923000000000002,103.892,107.861,111.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1283,1,99.942800000000005,0.039730000000000001,88.031000000000006,92.001000000000005,95.971999999999994,99.942999999999998,103.914,107.884,111.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1284,1,99.962500000000006,0.039730000000000001,88.048000000000002,92.019000000000005,95.991,99.962000000000003,103.934,107.90600000000001,111.877 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1285,1,99.982200000000006,0.039739999999999998,88.061999999999998,92.036000000000001,96.009,99.981999999999999,103.955,107.929,111.902 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1286,1,100.00190000000001,0.039750000000000001,88.076999999999998,92.052000000000007,96.027000000000001,100.002,103.977,107.952,111.92700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1287,1,100.02160000000001,0.039750000000000001,88.093999999999994,92.07,96.046000000000006,100.02200000000001,103.997,107.973,111.949 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1288,1,100.0412,0.039759999999999997,88.108000000000004,92.085999999999999,96.063999999999993,100.041,104.01900000000001,107.996,111.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1289,1,100.0609,0.039759999999999997,88.126000000000005,92.103999999999999,96.081999999999994,100.06100000000001,104.039,108.018,111.996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1290,1,100.0805,0.03977,88.14,92.12,96.1,100.08,104.06100000000001,108.041,112.021 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1291,1,100.1002,0.03977,88.156999999999996,92.138000000000005,96.119,100.1,104.081,108.062,112.04300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1292,1,100.1198,0.039780000000000003,88.171999999999997,92.153999999999996,96.137,100.12,104.10299999999999,108.08499999999999,112.068 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1293,1,100.13939999999999,0.039780000000000003,88.188999999999993,92.171999999999997,96.156000000000006,100.139,104.123,108.10599999999999,112.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1294,1,100.1591,0.039789999999999999,88.203000000000003,92.188000000000002,96.174000000000007,100.15900000000001,104.14400000000001,108.13,112.11499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1295,1,100.17870000000001,0.039789999999999999,88.22,92.206000000000003,96.192999999999998,100.179,104.16500000000001,108.151,112.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1296,1,100.1983,0.039800000000000002,88.234999999999999,92.222999999999999,96.21,100.19799999999999,104.18600000000001,108.17400000000001,112.16200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1297,1,100.2178,0.039800000000000002,88.251999999999995,92.24,96.228999999999999,100.218,104.206,108.19499999999999,112.184 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1298,1,100.23739999999999,0.039809999999999998,88.266000000000005,92.256,96.247,100.23699999999999,104.22799999999999,108.218,112.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1299,1,100.25700000000001,0.039809999999999998,88.283000000000001,92.275000000000006,96.266000000000005,100.25700000000001,104.248,108.239,112.23099999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1300,1,100.2765,0.039820000000000001,88.296999999999997,92.29,96.283000000000001,100.276,104.27,108.26300000000001,112.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1301,1,100.2961,0.039820000000000001,88.314999999999998,92.308999999999997,96.302000000000007,100.29600000000001,104.29,108.28400000000001,112.277 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1302,1,100.3156,0.039829999999999997,88.328999999999994,92.323999999999998,96.32,100.316,104.31100000000001,108.307,112.30200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1303,1,100.3352,0.039829999999999997,88.346000000000004,92.341999999999999,96.338999999999999,100.33499999999999,104.33199999999999,108.328,112.324 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1304,1,100.35469999999999,0.03984,88.36,92.358000000000004,96.356999999999999,100.355,104.35299999999999,108.351,112.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1305,1,100.3742,0.03984,88.376999999999995,92.376000000000005,96.375,100.374,104.373,108.372,112.371 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1306,1,100.3937,0.039849999999999997,88.391999999999996,92.391999999999996,96.393000000000001,100.39400000000001,104.39400000000001,108.395,112.396 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1307,1,100.4132,0.039849999999999997,88.409000000000006,92.41,96.412000000000006,100.413,104.41500000000001,108.416,112.41800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1308,1,100.4327,0.03986,88.423000000000002,92.426000000000002,96.429000000000002,100.43300000000001,104.43600000000001,108.43899999999999,112.44199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1309,1,100.4522,0.03986,88.44,92.444000000000003,96.447999999999993,100.452,104.456,108.46,112.464 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1310,1,100.4717,0.039870000000000003,88.453999999999994,92.46,96.465999999999994,100.47199999999999,104.47799999999999,108.483,112.489 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1311,1,100.4911,0.039870000000000003,88.471000000000004,92.477999999999994,96.484999999999999,100.491,104.498,108.504,112.511 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1312,1,100.5106,0.039879999999999999,88.486000000000004,92.494,96.501999999999995,100.511,104.51900000000001,108.527,112.536 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1313,1,100.53,0.039879999999999999,88.503,92.512,96.521000000000001,100.53,104.539,108.548,112.557 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1314,1,100.54949999999999,0.039890000000000002,88.516999999999996,92.528000000000006,96.539000000000001,100.55,104.56,108.571,112.58199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1315,1,100.5689,0.039899999999999998,88.531000000000006,92.543999999999997,96.555999999999997,100.569,104.58199999999999,108.59399999999999,112.607 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1316,1,100.5883,0.039899999999999998,88.548000000000002,92.561000000000007,96.575000000000003,100.58799999999999,104.602,108.61499999999999,112.629 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1317,1,100.60769999999999,0.039910000000000001,88.561999999999998,92.576999999999998,96.591999999999999,100.608,104.623,108.63800000000001,112.65300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1318,1,100.6271,0.039910000000000001,88.578999999999994,92.594999999999999,96.611000000000004,100.627,104.643,108.65900000000001,112.675 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1319,1,100.6465,0.039919999999999997,88.593000000000004,92.611000000000004,96.629000000000005,100.646,104.664,108.682,112.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1320,1,100.66589999999999,0.039919999999999997,88.61,92.629000000000005,96.647000000000006,100.666,104.684,108.703,112.72199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1321,1,100.6853,0.03993,88.623999999999995,92.644999999999996,96.665000000000006,100.685,104.706,108.726,112.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1322,1,100.7046,0.03993,88.641000000000005,92.662000000000006,96.683000000000007,100.705,104.726,108.747,112.768 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1323,1,100.724,0.039940000000000003,88.655000000000001,92.677999999999997,96.700999999999993,100.724,104.747,108.77,112.79300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1324,1,100.74339999999999,0.039940000000000003,88.671999999999997,92.695999999999998,96.72,100.74299999999999,104.767,108.791,112.81399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1325,1,100.7627,0.039949999999999999,88.686000000000007,92.712000000000003,96.736999999999995,100.76300000000001,104.788,108.81399999999999,112.839 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1326,1,100.782,0.039949999999999999,88.703000000000003,92.73,96.756,100.782,104.80800000000001,108.834,112.861 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1327,1,100.8013,0.039960000000000002,88.716999999999999,92.745000000000005,96.772999999999996,100.801,104.82899999999999,108.857,112.88500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1328,1,100.8207,0.039960000000000002,88.733999999999995,92.763000000000005,96.792000000000002,100.821,104.849,108.878,112.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1329,1,100.84,0.039969999999999999,88.748000000000005,92.778999999999996,96.808999999999997,100.84,104.871,108.901,112.932 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1330,1,100.8593,0.039969999999999999,88.765000000000001,92.796999999999997,96.828000000000003,100.85899999999999,104.89100000000001,108.922,112.953 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1331,1,100.87860000000001,0.039980000000000002,88.778999999999996,92.811999999999998,96.844999999999999,100.879,104.91200000000001,108.94499999999999,112.97799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1332,1,100.8978,0.039980000000000002,88.796000000000006,92.83,96.864000000000004,100.898,104.932,108.96599999999999,112.999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1333,1,100.9171,0.039989999999999998,88.81,92.846000000000004,96.881,100.917,104.953,108.988,113.024 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1334,1,100.93640000000001,0.039989999999999998,88.826999999999998,92.864000000000004,96.9,100.93600000000001,104.973,109.009,113.04600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1335,1,100.9556,0.04,88.840999999999994,92.879000000000005,96.917000000000002,100.956,104.994,109.032,113.07 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1336,1,100.97490000000001,0.04,88.858000000000004,92.897000000000006,96.936000000000007,100.97499999999999,105.014,109.053,113.092 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1337,1,100.9941,0.040009999999999997,88.872,92.912999999999997,96.953000000000003,100.994,105.035,109.07599999999999,113.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1338,1,101.0134,0.040009999999999997,88.888999999999996,92.93,96.971999999999994,101.01300000000001,105.05500000000001,109.096,113.13800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1339,1,101.0326,0.04002,88.903000000000006,92.945999999999998,96.989000000000004,101.033,105.07599999999999,109.119,113.163 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1340,1,101.0518,0.04002,88.92,92.963999999999999,97.007999999999996,101.05200000000001,105.096,109.14,113.184 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1341,1,101.071,0.040030000000000003,88.933000000000007,92.978999999999999,97.025000000000006,101.071,105.117,109.163,113.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1342,1,101.0902,0.040030000000000003,88.95,92.997,97.043999999999997,101.09,105.137,109.18300000000001,113.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1343,1,101.10939999999999,0.040039999999999999,88.963999999999999,93.013000000000005,97.061000000000007,101.10899999999999,105.158,109.206,113.255 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1344,1,101.12860000000001,0.040039999999999999,88.980999999999995,93.03,97.078999999999994,101.129,105.178,109.227,113.276 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1345,1,101.1477,0.040039999999999999,88.998000000000005,93.048000000000002,97.097999999999999,101.148,105.19799999999999,109.248,113.298 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1346,1,101.1669,0.040050000000000002,89.012,93.063000000000002,97.114999999999995,101.167,105.21899999999999,109.27,113.322 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1347,1,101.1861,0.040050000000000002,89.028999999999996,93.081000000000003,97.134,101.18600000000001,105.239,109.291,113.34399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1348,1,101.2052,0.040059999999999998,89.042000000000002,93.096999999999994,97.150999999999996,101.205,105.259,109.31399999999999,113.36799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1349,1,101.2244,0.040059999999999998,89.058999999999997,93.114000000000004,97.168999999999997,101.224,105.279,109.334,113.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1350,1,101.2435,0.040070000000000001,89.072999999999993,93.13,97.186999999999998,101.244,105.3,109.357,113.414 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1351,1,101.26260000000001,0.040070000000000001,89.09,93.147000000000006,97.204999999999998,101.26300000000001,105.32,109.378,113.435 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1352,1,101.2817,0.040079999999999998,89.103999999999999,93.162999999999997,97.221999999999994,101.282,105.34099999999999,109.4,113.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1353,1,101.3008,0.040079999999999998,89.12,93.180999999999997,97.241,101.301,105.361,109.42100000000001,113.48099999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1354,1,101.32,0.040090000000000001,89.134,93.195999999999998,97.257999999999996,101.32,105.38200000000001,109.444,113.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1355,1,101.339,0.040090000000000001,89.150999999999996,93.213999999999999,97.275999999999996,101.339,105.402,109.464,113.527 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1356,1,101.35809999999999,0.040099999999999997,89.165000000000006,93.228999999999999,97.293999999999997,101.358,105.423,109.48699999999999,113.551 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1357,1,101.3772,0.040099999999999997,89.182000000000002,93.247,97.311999999999998,101.377,105.44199999999999,109.508,113.57299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1358,1,101.3963,0.04011,89.194999999999993,93.262,97.328999999999994,101.396,105.46299999999999,109.53,113.59699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1359,1,101.4153,0.04011,89.212000000000003,93.28,97.347999999999999,101.41500000000001,105.483,109.551,113.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1360,1,101.4344,0.040120000000000003,89.225999999999999,93.295000000000002,97.364999999999995,101.434,105.504,109.57299999999999,113.643 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1361,1,101.45350000000001,0.040120000000000003,89.242999999999995,93.313000000000002,97.382999999999996,101.45399999999999,105.524,109.59399999999999,113.664 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1362,1,101.4725,0.040129999999999999,89.256,93.328000000000003,97.4,101.47199999999999,105.545,109.617,113.68899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1363,1,101.4915,0.040129999999999999,89.272999999999996,93.346000000000004,97.418999999999997,101.492,105.56399999999999,109.637,113.71 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1364,1,101.5106,0.040140000000000002,89.287000000000006,93.361000000000004,97.436000000000007,101.511,105.58499999999999,109.66,113.735 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1365,1,101.5296,0.040140000000000002,89.302999999999997,93.379000000000005,97.453999999999994,101.53,105.605,109.68,113.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1366,1,101.54859999999999,0.040149999999999998,89.316999999999993,93.394000000000005,97.471000000000004,101.54900000000001,105.626,109.703,113.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1367,1,101.5676,0.040149999999999998,89.334000000000003,93.412000000000006,97.49,101.568,105.646,109.723,113.801 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1368,1,101.5866,0.040160000000000001,89.346999999999994,93.427000000000007,97.507000000000005,101.587,105.666,109.746,113.82599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1369,1,101.6056,0.040160000000000001,89.364000000000004,93.444999999999993,97.525000000000006,101.60599999999999,105.68600000000001,109.767,113.84699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1370,1,101.6246,0.040169999999999997,89.378,93.46,97.542000000000002,101.625,105.70699999999999,109.789,113.871 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1371,1,101.6435,0.040169999999999997,89.394000000000005,93.477000000000004,97.56,101.64400000000001,105.727,109.81,113.893 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1372,1,101.66249999999999,0.04018,89.408000000000001,93.492999999999995,97.578000000000003,101.66200000000001,105.747,109.83199999999999,113.917 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1373,1,101.6815,0.04018,89.424999999999997,93.51,97.596000000000004,101.682,105.767,109.85299999999999,113.938 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1374,1,101.7004,0.040189999999999997,89.438000000000002,93.525999999999996,97.613,101.7,105.788,109.875,113.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1375,1,101.71939999999999,0.040189999999999997,89.454999999999998,93.543000000000006,97.631,101.71899999999999,105.80800000000001,109.896,113.98399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1376,1,101.7383,0.0402,89.468999999999994,93.558999999999997,97.647999999999996,101.738,105.828,109.91800000000001,114.008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1377,1,101.7572,0.0402,89.484999999999999,93.575999999999993,97.667000000000002,101.75700000000001,105.848,109.938,114.029 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1378,1,101.7762,0.0402,89.501999999999995,93.593000000000004,97.685000000000002,101.776,105.86799999999999,109.959,114.05 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1379,1,101.79510000000001,0.040210000000000003,89.516000000000005,93.608999999999995,97.701999999999998,101.795,105.88800000000001,109.98099999999999,114.075 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1380,1,101.81399999999999,0.040210000000000003,89.531999999999996,93.626000000000005,97.72,101.81399999999999,105.908,110.002,114.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1381,1,101.8329,0.040219999999999999,89.546000000000006,93.641000000000005,97.736999999999995,101.833,105.929,110.024,114.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1382,1,101.8518,0.040219999999999999,89.561999999999998,93.659000000000006,97.754999999999995,101.852,105.94799999999999,110.045,114.14100000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1383,1,101.8707,0.040230000000000002,89.575999999999993,93.674000000000007,97.772000000000006,101.871,105.96899999999999,110.06699999999999,114.16500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1384,1,101.8896,0.040230000000000002,89.593000000000004,93.691999999999993,97.790999999999997,101.89,105.989,110.08799999999999,114.187 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1385,1,101.9085,0.040239999999999998,89.605999999999995,93.706999999999994,97.808000000000007,101.908,106.009,110.11,114.211 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1386,1,101.92740000000001,0.040239999999999998,89.623000000000005,93.724000000000004,97.825999999999993,101.92700000000001,106.029,110.131,114.232 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1387,1,101.9462,0.040250000000000001,89.635999999999996,93.74,97.843000000000004,101.946,106.05,110.15300000000001,114.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1388,1,101.96510000000001,0.040250000000000001,89.653000000000006,93.757000000000005,97.861000000000004,101.965,106.069,110.173,114.277 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1389,1,101.98390000000001,0.040259999999999997,89.665999999999997,93.772000000000006,97.878,101.98399999999999,106.09,110.196,114.30200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1390,1,102.00279999999999,0.040259999999999997,89.683000000000007,93.79,97.896000000000001,102.003,106.10899999999999,110.21599999999999,114.32299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1391,1,102.02160000000001,0.04027,89.695999999999998,93.805000000000007,97.912999999999997,102.02200000000001,106.13,110.238,114.34699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1392,1,102.04049999999999,0.04027,89.712999999999994,93.822000000000003,97.930999999999997,102.04,106.15,110.259,114.36799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1393,1,102.05929999999999,0.040280000000000003,89.725999999999999,93.837000000000003,97.947999999999993,102.059,106.17,110.28100000000001,114.392 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1394,1,102.07810000000001,0.040280000000000003,89.742999999999995,93.855000000000004,97.965999999999994,102.078,106.19,110.30200000000001,114.413 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1395,1,102.09699999999999,0.040289999999999999,89.757000000000005,93.87,97.983999999999995,102.09699999999999,106.21,110.324,114.437 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1396,1,102.11579999999999,0.040289999999999999,89.772999999999996,93.887,98.001999999999995,102.116,106.23,110.34399999999999,114.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1397,1,102.13460000000001,0.040300000000000002,89.787000000000006,93.903000000000006,98.019000000000005,102.13500000000001,106.251,110.367,114.483 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1398,1,102.1534,0.040300000000000002,89.802999999999997,93.92,98.037000000000006,102.15300000000001,106.27,110.387,114.504 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1399,1,102.1722,0.040300000000000002,89.82,93.936999999999998,98.055000000000007,102.172,106.29,110.407,114.52500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1400,1,102.191,0.040309999999999999,89.832999999999998,93.951999999999998,98.072000000000003,102.191,106.31,110.43,114.54900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1401,1,102.2097,0.040309999999999999,89.849000000000004,93.97,98.09,102.21,106.33,110.45,114.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1402,1,102.2285,0.040320000000000002,89.863,93.984999999999999,98.106999999999999,102.22799999999999,106.35,110.47199999999999,114.59399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1403,1,102.2473,0.040320000000000002,89.879000000000005,94.001999999999995,98.125,102.247,106.37,110.49299999999999,114.61499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1404,1,102.26609999999999,0.040329999999999998,89.893000000000001,94.016999999999996,98.141999999999996,102.26600000000001,106.39,110.515,114.639 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1405,1,102.2848,0.040329999999999998,89.909000000000006,94.034999999999997,98.16,102.285,106.41,110.535,114.66 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1406,1,102.3036,0.040340000000000001,89.923000000000002,94.05,98.177000000000007,102.304,106.431,110.557,114.684 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1407,1,102.3223,0.040340000000000001,89.938999999999993,94.066999999999993,98.194999999999993,102.322,106.45,110.578,114.705 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1408,1,102.3411,0.040349999999999997,89.953000000000003,94.081999999999994,98.212000000000003,102.34099999999999,106.471,110.6,114.729 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1409,1,102.35980000000001,0.040349999999999997,89.968999999999994,94.099000000000004,98.23,102.36,106.49,110.62,114.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1410,1,102.3785,0.04036,89.983000000000004,94.114999999999995,98.247,102.378,106.51,110.642,114.774 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1411,1,102.3972,0.04036,89.998999999999995,94.132000000000005,98.263999999999996,102.39700000000001,106.53,110.663,114.795 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1412,1,102.416,0.040370000000000003,90.012,94.147000000000006,98.281000000000006,102.416,106.551,110.685,114.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1413,1,102.43470000000001,0.040370000000000003,90.028999999999996,94.164000000000001,98.299000000000007,102.435,106.57,110.705,114.84099999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1414,1,102.4534,0.040370000000000003,90.045000000000002,94.180999999999997,98.316999999999993,102.453,106.589,110.72499999999999,114.86199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1415,1,102.4721,0.040379999999999999,90.058999999999997,94.195999999999998,98.334000000000003,102.47199999999999,106.61,110.748,114.886 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1416,1,102.49079999999999,0.040379999999999999,90.075000000000003,94.213999999999999,98.352000000000004,102.491,106.629,110.768,114.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1417,1,102.5095,0.040390000000000002,90.087999999999994,94.228999999999999,98.369,102.51,106.65,110.79,114.931 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1418,1,102.5282,0.040390000000000002,90.105000000000004,94.245999999999995,98.387,102.52800000000001,106.669,110.81,114.952 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1419,1,102.54689999999999,0.040399999999999998,90.117999999999995,94.260999999999996,98.403999999999996,102.547,106.69,110.833,114.976 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1420,1,102.5655,0.040399999999999998,90.135000000000005,94.278000000000006,98.421999999999997,102.566,106.709,110.85299999999999,114.996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1421,1,102.5842,0.040410000000000001,90.147999999999996,94.293000000000006,98.438999999999993,102.584,106.73,110.875,115.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1422,1,102.60290000000001,0.040410000000000001,90.164000000000001,94.311000000000007,98.456999999999994,102.60299999999999,106.749,110.895,115.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1423,1,102.6215,0.040419999999999998,90.177999999999997,94.325999999999993,98.474000000000004,102.622,106.76900000000001,110.917,115.065 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1424,1,102.64019999999999,0.040419999999999998,90.194000000000003,94.343000000000004,98.491,102.64,106.789,110.938,115.086 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1425,1,102.6588,0.040430000000000001,90.206999999999994,94.358000000000004,98.507999999999996,102.65900000000001,106.809,110.96,115.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1426,1,102.67749999999999,0.040430000000000001,90.224000000000004,94.375,98.525999999999996,102.678,106.82899999999999,110.98,115.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1427,1,102.6961,0.040439999999999997,90.236999999999995,94.39,98.543000000000006,102.696,106.849,111.002,115.155 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1428,1,102.7148,0.040439999999999997,90.253,94.406999999999996,98.561000000000007,102.715,106.869,111.02200000000001,115.176 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1429,1,102.7334,0.040439999999999997,90.27,94.424000000000007,98.578999999999994,102.733,106.88800000000001,111.042,115.197 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1430,1,102.752,0.04045,90.283000000000001,94.438999999999993,98.596000000000004,102.752,106.908,111.065,115.221 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1431,1,102.7706,0.04045,90.299000000000007,94.456000000000003,98.614000000000004,102.771,106.928,111.08499999999999,115.242 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1432,1,102.7893,0.040460000000000003,90.313000000000002,94.471999999999994,98.63,102.789,106.94799999999999,111.107,115.26600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1433,1,102.8079,0.040460000000000003,90.328999999999994,94.489000000000004,98.647999999999996,102.80800000000001,106.968,111.127,115.28700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1434,1,102.8265,0.040469999999999999,90.341999999999999,94.504000000000005,98.665000000000006,102.82599999999999,106.988,111.149,115.31100000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1435,1,102.8451,0.040469999999999999,90.358999999999995,94.521000000000001,98.683000000000007,102.845,107.00700000000001,111.169,115.33199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1436,1,102.86369999999999,0.040480000000000002,90.372,94.536000000000001,98.7,102.864,107.02800000000001,111.19199999999999,115.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1437,1,102.8823,0.040480000000000002,90.388000000000005,94.552999999999997,98.718000000000004,102.88200000000001,107.047,111.212,115.376 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1438,1,102.90089999999999,0.040489999999999998,90.402000000000001,94.567999999999998,98.733999999999995,102.901,107.06699999999999,111.23399999999999,115.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1439,1,102.9195,0.040489999999999998,90.418000000000006,94.584999999999994,98.751999999999995,102.92,107.087,111.254,115.42100000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1440,1,102.938,0.040500000000000001,90.430999999999997,94.6,98.769000000000005,102.938,107.107,111.276,115.44499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1441,1,102.95659999999999,0.040500000000000001,90.447000000000003,94.617000000000004,98.787000000000006,102.95699999999999,107.126,111.29600000000001,115.46599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1442,1,102.9752,0.040500000000000001,90.463999999999999,94.634,98.805000000000007,102.97499999999999,107.146,111.316,115.48699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1443,1,102.99379999999999,0.040509999999999997,90.477000000000004,94.649000000000001,98.822000000000003,102.994,107.166,111.33799999999999,115.511 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1444,1,103.0123,0.040509999999999997,90.492999999999995,94.665999999999997,98.838999999999999,103.012,107.185,111.358,115.53100000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1445,1,103.0309,0.04052,90.506,94.680999999999997,98.855999999999995,103.03100000000001,107.206,111.381,115.55500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1446,1,103.04940000000001,0.04052,90.522999999999996,94.697999999999993,98.873999999999995,103.04900000000001,107.22499999999999,111.401,115.57599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1447,1,103.068,0.040529999999999997,90.536000000000001,94.712999999999994,98.891000000000005,103.068,107.245,111.423,115.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1448,1,103.0865,0.040529999999999997,90.552000000000007,94.73,98.908000000000001,103.086,107.265,111.443,115.621 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1449,1,103.10509999999999,0.04054,90.564999999999998,94.745000000000005,98.924999999999997,103.105,107.285,111.465,115.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1450,1,103.1236,0.04054,90.581999999999994,94.762,98.942999999999998,103.124,107.304,111.485,115.66500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1451,1,103.1421,0.040550000000000003,90.594999999999999,94.777000000000001,98.96,103.142,107.325,111.50700000000001,115.68899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1452,1,103.16070000000001,0.040550000000000003,90.611000000000004,94.793999999999997,98.977999999999994,103.161,107.34399999999999,111.527,115.71 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1453,1,103.17919999999999,0.040550000000000003,90.626999999999995,94.811000000000007,98.995000000000005,103.179,107.363,111.547,115.73099999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1454,1,103.1977,0.040559999999999999,90.641000000000005,94.825999999999993,99.012,103.19799999999999,107.383,111.569,115.755 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1455,1,103.2162,0.040559999999999999,90.656999999999996,94.843000000000004,99.03,103.21599999999999,107.40300000000001,111.589,115.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1456,1,103.23480000000001,0.040570000000000002,90.67,94.858000000000004,99.046999999999997,103.235,107.423,111.611,115.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1457,1,103.2533,0.040570000000000002,90.686000000000007,94.875,99.063999999999993,103.253,107.44199999999999,111.631,115.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1458,1,103.2718,0.040579999999999998,90.698999999999998,94.89,99.081000000000003,103.27200000000001,107.46299999999999,111.65300000000001,115.84399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1459,1,103.2903,0.040579999999999998,90.715999999999994,94.906999999999996,99.099000000000004,103.29,107.482,111.673,115.86499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1460,1,103.30880000000001,0.040590000000000001,90.728999999999999,94.921999999999997,99.114999999999995,103.309,107.502,111.69499999999999,115.889 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1461,1,103.32729999999999,0.040590000000000001,90.745000000000005,94.938999999999993,99.132999999999996,103.327,107.521,111.715,115.90900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1462,1,103.3458,0.040599999999999997,90.757999999999996,94.953999999999994,99.15,103.346,107.542,111.73699999999999,115.93300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1463,1,103.3643,0.040599999999999997,90.775000000000006,94.971000000000004,99.168000000000006,103.364,107.56100000000001,111.75700000000001,115.95399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1464,1,103.3827,0.040599999999999997,90.790999999999997,94.988,99.185000000000002,103.383,107.58,111.777,115.97499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1465,1,103.4012,0.04061,90.804000000000002,95.003,99.201999999999998,103.401,107.6,111.79900000000001,115.999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1466,1,103.41970000000001,0.04061,90.82,95.02,99.22,103.42,107.62,111.819,116.01900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1467,1,103.43819999999999,0.040620000000000003,90.832999999999998,95.034999999999997,99.236999999999995,103.438,107.64,111.842,116.04300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1468,1,103.45659999999999,0.040620000000000003,90.849000000000004,95.052000000000007,99.254000000000005,103.45699999999999,107.65900000000001,111.861,116.06399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1469,1,103.4751,0.040629999999999999,90.863,95.066999999999993,99.271000000000001,103.47499999999999,107.679,111.883,116.08799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1470,1,103.4936,0.040629999999999999,90.879000000000005,95.084000000000003,99.289000000000001,103.494,107.699,111.90300000000001,116.108 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1471,1,103.512,0.040640000000000003,90.891999999999996,95.099000000000004,99.305000000000007,103.512,107.71899999999999,111.925,116.13200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1472,1,103.5305,0.040640000000000003,90.908000000000001,95.116,99.322999999999993,103.53,107.738,111.94499999999999,116.15300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1473,1,103.5489,0.040649999999999999,90.921000000000006,95.13,99.34,103.54900000000001,107.758,111.967,116.17700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1474,1,103.56740000000001,0.040649999999999999,90.936999999999998,95.147000000000006,99.356999999999999,103.56699999999999,107.777,111.98699999999999,116.197 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1475,1,103.58580000000001,0.040649999999999999,90.953999999999994,95.164000000000001,99.375,103.586,107.797,112.00700000000001,116.218 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1476,1,103.60429999999999,0.040660000000000002,90.966999999999999,95.179000000000002,99.391999999999996,103.604,107.81699999999999,112.029,116.242 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1477,1,103.62269999999999,0.040660000000000002,90.983000000000004,95.195999999999998,99.409000000000006,103.623,107.836,112.04900000000001,116.26300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1478,1,103.6412,0.040669999999999998,90.995999999999995,95.210999999999999,99.426000000000002,103.64100000000001,107.85599999999999,112.071,116.286 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1479,1,103.6596,0.040669999999999998,91.012,95.227999999999994,99.444000000000003,103.66,107.875,112.09099999999999,116.307 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1480,1,103.678,0.040680000000000001,91.025000000000006,95.242999999999995,99.46,103.678,107.896,112.113,116.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1481,1,103.6965,0.040680000000000001,91.040999999999997,95.26,99.477999999999994,103.696,107.91500000000001,112.133,116.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1482,1,103.7149,0.040689999999999997,91.054000000000002,95.275000000000006,99.495000000000005,103.715,107.935,112.155,116.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1483,1,103.7333,0.040689999999999997,91.070999999999998,95.290999999999997,99.512,103.733,107.95399999999999,112.175,116.396 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1484,1,103.7517,0.040689999999999997,91.087000000000003,95.308000000000007,99.53,103.752,107.973,112.19499999999999,116.417 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1485,1,103.7701,0.0407,91.1,95.322999999999993,99.546999999999997,103.77,107.994,112.217,116.44 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1486,1,103.7885,0.0407,91.116,95.34,99.563999999999993,103.788,108.01300000000001,112.23699999999999,116.461 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1487,1,103.807,0.040710000000000003,91.129000000000005,95.355000000000004,99.581000000000003,103.807,108.033,112.259,116.485 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1488,1,103.8254,0.040710000000000003,91.144999999999996,95.372,99.599000000000004,103.825,108.05200000000001,112.279,116.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1489,1,103.8438,0.040719999999999999,91.158000000000001,95.387,99.614999999999995,103.84399999999999,108.072,112.301,116.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1490,1,103.8622,0.040719999999999999,91.174000000000007,95.403999999999996,99.632999999999996,103.86199999999999,108.09099999999999,112.321,116.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1491,1,103.8806,0.040730000000000002,91.186999999999998,95.418000000000006,99.65,103.881,108.11199999999999,112.343,116.574 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1492,1,103.899,0.040730000000000002,91.203999999999994,95.435000000000002,99.667000000000002,103.899,108.131,112.363,116.59399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1493,1,103.9174,0.040730000000000002,91.22,95.451999999999998,99.685000000000002,103.917,108.15,112.383,116.61499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1494,1,103.9357,0.040739999999999998,91.233000000000004,95.466999999999999,99.700999999999993,103.93600000000001,108.17,112.404,116.639 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1495,1,103.9541,0.040739999999999998,91.248999999999995,95.483999999999995,99.718999999999994,103.95399999999999,108.18899999999999,112.42400000000001,116.65900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1496,1,103.9725,0.040750000000000001,91.262,95.498999999999995,99.736000000000004,103.97199999999999,108.209,112.446,116.68300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1497,1,103.9909,0.040750000000000001,91.278000000000006,95.516000000000005,99.753,103.991,108.229,112.46599999999999,116.70399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1498,1,104.0093,0.040759999999999998,91.290999999999997,95.53,99.77,104.009,108.249,112.488,116.72799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1499,1,104.0277,0.040759999999999998,91.307000000000002,95.546999999999997,99.787999999999997,104.02800000000001,108.268,112.508,116.748 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1500,1,104.04600000000001,0.040770000000000001,91.32,95.561999999999998,99.804000000000002,104.04600000000001,108.288,112.53,116.77200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1501,1,104.06440000000001,0.040770000000000001,91.335999999999999,95.578999999999994,99.822000000000003,104.06399999999999,108.307,112.55,116.79300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1502,1,104.08280000000001,0.040779999999999997,91.349000000000004,95.593999999999994,99.837999999999994,104.083,108.327,112.572,116.816 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1503,1,104.1011,0.040779999999999997,91.364999999999995,95.611000000000004,99.855999999999995,104.101,108.346,112.592,116.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1504,1,104.1195,0.040779999999999997,91.382000000000005,95.628,99.873999999999995,104.12,108.36499999999999,112.611,116.857 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1505,1,104.1379,0.04079,91.394999999999996,95.641999999999996,99.89,104.13800000000001,108.386,112.633,116.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1506,1,104.1562,0.04079,91.411000000000001,95.659000000000006,99.908000000000001,104.15600000000001,108.405,112.65300000000001,116.902 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1507,1,104.1746,0.040800000000000003,91.424000000000007,95.674000000000007,99.924000000000007,104.175,108.425,112.675,116.926 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1508,1,104.19289999999999,0.040800000000000003,91.44,95.691000000000003,99.941999999999993,104.193,108.444,112.69499999999999,116.946 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1509,1,104.21129999999999,0.040809999999999999,91.453000000000003,95.706000000000003,99.957999999999998,104.211,108.464,112.717,116.97 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1510,1,104.2296,0.040809999999999999,91.468999999999994,95.721999999999994,99.975999999999999,104.23,108.483,112.73699999999999,116.99 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1511,1,104.248,0.040820000000000002,91.481999999999999,95.736999999999995,99.992999999999995,104.248,108.503,112.759,117.014 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1512,1,104.2663,0.040820000000000002,91.498000000000005,95.754000000000005,100.01,104.26600000000001,108.52200000000001,112.779,117.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1513,1,104.2847,0.040820000000000002,91.513999999999996,95.771000000000001,100.02800000000001,104.285,108.542,112.79900000000001,117.05500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1514,1,104.303,0.040829999999999998,91.527000000000001,95.786000000000001,100.044,104.303,108.562,112.82,117.07899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1515,1,104.32129999999999,0.040829999999999998,91.543000000000006,95.802000000000007,100.062,104.321,108.581,112.84,117.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1516,1,104.33969999999999,0.040840000000000001,91.555999999999997,95.816999999999993,100.078,104.34,108.601,112.86199999999999,117.123 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1517,1,104.358,0.040840000000000001,91.572000000000003,95.834000000000003,100.096,104.358,108.62,112.88200000000001,117.14400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1518,1,104.3763,0.040849999999999997,91.584999999999994,95.849000000000004,100.113,104.376,108.64,112.904,117.16800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1519,1,104.3947,0.040849999999999997,91.600999999999999,95.866,100.13,104.395,108.65900000000001,112.92400000000001,117.188 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1520,1,104.413,0.04086,91.614000000000004,95.88,100.14700000000001,104.413,108.679,112.946,117.212 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1521,1,104.43129999999999,0.04086,91.63,95.897000000000006,100.164,104.431,108.69799999999999,112.965,117.232 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1522,1,104.4496,0.04086,91.646000000000001,95.914000000000001,100.182,104.45,108.717,112.985,117.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1523,1,104.4679,0.040869999999999997,91.659000000000006,95.929000000000002,100.19799999999999,104.468,108.738,113.00700000000001,117.277 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1524,1,104.4863,0.040869999999999997,91.674999999999997,95.945999999999998,100.21599999999999,104.486,108.75700000000001,113.027,117.297 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1525,1,104.5046,0.04088,91.688000000000002,95.96,100.232,104.505,108.777,113.04900000000001,117.321 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1526,1,104.52290000000001,0.04088,91.703999999999994,95.977000000000004,100.25,104.523,108.79600000000001,113.069,117.342 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1527,1,104.5412,0.040890000000000003,91.716999999999999,95.992000000000004,100.267,104.541,108.816,113.09099999999999,117.36499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1528,1,104.5595,0.040890000000000003,91.733000000000004,96.009,100.28400000000001,104.56,108.83499999999999,113.11,117.386 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1529,1,104.5778,0.040890000000000003,91.748999999999995,96.025000000000006,100.30200000000001,104.578,108.854,113.13,117.40600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1530,1,104.59610000000001,0.040899999999999999,91.762,96.04,100.318,104.596,108.874,113.152,117.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1531,1,104.6144,0.040899999999999999,91.778000000000006,96.057000000000002,100.336,104.614,108.893,113.172,117.45099999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1532,1,104.6327,0.040910000000000002,91.790999999999997,96.072000000000003,100.352,104.633,108.913,113.194,117.474 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1533,1,104.651,0.040910000000000002,91.807000000000002,96.087999999999994,100.37,104.651,108.932,113.214,117.495 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1534,1,104.66930000000001,0.040919999999999998,91.82,96.102999999999994,100.386,104.669,108.952,113.235,117.51900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1535,1,104.6876,0.040919999999999998,91.835999999999999,96.12,100.404,104.688,108.971,113.255,117.539 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1536,1,104.7059,0.040930000000000001,91.849000000000004,96.135000000000005,100.42,104.706,108.992,113.277,117.563 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1537,1,104.7242,0.040930000000000001,91.864999999999995,96.150999999999996,100.438,104.724,109.011,113.297,117.583 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1538,1,104.74250000000001,0.040930000000000001,91.881,96.168000000000006,100.455,104.742,109.03,113.31699999999999,117.604 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1539,1,104.7608,0.040939999999999997,91.894000000000005,96.183000000000007,100.47199999999999,104.761,109.05,113.339,117.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1540,1,104.7791,0.040939999999999997,91.91,96.2,100.489,104.779,109.069,113.358,117.648 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1541,1,104.7974,0.04095,91.923000000000002,96.213999999999999,100.506,104.797,109.089,113.38,117.672 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1542,1,104.81570000000001,0.04095,91.938999999999993,96.230999999999995,100.523,104.816,109.108,113.4,117.69199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1543,1,104.8339,0.040960000000000003,91.951999999999998,96.245999999999995,100.54,104.834,109.128,113.422,117.71599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1544,1,104.8522,0.040960000000000003,91.968000000000004,96.263000000000005,100.557,104.852,109.14700000000001,113.44199999999999,117.736 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1545,1,104.87050000000001,0.040969999999999999,91.980999999999995,96.277000000000001,100.574,104.87,109.167,113.464,117.76 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1546,1,104.8888,0.040969999999999999,91.997,96.293999999999997,100.592,104.889,109.18600000000001,113.483,117.78100000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1547,1,104.9071,0.040969999999999999,92.013000000000005,96.311000000000007,100.60899999999999,104.907,109.205,113.503,117.801 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1548,1,104.92529999999999,0.040980000000000003,92.025999999999996,96.325999999999993,100.625,104.925,109.22499999999999,113.52500000000001,117.825 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1549,1,104.9436,0.040980000000000003,92.042000000000002,96.341999999999999,100.643,104.944,109.244,113.545,117.845 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1550,1,104.9619,0.040989999999999999,92.055000000000007,96.356999999999999,100.66,104.962,109.264,113.56699999999999,117.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1551,1,104.9802,0.040989999999999999,92.070999999999998,96.373999999999995,100.67700000000001,104.98,109.283,113.586,117.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1552,1,104.9984,0.041000000000000002,92.084000000000003,96.388999999999996,100.693,104.998,109.303,113.608,117.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1553,1,105.0167,0.041000000000000002,92.1,96.405000000000001,100.711,105.017,109.322,113.628,117.934 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1554,1,105.035,0.041000000000000002,92.116,96.421999999999997,100.729,105.035,109.34099999999999,113.648,117.95399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1555,1,105.0532,0.041009999999999998,92.129000000000005,96.436999999999998,100.745,105.053,109.361,113.67,117.97799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1556,1,105.0715,0.041009999999999998,92.144999999999996,96.453999999999994,100.76300000000001,105.072,109.38,113.68899999999999,117.998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1557,1,105.0898,0.041020000000000001,92.156999999999996,96.468000000000004,100.779,105.09,109.401,113.711,118.02200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1558,1,105.108,0.041020000000000001,92.173000000000002,96.484999999999999,100.79600000000001,105.108,109.42,113.73099999999999,118.04300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1559,1,105.1263,0.041029999999999997,92.186000000000007,96.5,100.813,105.126,109.44,113.753,118.066 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1560,1,105.14449999999999,0.041029999999999997,92.201999999999998,96.516000000000005,100.83,105.14400000000001,109.459,113.773,118.087 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1561,1,105.1628,0.04104,92.215000000000003,96.531000000000006,100.84699999999999,105.163,109.479,113.795,118.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1562,1,105.1811,0.04104,92.230999999999995,96.548000000000002,100.864,105.181,109.498,113.81399999999999,118.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1563,1,105.19929999999999,0.04104,92.247,96.564999999999998,100.88200000000001,105.199,109.517,113.834,118.151 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1564,1,105.2176,0.041050000000000003,92.26,96.578999999999994,100.898,105.218,109.53700000000001,113.85599999999999,118.175 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1565,1,105.2358,0.041050000000000003,92.275999999999996,96.596000000000004,100.916,105.236,109.556,113.876,118.196 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1566,1,105.25409999999999,0.041059999999999999,92.289000000000001,96.611000000000004,100.932,105.254,109.57599999999999,113.898,118.21899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1567,1,105.2723,0.041059999999999999,92.305000000000007,96.626999999999995,100.95,105.27200000000001,109.595,113.917,118.24 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1568,1,105.2906,0.041070000000000002,92.317999999999998,96.641999999999996,100.96599999999999,105.291,109.61499999999999,113.93899999999999,118.26300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1569,1,105.30880000000001,0.041070000000000002,92.334000000000003,96.659000000000006,100.98399999999999,105.309,109.634,113.959,118.28400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1570,1,105.3271,0.041070000000000002,92.35,96.676000000000002,101.001,105.327,109.65300000000001,113.979,118.304 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1571,1,105.34529999999999,0.041079999999999998,92.363,96.69,101.018,105.345,109.673,114,118.328 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1572,1,105.3635,0.041079999999999998,92.379000000000005,96.706999999999994,101.035,105.364,109.69199999999999,114.02,118.348 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1573,1,105.3818,0.041090000000000002,92.391000000000005,96.721999999999994,101.05200000000001,105.38200000000001,109.712,114.042,118.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1574,1,105.4,0.041090000000000002,92.406999999999996,96.738,101.069,105.4,109.73099999999999,114.062,118.393 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1575,1,105.4183,0.041099999999999998,92.42,96.753,101.086,105.41800000000001,109.751,114.084,118.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1576,1,105.4365,0.041099999999999998,92.436000000000007,96.77,101.10299999999999,105.43600000000001,109.77,114.10299999999999,118.437 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1577,1,105.4547,0.041110000000000001,92.448999999999998,96.784000000000006,101.119,105.455,109.79,114.125,118.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1578,1,105.473,0.041110000000000001,92.465000000000003,96.801000000000002,101.137,105.473,109.809,114.145,118.48099999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1579,1,105.49120000000001,0.041110000000000001,92.480999999999995,96.817999999999998,101.154,105.491,109.828,114.16500000000001,118.501 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1580,1,105.5094,0.041119999999999997,92.494,96.831999999999994,101.17100000000001,105.509,109.848,114.18600000000001,118.52500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1581,1,105.5277,0.041119999999999997,92.51,96.849000000000004,101.188,105.52800000000001,109.867,114.206,118.54600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1582,1,105.5459,0.04113,92.522999999999996,96.864000000000004,101.205,105.54600000000001,109.887,114.22799999999999,118.569 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1583,1,105.5641,0.04113,92.539000000000001,96.88,101.22199999999999,105.56399999999999,109.90600000000001,114.248,118.59 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1584,1,105.58240000000001,0.041140000000000003,92.551000000000002,96.894999999999996,101.239,105.58199999999999,109.926,114.27,118.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1585,1,105.6006,0.041140000000000003,92.566999999999993,96.912000000000006,101.256,105.601,109.94499999999999,114.289,118.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1586,1,105.61879999999999,0.041140000000000003,92.582999999999998,96.927999999999997,101.274,105.619,109.964,114.309,118.654 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1587,1,105.637,0.041149999999999999,92.596000000000004,96.942999999999998,101.29,105.637,109.98399999999999,114.331,118.678 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1588,1,105.6553,0.041149999999999999,92.611999999999995,96.96,101.30800000000001,105.655,110.003,114.351,118.69799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1589,1,105.6735,0.041160000000000002,92.625,96.974000000000004,101.324,105.67400000000001,110.023,114.373,118.72199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1590,1,105.6917,0.041160000000000002,92.641000000000005,96.991,101.34099999999999,105.69199999999999,110.042,114.392,118.74299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1591,1,105.7099,0.041169999999999998,92.653999999999996,97.006,101.358,105.71,110.062,114.414,118.76600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1592,1,105.7281,0.041169999999999998,92.67,97.022000000000006,101.375,105.72799999999999,110.081,114.434,118.78700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1593,1,105.74630000000001,0.041169999999999998,92.686000000000007,97.039000000000001,101.393,105.746,110.1,114.453,118.807 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1594,1,105.7646,0.041180000000000001,92.697999999999993,97.054000000000002,101.40900000000001,105.765,110.12,114.47499999999999,118.831 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1595,1,105.78279999999999,0.041180000000000001,92.713999999999999,97.070999999999998,101.42700000000001,105.783,110.139,114.495,118.851 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1596,1,105.801,0.041189999999999997,92.727000000000004,97.084999999999994,101.443,105.801,110.15900000000001,114.517,118.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1597,1,105.8192,0.041189999999999997,92.742999999999995,97.102000000000004,101.461,105.819,110.178,114.53700000000001,118.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1598,1,105.8374,0.041200000000000001,92.756,97.116,101.477,105.837,110.19799999999999,114.55800000000001,118.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1599,1,105.8556,0.041200000000000001,92.772000000000006,97.132999999999996,101.494,105.85599999999999,110.217,114.578,118.93899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1600,1,105.8738,0.041200000000000001,92.787999999999997,97.15,101.512,105.874,110.236,114.598,118.96 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1601,1,105.892,0.041209999999999997,92.801000000000002,97.164000000000001,101.52800000000001,105.892,110.256,114.62,118.983 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1602,1,105.9102,0.041209999999999997,92.816999999999993,97.180999999999997,101.54600000000001,105.91,110.27500000000001,114.639,119.004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1603,1,105.9284,0.04122,92.828999999999994,97.195999999999998,101.562,105.928,110.295,114.661,119.02800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1604,1,105.9466,0.04122,92.844999999999999,97.212000000000003,101.57899999999999,105.947,110.31399999999999,114.681,119.048 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1605,1,105.9648,0.041230000000000003,92.858000000000004,97.227000000000004,101.596,105.965,110.334,114.703,119.072 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1606,1,105.983,0.041230000000000003,92.873999999999995,97.244,101.613,105.983,110.35299999999999,114.72199999999999,119.092 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1607,1,106.0012,0.041230000000000003,92.89,97.26,101.631,106.001,110.372,114.742,119.11199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1608,1,106.0194,0.041239999999999999,92.903000000000006,97.275000000000006,101.64700000000001,106.01900000000001,110.392,114.764,119.136 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1609,1,106.0376,0.041239999999999999,92.918999999999997,97.292000000000002,101.66500000000001,106.038,110.411,114.78400000000001,119.157 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1610,1,106.0558,0.041250000000000002,92.930999999999997,97.305999999999997,101.681,106.056,110.431,114.80500000000001,119.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1611,1,106.074,0.041250000000000002,92.947000000000003,97.322999999999993,101.69799999999999,106.074,110.45,114.825,119.20099999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1612,1,106.09220000000001,0.041259999999999998,92.96,97.337000000000003,101.715,106.092,110.47,114.84699999999999,119.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1613,1,106.1104,0.041259999999999998,92.975999999999999,97.353999999999999,101.732,106.11,110.489,114.867,119.245 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1614,1,106.12860000000001,0.041270000000000001,92.989000000000004,97.369,101.749,106.129,110.509,114.88800000000001,119.268 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1615,1,106.1467,0.041270000000000001,93.004999999999995,97.385000000000005,101.76600000000001,106.14700000000001,110.527,114.908,119.289 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1616,1,106.1649,0.041270000000000001,93.021000000000001,97.402000000000001,101.783,106.16500000000001,110.54600000000001,114.928,119.309 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1617,1,106.1831,0.041279999999999997,93.033000000000001,97.417000000000002,101.8,106.18300000000001,110.566,114.95,119.333 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1618,1,106.2013,0.041279999999999997,93.049000000000007,97.433000000000007,101.81699999999999,106.20099999999999,110.58499999999999,114.96899999999999,119.35299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1619,1,106.2195,0.04129,93.061999999999998,97.447999999999993,101.834,106.22,110.605,114.991,119.377 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1620,1,106.2377,0.04129,93.078000000000003,97.465000000000003,101.851,106.238,110.624,115.011,119.39700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1621,1,106.25579999999999,0.041300000000000003,93.090999999999994,97.478999999999999,101.867,106.256,110.64400000000001,115.033,119.42100000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1622,1,106.274,0.041300000000000003,93.106999999999999,97.495999999999995,101.88500000000001,106.274,110.663,115.05200000000001,119.441 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1623,1,106.29219999999999,0.041300000000000003,93.123000000000005,97.512,101.902,106.292,110.682,115.072,119.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1624,1,106.3104,0.041309999999999999,93.135000000000005,97.527000000000001,101.919,106.31,110.702,115.09399999999999,119.485 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1625,1,106.32850000000001,0.041309999999999999,93.150999999999996,97.543999999999997,101.93600000000001,106.328,110.721,115.113,119.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1626,1,106.3467,0.041320000000000003,93.164000000000001,97.558000000000007,101.952,106.34699999999999,110.741,115.13500000000001,119.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1627,1,106.36490000000001,0.041320000000000003,93.18,97.575000000000003,101.97,106.36499999999999,110.76,115.155,119.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1628,1,106.3831,0.041320000000000003,93.195999999999998,97.591999999999999,101.98699999999999,106.383,110.779,115.175,119.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1629,1,106.4012,0.041329999999999999,93.209000000000003,97.605999999999995,102.004,106.401,110.79900000000001,115.196,119.59399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1630,1,106.4194,0.041329999999999999,93.224000000000004,97.623000000000005,102.021,106.419,110.818,115.21599999999999,119.614 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1631,1,106.4376,0.041340000000000002,93.236999999999995,97.637,102.03700000000001,106.438,110.83799999999999,115.238,119.63800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1632,1,106.45569999999999,0.041340000000000002,93.253,97.653999999999996,102.05500000000001,106.456,110.857,115.25700000000001,119.658 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1633,1,106.4739,0.041349999999999998,93.266000000000005,97.668999999999997,102.071,106.474,110.877,115.279,119.682 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1634,1,106.49209999999999,0.041349999999999998,93.281999999999996,97.685000000000002,102.089,106.492,110.896,115.29900000000001,119.702 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1635,1,106.5102,0.041349999999999998,93.298000000000002,97.701999999999998,102.10599999999999,106.51,110.914,115.319,119.723 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1636,1,106.5284,0.041360000000000001,93.31,97.715999999999994,102.122,106.52800000000001,110.934,115.34,119.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1637,1,106.54649999999999,0.041360000000000001,93.325999999999993,97.733000000000004,102.14,106.54600000000001,110.953,115.36,119.767 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1638,1,106.5647,0.041369999999999997,93.338999999999999,97.748000000000005,102.15600000000001,106.565,110.973,115.38200000000001,119.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1639,1,106.5829,0.041369999999999997,93.355000000000004,97.763999999999996,102.17400000000001,106.583,110.992,115.402,119.81100000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1640,1,106.601,0.04138,93.367999999999995,97.778999999999996,102.19,106.601,111.012,115.423,119.834 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1641,1,106.61920000000001,0.04138,93.382999999999996,97.795000000000002,102.20699999999999,106.619,111.03100000000001,115.443,119.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1642,1,106.6373,0.04138,93.399000000000001,97.811999999999998,102.22499999999999,106.637,111.05,115.46299999999999,119.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1643,1,106.6555,0.041390000000000003,93.412000000000006,97.826999999999998,102.241,106.65600000000001,111.07,115.48399999999999,119.899 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1644,1,106.67359999999999,0.041390000000000003,93.427999999999997,97.843000000000004,102.258,106.67400000000001,111.089,115.504,119.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1645,1,106.6918,0.041399999999999999,93.441000000000003,97.858000000000004,102.27500000000001,106.69199999999999,111.10899999999999,115.526,119.943 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1646,1,106.7099,0.041399999999999999,93.456999999999994,97.873999999999995,102.292,106.71,111.128,115.545,119.96299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1647,1,106.7281,0.041410000000000002,93.468999999999994,97.888999999999996,102.30800000000001,106.72799999999999,111.148,115.56699999999999,119.98699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1648,1,106.7462,0.041410000000000002,93.484999999999999,97.905000000000001,102.32599999999999,106.746,111.167,115.587,120.00700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1649,1,106.76439999999999,0.041410000000000002,93.501000000000005,97.921999999999997,102.343,106.764,111.18600000000001,115.607,120.02800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1650,1,106.7825,0.041419999999999998,93.513999999999996,97.936999999999998,102.36,106.782,111.205,115.628,120.051 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1651,1,106.8006,0.041419999999999998,93.53,97.953000000000003,102.377,106.801,111.224,115.648,120.072 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1652,1,106.8188,0.041430000000000002,93.542000000000002,97.968000000000004,102.393,106.819,111.244,115.67,120.095 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1653,1,106.8369,0.041430000000000002,93.558000000000007,97.983999999999995,102.411,106.837,111.26300000000001,115.68899999999999,120.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1654,1,106.85509999999999,0.041439999999999998,93.570999999999998,97.998999999999995,102.42700000000001,106.855,111.283,115.711,120.139 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1655,1,106.8732,0.041439999999999998,93.587000000000003,98.016000000000005,102.444,106.873,111.30200000000001,115.73099999999999,120.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1656,1,106.8913,0.041439999999999998,93.602999999999994,98.031999999999996,102.462,106.89100000000001,111.321,115.75,120.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1657,1,106.90949999999999,0.041450000000000001,93.614999999999995,98.046999999999997,102.47799999999999,106.91,111.34099999999999,115.77200000000001,120.20399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1658,1,106.9276,0.041450000000000001,93.631,98.063000000000002,102.495,106.928,111.36,115.792,120.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1659,1,106.9457,0.041459999999999997,93.644000000000005,98.078000000000003,102.512,106.946,111.38,115.81399999999999,120.248 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1660,1,106.9639,0.041459999999999997,93.66,98.093999999999994,102.529,106.964,111.399,115.833,120.268 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1661,1,106.982,0.04147,93.671999999999997,98.108999999999995,102.545,106.982,111.419,115.855,120.292 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1662,1,107.0001,0.04147,93.688000000000002,98.126000000000005,102.563,107,111.437,115.875,120.312 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1663,1,107.0183,0.04147,93.703999999999994,98.141999999999996,102.58,107.018,111.456,115.89400000000001,120.33199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1664,1,107.0364,0.041480000000000003,93.716999999999999,98.156999999999996,102.59699999999999,107.036,111.476,115.916,120.35599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1665,1,107.0545,0.041480000000000003,93.733000000000004,98.173000000000002,102.614,107.054,111.495,115.93600000000001,120.376 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1666,1,107.0727,0.041489999999999999,93.745000000000005,98.188000000000002,102.63,107.07299999999999,111.515,115.958,120.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1667,1,107.0908,0.041489999999999999,93.760999999999996,98.203999999999994,102.648,107.09099999999999,111.53400000000001,115.977,120.42 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1668,1,107.10890000000001,0.041489999999999999,93.777000000000001,98.221000000000004,102.66500000000001,107.10899999999999,111.553,115.997,120.441 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1669,1,107.127,0.041500000000000002,93.79,98.234999999999999,102.681,107.127,111.57299999999999,116.01900000000001,120.464 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1670,1,107.1452,0.041500000000000002,93.805999999999997,98.251999999999995,102.699,107.145,111.592,116.038,120.485 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1671,1,107.16330000000001,0.041509999999999998,93.817999999999998,98.266999999999996,102.715,107.163,111.61199999999999,116.06,120.508 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1672,1,107.1814,0.041509999999999998,93.834000000000003,98.283000000000001,102.732,107.181,111.63,116.08,120.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1673,1,107.1995,0.041520000000000001,93.846999999999994,98.298000000000002,102.749,107.2,111.65,116.101,120.55200000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1674,1,107.2176,0.041520000000000001,93.863,98.313999999999993,102.76600000000001,107.218,111.669,116.121,120.57299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1675,1,107.2358,0.041520000000000001,93.879000000000005,98.331000000000003,102.783,107.236,111.688,116.14100000000001,120.593 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1676,1,107.2539,0.041529999999999997,93.891000000000005,98.344999999999999,102.8,107.254,111.708,116.16200000000001,120.617 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1677,1,107.27200000000001,0.041529999999999997,93.906999999999996,98.361999999999995,102.81699999999999,107.27200000000001,111.727,116.182,120.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1678,1,107.2901,0.041540000000000001,93.92,98.376000000000005,102.833,107.29,111.747,116.20399999999999,120.661 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1679,1,107.3082,0.041540000000000001,93.935000000000002,98.393000000000001,102.851,107.30800000000001,111.76600000000001,116.223,120.681 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1680,1,107.3263,0.041540000000000001,93.950999999999993,98.41,102.86799999999999,107.32599999999999,111.785,116.24299999999999,120.70099999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1681,1,107.34439999999999,0.041549999999999997,93.963999999999999,98.424000000000007,102.884,107.34399999999999,111.80500000000001,116.265,120.72499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1682,1,107.3625,0.041549999999999997,93.98,98.441000000000003,102.902,107.36199999999999,111.82299999999999,116.28400000000001,120.745 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1683,1,107.3806,0.04156,93.992000000000004,98.454999999999998,102.91800000000001,107.381,111.843,116.306,120.76900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1684,1,107.39879999999999,0.04156,94.007999999999996,98.471999999999994,102.935,107.399,111.86199999999999,116.32599999999999,120.789 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1685,1,107.4169,0.041570000000000003,94.021000000000001,98.486000000000004,102.952,107.417,111.88200000000001,116.348,120.813 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1686,1,107.435,0.041570000000000003,94.037000000000006,98.503,102.96899999999999,107.435,111.901,116.367,120.833 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1687,1,107.45310000000001,0.041570000000000003,94.052999999999997,98.519000000000005,102.986,107.453,111.92,116.387,120.854 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1688,1,107.4712,0.041579999999999999,94.064999999999998,98.534000000000006,103.003,107.471,111.94,116.40900000000001,120.877 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1689,1,107.4893,0.041579999999999999,94.081000000000003,98.55,103.02,107.489,111.959,116.428,120.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1690,1,107.5074,0.041590000000000002,94.093999999999994,98.564999999999998,103.036,107.50700000000001,111.979,116.45,120.92100000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1691,1,107.52549999999999,0.041590000000000002,94.11,98.581999999999994,103.054,107.526,111.997,116.46899999999999,120.941 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1692,1,107.5436,0.041599999999999998,94.122,98.596000000000004,103.07,107.544,112.017,116.491,120.965 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1693,1,107.5617,0.041599999999999998,94.138000000000005,98.613,103.087,107.562,112.036,116.511,120.985 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1694,1,107.57980000000001,0.041599999999999998,94.153999999999996,98.629000000000005,103.104,107.58,112.05500000000001,116.53,121.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1695,1,107.5979,0.041610000000000001,94.165999999999997,98.644000000000005,103.121,107.598,112.075,116.55200000000001,121.029 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1696,1,107.616,0.041610000000000001,94.182000000000002,98.66,103.13800000000001,107.616,112.09399999999999,116.572,121.05 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1697,1,107.6341,0.041619999999999997,94.194999999999993,98.674999999999997,103.154,107.634,112.114,116.59399999999999,121.07299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1698,1,107.65219999999999,0.041619999999999997,94.210999999999999,98.691000000000003,103.172,107.652,112.133,116.613,121.09399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1699,1,107.67019999999999,0.041619999999999997,94.225999999999999,98.707999999999998,103.18899999999999,107.67,112.151,116.633,121.114 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1700,1,107.6883,0.04163,94.239000000000004,98.721999999999994,103.205,107.688,112.17100000000001,116.654,121.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1701,1,107.7064,0.04163,94.254999999999995,98.739000000000004,103.223,107.706,112.19,116.67400000000001,121.158 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1702,1,107.72450000000001,0.041640000000000003,94.268000000000001,98.753,103.239,107.724,112.21,116.696,121.181 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1703,1,107.7426,0.041640000000000003,94.283000000000001,98.77,103.256,107.74299999999999,112.229,116.715,121.202 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1704,1,107.7607,0.04165,94.296000000000006,98.784000000000006,103.27200000000001,107.761,112.249,116.73699999999999,121.22499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1705,1,107.7788,0.04165,94.311999999999998,98.801000000000002,103.29,107.779,112.268,116.75700000000001,121.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1706,1,107.79689999999999,0.04165,94.328000000000003,98.816999999999993,103.307,107.797,112.28700000000001,116.776,121.26600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1707,1,107.81489999999999,0.041660000000000003,94.34,98.831999999999994,103.32299999999999,107.815,112.306,116.798,121.29 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1708,1,107.833,0.041660000000000003,94.355999999999995,98.847999999999999,103.34099999999999,107.833,112.325,116.818,121.31 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1709,1,107.8511,0.041669999999999999,94.369,98.863,103.357,107.851,112.345,116.839,121.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1710,1,107.86920000000001,0.041669999999999999,94.384,98.879000000000005,103.374,107.869,112.364,116.85899999999999,121.354 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1711,1,107.8873,0.041669999999999999,94.4,98.896000000000001,103.392,107.887,112.383,116.879,121.374 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1712,1,107.9053,0.041680000000000002,94.412999999999997,98.91,103.408,107.905,112.40300000000001,116.9,121.398 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1713,1,107.9234,0.041680000000000002,94.429000000000002,98.927000000000007,103.425,107.923,112.422,116.92,121.41800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1714,1,107.9415,0.041689999999999998,94.441000000000003,98.941000000000003,103.441,107.94199999999999,112.44199999999999,116.94199999999999,121.44199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1715,1,107.95959999999999,0.041689999999999998,94.456999999999994,98.957999999999998,103.459,107.96,112.46,116.961,121.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1716,1,107.9777,0.041689999999999998,94.472999999999999,98.974999999999994,103.476,107.97799999999999,112.479,116.98099999999999,121.482 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1717,1,107.9957,0.041700000000000001,94.484999999999999,98.989000000000004,103.492,107.996,112.499,117.003,121.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1718,1,108.0138,0.041700000000000001,94.501000000000005,99.004999999999995,103.51,108.014,112.518,117.02200000000001,121.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1719,1,108.03189999999999,0.041709999999999997,94.513999999999996,99.02,103.526,108.032,112.538,117.044,121.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1720,1,108.04989999999999,0.041709999999999997,94.53,99.036000000000001,103.54300000000001,108.05,112.557,117.063,121.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1721,1,108.068,0.04172,94.542000000000002,99.051000000000002,103.559,108.068,112.577,117.08499999999999,121.59399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1722,1,108.0861,0.04172,94.558000000000007,99.066999999999993,103.577,108.086,112.595,117.105,121.614 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1723,1,108.1041,0.04172,94.573999999999998,99.084000000000003,103.59399999999999,108.104,112.614,117.124,121.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1724,1,108.12220000000001,0.041730000000000003,94.585999999999999,99.097999999999999,103.61,108.122,112.634,117.146,121.658 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1725,1,108.1403,0.041730000000000003,94.602000000000004,99.114999999999995,103.628,108.14,112.65300000000001,117.166,121.678 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1726,1,108.1583,0.041739999999999999,94.614999999999995,99.129000000000005,103.64400000000001,108.158,112.673,117.187,121.702 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1727,1,108.1764,0.041739999999999999,94.631,99.146000000000001,103.661,108.176,112.69199999999999,117.20699999999999,121.72199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1728,1,108.19450000000001,0.041739999999999999,94.646000000000001,99.162000000000006,103.678,108.194,112.711,117.227,121.74299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1729,1,108.21250000000001,0.041750000000000002,94.659000000000006,99.177000000000007,103.69499999999999,108.212,112.73,117.248,121.76600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1730,1,108.2306,0.041750000000000002,94.674999999999997,99.192999999999998,103.712,108.23099999999999,112.749,117.268,121.786 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1731,1,108.2487,0.041759999999999999,94.686999999999998,99.207999999999998,103.72799999999999,108.249,112.76900000000001,117.29,121.81 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1732,1,108.2667,0.041759999999999999,94.703000000000003,99.224000000000004,103.745,108.267,112.788,117.309,121.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1733,1,108.2848,0.041759999999999999,94.718999999999994,99.241,103.76300000000001,108.285,112.807,117.32899999999999,121.851 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1734,1,108.3028,0.041770000000000002,94.730999999999995,99.254999999999995,103.779,108.303,112.827,117.35,121.874 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1735,1,108.32089999999999,0.041770000000000002,94.747,99.272000000000006,103.79600000000001,108.321,112.845,117.37,121.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1736,1,108.3389,0.041779999999999998,94.76,99.286000000000001,103.813,108.339,112.86499999999999,117.392,121.91800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1737,1,108.357,0.041779999999999998,94.775999999999996,99.302999999999997,103.83,108.357,112.884,117.411,121.938 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1738,1,108.375,0.041790000000000001,94.787999999999997,99.316999999999993,103.846,108.375,112.904,117.43300000000001,121.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1739,1,108.3931,0.041790000000000001,94.804000000000002,99.334000000000003,103.863,108.393,112.923,117.453,121.982 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1740,1,108.41119999999999,0.041790000000000001,94.82,99.35,103.881,108.411,112.94199999999999,117.47199999999999,122.003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1741,1,108.42919999999999,0.041799999999999997,94.831999999999994,99.364999999999995,103.89700000000001,108.429,112.962,117.494,122.026 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1742,1,108.4473,0.041799999999999997,94.847999999999999,99.381,103.914,108.447,112.98,117.51300000000001,122.047 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1743,1,108.4653,0.04181,94.86,99.394999999999996,103.93,108.465,113,117.535,122.07 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1744,1,108.4833,0.04181,94.876000000000005,99.412000000000006,103.94799999999999,108.483,113.01900000000001,117.55500000000001,122.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1745,1,108.5014,0.04181,94.891999999999996,99.429000000000002,103.965,108.501,113.038,117.574,122.111 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1746,1,108.5194,0.041820000000000003,94.905000000000001,99.442999999999998,103.98099999999999,108.51900000000001,113.05800000000001,117.596,122.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1747,1,108.53749999999999,0.041820000000000003,94.92,99.459000000000003,103.998,108.538,113.077,117.616,122.155 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1748,1,108.55549999999999,0.041829999999999999,94.933000000000007,99.474000000000004,104.015,108.556,113.096,117.637,122.178 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1749,1,108.5736,0.041829999999999999,94.948999999999998,99.49,104.032,108.574,113.11499999999999,117.657,122.199 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1750,1,108.5916,0.041829999999999999,94.963999999999999,99.507000000000005,104.04900000000001,108.592,113.134,117.676,122.21899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1751,1,108.6097,0.041840000000000002,94.977000000000004,99.521000000000001,104.065,108.61,113.154,117.69799999999999,122.242 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1752,1,108.6277,0.041840000000000002,94.992999999999995,99.537999999999997,104.083,108.628,113.173,117.718,122.26300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1753,1,108.64570000000001,0.041849999999999998,95.004999999999995,99.552000000000007,104.099,108.646,113.193,117.739,122.286 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1754,1,108.66379999999999,0.041849999999999998,95.021000000000001,99.569000000000003,104.116,108.664,113.211,117.759,122.307 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1755,1,108.6818,0.041849999999999998,95.037000000000006,99.584999999999994,104.133,108.682,113.23,117.77800000000001,122.327 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1756,1,108.6998,0.041860000000000001,95.049000000000007,99.599000000000004,104.15,108.7,113.25,117.8,122.35 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1757,1,108.7179,0.041860000000000001,95.064999999999998,99.616,104.167,108.718,113.26900000000001,117.82,122.371 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1758,1,108.7359,0.041869999999999997,95.078000000000003,99.63,104.18300000000001,108.736,113.289,117.84099999999999,122.39400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1759,1,108.7539,0.041869999999999997,95.093000000000004,99.647000000000006,104.2,108.754,113.307,117.861,122.414 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1760,1,108.77200000000001,0.041880000000000001,95.105999999999995,99.661000000000001,104.217,108.77200000000001,113.327,117.883,122.438 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1761,1,108.79,0.041880000000000001,95.122,99.677999999999997,104.23399999999999,108.79,113.346,117.902,122.458 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1762,1,108.80800000000001,0.041880000000000001,95.137,99.694000000000003,104.251,108.80800000000001,113.36499999999999,117.922,122.479 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1763,1,108.8261,0.041889999999999997,95.15,99.709000000000003,104.267,108.82599999999999,113.38500000000001,117.944,122.502 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1764,1,108.8441,0.041889999999999997,95.165999999999997,99.724999999999994,104.285,108.84399999999999,113.404,117.96299999999999,122.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1765,1,108.8621,0.0419,95.177999999999997,99.739000000000004,104.301,108.86199999999999,113.423,117.985,122.54600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1766,1,108.8801,0.0419,95.194000000000003,99.756,104.318,108.88,113.44199999999999,118.004,122.566 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1767,1,108.8982,0.0419,95.21,99.772999999999996,104.33499999999999,108.898,113.461,118.024,122.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1768,1,108.9162,0.041910000000000003,95.221999999999994,99.787000000000006,104.352,108.916,113.48099999999999,118.04600000000001,122.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1769,1,108.9342,0.041910000000000003,95.238,99.802999999999997,104.369,108.934,113.5,118.065,122.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1770,1,108.9522,0.041919999999999999,95.25,99.817999999999998,104.38500000000001,108.952,113.51900000000001,118.087,122.654 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1771,1,108.97020000000001,0.041919999999999999,95.266000000000005,99.834000000000003,104.402,108.97,113.538,118.10599999999999,122.67400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1772,1,108.9883,0.041919999999999999,95.281999999999996,99.850999999999999,104.42,108.988,113.557,118.126,122.69499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1773,1,109.0063,0.041930000000000002,95.293999999999997,99.864999999999995,104.43600000000001,109.006,113.577,118.148,122.718 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1774,1,109.0243,0.041930000000000002,95.31,99.882000000000005,104.453,109.024,113.596,118.167,122.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1775,1,109.0423,0.041939999999999998,95.322999999999993,99.896000000000001,104.46899999999999,109.042,113.616,118.18899999999999,122.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1776,1,109.0603,0.041939999999999998,95.337999999999994,99.912000000000006,104.486,109.06,113.634,118.208,122.782 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1777,1,109.0783,0.041939999999999998,95.353999999999999,99.929000000000002,104.504,109.078,113.65300000000001,118.22799999999999,122.803 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1778,1,109.0963,0.041950000000000001,95.367000000000004,99.942999999999998,104.52,109.096,113.673,118.249,122.82599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1779,1,109.1144,0.041950000000000001,95.382000000000005,99.96,104.53700000000001,109.114,113.69199999999999,118.26900000000001,122.846 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1780,1,109.1324,0.041959999999999997,95.394999999999996,99.974000000000004,104.553,109.13200000000001,113.712,118.291,122.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1781,1,109.1504,0.041959999999999997,95.411000000000001,99.99,104.57,109.15,113.73,118.31,122.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1782,1,109.16840000000001,0.041959999999999997,95.426000000000002,100.00700000000001,104.58799999999999,109.16800000000001,113.749,118.33,122.911 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1783,1,109.18640000000001,0.04197,95.438999999999993,100.021,104.604,109.18600000000001,113.76900000000001,118.352,122.934 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1784,1,109.20440000000001,0.04197,95.453999999999994,100.038,104.621,109.20399999999999,113.788,118.371,122.95399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1785,1,109.22239999999999,0.041980000000000003,95.466999999999999,100.05200000000001,104.637,109.22199999999999,113.80800000000001,118.393,122.97799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1786,1,109.24039999999999,0.041980000000000003,95.483000000000004,100.069,104.654,109.24,113.82599999999999,118.41200000000001,122.998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1787,1,109.25839999999999,0.041980000000000003,95.498000000000005,100.08499999999999,104.672,109.258,113.845,118.432,123.018 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1788,1,109.2764,0.04199,95.510999999999996,100.099,104.688,109.276,113.86499999999999,118.453,123.042 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1789,1,109.2944,0.04199,95.527000000000001,100.116,104.705,109.294,113.884,118.473,123.062 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1790,1,109.3124,0.042000000000000003,95.539000000000001,100.13,104.721,109.312,113.904,118.495,123.086 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1791,1,109.3304,0.042000000000000003,95.555000000000007,100.14700000000001,104.739,109.33,113.922,118.514,123.10599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1792,1,109.3484,0.042000000000000003,95.570999999999998,100.163,104.756,109.348,113.941,118.53400000000001,123.126 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1793,1,109.3664,0.042009999999999999,95.582999999999998,100.17700000000001,104.77200000000001,109.366,113.961,118.55500000000001,123.15 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1794,1,109.3843,0.042009999999999999,95.599000000000004,100.194,104.789,109.384,113.98,118.575,123.17 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1795,1,109.4023,0.042020000000000002,95.611000000000004,100.208,104.80500000000001,109.402,113.999,118.596,123.194 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1796,1,109.4203,0.042020000000000002,95.626999999999995,100.22499999999999,104.822,109.42,114.018,118.616,123.214 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1797,1,109.4383,0.042020000000000002,95.643000000000001,100.241,104.84,109.438,114.03700000000001,118.63500000000001,123.23399999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1798,1,109.4563,0.042029999999999998,95.655000000000001,100.255,104.85599999999999,109.456,114.057,118.657,123.258 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1799,1,109.4743,0.042029999999999998,95.671000000000006,100.27200000000001,104.873,109.474,114.07599999999999,118.67700000000001,123.27800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1800,1,109.4923,0.042040000000000001,95.683000000000007,100.286,104.889,109.492,114.095,118.69799999999999,123.301 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1801,1,109.5102,0.042040000000000001,95.698999999999998,100.303,104.90600000000001,109.51,114.114,118.718,123.322 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1802,1,109.5282,0.042040000000000001,95.715000000000003,100.319,104.92400000000001,109.52800000000001,114.133,118.73699999999999,123.342 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1803,1,109.5462,0.042049999999999997,95.727000000000004,100.333,104.94,109.54600000000001,114.15300000000001,118.759,123.36499999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1804,1,109.5642,0.042049999999999997,95.742999999999995,100.35,104.95699999999999,109.56399999999999,114.17100000000001,118.779,123.386 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1805,1,109.5822,0.04206,95.754999999999995,100.364,104.973,109.58199999999999,114.191,118.8,123.40900000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1806,1,109.6001,0.04206,95.771000000000001,100.381,104.99,109.6,114.21,118.82,123.429 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1807,1,109.6181,0.04206,95.786000000000001,100.39700000000001,105.008,109.61799999999999,114.229,118.839,123.45 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1808,1,109.6361,0.042070000000000003,95.799000000000007,100.411,105.024,109.636,114.248,118.861,123.473 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1809,1,109.654,0.042070000000000003,95.814999999999998,100.428,105.041,109.654,114.267,118.88,123.49299999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1810,1,109.672,0.042079999999999999,95.826999999999998,100.44199999999999,105.057,109.672,114.28700000000001,118.902,123.517 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1811,1,109.69,0.042079999999999999,95.843000000000004,100.458,105.074,109.69,114.306,118.922,123.53700000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1812,1,109.7079,0.042079999999999999,95.858000000000004,100.47499999999999,105.09099999999999,109.708,114.324,118.941,123.557 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1813,1,109.7259,0.042090000000000002,95.870999999999995,100.489,105.108,109.726,114.34399999999999,118.96299999999999,123.581 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1814,1,109.7439,0.042090000000000002,95.887,100.506,105.125,109.744,114.363,118.982,123.601 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1815,1,109.76179999999999,0.042099999999999999,95.899000000000001,100.52,105.14100000000001,109.762,114.383,119.004,123.625 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1816,1,109.77979999999999,0.042099999999999999,95.915000000000006,100.536,105.158,109.78,114.402,119.023,123.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1817,1,109.7978,0.042099999999999999,95.93,100.553,105.175,109.798,114.42,119.04300000000001,123.66500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1818,1,109.81570000000001,0.042110000000000002,95.942999999999998,100.56699999999999,105.191,109.816,114.44,119.06399999999999,123.68899999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1819,1,109.83369999999999,0.042110000000000002,95.957999999999998,100.584,105.209,109.834,114.459,119.084,123.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1820,1,109.8516,0.042119999999999998,95.971000000000004,100.598,105.22499999999999,109.852,114.479,119.105,123.732 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1821,1,109.86960000000001,0.042119999999999998,95.986000000000004,100.614,105.242,109.87,114.497,119.125,123.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1822,1,109.8875,0.042119999999999998,96.001999999999995,100.631,105.259,109.88800000000001,114.51600000000001,119.14400000000001,123.773 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1823,1,109.9055,0.042130000000000001,96.015000000000001,100.645,105.27500000000001,109.90600000000001,114.536,119.166,123.79600000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1824,1,109.9234,0.042130000000000001,96.03,100.661,105.292,109.923,114.554,119.18600000000001,123.81699999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1825,1,109.9414,0.042139999999999997,96.043000000000006,100.676,105.30800000000001,109.941,114.574,119.20699999999999,123.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1826,1,109.9593,0.042139999999999997,96.058000000000007,100.69199999999999,105.32599999999999,109.959,114.593,119.227,123.86 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1827,1,109.9773,0.042139999999999997,96.073999999999998,100.708,105.343,109.977,114.61199999999999,119.246,123.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1828,1,109.9952,0.04215,96.085999999999999,100.723,105.35899999999999,109.995,114.631,119.268,123.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1829,1,110.01309999999999,0.04215,96.102000000000004,100.739,105.376,110.01300000000001,114.65,119.28700000000001,123.92400000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1830,1,110.0311,0.042160000000000003,96.114000000000004,100.753,105.392,110.03100000000001,114.67,119.309,123.94799999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1831,1,110.04900000000001,0.042160000000000003,96.13,100.77,105.40900000000001,110.04900000000001,114.68899999999999,119.328,123.968 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1832,1,110.0669,0.042160000000000003,96.146000000000001,100.786,105.426,110.06699999999999,114.70699999999999,119.348,123.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1833,1,110.0849,0.042169999999999999,96.158000000000001,100.8,105.443,110.08499999999999,114.727,119.369,124.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1834,1,110.1028,0.042169999999999999,96.174000000000007,100.81699999999999,105.46,110.10299999999999,114.746,119.389,124.032 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1835,1,110.1207,0.042180000000000002,96.186000000000007,100.831,105.476,110.121,114.76600000000001,119.41,124.05500000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1836,1,110.1387,0.042180000000000002,96.201999999999998,100.84699999999999,105.49299999999999,110.139,114.78400000000001,119.43,124.07599999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1837,1,110.1566,0.042180000000000002,96.216999999999999,100.864,105.51,110.157,114.803,119.449,124.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1838,1,110.17449999999999,0.042189999999999998,96.23,100.878,105.526,110.17400000000001,114.82299999999999,119.471,124.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1839,1,110.19240000000001,0.042189999999999998,96.245000000000005,100.89400000000001,105.54300000000001,110.19199999999999,114.84099999999999,119.49,124.139 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1840,1,110.21040000000001,0.042200000000000001,96.257999999999996,100.90900000000001,105.56,110.21,114.861,119.512,124.163 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1841,1,110.2283,0.042200000000000001,96.272999999999996,100.925,105.577,110.22799999999999,114.88,119.532,124.18300000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1842,1,110.2462,0.042200000000000001,96.289000000000001,100.941,105.59399999999999,110.246,114.899,119.551,124.203 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1843,1,110.2641,0.042209999999999998,96.301000000000002,100.956,105.61,110.264,114.91800000000001,119.57299999999999,124.227 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1844,1,110.282,0.042209999999999998,96.316999999999993,100.97199999999999,105.627,110.282,114.937,119.592,124.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1845,1,110.3,0.042220000000000001,96.328999999999994,100.986,105.643,110.3,114.95699999999999,119.614,124.271 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1846,1,110.31789999999999,0.042220000000000001,96.344999999999999,101.003,105.66,110.318,114.976,119.633,124.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1847,1,110.33580000000001,0.042220000000000001,96.361000000000004,101.01900000000001,105.67700000000001,110.336,114.994,119.65300000000001,124.31100000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1848,1,110.3537,0.042229999999999997,96.373000000000005,101.033,105.693,110.354,115.014,119.67400000000001,124.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1849,1,110.3716,0.042229999999999997,96.388999999999996,101.05,105.711,110.372,115.033,119.694,124.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1850,1,110.3895,0.042229999999999997,96.403999999999996,101.066,105.72799999999999,110.39,115.051,119.71299999999999,124.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1851,1,110.4074,0.04224,96.417000000000002,101.08,105.744,110.407,115.071,119.735,124.398 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1852,1,110.42529999999999,0.04224,96.432000000000002,101.09699999999999,105.761,110.425,115.09,119.754,124.41800000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1853,1,110.4432,0.042250000000000003,96.444999999999993,101.111,105.777,110.443,115.10899999999999,119.776,124.44199999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1854,1,110.4611,0.042250000000000003,96.46,101.127,105.794,110.461,115.128,119.795,124.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1855,1,110.479,0.042250000000000003,96.475999999999999,101.14400000000001,105.81100000000001,110.479,115.14700000000001,119.81399999999999,124.482 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1856,1,110.4969,0.042259999999999999,96.488,101.158,105.827,110.497,115.166,119.836,124.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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,male,month,228,1,176.54320000000001,0.041340000000000002,154.648,161.947,169.245,176.54300000000001,183.84100000000001,191.14,198.43799999999999 diff --git a/priv/growth/indicators/subscapular_skinfold_for_age.csv b/priv/growth/indicators/subscapular_skinfold_for_age.csv new file mode 100644 index 0000000..aae1f36 --- /dev/null +++ b/priv/growth/indicators/subscapular_skinfold_for_age.csv @@ -0,0 +1,3649 @@ +source,category,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-girls-3-5-zscores.xlsx,age,female,month,3,-0.2026,7.7846000000000002,0.18428,4.5999999999999996,5.5,6.5,7.8,9.4,11.4,14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,4,-0.25769999999999998,7.5404999999999998,0.18429999999999999,4.5,5.3,6.3,7.5,9.1,11.1,13.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,5,-0.30199999999999999,7.3384,0.18428,4.4000000000000004,5.2,6.1,7.3,8.9,10.8,13.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,6,-0.33939999999999998,7.1637000000000004,0.18425,4.3,5.0999999999999996,6,7.2,8.6999999999999993,10.6,13.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,age,female,month,7,-0.37180000000000002,7.0118,0.18421000000000001,4.2,5,5.9,7,8.5,10.4,13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,8,-0.40050000000000002,6.8807,0.18412000000000001,4.2,4.9000000000000004,5.8,6.9,8.3000000000000007,10.199999999999999,12.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,9,-0.42630000000000001,6.7679,0.18398999999999999,4.0999999999999996,4.8,5.7,6.8,8.1999999999999993,10.1,12.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,10,-0.44979999999999998,6.6707000000000001,0.18387000000000001,4.0999999999999996,4.7,5.6,6.7,8.1,10,12.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,11,-0.4713,6.5867000000000004,0.18381,4,4.7,5.5,6.6,8,9.9,12.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,12,-0.49120000000000003,6.5137999999999998,0.18382999999999999,4,4.5999999999999996,5.5,6.5,7.9,9.8000000000000007,12.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,13,-0.50980000000000003,6.4504999999999999,0.18393999999999999,4,4.5999999999999996,5.4,6.5,7.8,9.6999999999999993,12.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,14,-0.5272,6.3955000000000002,0.18415000000000001,3.9,4.5999999999999996,5.4,6.4,7.8,9.6,12.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,15,-0.54349999999999998,6.3474000000000004,0.18446000000000001,3.9,4.5,5.3,6.3,7.7,9.6,12.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,16,-0.55900000000000005,6.3055000000000003,0.18487000000000001,3.9,4.5,5.3,6.3,7.7,9.5,12.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,age,female,month,17,-0.5736,6.2689000000000004,0.18537999999999999,3.9,4.5,5.3,6.3,7.6,9.5,12.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,age,female,month,18,-0.58760000000000001,6.2373000000000003,0.18598000000000001,3.8,4.5,5.2,6.2,7.6,9.5,12.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,19,-0.60089999999999999,6.2100999999999997,0.18665999999999999,3.8,4.4000000000000004,5.2,6.2,7.6,9.5,12.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,20,-0.61360000000000003,6.1867999999999999,0.18740999999999999,3.8,4.4000000000000004,5.2,6.2,7.5,9.5,12.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,21,-0.62570000000000003,6.1669,0.18823000000000001,3.8,4.4000000000000004,5.2,6.2,7.5,9.5,12.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,22,-0.63739999999999997,6.15,0.18911,3.8,4.4000000000000004,5.0999999999999996,6.2,7.5,9.5,12.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,23,-0.64870000000000005,6.1355000000000004,0.19005,3.8,4.4000000000000004,5.0999999999999996,6.1,7.5,9.5,12.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,24,-0.65949999999999998,6.1231999999999998,0.19103999999999999,3.8,4.4000000000000004,5.0999999999999996,6.1,7.5,9.5,12.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,25,-0.67,6.1128999999999998,0.19206999999999999,3.8,4.3,5.0999999999999996,6.1,7.5,9.5,12.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,26,-0.68010000000000004,6.1040999999999999,0.19314999999999999,3.7,4.3,5.0999999999999996,6.1,7.5,9.6,12.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,27,-0.68989999999999996,6.0968,0.19425999999999999,3.7,4.3,5.0999999999999996,6.1,7.5,9.6,12.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,28,-0.69940000000000002,6.0904999999999996,0.19539999999999999,3.7,4.3,5.0999999999999996,6.1,7.5,9.6,13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,29,-0.70860000000000001,6.0850999999999997,0.19656999999999999,3.7,4.3,5.0999999999999996,6.1,7.5,9.6,13.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,30,-0.71750000000000003,6.0805999999999996,0.19775999999999999,3.7,4.3,5.0999999999999996,6.1,7.5,9.6999999999999993,13.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,age,female,month,31,-0.72619999999999996,6.0766,0.19897999999999999,3.7,4.3,5,6.1,7.5,9.6999999999999993,13.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,32,-0.73470000000000002,6.0732999999999997,0.20021,3.7,4.3,5,6.1,7.5,9.8000000000000007,13.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,33,-0.7429,6.0705,0.20144999999999999,3.7,4.3,5,6.1,7.6,9.8000000000000007,13.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,34,-0.75090000000000001,6.0682999999999998,0.20269999999999999,3.7,4.3,5,6.1,7.6,9.8000000000000007,13.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,35,-0.75870000000000004,6.0664999999999996,0.20394999999999999,3.7,4.3,5,6.1,7.6,9.9,13.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,36,-0.76639999999999997,6.0651999999999999,0.20521,3.7,4.2,5,6.1,7.6,9.9,13.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,37,-0.77380000000000004,6.0643000000000002,0.20646999999999999,3.7,4.2,5,6.1,7.6,10,14.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,38,-0.78110000000000002,6.0636999999999999,0.20773,3.6,4.2,5,6.1,7.6,10,14.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,age,female,month,39,-0.78820000000000001,6.0632999999999999,0.20899000000000001,3.6,4.2,5,6.1,7.6,10.1,14.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,40,-0.79520000000000002,6.0632000000000001,0.21024000000000001,3.6,4.2,5,6.1,7.6,10.1,14.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,41,-0.80200000000000005,6.0632000000000001,0.21149000000000001,3.6,4.2,5,6.1,7.6,10.199999999999999,14.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,42,-0.80869999999999997,6.0633999999999997,0.21273,3.6,4.2,5,6.1,7.7,10.199999999999999,14.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,43,-0.81520000000000004,6.0636999999999999,0.21396000000000001,3.6,4.2,5,6.1,7.7,10.3,15 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,44,-0.82169999999999999,6.0640999999999998,0.21518000000000001,3.6,4.2,5,6.1,7.7,10.3,15.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,age,female,month,45,-0.82799999999999996,6.0647000000000002,0.21637999999999999,3.6,4.2,5,6.1,7.7,10.4,15.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,46,-0.83409999999999995,6.0652999999999997,0.21758,3.6,4.2,5,6.1,7.7,10.4,15.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,47,-0.84019999999999995,6.0660999999999996,0.21876000000000001,3.6,4.2,5,6.1,7.7,10.5,15.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,48,-0.84619999999999995,6.0669000000000004,0.21992999999999999,3.6,4.2,5,6.1,7.7,10.5,15.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,49,-0.85199999999999998,6.0678999999999998,0.22109000000000001,3.6,4.2,5,6.1,7.8,10.6,16.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,50,-0.85780000000000001,6.069,0.22223000000000001,3.6,4.2,5,6.1,7.8,10.6,16.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,51,-0.86339999999999995,6.0702999999999996,0.22334999999999999,3.6,4.2,4.9000000000000004,6.1,7.8,10.7,16.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,52,-0.86899999999999999,6.0716999999999999,0.22447,3.6,4.2,4.9000000000000004,6.1,7.8,10.7,16.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,53,-0.87450000000000006,6.0731999999999999,0.22556000000000001,3.6,4.2,4.9000000000000004,6.1,7.8,10.8,16.899999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,54,-0.87990000000000002,6.0747999999999998,0.22664000000000001,3.6,4.0999999999999996,4.9000000000000004,6.1,7.8,10.8,17.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,55,-0.88519999999999999,6.0765000000000002,0.22771,3.6,4.0999999999999996,4.9000000000000004,6.1,7.8,10.9,17.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,56,-0.89039999999999997,6.0784000000000002,0.22875999999999999,3.6,4.0999999999999996,4.9000000000000004,6.1,7.9,10.9,17.600000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,female,month,57,-0.89549999999999996,6.0803000000000003,0.22978999999999999,3.6,4.0999999999999996,4.9000000000000004,6.1,7.9,11,17.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-girls-3-5-zscores.xlsx,age,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,age,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,age,female,month,60,-0.91049999999999998,6.0865,0.23280000000000001,3.5,4.0999999999999996,4.9000000000000004,6.1,7.9,11.2,18.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,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,age,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,age,male,month,5,-0.3503,7.3207000000000004,0.17166999999999999,4.5999999999999996,5.3,6.2,7.3,8.6999999999999993,10.6,12.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,6,-0.37119999999999997,7.1588000000000003,0.17232,4.5,5.2,6.1,7.2,8.6,10.4,12.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,7,-0.39090000000000003,7.0103999999999997,0.17293,4.4000000000000004,5.0999999999999996,5.9,7,8.4,10.199999999999999,12.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,8,-0.40970000000000001,6.8753000000000002,0.17352000000000001,4.3,5,5.8,6.9,8.1999999999999993,10,12.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,9,-0.42759999999999998,6.7530000000000001,0.17408000000000001,4.2,4.9000000000000004,5.7,6.8,8.1,9.8000000000000007,12.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,10,-0.44490000000000002,6.6428000000000003,0.17462,4.0999999999999996,4.8,5.6,6.6,8,9.6999999999999993,12.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,age,male,month,11,-0.46160000000000001,6.5442,0.17513999999999999,4.0999999999999996,4.7,5.5,6.5,7.9,9.6,11.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,12,-0.47770000000000001,6.4561999999999999,0.17563999999999999,4,4.7,5.5,6.5,7.8,9.5,11.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,13,-0.49340000000000001,6.3780000000000001,0.17613000000000001,4,4.5999999999999996,5.4,6.4,7.7,9.4,11.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,14,-0.50870000000000004,6.3085000000000004,0.17660000000000001,3.9,4.5999999999999996,5.3,6.3,7.6,9.3000000000000007,11.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,15,-0.52359999999999995,6.2468000000000004,0.17707000000000001,3.9,4.5,5.3,6.2,7.5,9.1999999999999993,11.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,16,-0.53810000000000002,6.1920999999999999,0.17752000000000001,3.9,4.5,5.2,6.2,7.5,9.1999999999999993,11.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,17,-0.5524,6.1435000000000004,0.17796999999999999,3.8,4.4000000000000004,5.2,6.1,7.4,9.1,11.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,18,-0.56630000000000003,6.1002999999999998,0.1784,3.8,4.4000000000000004,5.0999999999999996,6.1,7.4,9.1,11.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,19,-0.57999999999999996,6.0617000000000001,0.17882999999999999,3.8,4.4000000000000004,5.0999999999999996,6.1,7.3,9.1,11.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,20,-0.59340000000000004,6.0274000000000001,0.17924999999999999,3.8,4.4000000000000004,5.0999999999999996,6,7.3,9,11.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,21,-0.60660000000000003,5.9972000000000003,0.17965999999999999,3.8,4.3,5.0999999999999996,6,7.3,9,11.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,22,-0.61960000000000004,5.9706000000000001,0.18006,3.7,4.3,5,6,7.2,9,11.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,23,-0.63239999999999996,5.9470000000000001,0.18046000000000001,3.7,4.3,5,5.9,7.2,9,11.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,24,-0.64490000000000003,5.9257999999999997,0.18085000000000001,3.7,4.3,5,5.9,7.2,8.9,11.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,25,-0.6573,5.9066999999999998,0.18124000000000001,3.7,4.3,5,5.9,7.2,8.9,11.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,26,-0.66949999999999998,5.8891,0.18162,3.7,4.3,5,5.9,7.1,8.9,11.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,27,-0.68159999999999998,5.8728999999999996,0.18199000000000001,3.7,4.2,4.9000000000000004,5.9,7.1,8.9,11.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,28,-0.69350000000000001,5.8575999999999997,0.18237,3.7,4.2,4.9000000000000004,5.9,7.1,8.9,11.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,29,-0.70530000000000004,5.8430999999999997,0.18273,3.7,4.2,4.9000000000000004,5.8,7.1,8.9,11.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,30,-0.71689999999999998,5.8289999999999997,0.18309,3.7,4.2,4.9000000000000004,5.8,7.1,8.9,11.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,31,-0.72829999999999995,5.8150000000000004,0.18345,3.7,4.2,4.9000000000000004,5.8,7.1,8.9,11.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,32,-0.73970000000000002,5.8010999999999999,0.18381,3.7,4.2,4.9000000000000004,5.8,7.1,8.9,11.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,33,-0.75090000000000001,5.7869999999999999,0.18415999999999999,3.6,4.2,4.9000000000000004,5.8,7.1,8.9,11.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,34,-0.76200000000000001,5.7727000000000004,0.1845,3.6,4.2,4.9000000000000004,5.8,7,8.9,11.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,35,-0.77300000000000002,5.758,0.18484999999999999,3.6,4.2,4.8,5.8,7,8.9,11.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,36,-0.78390000000000004,5.7430000000000003,0.18518999999999999,3.6,4.0999999999999996,4.8,5.7,7,8.9,11.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,37,-0.79469999999999996,5.7278000000000002,0.18551999999999999,3.6,4.0999999999999996,4.8,5.7,7,8.9,11.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,38,-0.8054,5.7125000000000004,0.18584999999999999,3.6,4.0999999999999996,4.8,5.7,7,8.9,12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,39,-0.81589999999999996,5.6970999999999998,0.18618000000000001,3.6,4.0999999999999996,4.8,5.7,7,8.9,12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,40,-0.82640000000000002,5.6814999999999998,0.18651000000000001,3.6,4.0999999999999996,4.8,5.7,7,8.9,12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,41,-0.83679999999999999,5.6657999999999999,0.18684000000000001,3.6,4.0999999999999996,4.8,5.7,6.9,8.9,12.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,age,male,month,42,-0.84709999999999996,5.65,0.18715999999999999,3.6,4.0999999999999996,4.7,5.6,6.9,8.9,12.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,age,male,month,43,-0.85740000000000005,5.6338999999999997,0.18748000000000001,3.6,4.0999999999999996,4.7,5.6,6.9,8.9,12.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,age,male,month,44,-0.86750000000000005,5.6173999999999999,0.18779000000000001,3.6,4.0999999999999996,4.7,5.6,6.9,8.8000000000000007,12.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,45,-0.87749999999999995,5.6006,0.18811,3.5,4,4.7,5.6,6.9,8.8000000000000007,12.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,46,-0.88749999999999996,5.5834000000000001,0.18842,3.5,4,4.7,5.6,6.9,8.8000000000000007,12.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,47,-0.89739999999999998,5.5659000000000001,0.18873000000000001,3.5,4,4.7,5.6,6.8,8.8000000000000007,12.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,48,-0.9073,5.5481999999999996,0.18903,3.5,4,4.7,5.5,6.8,8.8000000000000007,12.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,49,-0.91700000000000004,5.5303000000000004,0.18934000000000001,3.5,4,4.5999999999999996,5.5,6.8,8.8000000000000007,12.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,50,-0.92669999999999997,5.5125000000000002,0.18964,3.5,4,4.5999999999999996,5.5,6.8,8.8000000000000007,12.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,age,male,month,51,-0.93630000000000002,5.4947999999999997,0.18994,3.5,4,4.5999999999999996,5.5,6.8,8.8000000000000007,12.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,age,male,month,52,-0.94589999999999996,5.4774000000000003,0.19023999999999999,3.5,4,4.5999999999999996,5.5,6.8,8.8000000000000007,12.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,age,male,month,53,-0.95540000000000003,5.4606000000000003,0.19053,3.5,3.9,4.5999999999999996,5.5,6.7,8.8000000000000007,12.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,54,-0.96479999999999999,5.4443000000000001,0.19083,3.5,3.9,4.5999999999999996,5.4,6.7,8.8000000000000007,12.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,55,-0.97419999999999995,5.4287999999999998,0.19112000000000001,3.4,3.9,4.5999999999999996,5.4,6.7,8.8000000000000007,12.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,56,-0.98350000000000004,5.4139999999999997,0.19141,3.4,3.9,4.5,5.4,6.7,8.8000000000000007,12.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,57,-0.99280000000000002,5.4,0.19170000000000001,3.4,3.9,4.5,5.4,6.7,8.6999999999999993,12.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,58,-1.002,5.3868,0.19198999999999999,3.4,3.9,4.5,5.4,6.7,8.6999999999999993,12.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,59,-1.0111000000000001,5.3743999999999996,0.19227,3.4,3.9,4.5,5.4,6.7,8.6999999999999993,12.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/ssfa-boys-3-5-zscores.xlsx,age,male,month,60,-1.0202,5.3628,0.19255,3.4,3.9,4.5,5.4,6.6,8.6999999999999993,12.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,91,-0.2019,7.7873999999999999,0.18428,4.6109999999999998,5.4580000000000002,6.4989999999999997,7.7869999999999999,9.3960000000000008,11.422000000000001,13.994999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,92,-0.20399999999999999,7.7784000000000004,0.18428,4.6070000000000002,5.452,6.4909999999999997,7.7779999999999996,9.3859999999999992,11.41,13.984 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,93,-0.20599999999999999,7.7694000000000001,0.18428,4.6029999999999998,5.4459999999999997,6.484,7.7690000000000001,9.375,11.398999999999999,13.973000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,94,-0.20799999999999999,7.7606000000000002,0.18428,4.5990000000000002,5.4409999999999998,6.4770000000000003,7.7610000000000001,9.3650000000000002,11.387,13.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,95,-0.21,7.7518000000000002,0.18428,4.5949999999999998,5.4349999999999996,6.47,7.7519999999999998,9.3550000000000004,11.375999999999999,13.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,96,-0.21199999999999999,7.7431000000000001,0.18428,4.5910000000000002,5.43,6.4630000000000001,7.7430000000000003,9.3439999999999994,11.365,13.941000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,97,-0.21390000000000001,7.7344999999999997,0.18428,4.5869999999999997,5.4249999999999998,6.4560000000000004,7.734,9.3339999999999996,11.353999999999999,13.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,98,-0.21590000000000001,7.7259000000000002,0.18428,4.5830000000000002,5.4189999999999996,6.4489999999999998,7.726,9.3239999999999998,11.343,13.92 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,99,-0.21779999999999999,7.7173999999999996,0.18428,4.5789999999999997,5.4139999999999997,6.4420000000000002,7.7169999999999996,9.3140000000000001,11.332000000000001,13.909000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,100,-0.21970000000000001,7.7089999999999996,0.18428,4.5750000000000002,5.4089999999999998,6.4349999999999996,7.7089999999999996,9.3049999999999997,11.321999999999999,13.898999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,101,-0.22159999999999999,7.7007000000000003,0.18429000000000001,4.5709999999999997,5.4029999999999996,6.4279999999999999,7.7009999999999996,9.2949999999999999,11.311,13.888999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,102,-0.2235,7.6924000000000001,0.18429000000000001,4.5670000000000002,5.3979999999999997,6.4210000000000003,7.6920000000000002,9.2850000000000001,11.301,13.879 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,103,-0.2253,7.6841999999999997,0.18429000000000001,4.5640000000000001,5.3929999999999998,6.415,7.6840000000000002,9.2759999999999998,11.29,13.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,104,-0.22720000000000001,7.6760000000000002,0.18429000000000001,4.5599999999999996,5.3879999999999999,6.4080000000000004,7.6760000000000002,9.266,11.28,13.859 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,105,-0.22900000000000001,7.6679000000000004,0.18429000000000001,4.556,5.383,6.4020000000000001,7.6680000000000001,9.2569999999999997,11.27,13.849 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,106,-0.23080000000000001,7.6599000000000004,0.18429000000000001,4.5519999999999996,5.3780000000000001,6.3949999999999996,7.66,9.2469999999999999,11.259,13.839 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,107,-0.2326,7.6520000000000001,0.18429000000000001,4.5490000000000004,5.3730000000000002,6.3890000000000002,7.6520000000000001,9.2379999999999995,11.249000000000001,13.829000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,108,-0.2344,7.6440000000000001,0.18429000000000001,4.5449999999999999,5.3680000000000003,6.3819999999999997,7.6440000000000001,9.2289999999999992,11.239000000000001,13.819000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,109,-0.23619999999999999,7.6361999999999997,0.18429000000000001,4.5419999999999998,5.3630000000000004,6.3760000000000003,7.6360000000000001,9.2200000000000006,11.228999999999999,13.808999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,110,-0.23799999999999999,7.6284000000000001,0.18429000000000001,4.5380000000000003,5.3579999999999997,6.3689999999999998,7.6280000000000001,9.2100000000000009,11.218999999999999,13.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,111,-0.2397,7.6205999999999996,0.18429000000000001,4.5339999999999998,5.3529999999999998,6.3630000000000004,7.6210000000000004,9.2010000000000005,11.209,13.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,112,-0.2414,7.6128999999999998,0.18429000000000001,4.5309999999999997,5.3479999999999999,6.3570000000000002,7.6130000000000004,9.1920000000000002,11.199,13.781000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,113,-0.24310000000000001,7.6052999999999997,0.18429000000000001,4.5270000000000001,5.343,6.351,7.6050000000000004,9.1829999999999998,11.19,13.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,114,-0.24490000000000001,7.5976999999999997,0.18429000000000001,4.524,5.3390000000000004,6.3449999999999998,7.5979999999999999,9.1739999999999995,11.18,13.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,115,-0.2465,7.5902000000000003,0.18429000000000001,4.5199999999999996,5.3339999999999996,6.3380000000000001,7.59,9.1660000000000004,11.17,13.752000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,116,-0.2482,7.5827,0.18429000000000001,4.5170000000000003,5.3289999999999997,6.3319999999999999,7.5830000000000002,9.157,11.161,13.743 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,117,-0.24990000000000001,7.5751999999999997,0.18429999999999999,4.5129999999999999,5.3239999999999998,6.3259999999999996,7.5750000000000002,9.1479999999999997,11.151999999999999,13.734 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,118,-0.25159999999999999,7.5678000000000001,0.18429999999999999,4.51,5.32,6.32,7.5679999999999996,9.14,11.141999999999999,13.725 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,119,-0.25319999999999998,7.5605000000000002,0.18429999999999999,4.5060000000000002,5.3150000000000004,6.3140000000000001,7.56,9.1310000000000002,11.132999999999999,13.715999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,120,-0.25480000000000003,7.5532000000000004,0.18429999999999999,4.5030000000000001,5.31,6.3079999999999998,7.5529999999999999,9.1219999999999999,11.122999999999999,13.707000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,121,-0.25640000000000002,7.5458999999999996,0.18429999999999999,4.4989999999999997,5.306,6.3019999999999996,7.5460000000000003,9.1140000000000008,11.114000000000001,13.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,122,-0.2581,7.5387000000000004,0.18429999999999999,4.4960000000000004,5.3010000000000002,6.2969999999999997,7.5389999999999997,9.1050000000000004,11.105,13.689 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,123,-0.25969999999999999,7.5315000000000003,0.18429999999999999,4.4930000000000003,5.2969999999999997,6.2910000000000004,7.532,9.0969999999999995,11.096,13.68 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,124,-0.26119999999999999,7.5244,0.18429999999999999,4.4889999999999999,5.2919999999999998,6.2850000000000001,7.524,9.0890000000000004,11.086,13.670999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,125,-0.26279999999999998,7.5172999999999996,0.18429999999999999,4.4859999999999998,5.2880000000000003,6.2789999999999999,7.5170000000000003,9.08,11.077,13.662000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,126,-0.26440000000000002,7.5103,0.18429999999999999,4.4829999999999997,5.2830000000000004,6.2729999999999997,7.51,9.0719999999999992,11.068,13.654 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,127,-0.26590000000000003,7.5033000000000003,0.18429999999999999,4.4790000000000001,5.2789999999999999,6.2679999999999998,7.5030000000000001,9.0640000000000001,11.058999999999999,13.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,128,-0.26750000000000002,7.4962999999999997,0.18429999999999999,4.476,5.274,6.2619999999999996,7.4960000000000004,9.0559999999999992,11.05,13.635999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,129,-0.26900000000000002,7.4893999999999998,0.18429999999999999,4.4729999999999999,5.27,6.2560000000000002,7.4889999999999999,9.048,11.042,13.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,130,-0.27050000000000002,7.4824999999999999,0.18429000000000001,4.47,5.266,6.2510000000000003,7.4820000000000002,9.0399999999999991,11.032,13.618 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,131,-0.27210000000000001,7.4756,0.18429000000000001,4.4669999999999996,5.2610000000000001,6.2450000000000001,7.476,9.0310000000000006,11.023999999999999,13.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,132,-0.27360000000000001,7.4687999999999999,0.18429000000000001,4.4630000000000001,5.2569999999999997,6.24,7.4690000000000003,9.0239999999999991,11.015000000000001,13.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,133,-0.27510000000000001,7.4619999999999997,0.18429000000000001,4.46,5.2530000000000001,6.234,7.4619999999999997,9.016,11.006,13.593 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,134,-0.27650000000000002,7.4553000000000003,0.18429000000000001,4.4569999999999999,5.2480000000000002,6.2290000000000001,7.4550000000000001,9.0079999999999991,10.997999999999999,13.584 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,135,-0.27800000000000002,7.4485999999999999,0.18429000000000001,4.4539999999999997,5.2439999999999998,6.2229999999999999,7.4489999999999998,9,10.989000000000001,13.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,136,-0.27950000000000003,7.4419000000000004,0.18429000000000001,4.4509999999999996,5.24,6.218,7.4420000000000002,8.9920000000000009,10.98,13.568 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,137,-0.28089999999999998,7.4352,0.18429000000000001,4.4470000000000001,5.2359999999999998,6.2119999999999997,7.4349999999999996,8.984,10.972,13.558999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,138,-0.28239999999999998,7.4286000000000003,0.18429000000000001,4.444,5.2320000000000002,6.2069999999999999,7.4290000000000003,8.9760000000000009,10.962999999999999,13.551 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,139,-0.2838,7.4221000000000004,0.18429000000000001,4.4409999999999998,5.2270000000000003,6.202,7.4219999999999997,8.9689999999999994,10.955,13.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,140,-0.2853,7.4154999999999998,0.18429000000000001,4.4379999999999997,5.2229999999999999,6.1959999999999997,7.4160000000000004,8.9610000000000003,10.946,13.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,141,-0.28670000000000001,7.4089999999999998,0.18429000000000001,4.4349999999999996,5.2190000000000003,6.1909999999999998,7.4089999999999998,8.9529999999999994,10.938000000000001,13.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,142,-0.28810000000000002,7.4025999999999996,0.18429000000000001,4.4320000000000004,5.2149999999999999,6.1859999999999999,7.4029999999999996,8.9459999999999997,10.93,13.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,143,-0.28949999999999998,7.3960999999999997,0.18429000000000001,4.4290000000000003,5.2110000000000003,6.181,7.3959999999999999,8.9380000000000006,10.920999999999999,13.51 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,144,-0.29089999999999999,7.3897000000000004,0.18429000000000001,4.4260000000000002,5.2069999999999999,6.1749999999999998,7.39,8.9309999999999992,10.913,13.502000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,145,-0.2923,7.3833000000000002,0.18429000000000001,4.423,5.2030000000000003,6.17,7.383,8.923,10.904999999999999,13.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,146,-0.29370000000000002,7.3769999999999998,0.18429000000000001,4.42,5.1989999999999998,6.165,7.3769999999999998,8.9160000000000004,10.897,13.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,147,-0.29509999999999997,7.3707000000000003,0.18429000000000001,4.4169999999999998,5.1950000000000003,6.16,7.3710000000000004,8.9079999999999995,10.888999999999999,13.478 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,148,-0.2964,7.3643999999999998,0.18429000000000001,4.4139999999999997,5.1909999999999998,6.1550000000000002,7.3639999999999999,8.9009999999999998,10.88,13.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,149,-0.29780000000000001,7.3581000000000003,0.18428,4.4109999999999996,5.1870000000000003,6.15,7.3579999999999997,8.8940000000000001,10.872,13.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,150,-0.29909999999999998,7.3518999999999997,0.18428,4.4080000000000004,5.1829999999999998,6.1449999999999996,7.3520000000000003,8.8859999999999992,10.864000000000001,13.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,151,-0.30049999999999999,7.3456999999999999,0.18428,4.4050000000000002,5.1790000000000003,6.14,7.3460000000000001,8.8789999999999996,10.856,13.446 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,152,-0.30180000000000001,7.3395999999999999,0.18428,4.4020000000000001,5.1749999999999998,6.1349999999999998,7.34,8.8719999999999999,10.848000000000001,13.438000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,153,-0.30309999999999998,7.3334000000000001,0.18428,4.399,5.1710000000000003,6.13,7.3330000000000002,8.8650000000000002,10.84,13.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,154,-0.3044,7.3273000000000001,0.18428,4.3959999999999999,5.1669999999999998,6.125,7.327,8.8569999999999993,10.832000000000001,13.423 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,155,-0.30580000000000002,7.3212000000000002,0.18428,4.3929999999999998,5.1630000000000003,6.12,7.3209999999999997,8.85,10.824,13.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,156,-0.30709999999999998,7.3151999999999999,0.18428,4.3899999999999997,5.1589999999999998,6.1150000000000002,7.3150000000000004,8.843,10.817,13.407999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,157,-0.30840000000000001,7.3090999999999999,0.18428,4.3869999999999996,5.1550000000000002,6.11,7.3090000000000002,8.8360000000000003,10.808999999999999,13.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,158,-0.30969999999999998,7.3030999999999997,0.18428,4.3840000000000003,5.1520000000000001,6.1050000000000004,7.3029999999999999,8.8290000000000006,10.801,13.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,159,-0.31090000000000001,7.2972000000000001,0.18428,4.3810000000000002,5.1479999999999997,6.1,7.2969999999999997,8.8219999999999992,10.792999999999999,13.385 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,160,-0.31219999999999998,7.2911999999999999,0.18428,4.3780000000000001,5.1440000000000001,6.0949999999999998,7.2910000000000004,8.8149999999999995,10.786,13.377000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,161,-0.3135,7.2853000000000003,0.18426999999999999,4.3760000000000003,5.14,6.09,7.2850000000000001,8.8079999999999998,10.778,13.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,162,-0.31469999999999998,7.2793999999999999,0.18426999999999999,4.3730000000000002,5.1360000000000001,6.0860000000000003,7.2789999999999999,8.8010000000000002,10.77,13.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,163,-0.316,7.2735000000000003,0.18426999999999999,4.37,5.133,6.0810000000000004,7.274,8.7940000000000005,10.762,13.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,164,-0.31730000000000003,7.2676999999999996,0.18426999999999999,4.367,5.1289999999999996,6.0759999999999996,7.2679999999999998,8.7870000000000008,10.755000000000001,13.347 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,165,-0.31850000000000001,7.2618999999999998,0.18426999999999999,4.3639999999999999,5.125,6.0709999999999997,7.2619999999999996,8.7810000000000006,10.747,13.339 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,166,-0.31969999999999998,7.2561,0.18426999999999999,4.3609999999999998,5.1210000000000004,6.0670000000000002,7.2560000000000002,8.7739999999999991,10.74,13.332000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,167,-0.32100000000000001,7.2504,0.18426999999999999,4.359,5.1180000000000003,6.0620000000000003,7.25,8.7669999999999995,10.733000000000001,13.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,168,-0.32219999999999999,7.2446000000000002,0.18426999999999999,4.3559999999999999,5.1139999999999999,6.0570000000000004,7.2450000000000001,8.76,10.725,13.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,169,-0.32340000000000002,7.2389000000000001,0.18426999999999999,4.3529999999999998,5.1100000000000003,6.0529999999999999,7.2389999999999999,8.7539999999999996,10.718,13.31 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,170,-0.3246,7.2332000000000001,0.18426999999999999,4.3499999999999996,5.1070000000000002,6.048,7.2329999999999997,8.7469999999999999,10.71,13.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,171,-0.32579999999999998,7.2275999999999998,0.18426999999999999,4.3479999999999999,5.1029999999999998,6.0430000000000001,7.2279999999999998,8.74,10.702999999999999,13.295 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,172,-0.32700000000000001,7.2220000000000004,0.18426000000000001,4.3449999999999998,5.0999999999999996,6.0389999999999997,7.2220000000000004,8.734,10.695,13.288 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,173,-0.32819999999999999,7.2164000000000001,0.18426000000000001,4.3419999999999996,5.0960000000000001,6.0339999999999998,7.2160000000000002,8.7270000000000003,10.688000000000001,13.281000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,174,-0.32940000000000003,7.2107999999999999,0.18426000000000001,4.3390000000000004,5.0919999999999996,6.03,7.2110000000000003,8.7200000000000006,10.680999999999999,13.273999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,175,-0.3306,7.2051999999999996,0.18426000000000001,4.3369999999999997,5.0890000000000004,6.0250000000000004,7.2050000000000001,8.7140000000000004,10.673999999999999,13.266 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,176,-0.33179999999999998,7.1997,0.18426000000000001,4.3339999999999996,5.085,6.0209999999999999,7.2,8.7070000000000007,10.667,13.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,177,-0.33289999999999997,7.1942000000000004,0.18426000000000001,4.3310000000000004,5.0819999999999999,6.016,7.194,8.7010000000000005,10.659000000000001,13.252000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,178,-0.33410000000000001,7.1886999999999999,0.18426000000000001,4.3289999999999997,5.0780000000000003,6.0119999999999996,7.1890000000000001,8.6940000000000008,10.651999999999999,13.244999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,179,-0.33529999999999999,7.1833,0.18426000000000001,4.3259999999999996,5.0750000000000002,6.0069999999999997,7.1829999999999998,8.6880000000000006,10.645,13.239000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,180,-0.33639999999999998,7.1778000000000004,0.18426000000000001,4.3230000000000004,5.0709999999999997,6.0030000000000001,7.1779999999999999,8.6820000000000004,10.638,13.231 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,181,-0.33760000000000001,7.1723999999999997,0.18426000000000001,4.3209999999999997,5.0679999999999996,5.9980000000000002,7.1719999999999997,8.6750000000000007,10.631,13.225 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,182,-0.3387,7.1669999999999998,0.18426000000000001,4.3179999999999996,5.0640000000000001,5.9939999999999998,7.1669999999999998,8.6690000000000005,10.624000000000001,13.218 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,183,-0.33989999999999998,7.1616999999999997,0.18425,4.3159999999999998,5.0609999999999999,5.99,7.1619999999999999,8.6630000000000003,10.617000000000001,13.21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,184,-0.34100000000000003,7.1563999999999997,0.18425,4.3129999999999997,5.0579999999999998,5.9850000000000003,7.1559999999999997,8.6560000000000006,10.61,13.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,185,-0.34210000000000002,7.1510999999999996,0.18425,4.3099999999999996,5.0540000000000003,5.9809999999999999,7.1509999999999998,8.65,10.603,13.196999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,186,-0.34320000000000001,7.1458000000000004,0.18425,4.3079999999999998,5.0510000000000002,5.9770000000000003,7.1459999999999999,8.6440000000000001,10.596,13.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,187,-0.34439999999999998,7.1405000000000003,0.18425,4.3049999999999997,5.0469999999999997,5.9720000000000004,7.14,8.6379999999999999,10.589,13.183 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,188,-0.34549999999999997,7.1353,0.18425,4.3029999999999999,5.0439999999999996,5.968,7.1349999999999998,8.6319999999999997,10.583,13.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,189,-0.34660000000000002,7.1300999999999997,0.18425,4.3,5.0410000000000004,5.9640000000000004,7.13,8.625,10.576000000000001,13.17 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,190,-0.34770000000000001,7.1249000000000002,0.18425,4.2969999999999997,5.0369999999999999,5.96,7.125,8.6189999999999998,10.569000000000001,13.163 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,191,-0.3488,7.1196999999999999,0.18425,4.2949999999999999,5.0339999999999998,5.9550000000000001,7.12,8.6129999999999995,10.561999999999999,13.157 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,192,-0.34989999999999999,7.1146000000000003,0.18425,4.2919999999999998,5.0309999999999997,5.9509999999999996,7.1150000000000002,8.6069999999999993,10.555999999999999,13.15 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,193,-0.35099999999999998,7.1094999999999997,0.18423999999999999,4.29,5.0270000000000001,5.9470000000000001,7.11,8.6010000000000009,10.548999999999999,13.143000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,194,-0.35210000000000002,7.1044,0.18423999999999999,4.2869999999999999,5.024,5.9429999999999996,7.1040000000000001,8.5950000000000006,10.542,13.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,195,-0.35310000000000002,7.0993000000000004,0.18423999999999999,4.2850000000000001,5.0209999999999999,5.9390000000000001,7.0990000000000002,8.5890000000000004,10.536,13.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,196,-0.35420000000000001,7.0942999999999996,0.18423999999999999,4.282,5.0179999999999998,5.9349999999999996,7.0940000000000003,8.5830000000000002,10.529,13.124000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,197,-0.3553,7.0891999999999999,0.18423999999999999,4.28,5.0140000000000002,5.931,7.0890000000000004,8.577,10.522,13.117000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,198,-0.35630000000000001,7.0842999999999998,0.18423999999999999,4.2770000000000001,5.0110000000000001,5.9269999999999996,7.0839999999999996,8.5719999999999992,10.516,13.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,199,-0.3574,7.0792999999999999,0.18423999999999999,4.2750000000000004,5.008,5.9219999999999997,7.0789999999999997,8.5660000000000007,10.51,13.103999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,200,-0.35849999999999999,7.0743,0.18423999999999999,4.2729999999999997,5.0049999999999999,5.9180000000000001,7.0739999999999998,8.56,10.503,13.098000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,201,-0.35949999999999999,7.0693999999999999,0.18423,4.2699999999999996,5.0019999999999998,5.9139999999999997,7.069,8.5540000000000003,10.496,13.090999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,202,-0.36059999999999998,7.0644999999999998,0.18423,4.2679999999999998,4.9980000000000002,5.91,7.0640000000000001,8.548,10.49,13.085000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,203,-0.36159999999999998,7.0595999999999997,0.18423,4.2649999999999997,4.9950000000000001,5.9059999999999997,7.06,8.5419999999999998,10.484,13.079000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,204,-0.36259999999999998,7.0548000000000002,0.18423,4.2629999999999999,4.992,5.9020000000000001,7.0549999999999997,8.5370000000000008,10.477,13.071999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,205,-0.36370000000000002,7.0499000000000001,0.18423,4.2610000000000001,4.9889999999999999,5.8979999999999997,7.05,8.5310000000000006,10.471,13.066000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,206,-0.36470000000000002,7.0450999999999997,0.18423,4.258,4.9859999999999998,5.8949999999999996,7.0449999999999999,8.5250000000000004,10.465,13.06 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,207,-0.36570000000000003,7.0403000000000002,0.18423,4.2560000000000002,4.9829999999999997,5.891,7.04,8.52,10.459,13.054 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,208,-0.36670000000000003,7.0355999999999996,0.18421999999999999,4.2539999999999996,4.9800000000000004,5.8869999999999996,7.0359999999999996,8.5139999999999993,10.452,13.047000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,209,-0.36780000000000002,7.0308000000000002,0.18421999999999999,4.2510000000000003,4.9770000000000003,5.883,7.0309999999999997,8.5079999999999991,10.446,13.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,210,-0.36880000000000002,7.0260999999999996,0.18421999999999999,4.2489999999999997,4.9740000000000002,5.8789999999999996,7.0259999999999998,8.5030000000000001,10.44,13.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,211,-0.36980000000000002,7.0213999999999999,0.18421999999999999,4.2469999999999999,4.9710000000000001,5.875,7.0209999999999999,8.4969999999999999,10.433999999999999,13.029 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,212,-0.37080000000000002,7.0167999999999999,0.18421999999999999,4.2439999999999998,4.968,5.8710000000000004,7.0170000000000003,8.4920000000000009,10.428000000000001,13.023 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,213,-0.37180000000000002,7.0121000000000002,0.18421000000000001,4.242,4.9649999999999999,5.8680000000000003,7.0119999999999996,8.4860000000000007,10.420999999999999,13.016999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,214,-0.37280000000000002,7.0075000000000003,0.18421000000000001,4.24,4.9619999999999997,5.8639999999999999,7.008,8.4809999999999999,10.414999999999999,13.010999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,215,-0.37380000000000002,7.0029000000000003,0.18421000000000001,4.2370000000000001,4.9589999999999996,5.86,7.0030000000000001,8.4760000000000009,10.409000000000001,13.005000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,216,-0.37480000000000002,6.9983000000000004,0.18421000000000001,4.2350000000000003,4.9560000000000004,5.8559999999999999,6.9980000000000002,8.4700000000000006,10.403,12.999000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,217,-0.37569999999999998,6.9936999999999996,0.1842,4.2329999999999997,4.9530000000000003,5.8529999999999998,6.9939999999999998,8.4649999999999999,10.397,12.993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,218,-0.37669999999999998,6.9892000000000003,0.1842,4.2309999999999999,4.95,5.8490000000000002,6.9889999999999999,8.4589999999999996,10.391,12.987 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,219,-0.37769999999999998,6.9847000000000001,0.1842,4.2279999999999998,4.9470000000000001,5.8449999999999998,6.9850000000000003,8.4540000000000006,10.385,12.981 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,220,-0.37869999999999998,6.9802,0.1842,4.226,4.944,5.8419999999999996,6.98,8.4489999999999998,10.38,12.976000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,221,-0.37959999999999999,6.9756999999999998,0.18418999999999999,4.2240000000000002,4.9409999999999998,5.8380000000000001,6.976,8.4429999999999996,10.372999999999999,12.968999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,222,-0.38059999999999999,6.9711999999999996,0.18418999999999999,4.2220000000000004,4.9379999999999997,5.8339999999999996,6.9710000000000001,8.4380000000000006,10.368,12.964 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,223,-0.38159999999999999,6.9668000000000001,0.18418999999999999,4.22,4.9359999999999999,5.8310000000000004,6.9669999999999996,8.4329999999999998,10.362,12.958 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,224,-0.38250000000000001,6.9623999999999997,0.18418000000000001,4.218,4.9329999999999998,5.827,6.9619999999999997,8.4280000000000008,10.356,12.952 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,225,-0.38350000000000001,6.9580000000000002,0.18418000000000001,4.2149999999999999,4.93,5.8239999999999998,6.9580000000000002,8.4220000000000006,10.35,12.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,226,-0.38440000000000002,6.9537000000000004,0.18418000000000001,4.2130000000000001,4.9269999999999996,5.82,6.9539999999999997,8.4169999999999998,10.345000000000001,12.941000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,227,-0.38540000000000002,6.9493,0.18418000000000001,4.2110000000000003,4.9240000000000004,5.8170000000000002,6.9489999999999998,8.4120000000000008,10.339,12.935 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,228,-0.38629999999999998,6.9450000000000003,0.18417,4.2089999999999996,4.9219999999999997,5.8129999999999997,6.9450000000000003,8.407,10.333,12.929 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,229,-0.38729999999999998,6.9406999999999996,0.18417,4.2069999999999999,4.9189999999999996,5.81,6.9409999999999998,8.4019999999999992,10.327999999999999,12.923999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,230,-0.38819999999999999,6.9363999999999999,0.18417,4.2050000000000001,4.9160000000000004,5.806,6.9359999999999999,8.3970000000000002,10.321999999999999,12.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,231,-0.3891,6.9321999999999999,0.18415999999999999,4.2030000000000003,4.9130000000000003,5.8029999999999999,6.9320000000000004,8.3919999999999995,10.316000000000001,12.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,232,-0.3901,6.9279000000000002,0.18415999999999999,4.2009999999999996,4.9109999999999996,5.7990000000000004,6.9279999999999999,8.3870000000000005,10.311,12.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,233,-0.39100000000000001,6.9237000000000002,0.18415999999999999,4.1989999999999998,4.9080000000000004,5.7960000000000003,6.9240000000000004,8.3819999999999997,10.305,12.901999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,234,-0.39190000000000003,6.9195000000000002,0.18415000000000001,4.1970000000000001,4.9050000000000002,5.7919999999999998,6.92,8.3770000000000007,10.298999999999999,12.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,235,-0.39279999999999998,6.9153000000000002,0.18415000000000001,4.194,4.9029999999999996,5.7889999999999997,6.915,8.3719999999999999,10.294,12.891 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,236,-0.39379999999999998,6.9112,0.18414,4.1929999999999996,4.9000000000000004,5.7859999999999996,6.9109999999999996,8.3670000000000009,10.289,12.885 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,237,-0.3947,6.907,0.18414,4.1900000000000004,4.8970000000000002,5.782,6.907,8.3620000000000001,10.282999999999999,12.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,238,-0.39560000000000001,6.9028999999999998,0.18414,4.1879999999999997,4.8949999999999996,5.7789999999999999,6.9029999999999996,8.3569999999999993,10.278,12.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,239,-0.39650000000000002,6.8987999999999996,0.18412999999999999,4.1859999999999999,4.8920000000000003,5.7759999999999998,6.899,8.3520000000000003,10.272,12.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,240,-0.39739999999999998,6.8948,0.18412999999999999,4.1840000000000002,4.8890000000000002,5.7720000000000002,6.8949999999999996,8.3480000000000008,10.266999999999999,12.864000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,241,-0.39829999999999999,6.8906999999999998,0.18412999999999999,4.1820000000000004,4.8869999999999996,5.7690000000000001,6.891,8.343,10.262,12.859 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,242,-0.3992,6.8867000000000003,0.18412000000000001,4.181,4.8840000000000003,5.766,6.8869999999999996,8.3379999999999992,10.256,12.853 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,243,-0.40010000000000001,6.8826999999999998,0.18412000000000001,4.1790000000000003,4.8819999999999997,5.7619999999999996,6.883,8.3330000000000002,10.250999999999999,12.848000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,244,-0.40100000000000002,6.8787000000000003,0.18411,4.1769999999999996,4.8789999999999996,5.7590000000000003,6.8789999999999996,8.3290000000000006,10.246,12.843 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,245,-0.40189999999999998,6.8746999999999998,0.18411,4.1749999999999998,4.8769999999999998,5.7560000000000002,6.875,8.3239999999999998,10.24,12.837999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,246,-0.40279999999999999,6.8708,0.18411,4.173,4.8739999999999997,5.7530000000000001,6.8710000000000004,8.3190000000000008,10.234999999999999,12.833 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,247,-0.40360000000000001,6.8667999999999996,0.18410000000000001,4.1710000000000003,4.8719999999999999,5.75,6.867,8.3140000000000001,10.23,12.827 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,248,-0.40450000000000003,6.8628999999999998,0.18410000000000001,4.1689999999999996,4.8689999999999998,5.7460000000000004,6.8630000000000004,8.31,10.225,12.821999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,249,-0.40539999999999998,6.859,0.18409,4.1669999999999998,4.867,5.7430000000000003,6.859,8.3049999999999997,10.220000000000001,12.817 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,250,-0.40629999999999999,6.8551000000000002,0.18409,4.165,4.8639999999999999,5.74,6.8550000000000004,8.3010000000000002,10.214,12.811999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,251,-0.40710000000000002,6.8513000000000002,0.18409,4.1630000000000003,4.8620000000000001,5.7370000000000001,6.851,8.2959999999999994,10.210000000000001,12.807 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,252,-0.40799999999999997,6.8474000000000004,0.18407999999999999,4.1609999999999996,4.859,5.734,6.8470000000000004,8.2910000000000004,10.204000000000001,12.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,253,-0.40889999999999999,6.8436000000000003,0.18407999999999999,4.1589999999999998,4.8570000000000002,5.7309999999999999,6.8440000000000003,8.2870000000000008,10.199,12.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,254,-0.40970000000000001,6.8398000000000003,0.18407000000000001,4.1580000000000004,4.8540000000000001,5.7279999999999998,6.84,8.282,10.194000000000001,12.792 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,255,-0.41060000000000002,6.8360000000000003,0.18407000000000001,4.1559999999999997,4.8520000000000003,5.7249999999999996,6.8360000000000003,8.2780000000000005,10.189,12.787000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,256,-0.41139999999999999,6.8323,0.18407000000000001,4.1539999999999999,4.8490000000000002,5.7210000000000001,6.8319999999999999,8.2739999999999991,10.183999999999999,12.782999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,257,-0.4123,6.8285,0.18406,4.1520000000000001,4.8470000000000004,5.718,6.8280000000000003,8.2690000000000001,10.179,12.776999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,258,-0.41310000000000002,6.8247999999999998,0.18406,4.1500000000000004,4.8449999999999998,5.7149999999999999,6.8250000000000002,8.2650000000000006,10.173999999999999,12.773 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,259,-0.41399999999999998,6.8211000000000004,0.18404999999999999,4.149,4.8419999999999996,5.7119999999999997,6.8209999999999997,8.26,10.169,12.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,260,-0.4148,6.8174000000000001,0.18404999999999999,4.1470000000000002,4.84,5.7089999999999996,6.8170000000000002,8.2560000000000002,10.164999999999999,12.763 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,261,-0.41570000000000001,6.8137999999999996,0.18404000000000001,4.1449999999999996,4.8380000000000001,5.7069999999999999,6.8140000000000001,8.2520000000000007,10.16,12.757999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,262,-0.41649999999999998,6.8101000000000003,0.18404000000000001,4.1429999999999998,4.835,5.7030000000000003,6.81,8.2469999999999999,10.154999999999999,12.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,263,-0.4173,6.8064999999999998,0.18404000000000001,4.141,4.8330000000000002,5.7009999999999996,6.806,8.2430000000000003,10.15,12.749000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,264,-0.41820000000000002,6.8029000000000002,0.18403,4.1399999999999997,4.8310000000000004,5.6980000000000004,6.8029999999999999,8.2390000000000008,10.145,12.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,265,-0.41899999999999998,6.7992999999999997,0.18403,4.1379999999999999,4.8280000000000003,5.6950000000000003,6.7990000000000004,8.234,10.141,12.74 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,266,-0.41980000000000001,6.7957000000000001,0.18401999999999999,4.1360000000000001,4.8259999999999996,5.6920000000000002,6.7960000000000003,8.23,10.135999999999999,12.734999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,267,-0.42070000000000002,6.7920999999999996,0.18401999999999999,4.1340000000000003,4.8239999999999998,5.6890000000000001,6.7919999999999998,8.2260000000000009,10.131,12.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,268,-0.42149999999999999,6.7885999999999997,0.18401000000000001,4.133,4.8220000000000001,5.6859999999999999,6.7889999999999997,8.2219999999999995,10.125999999999999,12.725 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,269,-0.42230000000000001,6.7850000000000001,0.18401000000000001,4.1310000000000002,4.819,5.6829999999999998,6.7850000000000001,8.218,10.122,12.721 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,270,-0.42309999999999998,6.7815000000000003,0.184,4.1289999999999996,4.8170000000000002,5.68,6.782,8.2129999999999992,10.117000000000001,12.715999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,271,-0.4239,6.7779999999999996,0.184,4.1280000000000001,4.8150000000000004,5.6769999999999996,6.7779999999999996,8.2089999999999996,10.112,12.712 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,272,-0.42480000000000001,6.7746000000000004,0.184,4.1260000000000003,4.8129999999999997,5.6749999999999998,6.7750000000000004,8.2050000000000001,10.108000000000001,12.708 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,273,-0.42559999999999998,6.7710999999999997,0.18398999999999999,4.1239999999999997,4.8109999999999999,5.6719999999999997,6.7709999999999999,8.2010000000000005,10.103,12.702999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,274,-0.4264,6.7676999999999996,0.18398999999999999,4.1230000000000002,4.8079999999999998,5.6689999999999996,6.7679999999999998,8.1969999999999992,10.099,12.699 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,275,-0.42720000000000002,6.7641999999999998,0.18398,4.1210000000000004,4.806,5.6660000000000004,6.7640000000000002,8.1929999999999996,10.093999999999999,12.694000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,276,-0.42799999999999999,6.7607999999999997,0.18398,4.1189999999999998,4.8040000000000003,5.6639999999999997,6.7610000000000001,8.1890000000000001,10.09,12.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,277,-0.42880000000000001,6.7573999999999996,0.18396999999999999,4.1180000000000003,4.8019999999999996,5.6609999999999996,6.7569999999999997,8.1850000000000005,10.085000000000001,12.685 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,278,-0.42959999999999998,6.7541000000000002,0.18396999999999999,4.1159999999999997,4.8,5.6580000000000004,6.7539999999999996,8.1809999999999992,10.081,12.680999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,279,-0.4304,6.7507000000000001,0.18396999999999999,4.1139999999999999,4.7969999999999997,5.6550000000000002,6.7510000000000003,8.1769999999999996,10.077,12.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,280,-0.43120000000000003,6.7473999999999998,0.18396000000000001,4.1130000000000004,4.7949999999999999,5.6529999999999996,6.7469999999999999,8.173,10.071999999999999,12.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,281,-0.432,6.7439999999999998,0.18396000000000001,4.1109999999999998,4.7930000000000001,5.65,6.7439999999999998,8.1690000000000005,10.068,12.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,282,-0.43269999999999997,6.7407000000000004,0.18395,4.109,4.7910000000000004,5.6470000000000002,6.7409999999999997,8.1649999999999991,10.063000000000001,12.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,283,-0.4335,6.7374000000000001,0.18395,4.1079999999999997,4.7889999999999997,5.6449999999999996,6.7370000000000001,8.1609999999999996,10.058999999999999,12.659000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,284,-0.43430000000000002,6.7340999999999998,0.18395,4.1059999999999999,4.7869999999999999,5.6420000000000003,6.734,8.157,10.055,12.654999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,285,-0.43509999999999999,6.7309000000000001,0.18393999999999999,4.1050000000000004,4.7850000000000001,5.6390000000000002,6.7309999999999999,8.1530000000000005,10.050000000000001,12.651 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,286,-0.43590000000000001,6.7275999999999998,0.18393999999999999,4.1029999999999998,4.7830000000000004,5.6369999999999996,6.7279999999999998,8.1489999999999991,10.045999999999999,12.647 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,287,-0.43659999999999999,6.7244000000000002,0.18393000000000001,4.1020000000000003,4.7809999999999997,5.6340000000000003,6.7240000000000002,8.1460000000000008,10.042,12.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,288,-0.43740000000000001,6.7211999999999996,0.18393000000000001,4.0999999999999996,4.7789999999999999,5.6310000000000002,6.7210000000000001,8.1419999999999995,10.038,12.638999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,289,-0.43819999999999998,6.718,0.18393000000000001,4.0979999999999999,4.7770000000000001,5.6289999999999996,6.718,8.1379999999999999,10.032999999999999,12.635 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,290,-0.439,6.7148000000000003,0.18392,4.0970000000000004,4.7750000000000004,5.6260000000000003,6.7149999999999999,8.1340000000000003,10.029,12.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,291,-0.43969999999999998,6.7115999999999998,0.18392,4.0949999999999998,4.7729999999999997,5.6239999999999997,6.7119999999999997,8.1300000000000008,10.025,12.627000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,292,-0.4405,6.7084999999999999,0.18390999999999999,4.0940000000000003,4.7709999999999999,5.6210000000000004,6.7080000000000002,8.1270000000000007,10.021000000000001,12.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,293,-0.44130000000000003,6.7054,0.18390999999999999,4.0919999999999996,4.7690000000000001,5.6189999999999998,6.7050000000000001,8.1229999999999993,10.016999999999999,12.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,294,-0.442,6.7022000000000004,0.18390999999999999,4.0910000000000002,4.7670000000000003,5.6159999999999997,6.702,8.1189999999999998,10.013,12.615 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,295,-0.44280000000000003,6.6990999999999996,0.18390000000000001,4.0890000000000004,4.7649999999999997,5.6139999999999999,6.6989999999999998,8.1159999999999997,10.007999999999999,12.611000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,296,-0.44350000000000001,6.6959999999999997,0.18390000000000001,4.0880000000000001,4.7629999999999999,5.6109999999999998,6.6959999999999997,8.1120000000000001,10.004,12.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,297,-0.44429999999999997,6.6929999999999996,0.18390000000000001,4.0860000000000003,4.7610000000000001,5.609,6.6929999999999996,8.1080000000000005,10.000999999999999,12.603 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,298,-0.44500000000000001,6.6898999999999997,0.18389,4.085,4.7590000000000003,5.6059999999999999,6.69,8.1050000000000004,9.9960000000000004,12.599 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,299,-0.44579999999999997,6.6868999999999996,0.18389,4.0830000000000002,4.7569999999999997,5.6040000000000001,6.6870000000000003,8.1010000000000009,9.9930000000000003,12.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,300,-0.44650000000000001,6.6837999999999997,0.18389,4.0819999999999999,4.7549999999999999,5.601,6.6840000000000002,8.0980000000000008,9.9890000000000008,12.592000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,301,-0.44729999999999998,6.6807999999999996,0.18387999999999999,4.08,4.7530000000000001,5.5990000000000002,6.681,8.0939999999999994,9.9849999999999994,12.587999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,302,-0.44800000000000001,6.6778000000000004,0.18387999999999999,4.0789999999999997,4.7510000000000003,5.5960000000000001,6.6779999999999999,8.09,9.9809999999999999,12.584 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,303,-0.44879999999999998,6.6748000000000003,0.18387999999999999,4.077,4.7489999999999997,5.5940000000000003,6.6749999999999998,8.0869999999999997,9.9770000000000003,12.581 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,304,-0.44950000000000001,6.6718000000000002,0.18387000000000001,4.0759999999999996,4.7469999999999999,5.5910000000000002,6.6719999999999997,8.0830000000000002,9.9730000000000008,12.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,305,-0.45019999999999999,6.6688999999999998,0.18387000000000001,4.0750000000000002,4.7450000000000001,5.5890000000000004,6.6689999999999996,8.08,9.9689999999999994,12.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,306,-0.45100000000000001,6.6658999999999997,0.18387000000000001,4.0730000000000004,4.7430000000000003,5.5869999999999997,6.6660000000000004,8.0760000000000005,9.9649999999999999,12.569000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,307,-0.45169999999999999,6.6630000000000003,0.18386,4.0720000000000001,4.742,5.5839999999999996,6.6630000000000003,8.0730000000000004,9.9610000000000003,12.565 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,308,-0.45240000000000002,6.6600999999999999,0.18386,4.07,4.74,5.5819999999999999,6.66,8.07,9.9570000000000007,12.561999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,309,-0.45319999999999999,6.6571999999999996,0.18386,4.069,4.7380000000000004,5.5789999999999997,6.657,8.0660000000000007,9.9540000000000006,12.558999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,310,-0.45390000000000003,6.6543000000000001,0.18386,4.0670000000000002,4.7359999999999998,5.577,6.6539999999999999,8.0630000000000006,9.9499999999999993,12.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,311,-0.4546,6.6513999999999998,0.18385000000000001,4.0659999999999998,4.734,5.5750000000000002,6.6509999999999998,8.0589999999999993,9.9459999999999997,12.551 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,312,-0.45529999999999998,6.6485000000000003,0.18385000000000001,4.0650000000000004,4.7320000000000002,5.5720000000000001,6.6479999999999997,8.0559999999999992,9.9420000000000002,12.548 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,313,-0.45610000000000001,6.6456999999999997,0.18385000000000001,4.0629999999999997,4.7309999999999999,5.57,6.6459999999999999,8.0530000000000008,9.9390000000000001,12.545 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,314,-0.45679999999999998,6.6429,0.18385000000000001,4.0620000000000003,4.7290000000000001,5.5679999999999996,6.6429999999999998,8.0489999999999995,9.9350000000000005,12.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,315,-0.45750000000000002,6.64,0.18384,4.0609999999999999,4.7270000000000003,5.5659999999999998,6.64,8.0459999999999994,9.9309999999999992,12.537000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,316,-0.4582,6.6372,0.18384,4.0590000000000002,4.7249999999999996,5.5629999999999997,6.6369999999999996,8.0419999999999998,9.9280000000000008,12.534000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,317,-0.45889999999999997,6.6344000000000003,0.18384,4.0579999999999998,4.7229999999999999,5.5609999999999999,6.6340000000000003,8.0389999999999997,9.9239999999999995,12.531000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,318,-0.45960000000000001,6.6315999999999997,0.18384,4.056,4.7210000000000001,5.5590000000000002,6.6319999999999997,8.0359999999999996,9.9209999999999994,12.526999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,319,-0.46029999999999999,6.6288999999999998,0.18382999999999999,4.0549999999999997,4.72,5.5570000000000004,6.6289999999999996,8.0329999999999995,9.9169999999999998,12.523999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,320,-0.46100000000000002,6.6261000000000001,0.18382999999999999,4.0540000000000003,4.718,5.5540000000000003,6.6260000000000003,8.0289999999999999,9.9130000000000003,12.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,321,-0.4617,6.6234000000000002,0.18382999999999999,4.0519999999999996,4.7160000000000002,5.5519999999999996,6.6230000000000002,8.0259999999999998,9.91,12.516999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,322,-0.46250000000000002,6.6205999999999996,0.18382999999999999,4.0510000000000002,4.7140000000000004,5.55,6.6210000000000004,8.0229999999999997,9.9060000000000006,12.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,323,-0.4632,6.6178999999999997,0.18382999999999999,4.05,4.7130000000000001,5.548,6.6180000000000003,8.02,9.9030000000000005,12.510999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,324,-0.46389999999999998,6.6151999999999997,0.18382000000000001,4.048,4.7110000000000003,5.5449999999999999,6.6150000000000002,8.0169999999999995,9.8989999999999991,12.507 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,325,-0.46450000000000002,6.6124999999999998,0.18382000000000001,4.0469999999999997,4.7089999999999996,5.5430000000000001,6.6120000000000001,8.0129999999999999,9.8960000000000008,12.504 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,326,-0.4652,6.6097999999999999,0.18382000000000001,4.0460000000000003,4.7080000000000002,5.5410000000000004,6.61,8.01,9.8919999999999995,12.500999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,327,-0.46589999999999998,6.6071999999999997,0.18382000000000001,4.0439999999999996,4.7060000000000004,5.5389999999999997,6.6070000000000002,8.0069999999999997,9.8889999999999993,12.497999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,328,-0.46660000000000001,6.6044999999999998,0.18382000000000001,4.0430000000000001,4.7039999999999997,5.5369999999999999,6.6040000000000001,8.0039999999999996,9.8849999999999998,12.494999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,329,-0.46729999999999999,6.6018999999999997,0.18382000000000001,4.0419999999999998,4.702,5.5350000000000001,6.6020000000000003,8.0009999999999994,9.8819999999999997,12.492000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,330,-0.46800000000000003,6.5991999999999997,0.18382000000000001,4.0410000000000004,4.7009999999999996,5.532,6.5990000000000002,7.9980000000000002,9.8789999999999996,12.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,331,-0.46870000000000001,6.5965999999999996,0.18382000000000001,4.0389999999999997,4.6989999999999998,5.53,6.5970000000000004,7.9950000000000001,9.875,12.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,332,-0.46939999999999998,6.5940000000000003,0.18381,4.0380000000000003,4.6970000000000001,5.5279999999999996,6.5940000000000003,7.992,9.8719999999999999,12.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,333,-0.47010000000000002,6.5914000000000001,0.18381,4.0369999999999999,4.6959999999999997,5.5259999999999998,6.5910000000000002,7.9889999999999999,9.8689999999999998,12.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,334,-0.4708,6.5888,0.18381,4.0359999999999996,4.694,5.524,6.5890000000000004,7.9850000000000003,9.8650000000000002,12.476000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,335,-0.47139999999999999,6.5861999999999998,0.18381,4.0339999999999998,4.6920000000000002,5.5220000000000002,6.5860000000000003,7.9820000000000002,9.8620000000000001,12.473000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,336,-0.47210000000000002,6.5837000000000003,0.18381,4.0330000000000004,4.6909999999999998,5.52,6.5839999999999996,7.98,9.859,12.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,337,-0.4728,6.5811000000000002,0.18381,4.032,4.6890000000000001,5.5179999999999998,6.5810000000000004,7.976,9.8559999999999999,12.467000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,338,-0.47349999999999998,6.5785999999999998,0.18381,4.03,4.6879999999999997,5.516,6.5789999999999997,7.9740000000000002,9.8520000000000003,12.464 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,339,-0.47410000000000002,6.5761000000000003,0.18381,4.0289999999999999,4.6859999999999999,5.5140000000000002,6.5759999999999996,7.9710000000000001,9.8490000000000002,12.461 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,340,-0.4748,6.5735999999999999,0.18381,4.0279999999999996,4.6840000000000002,5.5110000000000001,6.5739999999999998,7.968,9.8460000000000001,12.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,341,-0.47549999999999998,6.5709999999999997,0.18381,4.0270000000000001,4.6829999999999998,5.5090000000000003,6.5709999999999997,7.9649999999999999,9.843,12.456 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,342,-0.47610000000000002,6.5686,0.18381,4.0259999999999998,4.681,5.5069999999999997,6.569,7.9619999999999997,9.84,12.452999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,343,-0.4768,6.5660999999999996,0.18381,4.024,4.6790000000000003,5.5049999999999999,6.5659999999999998,7.9589999999999996,9.8360000000000003,12.45 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,344,-0.47749999999999998,6.5636000000000001,0.18381,4.0229999999999997,4.6779999999999999,5.5030000000000001,6.5640000000000001,7.9560000000000004,9.8330000000000002,12.446999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,345,-0.47810000000000002,6.5612000000000004,0.18381,4.0220000000000002,4.6760000000000002,5.5010000000000003,6.5609999999999999,7.9530000000000003,9.83,12.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,346,-0.4788,6.5587,0.18381,4.0209999999999999,4.6749999999999998,5.4989999999999997,6.5590000000000002,7.95,9.827,12.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,347,-0.47949999999999998,6.5563000000000002,0.18381,4.0190000000000001,4.673,5.4969999999999999,6.556,7.9470000000000001,9.8239999999999998,12.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,348,-0.48010000000000003,6.5538999999999996,0.18381,4.0179999999999998,4.6719999999999997,5.4950000000000001,6.5540000000000003,7.9450000000000003,9.8209999999999997,12.436 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,349,-0.48080000000000001,6.5514000000000001,0.18381,4.0170000000000003,4.67,5.4930000000000003,6.5510000000000002,7.9420000000000002,9.8179999999999996,12.433999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,350,-0.48139999999999999,6.5490000000000004,0.18381,4.016,4.6680000000000001,5.4909999999999997,6.5490000000000004,7.9390000000000001,9.8149999999999995,12.430999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,351,-0.48209999999999997,6.5467000000000004,0.18381,4.0149999999999997,4.6669999999999998,5.49,6.5469999999999997,7.9359999999999999,9.8119999999999994,12.428000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,352,-0.48270000000000002,6.5442999999999998,0.18381,4.0140000000000002,4.665,5.4880000000000004,6.5439999999999996,7.9329999999999998,9.8089999999999993,12.425000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,353,-0.4834,6.5419,0.18381,4.0119999999999996,4.6639999999999997,5.4859999999999998,6.5419999999999998,7.931,9.8059999999999992,12.423 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,354,-0.48399999999999999,6.5396000000000001,0.18381,4.0110000000000001,4.6619999999999999,5.484,6.54,7.9279999999999999,9.8030000000000008,12.42 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,355,-0.48470000000000002,6.5372000000000003,0.18381,4.01,4.6609999999999996,5.4820000000000002,6.5369999999999999,7.9249999999999998,9.8000000000000007,12.417999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,356,-0.48530000000000001,6.5349000000000004,0.18381,4.0090000000000003,4.6589999999999998,5.48,6.5350000000000001,7.9219999999999997,9.7970000000000006,12.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,357,-0.48599999999999999,6.5326000000000004,0.18382000000000001,4.008,4.6580000000000004,5.4779999999999998,6.5330000000000004,7.92,9.7940000000000005,12.413 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,358,-0.48659999999999998,6.5303000000000004,0.18382000000000001,4.0069999999999997,4.6559999999999997,5.476,6.53,7.9169999999999998,9.7910000000000004,12.41 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,359,-0.48730000000000001,6.5279999999999996,0.18382000000000001,4.0049999999999999,4.6550000000000002,5.4740000000000002,6.5279999999999996,7.9139999999999997,9.7889999999999997,12.407999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,360,-0.4879,6.5256999999999996,0.18382000000000001,4.0039999999999996,4.6529999999999996,5.4720000000000004,6.5259999999999998,7.9119999999999999,9.7859999999999996,12.404999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,361,-0.48849999999999999,6.5233999999999996,0.18382000000000001,4.0030000000000001,4.6520000000000001,5.47,6.5229999999999997,7.9089999999999998,9.7829999999999995,12.403 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,362,-0.48920000000000002,6.5210999999999997,0.18382000000000001,4.0019999999999998,4.6500000000000004,5.4690000000000003,6.5209999999999999,7.9059999999999997,9.7799999999999994,12.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,363,-0.48980000000000001,6.5189000000000004,0.18382999999999999,4.0010000000000003,4.649,5.4669999999999996,6.5190000000000001,7.9039999999999999,9.7769999999999992,12.398 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,364,-0.4904,6.5166000000000004,0.18382999999999999,4,4.6470000000000002,5.4649999999999999,6.5170000000000003,7.9009999999999998,9.7739999999999991,12.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,365,-0.49109999999999998,6.5144000000000002,0.18382999999999999,3.9990000000000001,4.6459999999999999,5.4630000000000001,6.5140000000000002,7.899,9.7720000000000002,12.394 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,366,-0.49170000000000003,6.5121000000000002,0.18382999999999999,3.9980000000000002,4.6449999999999996,5.4610000000000003,6.5119999999999996,7.8959999999999999,9.7690000000000001,12.391 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,367,-0.49230000000000002,6.5099,0.18382999999999999,3.996,4.6429999999999998,5.4589999999999996,6.51,7.8929999999999998,9.766,12.388 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,368,-0.49299999999999999,6.5076999999999998,0.18384,3.9950000000000001,4.6420000000000003,5.4580000000000002,6.508,7.891,9.7639999999999993,12.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,369,-0.49359999999999998,6.5054999999999996,0.18384,3.9940000000000002,4.6399999999999997,5.4560000000000004,6.5060000000000002,7.8879999999999999,9.7609999999999992,12.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,370,-0.49419999999999997,6.5033000000000003,0.18384,3.9929999999999999,4.6390000000000002,5.4539999999999997,6.5030000000000001,7.8860000000000001,9.7579999999999991,12.382 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,371,-0.49480000000000002,6.5011999999999999,0.18384,3.992,4.6379999999999999,5.452,6.5010000000000003,7.883,9.7550000000000008,12.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,372,-0.4955,6.4989999999999997,0.18385000000000001,3.9910000000000001,4.6360000000000001,5.45,6.4989999999999997,7.8810000000000002,9.7530000000000001,12.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,373,-0.49609999999999999,6.4968000000000004,0.18385000000000001,3.99,4.6349999999999998,5.4489999999999998,6.4969999999999999,7.8780000000000001,9.75,12.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,374,-0.49669999999999997,6.4946999999999999,0.18385000000000001,3.9889999999999999,4.633,5.4470000000000001,6.4950000000000001,7.8760000000000003,9.7469999999999999,12.372999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,375,-0.49730000000000002,6.4926000000000004,0.18385000000000001,3.988,4.6319999999999997,5.4450000000000003,6.4930000000000003,7.8730000000000002,9.7449999999999992,12.371 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,376,-0.49790000000000001,6.4904000000000002,0.18386,3.9870000000000001,4.63,5.4429999999999996,6.49,7.8710000000000004,9.7420000000000009,12.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,377,-0.4985,6.4882999999999997,0.18386,3.9860000000000002,4.6289999999999996,5.4420000000000002,6.4880000000000004,7.8680000000000003,9.74,12.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,378,-0.49919999999999998,6.4862000000000002,0.18386,3.9849999999999999,4.6280000000000001,5.44,6.4859999999999998,7.8659999999999997,9.7370000000000001,12.365 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,379,-0.49980000000000002,6.4840999999999998,0.18387000000000001,3.984,4.6260000000000003,5.4379999999999997,6.484,7.8630000000000004,9.7349999999999994,12.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,380,-0.50039999999999996,6.4820000000000002,0.18387000000000001,3.9830000000000001,4.625,5.4359999999999999,6.4820000000000002,7.8609999999999998,9.7319999999999993,12.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,381,-0.501,6.48,0.18387000000000001,3.9820000000000002,4.6239999999999997,5.4349999999999996,6.48,7.859,9.73,12.358000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,382,-0.50160000000000005,6.4779,0.18387999999999999,3.98,4.6219999999999999,5.4329999999999998,6.4779999999999998,7.8559999999999999,9.7270000000000003,12.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,383,-0.50219999999999998,6.4757999999999996,0.18387999999999999,3.9790000000000001,4.6210000000000004,5.431,6.476,7.8540000000000001,9.7249999999999996,12.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,384,-0.50280000000000002,6.4737999999999998,0.18389,3.9780000000000002,4.62,5.43,6.4740000000000002,7.8520000000000003,9.7219999999999995,12.353 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,385,-0.50339999999999996,6.4718,0.18389,3.9769999999999999,4.6180000000000003,5.4279999999999999,6.4720000000000004,7.8490000000000002,9.7200000000000006,12.351000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,386,-0.504,6.4696999999999996,0.18389,3.976,4.617,5.4260000000000002,6.47,7.8470000000000004,9.7170000000000005,12.348000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,387,-0.50460000000000005,6.4676999999999998,0.18390000000000001,3.9750000000000001,4.6159999999999997,5.4249999999999998,6.468,7.8449999999999998,9.7149999999999999,12.347 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,388,-0.50519999999999998,6.4657,0.18390000000000001,3.9740000000000002,4.6139999999999999,5.423,6.4660000000000002,7.8419999999999996,9.7119999999999997,12.345000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,389,-0.50580000000000003,6.4637000000000002,0.18390999999999999,3.9729999999999999,4.6130000000000004,5.4210000000000003,6.4640000000000004,7.84,9.7100000000000009,12.343 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,390,-0.50639999999999996,6.4617000000000004,0.18390999999999999,3.972,4.6120000000000001,5.42,6.4619999999999997,7.8380000000000001,9.7080000000000002,12.340999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,391,-0.50700000000000001,6.4596999999999998,0.18392,3.9710000000000001,4.6100000000000003,5.4180000000000001,6.46,7.835,9.7050000000000001,12.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,392,-0.50760000000000005,6.4577,0.18392,3.97,4.609,5.4160000000000004,6.4580000000000002,7.8330000000000002,9.7029999999999994,12.337999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,393,-0.50819999999999999,6.4558,0.18393000000000001,3.9689999999999999,4.6079999999999997,5.415,6.4560000000000004,7.8310000000000004,9.7010000000000005,12.336 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,394,-0.50880000000000003,6.4538000000000002,0.18393000000000001,3.968,4.6059999999999999,5.4130000000000003,6.4539999999999997,7.8289999999999997,9.6980000000000004,12.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,395,-0.50939999999999996,6.4519000000000002,0.18393999999999999,3.9670000000000001,4.6050000000000004,5.4119999999999999,6.452,7.8259999999999996,9.6959999999999997,12.333 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,396,-0.51,6.4499000000000004,0.18393999999999999,3.9660000000000002,4.6040000000000001,5.41,6.45,7.8239999999999998,9.6940000000000008,12.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,397,-0.51060000000000005,6.4480000000000004,0.18395,3.9649999999999999,4.6029999999999998,5.4080000000000004,6.4480000000000004,7.8220000000000001,9.6920000000000002,12.329000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,398,-0.5111,6.4461000000000004,0.18395,3.964,4.601,5.407,6.4459999999999997,7.82,9.6890000000000001,12.327 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,399,-0.51170000000000004,6.4442000000000004,0.18396000000000001,3.9630000000000001,4.5999999999999996,5.4050000000000002,6.444,7.8179999999999996,9.6869999999999994,12.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,400,-0.51229999999999998,6.4423000000000004,0.18396000000000001,3.9620000000000002,4.5990000000000002,5.4039999999999999,6.4420000000000002,7.8150000000000004,9.6850000000000005,12.324 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,401,-0.51290000000000002,6.4404000000000003,0.18396999999999999,3.9609999999999999,4.5979999999999999,5.4020000000000001,6.44,7.8129999999999997,9.6829999999999998,12.321999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,402,-0.51349999999999996,6.4385000000000003,0.18396999999999999,3.9609999999999999,4.5960000000000001,5.4009999999999998,6.4379999999999997,7.8109999999999999,9.68,12.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,403,-0.5141,6.4366000000000003,0.18398,3.96,4.5949999999999998,5.399,6.4370000000000003,7.8090000000000002,9.6780000000000008,12.319000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,404,-0.51459999999999995,6.4347000000000003,0.18398999999999999,3.9580000000000002,4.5940000000000003,5.3970000000000002,6.4349999999999996,7.8070000000000004,9.6760000000000002,12.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,405,-0.51519999999999999,6.4329000000000001,0.18398999999999999,3.9580000000000002,4.593,5.3959999999999999,6.4329999999999998,7.8049999999999997,9.6739999999999995,12.316000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,406,-0.51580000000000004,6.431,0.184,3.9569999999999999,4.5910000000000002,5.3940000000000001,6.431,7.8029999999999999,9.6720000000000006,12.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,407,-0.51639999999999997,6.4291999999999998,0.184,3.956,4.59,5.3929999999999998,6.4290000000000003,7.8010000000000002,9.67,12.313000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,408,-0.51700000000000002,6.4272999999999998,0.18401000000000001,3.9550000000000001,4.5890000000000004,5.391,6.4269999999999996,7.798,9.6679999999999993,12.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,409,-0.51749999999999996,6.4255000000000004,0.18401999999999999,3.9540000000000002,4.5880000000000001,5.39,6.4260000000000002,7.7960000000000003,9.6660000000000004,12.31 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,410,-0.5181,6.4237000000000002,0.18401999999999999,3.9529999999999998,4.5869999999999997,5.3879999999999999,6.4240000000000004,7.7939999999999996,9.6630000000000003,12.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,411,-0.51870000000000005,6.4218999999999999,0.18403,3.952,4.585,5.3869999999999996,6.4219999999999997,7.7919999999999998,9.6609999999999996,12.307 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,412,-0.51919999999999999,6.4200999999999997,0.18404000000000001,3.9510000000000001,4.5839999999999996,5.3849999999999998,6.42,7.79,9.6590000000000007,12.305999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,413,-0.51980000000000004,6.4183000000000003,0.18404000000000001,3.95,4.5830000000000002,5.3840000000000003,6.4180000000000001,7.7880000000000003,9.657,12.304 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,414,-0.52039999999999997,6.4165000000000001,0.18404999999999999,3.9489999999999998,4.5819999999999999,5.3819999999999997,6.4160000000000004,7.7859999999999996,9.6549999999999994,12.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,415,-0.52090000000000003,6.4146999999999998,0.18406,3.948,4.5810000000000004,5.3810000000000002,6.415,7.7839999999999998,9.6530000000000005,12.301 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,416,-0.52149999999999996,6.4128999999999996,0.18407000000000001,3.9470000000000001,4.5789999999999997,5.3789999999999996,6.4130000000000003,7.782,9.6509999999999998,12.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,417,-0.52210000000000001,6.4112,0.18407000000000001,3.9470000000000001,4.5780000000000003,5.3780000000000001,6.4109999999999996,7.78,9.6489999999999991,12.298 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,418,-0.52259999999999995,6.4093999999999998,0.18407999999999999,3.9460000000000002,4.577,5.3760000000000003,6.4089999999999998,7.7779999999999996,9.6470000000000002,12.297000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,419,-0.5232,6.4077000000000002,0.18409,3.9449999999999998,4.5759999999999996,5.375,6.4080000000000004,7.7759999999999998,9.6449999999999996,12.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,420,-0.52380000000000004,6.4058999999999999,0.18410000000000001,3.944,4.5750000000000002,5.3730000000000002,6.4059999999999997,7.774,9.6430000000000007,12.295 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,421,-0.52429999999999999,6.4042000000000003,0.18410000000000001,3.9430000000000001,4.5739999999999998,5.3719999999999999,6.4039999999999999,7.7720000000000002,9.641,12.292999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,422,-0.52490000000000003,6.4024999999999999,0.18411,3.9420000000000002,4.5720000000000001,5.3710000000000004,6.4020000000000001,7.77,9.6389999999999993,12.292 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,423,-0.52539999999999998,6.4008000000000003,0.18412000000000001,3.9409999999999998,4.5709999999999997,5.3689999999999998,6.4009999999999998,7.7679999999999998,9.6379999999999999,12.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,424,-0.52600000000000002,6.3990999999999998,0.18412999999999999,3.94,4.57,5.3680000000000003,6.399,7.7670000000000003,9.6359999999999992,12.29 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,425,-0.52649999999999997,6.3974000000000002,0.18414,3.9390000000000001,4.569,5.3659999999999997,6.3970000000000002,7.7649999999999997,9.6340000000000003,12.289 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,426,-0.52710000000000001,6.3956999999999997,0.18415000000000001,3.9380000000000002,4.5679999999999996,5.3650000000000002,6.3959999999999999,7.7629999999999999,9.6319999999999997,12.288 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,427,-0.52769999999999995,6.3940000000000001,0.18415000000000001,3.9380000000000002,4.5670000000000002,5.3639999999999999,6.3940000000000001,7.7610000000000001,9.6300000000000008,12.286 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,428,-0.5282,6.3922999999999996,0.18415999999999999,3.9369999999999998,4.5659999999999998,5.3620000000000001,6.3920000000000003,7.7590000000000003,9.6280000000000001,12.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,429,-0.52880000000000005,6.3906000000000001,0.18417,3.9359999999999999,4.5640000000000001,5.3609999999999998,6.391,7.7569999999999997,9.6259999999999994,12.284000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,430,-0.52929999999999999,6.3890000000000002,0.18418000000000001,3.9350000000000001,4.5629999999999997,5.359,6.3890000000000002,7.7549999999999999,9.625,12.282999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,431,-0.52990000000000004,6.3872999999999998,0.18418999999999999,3.9340000000000002,4.5620000000000003,5.3579999999999997,6.3869999999999996,7.7530000000000001,9.6229999999999993,12.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,432,-0.53039999999999998,6.3856999999999999,0.1842,3.9329999999999998,4.5609999999999999,5.3570000000000002,6.3860000000000001,7.7519999999999998,9.6210000000000004,12.281000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,433,-0.53100000000000003,6.3840000000000003,0.18421000000000001,3.9319999999999999,4.5599999999999996,5.3550000000000004,6.3840000000000003,7.75,9.6189999999999998,12.28 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,434,-0.53149999999999997,6.3823999999999996,0.18421999999999999,3.931,4.5590000000000002,5.3540000000000001,6.3819999999999997,7.7480000000000002,9.6180000000000003,12.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,435,-0.53200000000000003,6.3807999999999998,0.18423,3.931,4.5579999999999998,5.3520000000000003,6.3810000000000002,7.7460000000000004,9.6159999999999997,12.278 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,436,-0.53259999999999996,6.3792,0.18423999999999999,3.93,4.5570000000000004,5.351,6.3789999999999996,7.7439999999999998,9.6140000000000008,12.276999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,437,-0.53310000000000002,6.3775000000000004,0.18425,3.9289999999999998,4.556,5.35,6.3780000000000001,7.742,9.6120000000000001,12.276 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,438,-0.53369999999999995,6.3758999999999997,0.18426000000000001,3.9279999999999999,4.5540000000000003,5.3479999999999999,6.3760000000000003,7.7409999999999997,9.6110000000000007,12.275 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,439,-0.53420000000000001,6.3742999999999999,0.18426999999999999,3.927,4.5529999999999999,5.3470000000000004,6.3739999999999997,7.7389999999999999,9.609,12.273999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,440,-0.53469999999999995,6.3727,0.18428,3.9260000000000002,4.5519999999999996,5.3460000000000001,6.3730000000000002,7.7370000000000001,9.6069999999999993,12.273 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,441,-0.5353,6.3712,0.18429000000000001,3.9249999999999998,4.5510000000000002,5.3440000000000003,6.3710000000000004,7.7350000000000003,9.6059999999999999,12.272 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,442,-0.53580000000000005,6.3696000000000002,0.18429999999999999,3.9249999999999998,4.55,5.343,6.37,7.734,9.6039999999999992,12.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,443,-0.53639999999999999,6.3680000000000003,0.18431,3.9239999999999999,4.5490000000000004,5.3419999999999996,6.3680000000000003,7.7320000000000002,9.6020000000000003,12.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,444,-0.53690000000000004,6.3665000000000003,0.18432000000000001,3.923,4.548,5.34,6.3659999999999997,7.73,9.6010000000000009,12.269 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,445,-0.53739999999999999,6.3648999999999996,0.18432999999999999,3.9220000000000002,4.5469999999999997,5.3390000000000004,6.3650000000000002,7.7279999999999998,9.5990000000000002,12.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,446,-0.53800000000000003,6.3632999999999997,0.18434,3.9209999999999998,4.5460000000000003,5.3380000000000001,6.3630000000000004,7.7270000000000003,9.5969999999999995,12.266999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,447,-0.53849999999999998,6.3617999999999997,0.18435000000000001,3.92,4.5449999999999999,5.3360000000000003,6.3620000000000001,7.7249999999999996,9.5960000000000001,12.266999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,448,-0.53900000000000003,6.3602999999999996,0.18436,3.92,4.5439999999999996,5.335,6.36,7.7229999999999999,9.5939999999999994,12.266 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,449,-0.53959999999999997,6.3586999999999998,0.18437000000000001,3.919,4.5430000000000001,5.3339999999999996,6.359,7.7220000000000004,9.5920000000000005,12.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,450,-0.54010000000000002,6.3571999999999997,0.18437999999999999,3.9180000000000001,4.5419999999999998,5.3330000000000002,6.3570000000000002,7.72,9.5909999999999993,12.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,451,-0.54059999999999997,6.3556999999999997,0.18439,3.9169999999999998,4.5410000000000004,5.3310000000000004,6.3559999999999999,7.718,9.5890000000000004,12.263 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,452,-0.54110000000000003,6.3541999999999996,0.18440999999999999,3.9159999999999999,4.54,5.33,6.3540000000000001,7.7169999999999996,9.5879999999999992,12.263 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,453,-0.54169999999999996,6.3526999999999996,0.18442,3.9159999999999999,4.5389999999999997,5.3289999999999997,6.3529999999999998,7.7149999999999999,9.5860000000000003,12.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,454,-0.54220000000000002,6.3512000000000004,0.18443000000000001,3.915,4.5380000000000003,5.327,6.351,7.7130000000000001,9.5850000000000009,12.260999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,455,-0.54269999999999996,6.3497000000000003,0.18443999999999999,3.9140000000000001,4.5369999999999999,5.3259999999999996,6.35,7.7119999999999997,9.5830000000000002,12.260999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,456,-0.54320000000000002,6.3482000000000003,0.18445,3.9129999999999998,4.5350000000000001,5.3250000000000002,6.3479999999999999,7.71,9.5820000000000007,12.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,457,-0.54379999999999995,6.3468,0.18446000000000001,3.9119999999999999,4.5350000000000001,5.3239999999999998,6.3470000000000004,7.7089999999999996,9.58,12.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,458,-0.54430000000000001,6.3452999999999999,0.18448000000000001,3.9119999999999999,4.5330000000000004,5.3220000000000001,6.3449999999999998,7.7069999999999999,9.5790000000000006,12.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,459,-0.54479999999999995,6.3437999999999999,0.18448999999999999,3.911,4.532,5.3209999999999997,6.3440000000000003,7.7050000000000001,9.577,12.257999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,460,-0.54530000000000001,6.3423999999999996,0.1845,3.91,4.5309999999999997,5.32,6.3419999999999996,7.7039999999999997,9.5760000000000005,12.257 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,461,-0.54579999999999995,6.3409000000000004,0.18451000000000001,3.9089999999999998,4.53,5.319,6.3410000000000002,7.702,9.5739999999999998,12.257 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,462,-0.5464,6.3395000000000001,0.18451999999999999,3.9089999999999998,4.53,5.3170000000000002,6.34,7.7009999999999996,9.5730000000000004,12.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,463,-0.54690000000000005,6.3380000000000001,0.18454000000000001,3.9079999999999999,4.5279999999999996,5.3159999999999998,6.3380000000000001,7.6989999999999998,9.5719999999999992,12.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,464,-0.5474,6.3365999999999998,0.18454999999999999,3.907,4.5270000000000001,5.3150000000000004,6.3369999999999997,7.6970000000000001,9.57,12.255000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,465,-0.54790000000000005,6.3352000000000004,0.18456,3.9060000000000001,4.5270000000000001,5.3140000000000001,6.335,7.6959999999999997,9.5690000000000008,12.254 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,466,-0.5484,6.3338000000000001,0.18457999999999999,3.9049999999999998,4.5250000000000004,5.3129999999999997,6.3339999999999996,7.694,9.5679999999999996,12.254 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,467,-0.54890000000000005,6.3323999999999998,0.18459,3.9049999999999998,4.5250000000000004,5.3109999999999999,6.3319999999999999,7.6929999999999996,9.5660000000000007,12.254 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,468,-0.5494,6.3310000000000004,0.18459999999999999,3.9039999999999999,4.524,5.31,6.3310000000000004,7.6909999999999998,9.5649999999999995,12.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,469,-0.54990000000000006,6.3296000000000001,0.18461,3.903,4.5229999999999997,5.3090000000000002,6.33,7.69,9.5630000000000006,12.252000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,470,-0.55049999999999999,6.3281999999999998,0.18462999999999999,3.9020000000000001,4.5220000000000002,5.3079999999999998,6.3280000000000003,7.6879999999999997,9.5619999999999994,12.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,471,-0.55100000000000005,6.3268000000000004,0.18464,3.9020000000000001,4.5209999999999999,5.3070000000000004,6.327,7.6870000000000003,9.5609999999999999,12.252000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,472,-0.55149999999999999,6.3254000000000001,0.18465999999999999,3.9009999999999998,4.5199999999999996,5.3049999999999997,6.3250000000000002,7.6849999999999996,9.56,12.252000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,473,-0.55200000000000005,6.3239999999999998,0.18467,3.9,4.5190000000000001,5.3040000000000003,6.3239999999999998,7.6840000000000002,9.5579999999999998,12.250999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,474,-0.55249999999999999,6.3227000000000002,0.18468000000000001,3.899,4.5179999999999998,5.3029999999999999,6.3230000000000004,7.6820000000000004,9.5570000000000004,12.250999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,475,-0.55300000000000005,6.3212999999999999,0.1847,3.8980000000000001,4.5170000000000003,5.3019999999999996,6.3209999999999997,7.681,9.5559999999999992,12.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,476,-0.55349999999999999,6.32,0.18471000000000001,3.8980000000000001,4.516,5.3010000000000002,6.32,7.68,9.5540000000000003,12.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,477,-0.55400000000000005,6.3186,0.18472,3.8969999999999998,4.5149999999999997,5.3,6.319,7.6779999999999999,9.5530000000000008,12.249000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,478,-0.55449999999999999,6.3173000000000004,0.18473999999999999,3.8959999999999999,4.5140000000000002,5.298,6.3170000000000002,7.6769999999999996,9.5519999999999996,12.249000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,479,-0.55500000000000005,6.3159000000000001,0.18475,3.8959999999999999,4.5129999999999999,5.2969999999999997,6.3159999999999998,7.6749999999999998,9.5500000000000007,12.249000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,480,-0.55549999999999999,6.3146000000000004,0.18476999999999999,3.895,4.5119999999999996,5.2960000000000003,6.3150000000000004,7.6740000000000004,9.5489999999999995,12.249000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,481,-0.55600000000000005,6.3132999999999999,0.18478,3.8940000000000001,4.5110000000000001,5.2949999999999999,6.3129999999999997,7.6719999999999997,9.548,12.247999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,482,-0.55649999999999999,6.3120000000000003,0.18479999999999999,3.8929999999999998,4.51,5.2939999999999996,6.3120000000000003,7.6710000000000003,9.5470000000000006,12.247999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,483,-0.55700000000000005,6.3106,0.18481,3.8929999999999998,4.5090000000000003,5.2930000000000001,6.3109999999999999,7.67,9.5459999999999994,12.247999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,484,-0.5575,6.3093000000000004,0.18482999999999999,3.8919999999999999,4.508,5.2919999999999998,6.3090000000000002,7.6680000000000001,9.5449999999999999,12.247999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,485,-0.55800000000000005,6.3079999999999998,0.18484,3.891,4.5069999999999997,5.29,6.3079999999999998,7.6669999999999998,9.5429999999999993,12.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,486,-0.5585,6.3067000000000002,0.18486,3.89,4.5060000000000002,5.2889999999999997,6.3070000000000004,7.665,9.5419999999999998,12.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,487,-0.55900000000000005,6.3055000000000003,0.18487000000000001,3.89,4.5060000000000002,5.2880000000000003,6.306,7.6639999999999997,9.5410000000000004,12.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,488,-0.5595,6.3041999999999998,0.18489,3.8889999999999998,4.5049999999999999,5.2869999999999999,6.3040000000000003,7.6630000000000003,9.5399999999999991,12.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,489,-0.56000000000000005,6.3029000000000002,0.18490000000000001,3.8879999999999999,4.5039999999999996,5.2859999999999996,6.3029999999999999,7.6609999999999996,9.5389999999999997,12.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,490,-0.5605,6.3015999999999996,0.18492,3.887,4.5030000000000001,5.2850000000000001,6.3019999999999996,7.66,9.5380000000000003,12.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,491,-0.56089999999999995,6.3003999999999998,0.18493000000000001,3.887,4.5019999999999998,5.2839999999999998,6.3,7.6589999999999998,9.5370000000000008,12.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,492,-0.56140000000000001,6.2991000000000001,0.18495,3.8860000000000001,4.5010000000000003,5.2830000000000004,6.2990000000000004,7.657,9.5359999999999996,12.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,493,-0.56189999999999996,6.2977999999999996,0.18496000000000001,3.8849999999999998,4.5,5.282,6.298,7.6559999999999997,9.5340000000000007,12.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,494,-0.56240000000000001,6.2965999999999998,0.18498000000000001,3.8849999999999998,4.4989999999999997,5.2809999999999997,6.2969999999999997,7.6550000000000002,9.5329999999999995,12.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,495,-0.56289999999999996,6.2953999999999999,0.185,3.8839999999999999,4.4980000000000002,5.2789999999999999,6.2949999999999999,7.6539999999999999,9.532,12.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,496,-0.56340000000000001,6.2941000000000003,0.18501000000000001,3.883,4.4969999999999999,5.2779999999999996,6.2939999999999996,7.6520000000000001,9.5310000000000006,12.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,497,-0.56389999999999996,6.2929000000000004,0.18503,3.883,4.4969999999999999,5.2770000000000001,6.2930000000000001,7.6509999999999998,9.5299999999999994,12.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,498,-0.56440000000000001,6.2916999999999996,0.18504000000000001,3.8820000000000001,4.4960000000000004,5.2759999999999998,6.2919999999999998,7.65,9.5289999999999999,12.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,499,-0.56479999999999997,6.2904,0.18506,3.8809999999999998,4.4950000000000001,5.2750000000000004,6.29,7.6479999999999997,9.5280000000000005,12.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,500,-0.56530000000000002,6.2892000000000001,0.18507999999999999,3.88,4.4939999999999998,5.274,6.2889999999999997,7.6470000000000002,9.5269999999999992,12.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,501,-0.56579999999999997,6.2880000000000003,0.18509,3.88,4.4930000000000003,5.2729999999999997,6.2880000000000003,7.6459999999999999,9.5259999999999998,12.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,502,-0.56630000000000003,6.2868000000000004,0.18511,3.879,4.492,5.2720000000000002,6.2869999999999999,7.6449999999999996,9.5250000000000004,12.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,503,-0.56679999999999997,6.2855999999999996,0.18512999999999999,3.8780000000000001,4.4909999999999997,5.2709999999999999,6.2859999999999996,7.6429999999999998,9.5239999999999991,12.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,504,-0.56730000000000003,6.2843999999999998,0.18514,3.8780000000000001,4.4909999999999997,5.27,6.2839999999999998,7.6420000000000003,9.5229999999999997,12.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,505,-0.56769999999999998,6.2831999999999999,0.18515999999999999,3.8769999999999998,4.49,5.2690000000000001,6.2830000000000004,7.641,9.5220000000000002,12.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,506,-0.56820000000000004,6.2820999999999998,0.18518000000000001,3.8759999999999999,4.4889999999999999,5.2679999999999998,6.282,7.64,9.5210000000000008,12.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,507,-0.56869999999999998,6.2808999999999999,0.18518999999999999,3.8759999999999999,4.4880000000000004,5.2670000000000003,6.2809999999999997,7.6379999999999999,9.52,12.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,508,-0.56920000000000004,6.2797000000000001,0.18521000000000001,3.875,4.4870000000000001,5.266,6.28,7.6369999999999996,9.5190000000000001,12.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,509,-0.5696,6.2785000000000002,0.18523000000000001,3.8740000000000001,4.4859999999999998,5.2649999999999997,6.2779999999999996,7.6360000000000001,9.5180000000000007,12.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,510,-0.57010000000000005,6.2774000000000001,0.18525,3.8740000000000001,4.4850000000000003,5.2640000000000002,6.2770000000000001,7.6349999999999998,9.5180000000000007,12.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,511,-0.5706,6.2762000000000002,0.18526000000000001,3.8730000000000002,4.4850000000000003,5.2629999999999999,6.2759999999999998,7.6340000000000003,9.5169999999999995,12.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,512,-0.57110000000000005,6.2751000000000001,0.18528,3.8719999999999999,4.484,5.2619999999999996,6.2750000000000004,7.633,9.516,12.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,513,-0.57150000000000001,6.2739000000000003,0.18529999999999999,3.8719999999999999,4.4829999999999997,5.2610000000000001,6.274,7.6310000000000002,9.5150000000000006,12.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,514,-0.57199999999999995,6.2728000000000002,0.18532000000000001,3.871,4.4820000000000002,5.26,6.2729999999999997,7.63,9.5139999999999993,12.247999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,515,-0.57250000000000001,6.2717000000000001,0.18534,3.87,4.4809999999999999,5.2590000000000003,6.2720000000000002,7.6289999999999996,9.5129999999999999,12.247999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,516,-0.57299999999999995,6.2705000000000002,0.18534999999999999,3.87,4.4800000000000004,5.258,6.27,7.6280000000000001,9.5120000000000005,12.247999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,517,-0.57340000000000002,6.2694000000000001,0.18537000000000001,3.8690000000000002,4.4800000000000004,5.2569999999999997,6.2690000000000001,7.6269999999999998,9.5109999999999992,12.247999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,518,-0.57389999999999997,6.2683,0.18539,3.8679999999999999,4.4790000000000001,5.2560000000000002,6.2679999999999998,7.6260000000000003,9.5109999999999992,12.249000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,519,-0.57440000000000002,6.2671999999999999,0.18540999999999999,3.8679999999999999,4.4779999999999998,5.2549999999999999,6.2670000000000003,7.625,9.51,12.249000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,520,-0.57479999999999998,6.2660999999999998,0.18543000000000001,3.867,4.4770000000000003,5.2539999999999996,6.266,7.6230000000000002,9.5090000000000003,12.249000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,521,-0.57530000000000003,6.2649999999999997,0.18545,3.8660000000000001,4.476,5.2530000000000001,6.2649999999999997,7.6219999999999999,9.5079999999999991,12.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,522,-0.57579999999999998,6.2638999999999996,0.18546000000000001,3.8660000000000001,4.476,5.2519999999999998,6.2640000000000002,7.6210000000000004,9.5069999999999997,12.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,523,-0.57620000000000005,6.2628000000000004,0.18548000000000001,3.8650000000000002,4.4749999999999996,5.2510000000000003,6.2629999999999999,7.62,9.5069999999999997,12.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,524,-0.57669999999999999,6.2617000000000003,0.1855,3.8639999999999999,4.4740000000000002,5.25,6.2619999999999996,7.6189999999999998,9.5060000000000002,12.250999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,525,-0.57720000000000005,6.2606000000000002,0.18551999999999999,3.8639999999999999,4.4729999999999999,5.2489999999999997,6.2610000000000001,7.6180000000000003,9.5050000000000008,12.250999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,526,-0.5776,6.2595999999999998,0.18554000000000001,3.863,4.4720000000000004,5.2480000000000002,6.26,7.617,9.5039999999999996,12.250999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,527,-0.57809999999999995,6.2584999999999997,0.18556,3.8620000000000001,4.4710000000000001,5.2469999999999999,6.258,7.6159999999999997,9.5039999999999996,12.252000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,528,-0.57850000000000001,6.2573999999999996,0.18557999999999999,3.8620000000000001,4.4710000000000001,5.2460000000000004,6.2569999999999997,7.6150000000000002,9.5030000000000001,12.252000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,529,-0.57899999999999996,6.2564000000000002,0.18559999999999999,3.8610000000000002,4.47,5.2450000000000001,6.2560000000000002,7.6139999999999999,9.5020000000000007,12.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,530,-0.57950000000000002,6.2553000000000001,0.18562000000000001,3.8610000000000002,4.4690000000000003,5.2439999999999998,6.2549999999999999,7.6130000000000004,9.5009999999999994,12.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,531,-0.57989999999999997,6.2542999999999997,0.18564,3.86,4.468,5.2430000000000003,6.2539999999999996,7.6120000000000001,9.5009999999999994,12.254 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,532,-0.58040000000000003,6.2531999999999996,0.18565999999999999,3.859,4.468,5.242,6.2530000000000001,7.6109999999999998,9.5,12.254 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,533,-0.58079999999999998,6.2522000000000002,0.18568000000000001,3.859,4.4669999999999996,5.2409999999999997,6.2519999999999998,7.61,9.4990000000000006,12.255000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,534,-0.58130000000000004,6.2511000000000001,0.18568999999999999,3.8580000000000001,4.4660000000000002,5.2409999999999997,6.2510000000000003,7.6079999999999997,9.4979999999999993,12.255000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,535,-0.58179999999999998,6.2500999999999998,0.18570999999999999,3.8580000000000001,4.4649999999999999,5.24,6.25,7.6070000000000002,9.4979999999999993,12.255000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,536,-0.58220000000000005,6.2491000000000003,0.18573000000000001,3.8570000000000002,4.4640000000000004,5.2389999999999999,6.2489999999999997,7.6059999999999999,9.4969999999999999,12.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,537,-0.5827,6.2481,0.18575,3.8559999999999999,4.4640000000000004,5.2380000000000004,6.2480000000000002,7.6050000000000004,9.4969999999999999,12.257 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,538,-0.58309999999999995,6.2470999999999997,0.18576999999999999,3.8559999999999999,4.4630000000000001,5.2370000000000001,6.2469999999999999,7.6040000000000001,9.4960000000000004,12.257 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,539,-0.58360000000000001,6.2460000000000004,0.18579000000000001,3.855,4.4619999999999997,5.2359999999999998,6.2460000000000004,7.6029999999999998,9.4949999999999992,12.257 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,540,-0.58399999999999996,6.2450000000000001,0.18582000000000001,3.8540000000000001,4.4610000000000003,5.2350000000000003,6.2450000000000001,7.6029999999999998,9.4949999999999992,12.257999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,541,-0.58450000000000002,6.2439999999999998,0.18584000000000001,3.8540000000000001,4.4610000000000003,5.234,6.2439999999999998,7.6020000000000003,9.4939999999999998,12.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,542,-0.58489999999999998,6.2431000000000001,0.18586,3.8530000000000002,4.46,5.2329999999999997,6.2430000000000003,7.601,9.4939999999999998,12.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,543,-0.58540000000000003,6.2420999999999998,0.18587999999999999,3.8530000000000002,4.4589999999999996,5.2320000000000002,6.242,7.6,9.4930000000000003,12.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,544,-0.58579999999999999,6.2411000000000003,0.18590000000000001,3.8519999999999999,4.4580000000000002,5.2320000000000002,6.2409999999999997,7.5990000000000002,9.4920000000000009,12.260999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,545,-0.58630000000000004,6.2401,0.18592,3.851,4.4580000000000002,5.2309999999999999,6.24,7.5979999999999999,9.4920000000000009,12.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,546,-0.5867,6.2390999999999996,0.18593999999999999,3.851,4.4569999999999999,5.23,6.2389999999999999,7.5970000000000004,9.4909999999999997,12.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,547,-0.58720000000000006,6.2381000000000002,0.18595999999999999,3.85,4.4560000000000004,5.2290000000000001,6.2380000000000004,7.5960000000000001,9.4909999999999997,12.263 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,548,-0.58760000000000001,6.2371999999999996,0.18598000000000001,3.85,4.4550000000000001,5.2279999999999998,6.2370000000000001,7.5949999999999998,9.49,12.263 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,549,-0.58809999999999996,6.2362000000000002,0.186,3.8490000000000002,4.4550000000000001,5.2270000000000003,6.2359999999999998,7.5940000000000003,9.4890000000000008,12.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,550,-0.58850000000000002,6.2352999999999996,0.18601999999999999,3.8479999999999999,4.4539999999999997,5.226,6.2350000000000003,7.593,9.4890000000000008,12.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,551,-0.58899999999999997,6.2343000000000002,0.18604000000000001,3.8479999999999999,4.4530000000000003,5.2249999999999996,6.234,7.5919999999999996,9.4879999999999995,12.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,552,-0.58940000000000003,6.2333999999999996,0.18607000000000001,3.847,4.452,5.2249999999999996,6.2329999999999997,7.5910000000000002,9.4879999999999995,12.266999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,553,-0.58979999999999999,6.2324000000000002,0.18609000000000001,3.847,4.452,5.2240000000000002,6.2320000000000002,7.59,9.4870000000000001,12.266999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,554,-0.59030000000000005,6.2314999999999996,0.18611,3.8460000000000001,4.4509999999999996,5.2229999999999999,6.2320000000000002,7.59,9.4870000000000001,12.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,555,-0.5907,6.2305999999999999,0.18612999999999999,3.8450000000000002,4.45,5.2220000000000004,6.2309999999999999,7.5890000000000004,9.4860000000000007,12.269 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,556,-0.59119999999999995,6.2295999999999996,0.18615000000000001,3.8450000000000002,4.45,5.2210000000000001,6.23,7.5880000000000001,9.4860000000000007,12.269 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,557,-0.59160000000000001,6.2286999999999999,0.18617,3.8439999999999999,4.4489999999999998,5.22,6.2290000000000001,7.5869999999999997,9.4849999999999994,12.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,558,-0.59209999999999996,6.2278000000000002,0.1862,3.8439999999999999,4.4480000000000004,5.2190000000000003,6.2279999999999998,7.5860000000000003,9.4849999999999994,12.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,559,-0.59250000000000003,6.2268999999999997,0.18622,3.843,4.4470000000000001,5.2190000000000003,6.2270000000000003,7.585,9.4849999999999994,12.272 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,560,-0.59289999999999998,6.226,0.18623999999999999,3.843,4.4470000000000001,5.218,6.226,7.5839999999999996,9.484,12.273 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,561,-0.59340000000000004,6.2251000000000003,0.18626000000000001,3.8420000000000001,4.4459999999999997,5.2169999999999996,6.2249999999999996,7.5830000000000002,9.484,12.273999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,562,-0.59379999999999999,6.2241999999999997,0.18628,3.8410000000000002,4.4450000000000003,5.2160000000000002,6.2240000000000002,7.5830000000000002,9.4830000000000005,12.273999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,563,-0.59419999999999995,6.2233000000000001,0.18631,3.8410000000000002,4.4450000000000003,5.2149999999999999,6.2229999999999999,7.5819999999999999,9.4830000000000005,12.275 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,564,-0.59470000000000001,6.2224000000000004,0.18633,3.84,4.444,5.2149999999999999,6.2220000000000004,7.5810000000000004,9.4819999999999993,12.276 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,565,-0.59509999999999996,6.2214999999999998,0.18634999999999999,3.84,4.4429999999999996,5.2140000000000004,6.2220000000000004,7.58,9.4819999999999993,12.276999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,566,-0.59560000000000002,6.2206000000000001,0.18637000000000001,3.839,4.4429999999999996,5.2130000000000001,6.2210000000000001,7.5789999999999997,9.4819999999999993,12.278 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,567,-0.59599999999999997,6.2196999999999996,0.18640000000000001,3.839,4.4420000000000002,5.2119999999999997,6.22,7.5780000000000003,9.4809999999999999,12.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,568,-0.59640000000000004,6.2187999999999999,0.18642,3.8380000000000001,4.4409999999999998,5.2110000000000003,6.2190000000000003,7.5780000000000003,9.4809999999999999,12.28 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,569,-0.59689999999999999,6.218,0.18643999999999999,3.8380000000000001,4.4409999999999998,5.21,6.218,7.577,9.48,12.281000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,570,-0.59730000000000005,6.2171000000000003,0.18645999999999999,3.8370000000000002,4.4400000000000004,5.21,6.2169999999999996,7.5759999999999996,9.48,12.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,571,-0.59770000000000001,6.2161999999999997,0.18648999999999999,3.8359999999999999,4.4390000000000001,5.2089999999999996,6.2160000000000002,7.5750000000000002,9.48,12.282999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,572,-0.59809999999999997,6.2153999999999998,0.18651000000000001,3.8359999999999999,4.4379999999999997,5.2080000000000002,6.2149999999999999,7.5750000000000002,9.4789999999999992,12.284000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,573,-0.59860000000000002,6.2145000000000001,0.18653,3.835,4.4379999999999997,5.2069999999999999,6.2140000000000004,7.5739999999999998,9.4789999999999992,12.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,574,-0.59899999999999998,6.2137000000000002,0.18656,3.835,4.4370000000000003,5.2060000000000004,6.2140000000000004,7.5730000000000004,9.4789999999999992,12.286 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,575,-0.59940000000000004,6.2127999999999997,0.18658,3.8340000000000001,4.4359999999999999,5.2060000000000004,6.2130000000000001,7.5720000000000001,9.4779999999999998,12.287000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,576,-0.59989999999999999,6.2119999999999997,0.18659999999999999,3.8340000000000001,4.4359999999999999,5.2050000000000001,6.2119999999999997,7.5709999999999997,9.4779999999999998,12.288 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,577,-0.60029999999999994,6.2111999999999998,0.18662999999999999,3.8330000000000002,4.4349999999999996,5.2039999999999997,6.2110000000000003,7.5709999999999997,9.4779999999999998,12.289 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,578,-0.60070000000000001,6.2103000000000002,0.18665000000000001,3.8330000000000002,4.4340000000000002,5.2030000000000003,6.21,7.57,9.4770000000000003,12.29 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,579,-0.60109999999999997,6.2095000000000002,0.18667,3.8319999999999999,4.4340000000000002,5.2030000000000003,6.21,7.569,9.4770000000000003,12.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,580,-0.60160000000000002,6.2087000000000003,0.1867,3.831,4.4329999999999998,5.202,6.2089999999999996,7.5679999999999996,9.4770000000000003,12.292 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,581,-0.60199999999999998,6.2079000000000004,0.18672,3.831,4.4329999999999998,5.2009999999999996,6.2080000000000002,7.5679999999999996,9.4770000000000003,12.292999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,582,-0.60240000000000005,6.2070999999999996,0.18675,3.83,4.4320000000000004,5.2,6.2069999999999999,7.5670000000000002,9.4760000000000009,12.295 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,583,-0.6028,6.2061999999999999,0.18676999999999999,3.83,4.431,5.2,6.2060000000000004,7.5659999999999998,9.4760000000000009,12.295 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,584,-0.60329999999999995,6.2054,0.18679000000000001,3.8290000000000002,4.431,5.1989999999999998,6.2050000000000001,7.5659999999999998,9.4760000000000009,12.297000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,585,-0.60370000000000001,6.2046000000000001,0.18682000000000001,3.8290000000000002,4.43,5.1980000000000004,6.2050000000000001,7.5650000000000004,9.4760000000000009,12.298 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,586,-0.60409999999999997,6.2038000000000002,0.18684000000000001,3.8279999999999998,4.4290000000000003,5.1970000000000001,6.2039999999999997,7.5640000000000001,9.4749999999999996,12.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,587,-0.60450000000000004,6.2031000000000001,0.18687000000000001,3.8279999999999998,4.4290000000000003,5.1970000000000001,6.2030000000000003,7.5640000000000001,9.4749999999999996,12.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,588,-0.60499999999999998,6.2023000000000001,0.18689,3.827,4.4279999999999999,5.1959999999999997,6.202,7.5629999999999997,9.4749999999999996,12.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,589,-0.60540000000000005,6.2015000000000002,0.18690999999999999,3.827,4.4269999999999996,5.1950000000000003,6.202,7.5620000000000003,9.4749999999999996,12.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,590,-0.60580000000000001,6.2007000000000003,0.18694,3.8260000000000001,4.4269999999999996,5.194,6.2009999999999996,7.5609999999999999,9.4749999999999996,12.304 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,591,-0.60619999999999996,6.1999000000000004,0.18695999999999999,3.8260000000000001,4.4260000000000002,5.194,6.2,7.5609999999999999,9.4740000000000002,12.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,592,-0.60660000000000003,6.1990999999999996,0.18698999999999999,3.8250000000000002,4.4249999999999998,5.1929999999999996,6.1989999999999998,7.56,9.4740000000000002,12.305999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,593,-0.60709999999999997,6.1984000000000004,0.18701000000000001,3.8250000000000002,4.4249999999999998,5.1920000000000002,6.1980000000000004,7.5590000000000002,9.4740000000000002,12.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,594,-0.60750000000000004,6.1976000000000004,0.18704000000000001,3.8239999999999998,4.4240000000000004,5.1909999999999998,6.1980000000000004,7.5590000000000002,9.4740000000000002,12.308999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,595,-0.6079,6.1967999999999996,0.18706,3.8239999999999998,4.4240000000000004,5.1909999999999998,6.1970000000000001,7.5579999999999998,9.4730000000000008,12.31 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,596,-0.60829999999999995,6.1961000000000004,0.18709000000000001,3.823,4.423,5.19,6.1959999999999997,7.5570000000000004,9.4730000000000008,12.311999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,597,-0.60870000000000002,6.1952999999999996,0.18711,3.823,4.4219999999999997,5.1890000000000001,6.1950000000000003,7.5570000000000004,9.4730000000000008,12.311999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,598,-0.60909999999999997,6.1946000000000003,0.18714,3.8220000000000001,4.4219999999999997,5.1890000000000001,6.1950000000000003,7.556,9.4730000000000008,12.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,599,-0.60960000000000003,6.1938000000000004,0.18715999999999999,3.8220000000000001,4.4210000000000003,5.1879999999999997,6.194,7.5549999999999997,9.4730000000000008,12.315 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,600,-0.61,6.1931000000000003,0.18719,3.8210000000000002,4.42,5.1870000000000003,6.1929999999999996,7.5549999999999997,9.4730000000000008,12.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,601,-0.61040000000000005,6.1924000000000001,0.18720999999999999,3.8210000000000002,4.42,5.1859999999999999,6.1920000000000002,7.5540000000000003,9.4730000000000008,12.318 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,602,-0.61080000000000001,6.1916000000000002,0.18723999999999999,3.82,4.4189999999999996,5.1859999999999999,6.1920000000000002,7.5540000000000003,9.4730000000000008,12.319000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,603,-0.61119999999999997,6.1909000000000001,0.18726000000000001,3.82,4.4189999999999996,5.1849999999999996,6.1909999999999998,7.5529999999999999,9.4719999999999995,12.321 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,604,-0.61160000000000003,6.1901999999999999,0.18729000000000001,3.819,4.4180000000000001,5.1840000000000002,6.19,7.5529999999999999,9.4719999999999995,12.321999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,605,-0.61199999999999999,6.1894,0.18731,3.819,4.4169999999999998,5.1840000000000002,6.1890000000000001,7.5519999999999996,9.4719999999999995,12.323 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,606,-0.61240000000000006,6.1886999999999999,0.18734000000000001,3.8180000000000001,4.4169999999999998,5.1829999999999998,6.1890000000000001,7.5510000000000002,9.4719999999999995,12.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,607,-0.61280000000000001,6.1879999999999997,0.18737000000000001,3.8170000000000002,4.4160000000000004,5.1820000000000004,6.1879999999999997,7.5510000000000002,9.4719999999999995,12.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,608,-0.61329999999999996,6.1872999999999996,0.18739,3.8170000000000002,4.4160000000000004,5.1820000000000004,6.1870000000000003,7.55,9.4719999999999995,12.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,609,-0.61370000000000002,6.1866000000000003,0.18742,3.8170000000000002,4.415,5.181,6.1870000000000003,7.55,9.4719999999999995,12.329000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,610,-0.61409999999999998,6.1859000000000002,0.18744,3.8159999999999998,4.4139999999999997,5.18,6.1859999999999999,7.5490000000000004,9.4719999999999995,12.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,611,-0.61450000000000005,6.1852,0.18747,3.8159999999999998,4.4139999999999997,5.18,6.1849999999999996,7.548,9.4719999999999995,12.332000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,612,-0.6149,6.1844999999999999,0.1875,3.8149999999999999,4.4130000000000003,5.1790000000000003,6.1840000000000002,7.548,9.4719999999999995,12.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,613,-0.61529999999999996,6.1837999999999997,0.18751999999999999,3.8149999999999999,4.4130000000000003,5.1779999999999999,6.1840000000000002,7.5469999999999997,9.4719999999999995,12.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,614,-0.61570000000000003,6.1830999999999996,0.18754999999999999,3.8140000000000001,4.4119999999999999,5.1779999999999999,6.1829999999999998,7.5469999999999997,9.4719999999999995,12.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,615,-0.61609999999999998,6.1824000000000003,0.18756999999999999,3.8140000000000001,4.4119999999999999,5.1769999999999996,6.1820000000000004,7.5460000000000003,9.4719999999999995,12.337999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,616,-0.61650000000000005,6.1817000000000002,0.18759999999999999,3.8130000000000002,4.4109999999999996,5.1760000000000002,6.1820000000000004,7.5460000000000003,9.4719999999999995,12.339 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,617,-0.6169,6.1810999999999998,0.18762999999999999,3.8130000000000002,4.41,5.1760000000000002,6.181,7.5449999999999999,9.4719999999999995,12.340999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,618,-0.61729999999999996,6.1803999999999997,0.18765000000000001,3.8119999999999998,4.41,5.1749999999999998,6.18,7.5449999999999999,9.4719999999999995,12.342000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,619,-0.61770000000000003,6.1797000000000004,0.18768000000000001,3.8119999999999998,4.4089999999999998,5.1740000000000004,6.18,7.5439999999999996,9.4719999999999995,12.343999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,620,-0.61809999999999998,6.1790000000000003,0.18770999999999999,3.8109999999999999,4.4089999999999998,5.1740000000000004,6.1790000000000003,7.5430000000000001,9.4719999999999995,12.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,621,-0.61850000000000005,6.1783999999999999,0.18773000000000001,3.8109999999999999,4.4080000000000004,5.173,6.1779999999999999,7.5430000000000001,9.4719999999999995,12.347 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,622,-0.61890000000000001,6.1776999999999997,0.18776000000000001,3.81,4.407,5.1719999999999997,6.1779999999999999,7.5419999999999998,9.4719999999999995,12.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,623,-0.61929999999999996,6.1771000000000003,0.18779000000000001,3.81,4.407,5.1719999999999997,6.1769999999999996,7.5419999999999998,9.4719999999999995,12.351000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,624,-0.61970000000000003,6.1764000000000001,0.18781,3.8090000000000002,4.4059999999999997,5.1710000000000003,6.1760000000000002,7.5410000000000004,9.4719999999999995,12.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,625,-0.62009999999999998,6.1757999999999997,0.18784000000000001,3.8090000000000002,4.4059999999999997,5.17,6.1760000000000002,7.5410000000000004,9.4719999999999995,12.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,626,-0.62050000000000005,6.1750999999999996,0.18787000000000001,3.8079999999999998,4.4050000000000002,5.17,6.1749999999999998,7.54,9.4719999999999995,12.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,627,-0.62090000000000001,6.1745000000000001,0.18790000000000001,3.8079999999999998,4.4050000000000002,5.1689999999999996,6.1740000000000004,7.54,9.4719999999999995,12.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,628,-0.62129999999999996,6.1738,0.18792,3.8079999999999998,4.4039999999999999,5.1680000000000001,6.1740000000000004,7.5389999999999997,9.4719999999999995,12.358000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,629,-0.62170000000000003,6.1731999999999996,0.18795000000000001,3.8069999999999999,4.4039999999999999,5.1680000000000001,6.173,7.5389999999999997,9.4719999999999995,12.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,630,-0.62209999999999999,6.1726000000000001,0.18798000000000001,3.8069999999999999,4.4029999999999996,5.1669999999999998,6.173,7.5389999999999997,9.4719999999999995,12.362 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,631,-0.62250000000000005,6.1718999999999999,0.188,3.806,4.4020000000000001,5.1669999999999998,6.1719999999999997,7.5380000000000003,9.4719999999999995,12.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,632,-0.62290000000000001,6.1712999999999996,0.18803,3.806,4.4020000000000001,5.1660000000000004,6.1710000000000003,7.5380000000000003,9.4719999999999995,12.365 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,633,-0.62329999999999997,6.1707000000000001,0.18806,3.8050000000000002,4.4009999999999998,5.165,6.1710000000000003,7.5369999999999999,9.4730000000000008,12.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,634,-0.62370000000000003,6.1700999999999997,0.18809000000000001,3.8050000000000002,4.4009999999999998,5.165,6.17,7.5369999999999999,9.4730000000000008,12.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,635,-0.62409999999999999,6.1694000000000004,0.18812000000000001,3.8039999999999998,4.4000000000000004,5.1639999999999997,6.1689999999999996,7.5359999999999996,9.4730000000000008,12.371 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,636,-0.62450000000000006,6.1688000000000001,0.18814,3.8039999999999998,4.4000000000000004,5.1639999999999997,6.1689999999999996,7.5359999999999996,9.4730000000000008,12.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,637,-0.62490000000000001,6.1681999999999997,0.18817,3.8029999999999999,4.399,5.1630000000000003,6.1680000000000001,7.5350000000000001,9.4730000000000008,12.374000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,638,-0.62529999999999997,6.1676000000000002,0.18820000000000001,3.8029999999999999,4.399,5.1619999999999999,6.1680000000000001,7.5350000000000001,9.4730000000000008,12.375999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,639,-0.62570000000000003,6.1669999999999998,0.18823000000000001,3.802,4.3979999999999997,5.1619999999999999,6.1669999999999998,7.5339999999999998,9.4730000000000008,12.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,640,-0.62609999999999999,6.1664000000000003,0.18825,3.802,4.3979999999999997,5.1609999999999996,6.1660000000000004,7.5339999999999998,9.4730000000000008,12.379 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,641,-0.62649999999999995,6.1657999999999999,0.18828,3.802,4.3970000000000002,5.1609999999999996,6.1660000000000004,7.5339999999999998,9.4740000000000002,12.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,642,-0.62680000000000002,6.1651999999999996,0.18831000000000001,3.8010000000000002,4.3959999999999999,5.16,6.165,7.5330000000000004,9.4740000000000002,12.382999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,643,-0.62719999999999998,6.1646000000000001,0.18834000000000001,3.8010000000000002,4.3959999999999999,5.1589999999999998,6.165,7.5330000000000004,9.4740000000000002,12.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,644,-0.62760000000000005,6.1639999999999997,0.18837000000000001,3.8,4.3949999999999996,5.1589999999999998,6.1639999999999997,7.532,9.4740000000000002,12.385999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,645,-0.628,6.1634000000000002,0.18840000000000001,3.8,4.3949999999999996,5.1580000000000004,6.1630000000000003,7.532,9.4740000000000002,12.388 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,646,-0.62839999999999996,6.1628999999999996,0.18842,3.7989999999999999,4.3940000000000001,5.1580000000000004,6.1630000000000003,7.5309999999999997,9.4740000000000002,12.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,647,-0.62880000000000003,6.1623000000000001,0.18845000000000001,3.7989999999999999,4.3940000000000001,5.157,6.1619999999999999,7.5309999999999997,9.4749999999999996,12.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,648,-0.62919999999999998,6.1616999999999997,0.18848000000000001,3.7989999999999999,4.3929999999999998,5.1559999999999997,6.1619999999999999,7.5309999999999997,9.4749999999999996,12.394 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,649,-0.62960000000000005,6.1611000000000002,0.18851000000000001,3.798,4.3929999999999998,5.1559999999999997,6.1609999999999996,7.53,9.4749999999999996,12.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,650,-0.62990000000000002,6.1605999999999996,0.18854000000000001,3.798,4.3920000000000003,5.1550000000000002,6.1609999999999996,7.53,9.4749999999999996,12.397 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,651,-0.63029999999999997,6.16,0.18856999999999999,3.7970000000000002,4.3920000000000003,5.1550000000000002,6.16,7.5289999999999999,9.4760000000000009,12.398999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,652,-0.63070000000000004,6.1593999999999998,0.18859999999999999,3.7970000000000002,4.391,5.1539999999999999,6.1589999999999998,7.5289999999999999,9.4760000000000009,12.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,653,-0.63109999999999999,6.1589,0.18862999999999999,3.7959999999999998,4.391,5.1539999999999999,6.1589999999999998,7.5289999999999999,9.4760000000000009,12.403 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,654,-0.63149999999999995,6.1582999999999997,0.18865000000000001,3.7959999999999998,4.3899999999999997,5.1529999999999996,6.1580000000000004,7.5279999999999996,9.4760000000000009,12.404999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,655,-0.63190000000000002,6.1577999999999999,0.18867999999999999,3.7959999999999998,4.3899999999999997,5.1520000000000001,6.1580000000000004,7.5279999999999996,9.4760000000000009,12.407 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,656,-0.63229999999999997,6.1571999999999996,0.18870999999999999,3.7949999999999999,4.3890000000000002,5.1520000000000001,6.157,7.5279999999999996,9.4770000000000003,12.409000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,657,-0.63260000000000005,6.1566999999999998,0.18873999999999999,3.7949999999999999,4.3890000000000002,5.1509999999999998,6.157,7.5270000000000001,9.4770000000000003,12.411 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,658,-0.63300000000000001,6.1561000000000003,0.18876999999999999,3.794,4.3879999999999999,5.1509999999999998,6.1559999999999997,7.5270000000000001,9.4770000000000003,12.413 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,659,-0.63339999999999996,6.1555999999999997,0.1888,3.794,4.3879999999999999,5.15,6.1559999999999997,7.5270000000000001,9.4770000000000003,12.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,660,-0.63380000000000003,6.1550000000000002,0.18883,3.7930000000000001,4.3869999999999996,5.15,6.1550000000000002,7.5259999999999998,9.4779999999999998,12.417 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,661,-0.63419999999999999,6.1544999999999996,0.18886,3.7930000000000001,4.3869999999999996,5.149,6.1539999999999999,7.5259999999999998,9.4779999999999998,12.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,662,-0.63460000000000005,6.1539999999999999,0.18889,3.7919999999999998,4.3860000000000001,5.1479999999999997,6.1539999999999999,7.5259999999999998,9.4779999999999998,12.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,663,-0.63490000000000002,6.1534000000000004,0.18892,3.7919999999999998,4.3860000000000001,5.1479999999999997,6.1529999999999996,7.5250000000000004,9.4789999999999992,12.423 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,664,-0.63529999999999998,6.1528999999999998,0.18895000000000001,3.7919999999999998,4.3849999999999998,5.1470000000000002,6.1529999999999996,7.5250000000000004,9.4789999999999992,12.425000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,665,-0.63570000000000004,6.1524000000000001,0.18898000000000001,3.7909999999999999,4.3849999999999998,5.1470000000000002,6.1520000000000001,7.5250000000000004,9.4789999999999992,12.427 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,666,-0.6361,6.1517999999999997,0.18901000000000001,3.7909999999999999,4.3840000000000003,5.1459999999999999,6.1520000000000001,7.524,9.4789999999999992,12.429 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,667,-0.63639999999999997,6.1513,0.18904000000000001,3.79,4.3840000000000003,5.1459999999999999,6.1509999999999998,7.524,9.48,12.430999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,668,-0.63680000000000003,6.1508000000000003,0.18906999999999999,3.79,4.383,5.1449999999999996,6.1509999999999998,7.524,9.48,12.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,669,-0.63719999999999999,6.1502999999999997,0.18909999999999999,3.7890000000000001,4.383,5.1449999999999996,6.15,7.5229999999999997,9.48,12.435 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,670,-0.63759999999999994,6.1497999999999999,0.18912999999999999,3.7890000000000001,4.3819999999999997,5.1440000000000001,6.15,7.5229999999999997,9.4809999999999999,12.436999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,671,-0.63800000000000001,6.1493000000000002,0.18915999999999999,3.7890000000000001,4.3819999999999997,5.1440000000000001,6.149,7.5229999999999997,9.4809999999999999,12.44 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,672,-0.63829999999999998,6.1487999999999996,0.18919,3.7879999999999998,4.3810000000000002,5.1429999999999998,6.149,7.5220000000000002,9.4819999999999993,12.441000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,673,-0.63870000000000005,6.1482000000000001,0.18922,3.7879999999999998,4.3810000000000002,5.1420000000000003,6.1479999999999997,7.5220000000000002,9.4819999999999993,12.443 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,674,-0.6391,6.1477000000000004,0.18925,3.7869999999999999,4.38,5.1420000000000003,6.1479999999999997,7.5220000000000002,9.4819999999999993,12.446 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,675,-0.63949999999999996,6.1471999999999998,0.18928,3.7869999999999999,4.38,5.141,6.1470000000000002,7.5209999999999999,9.4819999999999993,12.448 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,676,-0.63980000000000004,6.1467000000000001,0.18931000000000001,3.7869999999999999,4.3789999999999996,5.141,6.1470000000000002,7.5209999999999999,9.4830000000000005,12.45 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,677,-0.64019999999999999,6.1462000000000003,0.18934000000000001,3.786,4.3789999999999996,5.14,6.1459999999999999,7.5209999999999999,9.4830000000000005,12.452 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,678,-0.64059999999999995,6.1458000000000004,0.18937000000000001,3.786,4.3780000000000001,5.14,6.1459999999999999,7.5209999999999999,9.484,12.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,679,-0.64090000000000003,6.1452999999999998,0.18940000000000001,3.7850000000000001,4.3780000000000001,5.1390000000000002,6.1449999999999996,7.52,9.484,12.456 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,680,-0.64129999999999998,6.1448,0.18942999999999999,3.7850000000000001,4.3769999999999998,5.1390000000000002,6.1449999999999996,7.52,9.484,12.458 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,681,-0.64170000000000005,6.1443000000000003,0.18945999999999999,3.7850000000000001,4.3769999999999998,5.1379999999999999,6.1440000000000001,7.52,9.4849999999999994,12.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,682,-0.6421,6.1437999999999997,0.18948999999999999,3.7839999999999998,4.3760000000000003,5.1379999999999999,6.1440000000000001,7.5190000000000001,9.4849999999999994,12.462999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,683,-0.64239999999999997,6.1433,0.18951999999999999,3.7839999999999998,4.3760000000000003,5.1369999999999996,6.1429999999999998,7.5190000000000001,9.4849999999999994,12.465 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,684,-0.64280000000000004,6.1429,0.18955,3.7829999999999999,4.3760000000000003,5.1369999999999996,6.1429999999999998,7.5190000000000001,9.4860000000000007,12.467000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,685,-0.64319999999999999,6.1424000000000003,0.18958,3.7829999999999999,4.375,5.1360000000000001,6.1420000000000003,7.5190000000000001,9.4860000000000007,12.468999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,686,-0.64349999999999996,6.1418999999999997,0.18961,3.7829999999999999,4.375,5.1360000000000001,6.1420000000000003,7.5179999999999998,9.4860000000000007,12.471 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,687,-0.64390000000000003,6.1414,0.18964,3.782,4.3739999999999997,5.1349999999999998,6.141,7.5179999999999998,9.4870000000000001,12.473000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,688,-0.64429999999999998,6.141,0.18967000000000001,3.782,4.3739999999999997,5.1349999999999998,6.141,7.5179999999999998,9.4870000000000001,12.476000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,689,-0.64459999999999995,6.1405000000000003,0.18970999999999999,3.7810000000000001,4.3730000000000002,5.1340000000000003,6.14,7.5179999999999998,9.4879999999999995,12.478 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,690,-0.64500000000000002,6.14,0.18973999999999999,3.7810000000000001,4.3730000000000002,5.1340000000000003,6.14,7.5170000000000003,9.4879999999999995,12.48 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,691,-0.64539999999999997,6.1395999999999997,0.18976999999999999,3.7810000000000001,4.3719999999999999,5.133,6.14,7.5170000000000003,9.4890000000000008,12.483000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,692,-0.64570000000000005,6.1391,0.1898,3.78,4.3719999999999999,5.133,6.1390000000000002,7.5170000000000003,9.4890000000000008,12.484999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,693,-0.64610000000000001,6.1387,0.18983,3.78,4.3710000000000004,5.1319999999999997,6.1390000000000002,7.5170000000000003,9.49,12.487 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,694,-0.64649999999999996,6.1382000000000003,0.18986,3.7789999999999999,4.3710000000000004,5.1319999999999997,6.1379999999999999,7.516,9.49,12.489000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,695,-0.64680000000000004,6.1378000000000004,0.18989,3.7789999999999999,4.37,5.1310000000000002,6.1379999999999999,7.516,9.49,12.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,696,-0.6472,6.1372999999999998,0.18992000000000001,3.7789999999999999,4.37,5.1310000000000002,6.1369999999999996,7.516,9.4909999999999997,12.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,697,-0.64759999999999995,6.1368999999999998,0.18995999999999999,3.778,4.37,5.13,6.1369999999999996,7.516,9.4920000000000009,12.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,698,-0.64790000000000003,6.1364000000000001,0.18998999999999999,3.778,4.3689999999999998,5.13,6.1360000000000001,7.516,9.4920000000000009,12.499000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,699,-0.64829999999999999,6.1360000000000001,0.19001999999999999,3.778,4.3689999999999998,5.1289999999999996,6.1360000000000001,7.5149999999999997,9.4920000000000009,12.500999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,700,-0.64870000000000005,6.1355000000000004,0.19005,3.7770000000000001,4.3680000000000003,5.1289999999999996,6.1360000000000001,7.5149999999999997,9.4930000000000003,12.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,701,-0.64900000000000002,6.1351000000000004,0.19008,3.7770000000000001,4.3680000000000003,5.1280000000000001,6.1349999999999998,7.5149999999999997,9.4930000000000003,12.505000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,702,-0.64939999999999998,6.1346999999999996,0.19011,3.7759999999999998,4.367,5.1280000000000001,6.1349999999999998,7.5149999999999997,9.4939999999999998,12.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,703,-0.64980000000000004,6.1341999999999999,0.19015000000000001,3.7759999999999998,4.367,5.1269999999999998,6.1340000000000003,7.5149999999999997,9.4939999999999998,12.510999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,704,-0.65010000000000001,6.1337999999999999,0.19017999999999999,3.7759999999999998,4.3659999999999997,5.1269999999999998,6.1340000000000003,7.5140000000000002,9.4949999999999992,12.513 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,705,-0.65049999999999997,6.1334,0.19020999999999999,3.7749999999999999,4.3659999999999997,5.1260000000000003,6.133,7.5140000000000002,9.4949999999999992,12.515000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,706,-0.65080000000000005,6.133,0.19023999999999999,3.7749999999999999,4.3659999999999997,5.1260000000000003,6.133,7.5140000000000002,9.4960000000000004,12.516999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,707,-0.6512,6.1325000000000003,0.19026999999999999,3.774,4.3650000000000002,5.1260000000000003,6.1319999999999997,7.5140000000000002,9.4960000000000004,12.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,708,-0.65159999999999996,6.1321000000000003,0.19031000000000001,3.774,4.3650000000000002,5.125,6.1319999999999997,7.5140000000000002,9.4969999999999999,12.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,709,-0.65190000000000003,6.1317000000000004,0.19034000000000001,3.774,4.3639999999999999,5.125,6.1319999999999997,7.5129999999999999,9.4969999999999999,12.525 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,710,-0.65229999999999999,6.1313000000000004,0.19037000000000001,3.7730000000000001,4.3639999999999999,5.1239999999999997,6.1310000000000002,7.5129999999999999,9.4979999999999993,12.526999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,711,-0.65259999999999996,6.1308999999999996,0.19040000000000001,3.7730000000000001,4.3630000000000004,5.1239999999999997,6.1310000000000002,7.5129999999999999,9.4979999999999993,12.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,712,-0.65300000000000002,6.1304999999999996,0.19042999999999999,3.7730000000000001,4.3630000000000004,5.1230000000000002,6.13,7.5129999999999999,9.4990000000000006,12.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,713,-0.65329999999999999,6.13,0.19047,3.7719999999999998,4.3620000000000001,5.1230000000000002,6.13,7.5129999999999999,9.4990000000000006,12.534000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,714,-0.65369999999999995,6.1295999999999999,0.1905,3.7719999999999998,4.3620000000000001,5.1219999999999999,6.13,7.5129999999999999,9.5,12.537000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,715,-0.65410000000000001,6.1292,0.19053,3.7709999999999999,4.3620000000000001,5.1219999999999999,6.1289999999999996,7.5119999999999996,9.5009999999999994,12.539 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,716,-0.65439999999999998,6.1288,0.19056000000000001,3.7709999999999999,4.3609999999999998,5.1210000000000004,6.1289999999999996,7.5119999999999996,9.5009999999999994,12.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,717,-0.65480000000000005,6.1284000000000001,0.19059999999999999,3.7709999999999999,4.3609999999999998,5.1210000000000004,6.1280000000000001,7.5119999999999996,9.5020000000000007,12.545 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,718,-0.65510000000000002,6.1280000000000001,0.19062999999999999,3.77,4.3600000000000003,5.12,6.1280000000000001,7.5119999999999996,9.5020000000000007,12.547000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,719,-0.65549999999999997,6.1276000000000002,0.19066,3.77,4.3600000000000003,5.12,6.1280000000000001,7.5119999999999996,9.5030000000000001,12.548999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,720,-0.65580000000000005,6.1272000000000002,0.19069,3.77,4.359,5.12,6.1269999999999998,7.5119999999999996,9.5030000000000001,12.551 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,721,-0.65620000000000001,6.1269,0.19073000000000001,3.7690000000000001,4.359,5.1189999999999998,6.1269999999999998,7.5119999999999996,9.5039999999999996,12.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,722,-0.65649999999999997,6.1265000000000001,0.19076000000000001,3.7690000000000001,4.359,5.1189999999999998,6.1260000000000003,7.5110000000000001,9.5050000000000008,12.557 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,723,-0.65690000000000004,6.1261000000000001,0.19078999999999999,3.7690000000000001,4.3579999999999997,5.1180000000000003,6.1260000000000003,7.5110000000000001,9.5050000000000008,12.558999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,724,-0.65720000000000001,6.1257000000000001,0.19083,3.7679999999999998,4.3579999999999997,5.1180000000000003,6.1260000000000003,7.5110000000000001,9.5060000000000002,12.561999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,725,-0.65759999999999996,6.1253000000000002,0.19086,3.7679999999999998,4.3570000000000002,5.117,6.125,7.5110000000000001,9.5060000000000002,12.565 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,726,-0.65800000000000003,6.1249000000000002,0.19089,3.7669999999999999,4.3570000000000002,5.117,6.125,7.5110000000000001,9.5069999999999997,12.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,727,-0.6583,6.1245000000000003,0.19092000000000001,3.7669999999999999,4.3570000000000002,5.1159999999999997,6.1239999999999997,7.5110000000000001,9.5069999999999997,12.569000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,728,-0.65869999999999995,6.1242000000000001,0.19095999999999999,3.7669999999999999,4.3559999999999999,5.1159999999999997,6.1239999999999997,7.5110000000000001,9.5079999999999991,12.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,729,-0.65900000000000003,6.1238000000000001,0.19098999999999999,3.766,4.3559999999999999,5.1159999999999997,6.1239999999999997,7.5110000000000001,9.5090000000000003,12.574999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,730,-0.65939999999999999,6.1234000000000002,0.19102,3.766,4.3550000000000004,5.1150000000000002,6.1230000000000002,7.51,9.5090000000000003,12.577 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,731,-0.65969999999999995,6.1231,0.19106000000000001,3.766,4.3550000000000004,5.1150000000000002,6.1230000000000002,7.51,9.51,12.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,732,-0.66010000000000002,6.1227,0.19109000000000001,3.7650000000000001,4.3540000000000001,5.1139999999999999,6.1230000000000002,7.51,9.5109999999999992,12.583 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,733,-0.66039999999999999,6.1223000000000001,0.19112000000000001,3.7650000000000001,4.3540000000000001,5.1139999999999999,6.1219999999999999,7.51,9.5109999999999992,12.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,734,-0.66080000000000005,6.1219999999999999,0.19116,3.7650000000000001,4.3540000000000001,5.1130000000000004,6.1219999999999999,7.51,9.5120000000000005,12.587999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,735,-0.66110000000000002,6.1215999999999999,0.19119,3.7639999999999998,4.3529999999999998,5.1130000000000004,6.1219999999999999,7.51,9.5129999999999999,12.59 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,736,-0.66139999999999999,6.1212,0.19122,3.7639999999999998,4.3529999999999998,5.1130000000000004,6.1210000000000004,7.51,9.5129999999999999,12.593 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,737,-0.66180000000000005,6.1208999999999998,0.19126000000000001,3.7629999999999999,4.3520000000000003,5.1120000000000001,6.1210000000000004,7.51,9.5139999999999993,12.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,738,-0.66210000000000002,6.1204999999999998,0.19128999999999999,3.7629999999999999,4.3520000000000003,5.1120000000000001,6.12,7.51,9.5139999999999993,12.598000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,739,-0.66249999999999998,6.1201999999999996,0.19133,3.7629999999999999,4.3520000000000003,5.1109999999999998,6.12,7.51,9.5150000000000006,12.601000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,740,-0.66279999999999994,6.1197999999999997,0.19136,3.762,4.351,5.1109999999999998,6.12,7.5090000000000003,9.516,12.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,741,-0.66320000000000001,6.1195000000000004,0.19139,3.762,4.351,5.1109999999999998,6.12,7.5090000000000003,9.5169999999999995,12.606 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,742,-0.66349999999999998,6.1191000000000004,0.19142999999999999,3.762,4.3499999999999996,5.1100000000000003,6.1189999999999998,7.5090000000000003,9.5169999999999995,12.609 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,743,-0.66390000000000005,6.1188000000000002,0.19145999999999999,3.7610000000000001,4.3499999999999996,5.1100000000000003,6.1189999999999998,7.5090000000000003,9.5180000000000007,12.612 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,744,-0.66420000000000001,6.1184000000000003,0.19148999999999999,3.7610000000000001,4.3499999999999996,5.109,6.1180000000000003,7.5090000000000003,9.5180000000000007,12.614000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,745,-0.66459999999999997,6.1181000000000001,0.19153000000000001,3.7610000000000001,4.3490000000000002,5.109,6.1180000000000003,7.5090000000000003,9.5190000000000001,12.618 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,746,-0.66490000000000005,6.1177000000000001,0.19156000000000001,3.76,4.3490000000000002,5.1079999999999997,6.1180000000000003,7.5090000000000003,9.52,12.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,747,-0.66520000000000001,6.1173999999999999,0.19159999999999999,3.76,4.3479999999999999,5.1079999999999997,6.117,7.5090000000000003,9.5210000000000008,12.622999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,748,-0.66559999999999997,6.1170999999999998,0.19162999999999999,3.76,4.3479999999999999,5.1079999999999997,6.117,7.5090000000000003,9.5210000000000008,12.625 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,749,-0.66590000000000005,6.1166999999999998,0.19166,3.7589999999999999,4.3479999999999999,5.1070000000000002,6.117,7.5090000000000003,9.5220000000000002,12.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,750,-0.6663,6.1163999999999996,0.19170000000000001,3.7589999999999999,4.3470000000000004,5.1070000000000002,6.1159999999999997,7.5090000000000003,9.5229999999999997,12.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,751,-0.66659999999999997,6.1161000000000003,0.19173000000000001,3.7589999999999999,4.3470000000000004,5.1059999999999999,6.1159999999999997,7.5090000000000003,9.5239999999999991,12.632999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,752,-0.66700000000000004,6.1157000000000004,0.19177,3.758,4.3460000000000001,5.1059999999999999,6.1159999999999997,7.5090000000000003,9.5239999999999991,12.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,753,-0.6673,6.1154000000000002,0.1918,3.758,4.3460000000000001,5.1059999999999999,6.1150000000000002,7.5090000000000003,9.5250000000000004,12.638999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,754,-0.66759999999999997,6.1151,0.19183,3.758,4.3460000000000001,5.1050000000000004,6.1150000000000002,7.508,9.5259999999999998,12.641999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,755,-0.66800000000000004,6.1147999999999998,0.19187000000000001,3.7570000000000001,4.3449999999999998,5.1050000000000004,6.1150000000000002,7.5090000000000003,9.5269999999999992,12.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,756,-0.66830000000000001,6.1143999999999998,0.19189999999999999,3.7570000000000001,4.3449999999999998,5.1040000000000001,6.1139999999999999,7.508,9.5269999999999992,12.647 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,757,-0.66869999999999996,6.1140999999999996,0.19194,3.7559999999999998,4.3440000000000003,5.1040000000000001,6.1139999999999999,7.508,9.5280000000000005,12.651 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,758,-0.66900000000000004,6.1138000000000003,0.19197,3.7559999999999998,4.3440000000000003,5.1040000000000001,6.1139999999999999,7.508,9.5289999999999999,12.653 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,759,-0.66930000000000001,6.1135000000000002,0.19200999999999999,3.7559999999999998,4.3440000000000003,5.1029999999999998,6.1139999999999999,7.508,9.5289999999999999,12.656000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,760,-0.66969999999999996,6.1132,0.19203999999999999,3.7549999999999999,4.343,5.1029999999999998,6.1130000000000004,7.508,9.5299999999999994,12.659000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,761,-0.67,6.1128999999999998,0.19208,3.7549999999999999,4.343,5.1020000000000003,6.1130000000000004,7.508,9.5310000000000006,12.662000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,762,-0.6704,6.1124999999999998,0.19211,3.7549999999999999,4.343,5.1020000000000003,6.1120000000000001,7.508,9.532,12.664999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,763,-0.67069999999999996,6.1121999999999996,0.19214999999999999,3.754,4.3419999999999996,5.1020000000000003,6.1120000000000001,7.508,9.532,12.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,764,-0.67100000000000004,6.1119000000000003,0.19217999999999999,3.754,4.3419999999999996,5.101,6.1120000000000001,7.508,9.5329999999999995,12.67 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,765,-0.6714,6.1116000000000001,0.19222,3.754,4.3410000000000002,5.101,6.1120000000000001,7.508,9.5340000000000007,12.673 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,766,-0.67169999999999996,6.1113,0.19225,3.7530000000000001,4.3410000000000002,5.0999999999999996,6.1109999999999998,7.508,9.5350000000000001,12.676 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,767,-0.67200000000000004,6.1109999999999998,0.19228000000000001,3.7530000000000001,4.3410000000000002,5.0999999999999996,6.1109999999999998,7.508,9.5350000000000001,12.678000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,768,-0.6724,6.1106999999999996,0.19231999999999999,3.7530000000000001,4.34,5.0999999999999996,6.1109999999999998,7.508,9.5359999999999996,12.682 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,769,-0.67269999999999996,6.1104000000000003,0.19234999999999999,3.7519999999999998,4.34,5.0990000000000002,6.11,7.508,9.5370000000000008,12.683999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,770,-0.67300000000000004,6.1101000000000001,0.19239000000000001,3.7519999999999998,4.34,5.0990000000000002,6.11,7.508,9.5380000000000003,12.686999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,771,-0.6734,6.1097999999999999,0.19242000000000001,3.7519999999999998,4.3390000000000004,5.0990000000000002,6.11,7.508,9.5380000000000003,12.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,772,-0.67369999999999997,6.1094999999999997,0.19245999999999999,3.7509999999999999,4.3390000000000004,5.0979999999999999,6.11,7.508,9.5389999999999997,12.693 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,773,-0.67400000000000004,6.1092000000000004,0.19248999999999999,3.7509999999999999,4.3380000000000001,5.0979999999999999,6.109,7.508,9.5399999999999991,12.696 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,774,-0.6744,6.1089000000000002,0.19253000000000001,3.7509999999999999,4.3380000000000001,5.0970000000000004,6.109,7.508,9.5410000000000004,12.699 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,775,-0.67469999999999997,6.1086,0.19256999999999999,3.75,4.3380000000000001,5.0970000000000004,6.109,7.508,9.5419999999999998,12.702 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,776,-0.67500000000000004,6.1083999999999996,0.19259999999999999,3.75,4.3369999999999997,5.0970000000000004,6.1079999999999997,7.508,9.5429999999999993,12.705 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,777,-0.6754,6.1081000000000003,0.19264000000000001,3.75,4.3369999999999997,5.0960000000000001,6.1079999999999997,7.508,9.5440000000000005,12.708 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,778,-0.67569999999999997,6.1078000000000001,0.19267000000000001,3.7490000000000001,4.3369999999999997,5.0960000000000001,6.1079999999999997,7.508,9.5440000000000005,12.711 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,779,-0.67600000000000005,6.1074999999999999,0.19270999999999999,3.7490000000000001,4.3360000000000003,5.0960000000000001,6.1079999999999997,7.508,9.5449999999999999,12.714 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,780,-0.6764,6.1071999999999997,0.19273999999999999,3.7490000000000001,4.3360000000000003,5.0949999999999998,6.1070000000000002,7.508,9.5459999999999994,12.717000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,781,-0.67669999999999997,6.1069000000000004,0.19278000000000001,3.7480000000000002,4.335,5.0949999999999998,6.1070000000000002,7.508,9.5470000000000006,12.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,782,-0.67700000000000005,6.1067,0.19281000000000001,3.7480000000000002,4.335,5.0949999999999998,6.1070000000000002,7.508,9.5470000000000006,12.723000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,783,-0.6774,6.1063999999999998,0.19284999999999999,3.7480000000000002,4.335,5.0940000000000003,6.1059999999999999,7.508,9.548,12.726000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,784,-0.67769999999999997,6.1060999999999996,0.19288,3.7480000000000002,4.3339999999999996,5.0940000000000003,6.1059999999999999,7.508,9.5489999999999995,12.728999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,785,-0.67800000000000005,6.1058000000000003,0.19292000000000001,3.7469999999999999,4.3339999999999996,5.093,6.1059999999999999,7.508,9.5500000000000007,12.731999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,786,-0.67830000000000001,6.1055999999999999,0.19295999999999999,3.7469999999999999,4.3339999999999996,5.093,6.1059999999999999,7.508,9.5510000000000002,12.734999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,787,-0.67869999999999997,6.1052999999999997,0.19298999999999999,3.7469999999999999,4.3330000000000002,5.093,6.1050000000000004,7.508,9.5519999999999996,12.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,788,-0.67900000000000005,6.1050000000000004,0.19303000000000001,3.746,4.3330000000000002,5.0919999999999996,6.1050000000000004,7.508,9.5530000000000008,12.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,789,-0.67930000000000001,6.1048,0.19306000000000001,3.746,4.3330000000000002,5.0919999999999996,6.1050000000000004,7.508,9.5530000000000008,12.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,790,-0.67969999999999997,6.1044999999999998,0.19309999999999999,3.746,4.3319999999999999,5.0919999999999996,6.1040000000000001,7.508,9.5540000000000003,12.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,791,-0.68,6.1041999999999996,0.19313,3.7450000000000001,4.3319999999999999,5.0910000000000002,6.1040000000000001,7.508,9.5549999999999997,12.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,792,-0.68030000000000002,6.1040000000000001,0.19317000000000001,3.7450000000000001,4.3319999999999999,5.0910000000000002,6.1040000000000001,7.5090000000000003,9.5559999999999992,12.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,793,-0.68059999999999998,6.1036999999999999,0.19320999999999999,3.7450000000000001,4.3310000000000004,5.09,6.1040000000000001,7.5090000000000003,9.5570000000000004,12.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,794,-0.68100000000000005,6.1033999999999997,0.19324,3.7440000000000002,4.3310000000000004,5.09,6.1029999999999998,7.5090000000000003,9.5579999999999998,12.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,795,-0.68130000000000002,6.1032000000000002,0.19328000000000001,3.7440000000000002,4.33,5.09,6.1029999999999998,7.5090000000000003,9.5589999999999993,12.763 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,796,-0.68159999999999998,6.1029,0.19331000000000001,3.7440000000000002,4.33,5.0890000000000004,6.1029999999999998,7.5090000000000003,9.5589999999999993,12.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,797,-0.68189999999999995,6.1026999999999996,0.19334999999999999,3.7429999999999999,4.33,5.0890000000000004,6.1029999999999998,7.5090000000000003,9.56,12.769 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,798,-0.68230000000000002,6.1024000000000003,0.19339000000000001,3.7429999999999999,4.3289999999999997,5.0890000000000004,6.1020000000000003,7.5090000000000003,9.5609999999999999,12.772 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,799,-0.68259999999999998,6.1021999999999998,0.19342000000000001,3.7429999999999999,4.3289999999999997,5.0880000000000001,6.1020000000000003,7.5090000000000003,9.5619999999999994,12.775 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,800,-0.68289999999999995,6.1018999999999997,0.19345999999999999,3.742,4.3289999999999997,5.0880000000000001,6.1020000000000003,7.5090000000000003,9.5630000000000006,12.778 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,801,-0.68320000000000003,6.1017000000000001,0.19349,3.742,4.3280000000000003,5.0880000000000001,6.1020000000000003,7.5090000000000003,9.5640000000000001,12.781000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,802,-0.68359999999999999,6.1013999999999999,0.19353000000000001,3.742,4.3280000000000003,5.0869999999999997,6.101,7.5090000000000003,9.5649999999999995,12.784000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,803,-0.68389999999999995,6.1012000000000004,0.19356999999999999,3.7410000000000001,4.3280000000000003,5.0869999999999997,6.101,7.5090000000000003,9.5660000000000007,12.788 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,804,-0.68420000000000003,6.1009000000000002,0.19359999999999999,3.7410000000000001,4.327,5.0869999999999997,6.101,7.5090000000000003,9.5670000000000002,12.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,805,-0.6845,6.1006999999999998,0.19364000000000001,3.7410000000000001,4.327,5.0860000000000003,6.101,7.5090000000000003,9.5679999999999996,12.794 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,806,-0.68489999999999995,6.1003999999999996,0.19367999999999999,3.74,4.327,5.0860000000000003,6.1,7.5090000000000003,9.5690000000000008,12.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,807,-0.68520000000000003,6.1002000000000001,0.19370999999999999,3.74,4.3259999999999996,5.0860000000000003,6.1,7.5090000000000003,9.5690000000000008,12.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,808,-0.6855,6.1,0.19375000000000001,3.74,4.3259999999999996,5.085,6.1,7.51,9.57,12.803000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,809,-0.68579999999999997,6.0997000000000003,0.19378999999999999,3.74,4.3259999999999996,5.085,6.1,7.51,9.5709999999999997,12.807 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,810,-0.68610000000000004,6.0994999999999999,0.19381999999999999,3.7389999999999999,4.3250000000000002,5.085,6.1,7.51,9.5719999999999992,12.808999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,811,-0.6865,6.0991999999999997,0.19386,3.7389999999999999,4.3250000000000002,5.0839999999999996,6.0990000000000002,7.51,9.5730000000000004,12.813000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,812,-0.68679999999999997,6.0990000000000002,0.19389999999999999,3.7389999999999999,4.3250000000000002,5.0839999999999996,6.0990000000000002,7.51,9.5739999999999998,12.816000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,813,-0.68710000000000004,6.0987999999999998,0.19392999999999999,3.738,4.3239999999999998,5.0839999999999996,6.0990000000000002,7.51,9.5749999999999993,12.819000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,814,-0.68740000000000001,6.0984999999999996,0.19397,3.738,4.3239999999999998,5.0830000000000002,6.0979999999999999,7.51,9.5760000000000005,12.821999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,815,-0.68769999999999998,6.0983000000000001,0.19400999999999999,3.738,4.3239999999999998,5.0830000000000002,6.0979999999999999,7.51,9.577,12.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,816,-0.68810000000000004,6.0980999999999996,0.19403999999999999,3.7370000000000001,4.3230000000000004,5.0830000000000002,6.0979999999999999,7.51,9.5779999999999994,12.829000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,817,-0.68840000000000001,6.0978000000000003,0.19408,3.7370000000000001,4.3230000000000004,5.0819999999999999,6.0979999999999999,7.51,9.5790000000000006,12.832000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,818,-0.68869999999999998,6.0975999999999999,0.19411999999999999,3.7370000000000001,4.3230000000000004,5.0819999999999999,6.0979999999999999,7.51,9.58,12.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,819,-0.68899999999999995,6.0974000000000004,0.19414999999999999,3.7370000000000001,4.3220000000000001,5.0819999999999999,6.0970000000000004,7.51,9.5809999999999995,12.837999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,820,-0.68930000000000002,6.0972,0.19419,3.7360000000000002,4.3220000000000001,5.0810000000000004,6.0970000000000004,7.5110000000000001,9.5820000000000007,12.842000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,821,-0.68959999999999999,6.0968999999999998,0.19423000000000001,3.7360000000000002,4.3209999999999997,5.0810000000000004,6.0970000000000004,7.5110000000000001,9.5830000000000002,12.845000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,822,-0.69,6.0967000000000002,0.19425999999999999,3.7360000000000002,4.3209999999999997,5.0810000000000004,6.0970000000000004,7.5110000000000001,9.5830000000000002,12.848000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,823,-0.69030000000000002,6.0964999999999998,0.1943,3.7349999999999999,4.3209999999999997,5.08,6.0960000000000001,7.5110000000000001,9.5850000000000009,12.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,824,-0.69059999999999999,6.0963000000000003,0.19434000000000001,3.7349999999999999,4.3209999999999997,5.08,6.0960000000000001,7.5110000000000001,9.5860000000000003,12.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,825,-0.69089999999999996,6.0960999999999999,0.19436999999999999,3.7349999999999999,4.32,5.08,6.0960000000000001,7.5110000000000001,9.5860000000000003,12.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,826,-0.69120000000000004,6.0957999999999997,0.19441,3.734,4.32,5.0789999999999997,6.0960000000000001,7.5110000000000001,9.5869999999999997,12.861000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,827,-0.6915,6.0956000000000001,0.19445000000000001,3.734,4.32,5.0789999999999997,6.0960000000000001,7.5110000000000001,9.5879999999999992,12.865 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,828,-0.69179999999999997,6.0953999999999997,0.19449,3.734,4.319,5.0789999999999997,6.0949999999999998,7.5110000000000001,9.5890000000000004,12.868 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,829,-0.69220000000000004,6.0952000000000002,0.19452,3.734,4.319,5.0780000000000003,6.0949999999999998,7.5110000000000001,9.59,12.871 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,830,-0.6925,6.0949999999999998,0.19456000000000001,3.7330000000000001,4.319,5.0780000000000003,6.0949999999999998,7.5119999999999996,9.5909999999999993,12.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,831,-0.69279999999999997,6.0948000000000002,0.1946,3.7330000000000001,4.3179999999999996,5.0780000000000003,6.0949999999999998,7.5119999999999996,9.5920000000000005,12.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,832,-0.69310000000000005,6.0945,0.19464000000000001,3.7320000000000002,4.3179999999999996,5.077,6.0940000000000003,7.5119999999999996,9.593,12.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,833,-0.69340000000000002,6.0942999999999996,0.19467000000000001,3.7320000000000002,4.3179999999999996,5.077,6.0940000000000003,7.5119999999999996,9.5939999999999994,12.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,834,-0.69369999999999998,6.0941000000000001,0.19470999999999999,3.7320000000000002,4.3170000000000002,5.077,6.0940000000000003,7.5119999999999996,9.5950000000000006,12.888 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,835,-0.69399999999999995,6.0938999999999997,0.19475000000000001,3.7320000000000002,4.3170000000000002,5.0759999999999996,6.0940000000000003,7.5119999999999996,9.5960000000000001,12.891 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,836,-0.69440000000000002,6.0937000000000001,0.19478999999999999,3.7309999999999999,4.3170000000000002,5.0759999999999996,6.0940000000000003,7.5119999999999996,9.5980000000000008,12.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,837,-0.69469999999999998,6.0934999999999997,0.19481999999999999,3.7309999999999999,4.3159999999999998,5.0759999999999996,6.0940000000000003,7.5119999999999996,9.5980000000000008,12.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,838,-0.69499999999999995,6.0933000000000002,0.19486000000000001,3.7309999999999999,4.3159999999999998,5.0759999999999996,6.093,7.5129999999999999,9.5990000000000002,12.901 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,839,-0.69530000000000003,6.0930999999999997,0.19489999999999999,3.73,4.3159999999999998,5.0750000000000002,6.093,7.5129999999999999,9.6,12.904999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,840,-0.6956,6.0929000000000002,0.19494,3.73,4.3150000000000004,5.0750000000000002,6.093,7.5129999999999999,9.6020000000000003,12.907999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,841,-0.69589999999999996,6.0926999999999998,0.19497,3.73,4.3150000000000004,5.0750000000000002,6.093,7.5129999999999999,9.6020000000000003,12.911 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,842,-0.69620000000000004,6.0925000000000002,0.19500999999999999,3.73,4.3150000000000004,5.0739999999999998,6.0919999999999996,7.5129999999999999,9.6029999999999998,12.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,843,-0.69650000000000001,6.0922999999999998,0.19505,3.7290000000000001,4.3140000000000001,5.0739999999999998,6.0919999999999996,7.5129999999999999,9.6039999999999992,12.917999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,844,-0.69679999999999997,6.0921000000000003,0.19509000000000001,3.7290000000000001,4.3140000000000001,5.0739999999999998,6.0919999999999996,7.5129999999999999,9.6059999999999999,12.922000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,845,-0.69710000000000005,6.0918999999999999,0.19511999999999999,3.7290000000000001,4.3140000000000001,5.0730000000000004,6.0919999999999996,7.5129999999999999,9.6059999999999999,12.925000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,846,-0.69750000000000001,6.0917000000000003,0.19516,3.7280000000000002,4.3129999999999997,5.0730000000000004,6.0919999999999996,7.5140000000000002,9.6080000000000005,12.929 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,847,-0.69779999999999998,6.0914999999999999,0.19520000000000001,3.7280000000000002,4.3129999999999997,5.0730000000000004,6.0919999999999996,7.5140000000000002,9.609,12.932 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,848,-0.69810000000000005,6.0913000000000004,0.19524,3.7280000000000002,4.3129999999999997,5.0720000000000001,6.0910000000000002,7.5140000000000002,9.61,12.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,849,-0.69840000000000002,6.0911,0.19528000000000001,3.7269999999999999,4.3120000000000003,5.0720000000000001,6.0910000000000002,7.5140000000000002,9.6110000000000007,12.939 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,850,-0.69869999999999999,6.0909000000000004,0.19531000000000001,3.7269999999999999,4.3120000000000003,5.0720000000000001,6.0910000000000002,7.5140000000000002,9.6120000000000001,12.942 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,851,-0.69899999999999995,6.0907,0.19535,3.7269999999999999,4.3120000000000003,5.0720000000000001,6.0910000000000002,7.5140000000000002,9.6129999999999995,12.946 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,852,-0.69930000000000003,6.0904999999999996,0.19539000000000001,3.7269999999999999,4.3109999999999999,5.0709999999999997,6.09,7.5140000000000002,9.6140000000000008,12.949 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,853,-0.6996,6.0903,0.19542999999999999,3.726,4.3109999999999999,5.0709999999999997,6.09,7.5149999999999997,9.6150000000000002,12.952999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,854,-0.69989999999999997,6.0902000000000003,0.19545999999999999,3.726,4.3109999999999999,5.0709999999999997,6.09,7.5149999999999997,9.6159999999999997,12.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,855,-0.70020000000000004,6.09,0.19550000000000001,3.726,4.3099999999999996,5.07,6.09,7.5149999999999997,9.6170000000000009,12.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,856,-0.70050000000000001,6.0898000000000003,0.19553999999999999,3.7250000000000001,4.3099999999999996,5.07,6.09,7.5149999999999997,9.6180000000000003,12.962999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,857,-0.70079999999999998,6.0895999999999999,0.19558,3.7250000000000001,4.3099999999999996,5.07,6.09,7.5149999999999997,9.6189999999999998,12.965999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,858,-0.70109999999999995,6.0894000000000004,0.19561999999999999,3.7250000000000001,4.3090000000000002,5.069,6.0890000000000004,7.5149999999999997,9.6199999999999992,12.97 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,859,-0.70140000000000002,6.0891999999999999,0.19566,3.7240000000000002,4.3090000000000002,5.069,6.0890000000000004,7.516,9.6210000000000004,12.973000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,860,-0.70179999999999998,6.0890000000000004,0.19569,3.7240000000000002,4.3090000000000002,5.069,6.0890000000000004,7.516,9.6219999999999999,12.977 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,861,-0.70209999999999995,6.0888999999999998,0.19572999999999999,3.7240000000000002,4.3090000000000002,5.069,6.0890000000000004,7.516,9.6229999999999993,12.981 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,862,-0.70240000000000002,6.0887000000000002,0.19577,3.7240000000000002,4.3079999999999998,5.0679999999999996,6.0890000000000004,7.516,9.6240000000000006,12.984 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,863,-0.70269999999999999,6.0884999999999998,0.19581000000000001,3.7229999999999999,4.3079999999999998,5.0679999999999996,6.0880000000000001,7.516,9.6259999999999994,12.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,864,-0.70299999999999996,6.0883000000000003,0.19585,3.7229999999999999,4.3079999999999998,5.0679999999999996,6.0880000000000001,7.516,9.6270000000000007,12.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,865,-0.70330000000000004,6.0880999999999998,0.19589000000000001,3.7229999999999999,4.3070000000000004,5.0670000000000002,6.0880000000000001,7.5170000000000003,9.6280000000000001,12.994999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,866,-0.7036,6.0880000000000001,0.19592000000000001,3.7229999999999999,4.3070000000000004,5.0670000000000002,6.0880000000000001,7.5170000000000003,9.6289999999999996,12.997999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,867,-0.70389999999999997,6.0877999999999997,0.19596,3.722,4.3070000000000004,5.0670000000000002,6.0880000000000001,7.5170000000000003,9.6300000000000008,13.002000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,868,-0.70420000000000005,6.0876000000000001,0.19600000000000001,3.722,4.306,5.0670000000000002,6.0880000000000001,7.5170000000000003,9.6310000000000002,13.005000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,869,-0.70450000000000002,6.0873999999999997,0.19603999999999999,3.722,4.306,5.0659999999999998,6.0869999999999997,7.5170000000000003,9.6319999999999997,13.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,870,-0.70479999999999998,6.0872999999999999,0.19608,3.7210000000000001,4.306,5.0659999999999998,6.0869999999999997,7.5170000000000003,9.6329999999999991,13.013 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,871,-0.70509999999999995,6.0871000000000004,0.19611999999999999,3.7210000000000001,4.3049999999999997,5.0659999999999998,6.0869999999999997,7.5179999999999998,9.6340000000000003,13.016 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,872,-0.70540000000000003,6.0869,0.19614999999999999,3.7210000000000001,4.3049999999999997,5.0650000000000004,6.0869999999999997,7.5179999999999998,9.6349999999999998,13.019 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,873,-0.70569999999999999,6.0868000000000002,0.19619,3.7210000000000001,4.3049999999999997,5.0650000000000004,6.0869999999999997,7.5179999999999998,9.6359999999999992,13.023 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,874,-0.70599999999999996,6.0865999999999998,0.19622999999999999,3.72,4.3049999999999997,5.0650000000000004,6.0869999999999997,7.5179999999999998,9.6370000000000005,13.026999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,875,-0.70630000000000004,6.0864000000000003,0.19627,3.72,4.3040000000000003,5.0640000000000001,6.0860000000000003,7.5179999999999998,9.6389999999999993,13.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,876,-0.70660000000000001,6.0861999999999998,0.19631000000000001,3.72,4.3040000000000003,5.0640000000000001,6.0860000000000003,7.5179999999999998,9.64,13.034000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,877,-0.70689999999999997,6.0861000000000001,0.19635,3.7189999999999999,4.3040000000000003,5.0640000000000001,6.0860000000000003,7.5190000000000001,9.641,13.038 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,878,-0.70720000000000005,6.0858999999999996,0.19639000000000001,3.7189999999999999,4.3029999999999999,5.0640000000000001,6.0860000000000003,7.5190000000000001,9.6419999999999995,13.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,879,-0.70750000000000002,6.0857000000000001,0.19642999999999999,3.7189999999999999,4.3029999999999999,5.0629999999999997,6.0860000000000003,7.5190000000000001,9.6430000000000007,13.045 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,880,-0.70779999999999998,6.0856000000000003,0.19646,3.7189999999999999,4.3029999999999999,5.0629999999999997,6.0860000000000003,7.5190000000000001,9.6440000000000001,13.048 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,881,-0.70809999999999995,6.0853999999999999,0.19650000000000001,3.718,4.3019999999999996,5.0629999999999997,6.085,7.5190000000000001,9.6449999999999996,13.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,882,-0.70840000000000003,6.0853000000000002,0.19653999999999999,3.718,4.3019999999999996,5.0629999999999997,6.085,7.52,9.6460000000000008,13.055999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,883,-0.7087,6.0850999999999997,0.19658,3.718,4.3019999999999996,5.0620000000000003,6.085,7.52,9.6470000000000002,13.058999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,884,-0.70899999999999996,6.0849000000000002,0.19661999999999999,3.7170000000000001,4.3010000000000002,5.0620000000000003,6.085,7.52,9.6489999999999991,13.063000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,885,-0.70930000000000004,6.0848000000000004,0.19666,3.7170000000000001,4.3010000000000002,5.0620000000000003,6.085,7.52,9.65,13.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,886,-0.70960000000000001,6.0846,0.19670000000000001,3.7170000000000001,4.3010000000000002,5.0609999999999999,6.085,7.52,9.6509999999999998,13.07 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,887,-0.70989999999999998,6.0843999999999996,0.19674,3.7160000000000002,4.3,5.0609999999999999,6.0839999999999996,7.5209999999999999,9.6519999999999992,13.074 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,888,-0.71020000000000005,6.0842999999999998,0.19678000000000001,3.7160000000000002,4.3,5.0609999999999999,6.0839999999999996,7.5209999999999999,9.6530000000000005,13.077999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,889,-0.71050000000000002,6.0841000000000003,0.19681000000000001,3.7160000000000002,4.3,5.0609999999999999,6.0839999999999996,7.5209999999999999,9.6539999999999999,13.081 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,890,-0.71079999999999999,6.0839999999999996,0.19685,3.7160000000000002,4.3,5.0599999999999996,6.0839999999999996,7.5209999999999999,9.6549999999999994,13.085000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,891,-0.71099999999999997,6.0838000000000001,0.19689000000000001,3.7149999999999999,4.2990000000000004,5.0599999999999996,6.0839999999999996,7.5209999999999999,9.6560000000000006,13.087999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,892,-0.71130000000000004,6.0837000000000003,0.19692999999999999,3.7149999999999999,4.2990000000000004,5.0599999999999996,6.0839999999999996,7.5220000000000002,9.6579999999999995,13.092000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,893,-0.71160000000000001,6.0834999999999999,0.19697000000000001,3.7149999999999999,4.2990000000000004,5.0590000000000002,6.0839999999999996,7.5220000000000002,9.6590000000000007,13.095000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,894,-0.71189999999999998,6.0834000000000001,0.19700999999999999,3.7149999999999999,4.298,5.0590000000000002,6.0830000000000002,7.5220000000000002,9.66,13.099 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,895,-0.71220000000000006,6.0831999999999997,0.19705,3.714,4.298,5.0590000000000002,6.0830000000000002,7.5220000000000002,9.6609999999999996,13.103 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,896,-0.71250000000000002,6.0831,0.19708999999999999,3.714,4.298,5.0590000000000002,6.0830000000000002,7.5220000000000002,9.6620000000000008,13.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,897,-0.71279999999999999,6.0829000000000004,0.19713,3.714,4.2969999999999997,5.0579999999999998,6.0830000000000002,7.5229999999999997,9.6630000000000003,13.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,898,-0.71309999999999996,6.0827,0.19717000000000001,3.7130000000000001,4.2969999999999997,5.0579999999999998,6.0830000000000002,7.5229999999999997,9.6649999999999991,13.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,899,-0.71340000000000003,6.0826000000000002,0.19721,3.7130000000000001,4.2969999999999997,5.0579999999999998,6.0830000000000002,7.5229999999999997,9.6660000000000004,13.118 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,900,-0.7137,6.0823999999999998,0.19725000000000001,3.7130000000000001,4.2969999999999997,5.0570000000000004,6.0819999999999999,7.5229999999999997,9.6669999999999998,13.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,901,-0.71399999999999997,6.0823,0.19728000000000001,3.7130000000000001,4.2960000000000003,5.0570000000000004,6.0819999999999999,7.5229999999999997,9.6679999999999993,13.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,902,-0.71430000000000005,6.0822000000000003,0.19732,3.7120000000000002,4.2960000000000003,5.0570000000000004,6.0819999999999999,7.524,9.6690000000000005,13.129 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,903,-0.71460000000000001,6.0819999999999999,0.19736000000000001,3.7120000000000002,4.2960000000000003,5.0570000000000004,6.0819999999999999,7.524,9.67,13.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,904,-0.71489999999999998,6.0819000000000001,0.19739999999999999,3.7120000000000002,4.2949999999999999,5.056,6.0819999999999999,7.524,9.6720000000000006,13.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,905,-0.71519999999999995,6.0816999999999997,0.19744,3.7109999999999999,4.2949999999999999,5.056,6.0819999999999999,7.524,9.673,13.141 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,906,-0.71540000000000004,6.0815999999999999,0.19747999999999999,3.7109999999999999,4.2949999999999999,5.056,6.0819999999999999,7.5250000000000004,9.6739999999999995,13.144 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,907,-0.7157,6.0814000000000004,0.19752,3.7109999999999999,4.2949999999999999,5.056,6.0810000000000004,7.5250000000000004,9.6750000000000007,13.148 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,908,-0.71599999999999997,6.0812999999999997,0.19756000000000001,3.7109999999999999,4.2939999999999996,5.0549999999999997,6.0810000000000004,7.5250000000000004,9.6760000000000002,13.151999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,909,-0.71630000000000005,6.0811000000000002,0.1976,3.71,4.2939999999999996,5.0549999999999997,6.0810000000000004,7.5250000000000004,9.6769999999999996,13.154999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,910,-0.71660000000000001,6.0810000000000004,0.19764000000000001,3.71,4.2939999999999996,5.0549999999999997,6.0810000000000004,7.5250000000000004,9.6790000000000003,13.159000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,911,-0.71689999999999998,6.0808999999999997,0.19767999999999999,3.71,4.2930000000000001,5.0549999999999997,6.0810000000000004,7.5259999999999998,9.68,13.163 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,912,-0.71719999999999995,6.0807000000000002,0.19772000000000001,3.7090000000000001,4.2930000000000001,5.0540000000000003,6.0810000000000004,7.5259999999999998,9.6809999999999992,13.167 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,913,-0.71750000000000003,6.0805999999999996,0.19775999999999999,3.7090000000000001,4.2930000000000001,5.0540000000000003,6.0810000000000004,7.5259999999999998,9.6820000000000004,13.170999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,914,-0.71779999999999999,6.0804,0.1978,3.7090000000000001,4.2919999999999998,5.0540000000000003,6.08,7.5259999999999998,9.6829999999999998,13.175000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,915,-0.71809999999999996,6.0803000000000003,0.19783999999999999,3.7090000000000001,4.2919999999999998,5.0529999999999999,6.08,7.5270000000000001,9.6850000000000005,13.179 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,916,-0.71830000000000005,6.0801999999999996,0.19788,3.7080000000000002,4.2919999999999998,5.0529999999999999,6.08,7.5270000000000001,9.6859999999999999,13.182 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,917,-0.71860000000000002,6.08,0.19792000000000001,3.7080000000000002,4.2919999999999998,5.0529999999999999,6.08,7.5270000000000001,9.6869999999999994,13.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,918,-0.71889999999999998,6.0799000000000003,0.19796,3.7080000000000002,4.2910000000000004,5.0529999999999999,6.08,7.5270000000000001,9.6880000000000006,13.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,919,-0.71919999999999995,6.0797999999999996,0.19800000000000001,3.7080000000000002,4.2910000000000004,5.0519999999999996,6.08,7.5279999999999996,9.6890000000000001,13.194000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,920,-0.71950000000000003,6.0796000000000001,0.19803999999999999,3.7069999999999999,4.2910000000000004,5.0519999999999996,6.08,7.5279999999999996,9.6910000000000007,13.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,921,-0.7198,6.0795000000000003,0.19808000000000001,3.7069999999999999,4.29,5.0519999999999996,6.08,7.5279999999999996,9.6920000000000002,13.202 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,922,-0.72009999999999996,6.0793999999999997,0.19811999999999999,3.7069999999999999,4.29,5.0519999999999996,6.0789999999999997,7.5279999999999996,9.6929999999999996,13.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,923,-0.72040000000000004,6.0792000000000002,0.19814999999999999,3.706,4.29,5.0510000000000002,6.0789999999999997,7.5279999999999996,9.6940000000000008,13.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,924,-0.72060000000000002,6.0791000000000004,0.19819000000000001,3.706,4.29,5.0510000000000002,6.0789999999999997,7.5289999999999999,9.6950000000000003,13.212 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,925,-0.72089999999999999,6.0789999999999997,0.19822999999999999,3.706,4.2889999999999997,5.0510000000000002,6.0789999999999997,7.5289999999999999,9.6959999999999997,13.215999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,926,-0.72119999999999995,6.0788000000000002,0.19827,3.706,4.2889999999999997,5.0510000000000002,6.0789999999999997,7.5289999999999999,9.6980000000000004,13.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,927,-0.72150000000000003,6.0787000000000004,0.19830999999999999,3.7050000000000001,4.2889999999999997,5.05,6.0789999999999997,7.5289999999999999,9.6989999999999998,13.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,928,-0.7218,6.0785999999999998,0.19835,3.7050000000000001,4.2880000000000003,5.05,6.0789999999999997,7.53,9.6999999999999993,13.228 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,929,-0.72209999999999996,6.0784000000000002,0.19839000000000001,3.7050000000000001,4.2880000000000003,5.05,6.0780000000000003,7.53,9.7010000000000005,13.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,930,-0.72240000000000004,6.0782999999999996,0.19843,3.7050000000000001,4.2880000000000003,5.0490000000000004,6.0780000000000003,7.53,9.7029999999999994,13.236000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,931,-0.72260000000000002,6.0781999999999998,0.19847000000000001,3.7040000000000002,4.2880000000000003,5.0490000000000004,6.0780000000000003,7.53,9.7040000000000006,13.24 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,932,-0.72289999999999999,6.0781000000000001,0.19850999999999999,3.7040000000000002,4.2869999999999999,5.0490000000000004,6.0780000000000003,7.5309999999999997,9.7050000000000001,13.244 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,933,-0.72319999999999995,6.0778999999999996,0.19855,3.7040000000000002,4.2869999999999999,5.0490000000000004,6.0780000000000003,7.5309999999999997,9.7059999999999995,13.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,934,-0.72350000000000003,6.0777999999999999,0.19858999999999999,3.7029999999999998,4.2869999999999999,5.048,6.0780000000000003,7.5309999999999997,9.7070000000000007,13.250999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,935,-0.7238,6.0777000000000001,0.19863,3.7029999999999998,4.2859999999999996,5.048,6.0780000000000003,7.5309999999999997,9.7089999999999996,13.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,936,-0.72409999999999997,6.0776000000000003,0.19867000000000001,3.7029999999999998,4.2859999999999996,5.048,6.0780000000000003,7.532,9.7100000000000009,13.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,937,-0.72430000000000005,6.0773999999999999,0.19871,3.7029999999999998,4.2859999999999996,5.048,6.077,7.532,9.7110000000000003,13.263 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,938,-0.72460000000000002,6.0773000000000001,0.19875000000000001,3.702,4.2859999999999996,5.0469999999999997,6.077,7.532,9.7119999999999997,13.266999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,939,-0.72489999999999999,6.0772000000000004,0.19878999999999999,3.702,4.2850000000000001,5.0469999999999997,6.077,7.532,9.7140000000000004,13.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,940,-0.72519999999999996,6.0770999999999997,0.19883000000000001,3.702,4.2850000000000001,5.0469999999999997,6.077,7.5330000000000004,9.7149999999999999,13.275 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,941,-0.72550000000000003,6.0769000000000002,0.19886999999999999,3.702,4.2850000000000001,5.0469999999999997,6.077,7.5330000000000004,9.7159999999999993,13.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,942,-0.7258,6.0768000000000004,0.19891,3.7010000000000001,4.2839999999999998,5.0460000000000003,6.077,7.5330000000000004,9.7170000000000005,13.282999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,943,-0.72599999999999998,6.0766999999999998,0.19894999999999999,3.7010000000000001,4.2839999999999998,5.0460000000000003,6.077,7.5330000000000004,9.7189999999999994,13.287000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,944,-0.72629999999999995,6.0766,0.19899,3.7010000000000001,4.2839999999999998,5.0460000000000003,6.077,7.5339999999999998,9.7200000000000006,13.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,945,-0.72660000000000002,6.0765000000000002,0.19903999999999999,3.7,4.2839999999999998,5.0460000000000003,6.0759999999999996,7.5339999999999998,9.7210000000000001,13.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,946,-0.72689999999999999,6.0762999999999998,0.19908000000000001,3.7,4.2830000000000004,5.0449999999999999,6.0759999999999996,7.5339999999999998,9.7230000000000008,13.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,947,-0.72719999999999996,6.0762,0.19911999999999999,3.7,4.2830000000000004,5.0449999999999999,6.0759999999999996,7.5339999999999998,9.7240000000000002,13.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,948,-0.72740000000000005,6.0761000000000003,0.19916,3.7,4.2830000000000004,5.0449999999999999,6.0759999999999996,7.5350000000000001,9.7249999999999996,13.307 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,949,-0.72770000000000001,6.0759999999999996,0.19919999999999999,3.6989999999999998,4.282,5.0449999999999999,6.0759999999999996,7.5350000000000001,9.7260000000000009,13.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,950,-0.72799999999999998,6.0758999999999999,0.19924,3.6989999999999998,4.282,5.0439999999999996,6.0759999999999996,7.5350000000000001,9.7279999999999998,13.315 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,951,-0.72829999999999995,6.0758000000000001,0.19928000000000001,3.6989999999999998,4.282,5.0439999999999996,6.0759999999999996,7.5359999999999996,9.7289999999999992,13.319000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,952,-0.72860000000000003,6.0757000000000003,0.19932,3.6989999999999998,4.282,5.0439999999999996,6.0759999999999996,7.5359999999999996,9.73,13.324 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,953,-0.7288,6.0754999999999999,0.19936000000000001,3.698,4.2809999999999997,5.0439999999999996,6.0759999999999996,7.5359999999999996,9.7309999999999999,13.327 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,954,-0.72909999999999997,6.0754000000000001,0.19939999999999999,3.698,4.2809999999999997,5.0430000000000001,6.0750000000000002,7.5359999999999996,9.7319999999999993,13.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,955,-0.72940000000000005,6.0753000000000004,0.19944000000000001,3.698,4.2809999999999997,5.0430000000000001,6.0750000000000002,7.5369999999999999,9.734,13.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,956,-0.72970000000000002,6.0751999999999997,0.19947999999999999,3.698,4.28,5.0430000000000001,6.0750000000000002,7.5369999999999999,9.7349999999999994,13.339 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,957,-0.73,6.0750999999999999,0.19952,3.6970000000000001,4.28,5.0430000000000001,6.0750000000000002,7.5369999999999999,9.7360000000000007,13.343 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,958,-0.73019999999999996,6.0750000000000002,0.19955999999999999,3.6970000000000001,4.28,5.0419999999999998,6.0750000000000002,7.5369999999999999,9.7379999999999995,13.347 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,959,-0.73050000000000004,6.0749000000000004,0.1996,3.6970000000000001,4.28,5.0419999999999998,6.0750000000000002,7.5380000000000003,9.7390000000000008,13.351000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,960,-0.73080000000000001,6.0747999999999998,0.19964000000000001,3.6960000000000002,4.2789999999999999,5.0419999999999998,6.0750000000000002,7.5380000000000003,9.74,13.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,961,-0.73109999999999997,6.0747,0.19968,3.6960000000000002,4.2789999999999999,5.0419999999999998,6.0750000000000002,7.5380000000000003,9.7420000000000009,13.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,962,-0.73129999999999995,6.0746000000000002,0.19972000000000001,3.6960000000000002,4.2789999999999999,5.0410000000000004,6.0750000000000002,7.5380000000000003,9.7430000000000003,13.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,963,-0.73160000000000003,6.0743999999999998,0.19975999999999999,3.6960000000000002,4.2779999999999996,5.0410000000000004,6.0739999999999998,7.5389999999999997,9.7439999999999998,13.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,964,-0.7319,6.0743,0.19980000000000001,3.6949999999999998,4.2779999999999996,5.0410000000000004,6.0739999999999998,7.5389999999999997,9.7449999999999992,13.371 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,965,-0.73219999999999996,6.0742000000000003,0.19983999999999999,3.6949999999999998,4.2779999999999996,5.0410000000000004,6.0739999999999998,7.5389999999999997,9.7460000000000004,13.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,966,-0.73250000000000004,6.0740999999999996,0.19988,3.6949999999999998,4.2779999999999996,5.04,6.0739999999999998,7.5389999999999997,9.7479999999999993,13.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,967,-0.73270000000000002,6.0739999999999998,0.19991999999999999,3.6949999999999998,4.2770000000000001,5.04,6.0739999999999998,7.54,9.7490000000000006,13.382999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,968,-0.73299999999999998,6.0739000000000001,0.19996,3.694,4.2770000000000001,5.04,6.0739999999999998,7.54,9.75,13.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,969,-0.73329999999999995,6.0738000000000003,0.2,3.694,4.2770000000000001,5.04,6.0739999999999998,7.54,9.7520000000000007,13.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,970,-0.73360000000000003,6.0736999999999997,0.20004,3.694,4.2770000000000001,5.04,6.0739999999999998,7.5410000000000004,9.7530000000000001,13.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,971,-0.73380000000000001,6.0735999999999999,0.20008999999999999,3.694,4.2759999999999998,5.0389999999999997,6.0739999999999998,7.5410000000000004,9.7539999999999996,13.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,972,-0.73409999999999997,6.0735000000000001,0.20013,3.6930000000000001,4.2759999999999998,5.0389999999999997,6.0739999999999998,7.5410000000000004,9.7560000000000002,13.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,973,-0.73440000000000005,6.0734000000000004,0.20016999999999999,3.6930000000000001,4.2759999999999998,5.0389999999999997,6.0730000000000004,7.5419999999999998,9.7569999999999997,13.409000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,974,-0.73470000000000002,6.0732999999999997,0.20021,3.6930000000000001,4.2750000000000004,5.0389999999999997,6.0730000000000004,7.5419999999999998,9.7579999999999991,13.413 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,975,-0.7349,6.0731999999999999,0.20025000000000001,3.6920000000000002,4.2750000000000004,5.0380000000000003,6.0730000000000004,7.5419999999999998,9.76,13.417 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,976,-0.73519999999999996,6.0731000000000002,0.20029,3.6920000000000002,4.2750000000000004,5.0380000000000003,6.0730000000000004,7.5419999999999998,9.7609999999999992,13.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,977,-0.73550000000000004,6.0730000000000004,0.20033000000000001,3.6920000000000002,4.2750000000000004,5.0380000000000003,6.0730000000000004,7.5430000000000001,9.7620000000000005,13.425000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,978,-0.73570000000000002,6.0728999999999997,0.20036999999999999,3.6920000000000002,4.274,5.0380000000000003,6.0730000000000004,7.5430000000000001,9.7629999999999999,13.429 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,979,-0.73599999999999999,6.0728,0.20041,3.6909999999999998,4.274,5.0369999999999999,6.0730000000000004,7.5430000000000001,9.7650000000000006,13.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,980,-0.73629999999999995,6.0727000000000002,0.20044999999999999,3.6909999999999998,4.274,5.0369999999999999,6.0730000000000004,7.5430000000000001,9.766,13.436999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,981,-0.73660000000000003,6.0726000000000004,0.20049,3.6909999999999998,4.274,5.0369999999999999,6.0730000000000004,7.5439999999999996,9.7669999999999995,13.441000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,982,-0.73680000000000001,6.0724999999999998,0.20053000000000001,3.6909999999999998,4.2729999999999997,5.0369999999999999,6.0720000000000001,7.5439999999999996,9.7680000000000007,13.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,983,-0.73709999999999998,6.0724,0.20057,3.69,4.2729999999999997,5.0359999999999996,6.0720000000000001,7.5439999999999996,9.77,13.449 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,984,-0.73740000000000006,6.0723000000000003,0.20061000000000001,3.69,4.2729999999999997,5.0359999999999996,6.0720000000000001,7.5449999999999999,9.7710000000000008,13.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,985,-0.73760000000000003,6.0721999999999996,0.20065,3.69,4.2729999999999997,5.0359999999999996,6.0720000000000001,7.5449999999999999,9.7720000000000002,13.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,986,-0.7379,6.0720999999999998,0.20069999999999999,3.69,4.2720000000000002,5.0359999999999996,6.0720000000000001,7.5449999999999999,9.7739999999999991,13.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,987,-0.73819999999999997,6.0720999999999998,0.20074,3.6890000000000001,4.2720000000000002,5.0359999999999996,6.0720000000000001,7.5460000000000003,9.7750000000000004,13.467000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,988,-0.73850000000000005,6.0720000000000001,0.20077999999999999,3.6890000000000001,4.2720000000000002,5.0350000000000001,6.0720000000000001,7.5460000000000003,9.7769999999999992,13.471 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,989,-0.73870000000000002,6.0719000000000003,0.20082,3.6890000000000001,4.2709999999999999,5.0350000000000001,6.0720000000000001,7.5460000000000003,9.7780000000000005,13.475 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,990,-0.73899999999999999,6.0717999999999996,0.20086000000000001,3.6890000000000001,4.2709999999999999,5.0350000000000001,6.0720000000000001,7.5469999999999997,9.7789999999999999,13.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,991,-0.73929999999999996,6.0716999999999999,0.2009,3.6880000000000002,4.2709999999999999,5.0350000000000001,6.0720000000000001,7.5469999999999997,9.7810000000000006,13.483000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,992,-0.73950000000000005,6.0716000000000001,0.20094000000000001,3.6880000000000002,4.2709999999999999,5.0339999999999998,6.0720000000000001,7.5469999999999997,9.782,13.487 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,993,-0.73980000000000001,6.0715000000000003,0.20097999999999999,3.6880000000000002,4.2699999999999996,5.0339999999999998,6.0720000000000001,7.5469999999999997,9.7829999999999995,13.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,994,-0.74009999999999998,6.0713999999999997,0.20102,3.6880000000000002,4.2699999999999996,5.0339999999999998,6.0709999999999997,7.548,9.7840000000000007,13.496 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,995,-0.74039999999999995,6.0712999999999999,0.20105999999999999,3.6869999999999998,4.2699999999999996,5.0339999999999998,6.0709999999999997,7.548,9.7859999999999996,13.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,996,-0.74060000000000004,6.0712000000000002,0.2011,3.6869999999999998,4.2699999999999996,5.0330000000000004,6.0709999999999997,7.548,9.7870000000000008,13.504 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,997,-0.7409,6.0712000000000002,0.20114000000000001,3.6869999999999998,4.2690000000000001,5.0330000000000004,6.0709999999999997,7.5490000000000004,9.7880000000000003,13.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,998,-0.74119999999999997,6.0711000000000004,0.20119000000000001,3.6869999999999998,4.2690000000000001,5.0330000000000004,6.0709999999999997,7.5490000000000004,9.7899999999999991,13.513 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,999,-0.74139999999999995,6.0709999999999997,0.20122999999999999,3.6859999999999999,4.2690000000000001,5.0330000000000004,6.0709999999999997,7.5490000000000004,9.7910000000000004,13.516999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1000,-0.74170000000000003,6.0709,0.20127,3.6859999999999999,4.2690000000000001,5.032,6.0709999999999997,7.55,9.7929999999999993,13.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1001,-0.74199999999999999,6.0708000000000002,0.20130999999999999,3.6859999999999999,4.2679999999999998,5.032,6.0709999999999997,7.55,9.7940000000000005,13.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1002,-0.74219999999999997,6.0707000000000004,0.20135,3.6850000000000001,4.2679999999999998,5.032,6.0709999999999997,7.55,9.7949999999999999,13.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1003,-0.74250000000000005,6.0705999999999998,0.20139000000000001,3.6850000000000001,4.2679999999999998,5.032,6.0709999999999997,7.55,9.7970000000000006,13.534000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1004,-0.74280000000000002,6.0705999999999998,0.20143,3.6850000000000001,4.2679999999999998,5.032,6.0709999999999997,7.5510000000000002,9.798,13.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1005,-0.74299999999999999,6.0705,0.20147000000000001,3.6850000000000001,4.2670000000000003,5.0309999999999997,6.07,7.5510000000000002,9.7989999999999995,13.542 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1006,-0.74329999999999996,6.0704000000000002,0.20150999999999999,3.6850000000000001,4.2670000000000003,5.0309999999999997,6.07,7.5510000000000002,9.8010000000000002,13.547000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1007,-0.74360000000000004,6.0702999999999996,0.20155000000000001,3.6840000000000002,4.2670000000000003,5.0309999999999997,6.07,7.5519999999999996,9.8019999999999996,13.551 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1008,-0.74380000000000002,6.0701999999999998,0.20158999999999999,3.6840000000000002,4.266,5.0309999999999997,6.07,7.5519999999999996,9.8030000000000008,13.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1009,-0.74409999999999998,6.0701999999999998,0.20164000000000001,3.6840000000000002,4.266,5.03,6.07,7.5519999999999996,9.8049999999999997,13.56 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1010,-0.74439999999999995,6.0701000000000001,0.20168,3.6840000000000002,4.266,5.03,6.07,7.5529999999999999,9.8059999999999992,13.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1011,-0.74460000000000004,6.07,0.20172000000000001,3.6829999999999998,4.266,5.03,6.07,7.5529999999999999,9.8070000000000004,13.568 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1012,-0.74490000000000001,6.0698999999999996,0.20175999999999999,3.6829999999999998,4.2649999999999997,5.03,6.07,7.5529999999999999,9.8089999999999993,13.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1013,-0.74519999999999997,6.0697999999999999,0.20180000000000001,3.6829999999999998,4.2649999999999997,5.03,6.07,7.5540000000000003,9.81,13.577 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1014,-0.74539999999999995,6.0697999999999999,0.20183999999999999,3.6829999999999998,4.2649999999999997,5.0289999999999999,6.07,7.5540000000000003,9.8119999999999994,13.581 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1015,-0.74570000000000003,6.0697000000000001,0.20188,3.6819999999999999,4.2649999999999997,5.0289999999999999,6.07,7.5540000000000003,9.8130000000000006,13.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1016,-0.74590000000000001,6.0696000000000003,0.20191999999999999,3.6819999999999999,4.2640000000000002,5.0289999999999999,6.07,7.5540000000000003,9.8140000000000001,13.589 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1017,-0.74619999999999997,6.0694999999999997,0.20196,3.6819999999999999,4.2640000000000002,5.0289999999999999,6.07,7.5549999999999997,9.8149999999999995,13.593999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1018,-0.74650000000000005,6.0694999999999997,0.20200000000000001,3.6819999999999999,4.2640000000000002,5.0289999999999999,6.07,7.5549999999999997,9.8170000000000002,13.598000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1019,-0.74670000000000003,6.0693999999999999,0.20205000000000001,3.681,4.2640000000000002,5.0279999999999996,6.069,7.556,9.8179999999999996,13.603 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1020,-0.747,6.0693000000000001,0.20208999999999999,3.681,4.2629999999999999,5.0279999999999996,6.069,7.556,9.82,13.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1021,-0.74729999999999996,6.0692000000000004,0.20213,3.681,4.2629999999999999,5.0279999999999996,6.069,7.556,9.8209999999999997,13.612 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1022,-0.74750000000000005,6.0692000000000004,0.20216999999999999,3.681,4.2629999999999999,5.0279999999999996,6.069,7.5570000000000004,9.8230000000000004,13.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1023,-0.74780000000000002,6.0690999999999997,0.20221,3.68,4.2629999999999999,5.0270000000000001,6.069,7.5570000000000004,9.8239999999999998,13.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1024,-0.74809999999999999,6.069,0.20225000000000001,3.68,4.2619999999999996,5.0270000000000001,6.069,7.5570000000000004,9.8249999999999993,13.625 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1025,-0.74829999999999997,6.0689000000000002,0.20229,3.68,4.2619999999999996,5.0270000000000001,6.069,7.5570000000000004,9.8260000000000005,13.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1026,-0.74860000000000004,6.0689000000000002,0.20233000000000001,3.68,4.2619999999999996,5.0270000000000001,6.069,7.5579999999999998,9.8279999999999994,13.632999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1027,-0.74880000000000002,6.0688000000000004,0.20236999999999999,3.6789999999999998,4.2619999999999996,5.0270000000000001,6.069,7.5579999999999998,9.8290000000000006,13.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1028,-0.74909999999999999,6.0686999999999998,0.20241999999999999,3.6789999999999998,4.2610000000000001,5.0259999999999998,6.069,7.5579999999999998,9.8309999999999995,13.641999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1029,-0.74939999999999996,6.0686999999999998,0.20246,3.6789999999999998,4.2610000000000001,5.0259999999999998,6.069,7.5590000000000002,9.8320000000000007,13.647 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1030,-0.74960000000000004,6.0686,0.20250000000000001,3.6779999999999999,4.2610000000000001,5.0259999999999998,6.069,7.5590000000000002,9.8339999999999996,13.651 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1031,-0.74990000000000001,6.0685000000000002,0.20254,3.6779999999999999,4.26,5.0259999999999998,6.0679999999999996,7.5590000000000002,9.8350000000000009,13.654999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1032,-0.75009999999999999,6.0685000000000002,0.20258000000000001,3.6779999999999999,4.26,5.0250000000000004,6.0679999999999996,7.56,9.8360000000000003,13.659000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1033,-0.75039999999999996,6.0683999999999996,0.20261999999999999,3.6779999999999999,4.26,5.0250000000000004,6.0679999999999996,7.56,9.8379999999999992,13.664 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1034,-0.75070000000000003,6.0682999999999998,0.20266000000000001,3.6779999999999999,4.26,5.0250000000000004,6.0679999999999996,7.56,9.8390000000000004,13.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1035,-0.75090000000000001,6.0682999999999998,0.20269999999999999,3.677,4.26,5.0250000000000004,6.0679999999999996,7.5609999999999999,9.84,13.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1036,-0.75119999999999998,6.0682,0.20274,3.677,4.2590000000000003,5.0250000000000004,6.0679999999999996,7.5609999999999999,9.8420000000000005,13.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1037,-0.75139999999999996,6.0681000000000003,0.20279,3.677,4.2590000000000003,5.024,6.0679999999999996,7.5609999999999999,9.843,13.680999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1038,-0.75170000000000003,6.0681000000000003,0.20283000000000001,3.677,4.2590000000000003,5.024,6.0679999999999996,7.5620000000000003,9.8450000000000006,13.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1039,-0.752,6.0679999999999996,0.20286999999999999,3.6760000000000002,4.258,5.024,6.0679999999999996,7.5620000000000003,9.8460000000000001,13.691000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1040,-0.75219999999999998,6.0678999999999998,0.20291000000000001,3.6760000000000002,4.258,5.024,6.0679999999999996,7.5620000000000003,9.8469999999999995,13.695 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1041,-0.75249999999999995,6.0678999999999998,0.20294999999999999,3.6760000000000002,4.258,5.024,6.0679999999999996,7.5629999999999997,9.8490000000000002,13.699 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1042,-0.75270000000000004,6.0678000000000001,0.20299,3.6760000000000002,4.258,5.0229999999999997,6.0679999999999996,7.5629999999999997,9.85,13.702999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1043,-0.753,6.0678000000000001,0.20302999999999999,3.6749999999999998,4.258,5.0229999999999997,6.0679999999999996,7.5640000000000001,9.8520000000000003,13.708 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1044,-0.75329999999999997,6.0677000000000003,0.20307,3.6749999999999998,4.2569999999999997,5.0229999999999997,6.0679999999999996,7.5640000000000001,9.8529999999999998,13.712 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1045,-0.75349999999999995,6.0675999999999997,0.20311999999999999,3.6749999999999998,4.2569999999999997,5.0229999999999997,6.0679999999999996,7.5640000000000001,9.8550000000000004,13.717000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1046,-0.75380000000000003,6.0675999999999997,0.20316000000000001,3.6749999999999998,4.2569999999999997,5.0229999999999997,6.0679999999999996,7.5650000000000004,9.8559999999999999,13.722 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1047,-0.754,6.0674999999999999,0.20319999999999999,3.6739999999999999,4.2560000000000002,5.0220000000000002,6.0679999999999996,7.5650000000000004,9.8569999999999993,13.726000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1048,-0.75429999999999997,6.0674999999999999,0.20324,3.6739999999999999,4.2560000000000002,5.0220000000000002,6.0679999999999996,7.5650000000000004,9.859,13.731 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1049,-0.75460000000000005,6.0674000000000001,0.20327999999999999,3.6739999999999999,4.2560000000000002,5.0220000000000002,6.0670000000000002,7.5659999999999998,9.86,13.734999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1050,-0.75480000000000003,6.0673000000000004,0.20332,3.6739999999999999,4.2560000000000002,5.0220000000000002,6.0670000000000002,7.5659999999999998,9.8620000000000001,13.739000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1051,-0.75509999999999999,6.0673000000000004,0.20336000000000001,3.673,4.2560000000000002,5.0220000000000002,6.0670000000000002,7.5659999999999998,9.8629999999999995,13.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1052,-0.75529999999999997,6.0671999999999997,0.2034,3.673,4.2549999999999999,5.0209999999999999,6.0670000000000002,7.5670000000000002,9.8640000000000008,13.747999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1053,-0.75560000000000005,6.0671999999999997,0.20344999999999999,3.673,4.2549999999999999,5.0209999999999999,6.0670000000000002,7.5670000000000002,9.8659999999999997,13.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1054,-0.75580000000000003,6.0670999999999999,0.20349,3.673,4.2549999999999999,5.0209999999999999,6.0670000000000002,7.5670000000000002,9.8670000000000009,13.757 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1055,-0.75609999999999999,6.0670999999999999,0.20352999999999999,3.6720000000000002,4.2549999999999999,5.0209999999999999,6.0670000000000002,7.5679999999999996,9.8689999999999998,13.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1056,-0.75629999999999997,6.0670000000000002,0.20357,3.6720000000000002,4.2539999999999996,5.0199999999999996,6.0670000000000002,7.5679999999999996,9.8699999999999992,13.766 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1057,-0.75660000000000005,6.0669000000000004,0.20361000000000001,3.6720000000000002,4.2539999999999996,5.0199999999999996,6.0670000000000002,7.5679999999999996,9.8719999999999999,13.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1058,-0.75690000000000002,6.0669000000000004,0.20365,3.6720000000000002,4.2539999999999996,5.0199999999999996,6.0670000000000002,7.569,9.8729999999999993,13.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1059,-0.7571,6.0667999999999997,0.20369000000000001,3.6709999999999998,4.2539999999999996,5.0199999999999996,6.0670000000000002,7.569,9.8740000000000006,13.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1060,-0.75739999999999996,6.0667999999999997,0.20372999999999999,3.6709999999999998,4.2530000000000001,5.0199999999999996,6.0670000000000002,7.569,9.8759999999999994,13.784000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1061,-0.75760000000000005,6.0667,0.20377999999999999,3.6709999999999998,4.2530000000000001,5.0190000000000001,6.0670000000000002,7.57,9.8770000000000007,13.789 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1062,-0.75790000000000002,6.0667,0.20382,3.6709999999999998,4.2530000000000001,5.0190000000000001,6.0670000000000002,7.57,9.8789999999999996,13.794 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1063,-0.7581,6.0666000000000002,0.20386000000000001,3.67,4.2530000000000001,5.0190000000000001,6.0670000000000002,7.57,9.8800000000000008,13.798 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1064,-0.75839999999999996,6.0666000000000002,0.2039,3.67,4.2519999999999998,5.0190000000000001,6.0670000000000002,7.5709999999999997,9.8819999999999997,13.803000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1065,-0.75860000000000005,6.0664999999999996,0.20394000000000001,3.67,4.2519999999999998,5.0190000000000001,6.0659999999999998,7.5709999999999997,9.8829999999999991,13.807 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1066,-0.75890000000000002,6.0664999999999996,0.20397999999999999,3.67,4.2519999999999998,5.0179999999999998,6.0659999999999998,7.5720000000000001,9.8849999999999998,13.811999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1067,-0.7591,6.0663999999999998,0.20402000000000001,3.67,4.2519999999999998,5.0179999999999998,6.0659999999999998,7.5720000000000001,9.8859999999999992,13.816000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1068,-0.75939999999999996,6.0663999999999998,0.20405999999999999,3.669,4.2510000000000003,5.0179999999999998,6.0659999999999998,7.5720000000000001,9.8870000000000005,13.821 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1069,-0.75970000000000004,6.0663,0.20411000000000001,3.669,4.2510000000000003,5.0179999999999998,6.0659999999999998,7.5730000000000004,9.8889999999999993,13.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1070,-0.75990000000000002,6.0663,0.20415,3.669,4.2510000000000003,5.0179999999999998,6.0659999999999998,7.5730000000000004,9.89,13.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1071,-0.76019999999999999,6.0662000000000003,0.20419000000000001,3.669,4.2510000000000003,5.0170000000000003,6.0659999999999998,7.5730000000000004,9.8919999999999995,13.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1072,-0.76039999999999996,6.0662000000000003,0.20422999999999999,3.6680000000000001,4.25,5.0170000000000003,6.0659999999999998,7.5739999999999998,9.8930000000000007,13.839 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1073,-0.76070000000000004,6.0660999999999996,0.20427000000000001,3.6680000000000001,4.25,5.0170000000000003,6.0659999999999998,7.5739999999999998,9.8949999999999996,13.843999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1074,-0.76090000000000002,6.0660999999999996,0.20430999999999999,3.6680000000000001,4.25,5.0170000000000003,6.0659999999999998,7.5739999999999998,9.8960000000000008,13.848000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1075,-0.76119999999999999,6.0659999999999998,0.20435,3.6680000000000001,4.25,5.0170000000000003,6.0659999999999998,7.5750000000000002,9.8970000000000002,13.853 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1076,-0.76139999999999997,6.0659999999999998,0.2044,3.6669999999999998,4.2489999999999997,5.016,6.0659999999999998,7.5750000000000002,9.8989999999999991,13.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1077,-0.76170000000000004,6.0659999999999998,0.20444000000000001,3.6669999999999998,4.2489999999999997,5.016,6.0659999999999998,7.5759999999999996,9.9009999999999998,13.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1078,-0.76190000000000002,6.0659000000000001,0.20448,3.6669999999999998,4.2489999999999997,5.016,6.0659999999999998,7.5759999999999996,9.9019999999999992,13.867000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1079,-0.76219999999999999,6.0659000000000001,0.20452000000000001,3.6669999999999998,4.2489999999999997,5.016,6.0659999999999998,7.5759999999999996,9.9030000000000005,13.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1080,-0.76239999999999997,6.0658000000000003,0.20455999999999999,3.6669999999999998,4.2489999999999997,5.016,6.0659999999999998,7.577,9.9049999999999994,13.875999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1081,-0.76270000000000004,6.0658000000000003,0.2046,3.6659999999999999,4.2480000000000002,5.016,6.0659999999999998,7.577,9.9060000000000006,13.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1082,-0.76290000000000002,6.0656999999999996,0.20463999999999999,3.6659999999999999,4.2480000000000002,5.0149999999999997,6.0659999999999998,7.577,9.9079999999999995,13.885 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1083,-0.76319999999999999,6.0656999999999996,0.20469000000000001,3.6659999999999999,4.2480000000000002,5.0149999999999997,6.0659999999999998,7.5780000000000003,9.9090000000000007,13.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1084,-0.76339999999999997,6.0655999999999999,0.20473,3.6659999999999999,4.2480000000000002,5.0149999999999997,6.0659999999999998,7.5780000000000003,9.9109999999999996,13.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1085,-0.76370000000000005,6.0655999999999999,0.20477000000000001,3.665,4.2469999999999999,5.0149999999999997,6.0659999999999998,7.5780000000000003,9.9120000000000008,13.898999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1086,-0.76390000000000002,6.0655999999999999,0.20480999999999999,3.665,4.2469999999999999,5.0149999999999997,6.0659999999999998,7.5789999999999997,9.9139999999999997,13.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1087,-0.76419999999999999,6.0655000000000001,0.20485,3.665,4.2469999999999999,5.0140000000000002,6.0659999999999998,7.5789999999999997,9.9149999999999991,13.909000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1088,-0.76439999999999997,6.0655000000000001,0.20488999999999999,3.665,4.2469999999999999,5.0140000000000002,6.0659999999999998,7.58,9.9160000000000004,13.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1089,-0.76470000000000005,6.0654000000000003,0.20493,3.6640000000000001,4.2460000000000004,5.0140000000000002,6.0650000000000004,7.58,9.9179999999999993,13.917999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1090,-0.76490000000000002,6.0654000000000003,0.20497000000000001,3.6640000000000001,4.2460000000000004,5.0140000000000002,6.0650000000000004,7.58,9.9190000000000005,13.922000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1091,-0.76519999999999999,6.0654000000000003,0.20502000000000001,3.6640000000000001,4.2460000000000004,5.0140000000000002,6.0650000000000004,7.5810000000000004,9.9209999999999994,13.928000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1092,-0.76539999999999997,6.0652999999999997,0.20505999999999999,3.6640000000000001,4.2460000000000004,5.0129999999999999,6.0650000000000004,7.5810000000000004,9.9220000000000006,13.932 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1093,-0.76570000000000005,6.0652999999999997,0.2051,3.6640000000000001,4.2450000000000001,5.0129999999999999,6.0650000000000004,7.5810000000000004,9.9239999999999995,13.936999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1094,-0.76590000000000003,6.0652999999999997,0.20513999999999999,3.6629999999999998,4.2450000000000001,5.0129999999999999,6.0650000000000004,7.5819999999999999,9.9250000000000007,13.941000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1095,-0.76619999999999999,6.0651999999999999,0.20518,3.6629999999999998,4.2450000000000001,5.0129999999999999,6.0650000000000004,7.5819999999999999,9.9269999999999996,13.946 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1096,-0.76639999999999997,6.0651999999999999,0.20522000000000001,3.6629999999999998,4.2450000000000001,5.0129999999999999,6.0650000000000004,7.5830000000000002,9.9280000000000008,13.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1097,-0.76670000000000005,6.0651000000000002,0.20526,3.6629999999999998,4.2450000000000001,5.0119999999999996,6.0650000000000004,7.5830000000000002,9.93,13.955 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1098,-0.76690000000000003,6.0651000000000002,0.20530999999999999,3.6619999999999999,4.2439999999999998,5.0119999999999996,6.0650000000000004,7.5830000000000002,9.9309999999999992,13.96 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1099,-0.76719999999999999,6.0651000000000002,0.20535,3.6619999999999999,4.2439999999999998,5.0119999999999996,6.0650000000000004,7.5839999999999996,9.9329999999999998,13.965 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1100,-0.76739999999999997,6.0650000000000004,0.20538999999999999,3.6619999999999999,4.2439999999999998,5.0119999999999996,6.0650000000000004,7.5839999999999996,9.9339999999999993,13.968999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1101,-0.76759999999999995,6.0650000000000004,0.20543,3.6619999999999999,4.2439999999999998,5.0119999999999996,6.0650000000000004,7.5839999999999996,9.9359999999999999,13.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1102,-0.76790000000000003,6.0650000000000004,0.20547000000000001,3.661,4.2430000000000003,5.0119999999999996,6.0650000000000004,7.585,9.9369999999999994,13.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1103,-0.7681,6.0648999999999997,0.20551,3.661,4.2430000000000003,5.0110000000000001,6.0650000000000004,7.585,9.9390000000000001,13.983000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1104,-0.76839999999999997,6.0648999999999997,0.20555000000000001,3.661,4.2430000000000003,5.0110000000000001,6.0650000000000004,7.5860000000000003,9.94,13.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1105,-0.76859999999999995,6.0648999999999997,0.2056,3.661,4.2430000000000003,5.0110000000000001,6.0650000000000004,7.5860000000000003,9.9420000000000002,13.993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1106,-0.76890000000000003,6.0648,0.20563999999999999,3.661,4.242,5.0110000000000001,6.0650000000000004,7.5860000000000003,9.9429999999999996,13.997999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1107,-0.76910000000000001,6.0648,0.20568,3.66,4.242,5.0110000000000001,6.0650000000000004,7.5869999999999997,9.9450000000000003,14.002000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1108,-0.76939999999999997,6.0648,0.20571999999999999,3.66,4.242,5.01,6.0650000000000004,7.5869999999999997,9.9459999999999997,14.007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1109,-0.76959999999999995,6.0647000000000002,0.20576,3.66,4.242,5.01,6.0650000000000004,7.5869999999999997,9.9480000000000004,14.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1110,-0.76990000000000003,6.0647000000000002,0.20580000000000001,3.66,4.242,5.01,6.0650000000000004,7.5880000000000001,9.9489999999999998,14.016999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1111,-0.77010000000000001,6.0647000000000002,0.20584,3.6589999999999998,4.2409999999999997,5.01,6.0650000000000004,7.5880000000000001,9.9510000000000005,14.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1112,-0.77039999999999997,6.0647000000000002,0.20588999999999999,3.6589999999999998,4.2409999999999997,5.01,6.0650000000000004,7.5890000000000004,9.952,14.026999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1113,-0.77059999999999995,6.0646000000000004,0.20593,3.6589999999999998,4.2409999999999997,5.0090000000000003,6.0650000000000004,7.5890000000000004,9.9540000000000006,14.031000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1114,-0.77080000000000004,6.0646000000000004,0.20596999999999999,3.6589999999999998,4.2409999999999997,5.0090000000000003,6.0650000000000004,7.5890000000000004,9.9550000000000001,14.036 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1115,-0.77110000000000001,6.0646000000000004,0.20601,3.6589999999999998,4.24,5.0090000000000003,6.0650000000000004,7.59,9.9570000000000007,14.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1116,-0.77129999999999999,6.0644999999999998,0.20605000000000001,3.6579999999999999,4.24,5.0090000000000003,6.0640000000000001,7.59,9.9580000000000002,14.045 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1117,-0.77159999999999995,6.0644999999999998,0.20609,3.6579999999999999,4.24,5.0090000000000003,6.0640000000000001,7.5910000000000002,9.9600000000000009,14.05 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1118,-0.77180000000000004,6.0644999999999998,0.20613000000000001,3.6579999999999999,4.24,5.0090000000000003,6.0640000000000001,7.5910000000000002,9.9610000000000003,14.055 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1119,-0.77210000000000001,6.0644999999999998,0.20618,3.6579999999999999,4.24,5.008,6.0640000000000001,7.5910000000000002,9.9629999999999992,14.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1120,-0.77229999999999999,6.0644,0.20621999999999999,3.657,4.2389999999999999,5.008,6.0640000000000001,7.5919999999999996,9.9640000000000004,14.065 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1121,-0.77249999999999996,6.0644,0.20626,3.657,4.2389999999999999,5.008,6.0640000000000001,7.5919999999999996,9.9659999999999993,14.069000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1122,-0.77280000000000004,6.0644,0.20630000000000001,3.657,4.2389999999999999,5.008,6.0640000000000001,7.593,9.9670000000000005,14.074 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1123,-0.77300000000000002,6.0643000000000002,0.20634,3.657,4.2389999999999999,5.008,6.0640000000000001,7.593,9.9689999999999994,14.079000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1124,-0.77329999999999999,6.0643000000000002,0.20638000000000001,3.657,4.2380000000000004,5.008,6.0640000000000001,7.593,9.9700000000000006,14.084 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1125,-0.77349999999999997,6.0643000000000002,0.20641999999999999,3.6560000000000001,4.2380000000000004,5.0069999999999997,6.0640000000000001,7.5940000000000003,9.9719999999999995,14.087999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1126,-0.77380000000000004,6.0643000000000002,0.20646999999999999,3.6560000000000001,4.2380000000000004,5.0069999999999997,6.0640000000000001,7.5940000000000003,9.9740000000000002,14.093999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1127,-0.77400000000000002,6.0641999999999996,0.20651,3.6560000000000001,4.2380000000000004,5.0069999999999997,6.0640000000000001,7.5940000000000003,9.9749999999999996,14.098000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1128,-0.7742,6.0641999999999996,0.20655000000000001,3.6560000000000001,4.2370000000000001,5.0069999999999997,6.0640000000000001,7.5949999999999998,9.9760000000000009,14.103 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1129,-0.77449999999999997,6.0641999999999996,0.20659,3.6549999999999998,4.2370000000000001,5.0069999999999997,6.0640000000000001,7.5949999999999998,9.9779999999999998,14.108000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1130,-0.77470000000000006,6.0641999999999996,0.20663000000000001,3.6549999999999998,4.2370000000000001,5.0060000000000002,6.0640000000000001,7.5960000000000001,9.9789999999999992,14.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1131,-0.77500000000000002,6.0641999999999996,0.20666999999999999,3.6549999999999998,4.2370000000000001,5.0060000000000002,6.0640000000000001,7.5960000000000001,9.9809999999999999,14.118 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1132,-0.7752,6.0640999999999998,0.20671,3.6549999999999998,4.2370000000000001,5.0060000000000002,6.0640000000000001,7.5960000000000001,9.9819999999999993,14.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1133,-0.77539999999999998,6.0640999999999998,0.20676,3.6539999999999999,4.2359999999999998,5.0060000000000002,6.0640000000000001,7.5970000000000004,9.984,14.127000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1134,-0.77569999999999995,6.0640999999999998,0.20680000000000001,3.6539999999999999,4.2359999999999998,5.0060000000000002,6.0640000000000001,7.5970000000000004,9.9860000000000007,14.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1135,-0.77590000000000003,6.0640999999999998,0.20684,3.6539999999999999,4.2359999999999998,5.0060000000000002,6.0640000000000001,7.5979999999999999,9.9870000000000001,14.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1136,-0.7762,6.0640000000000001,0.20688000000000001,3.6539999999999999,4.2359999999999998,5.0049999999999999,6.0640000000000001,7.5979999999999999,9.9879999999999995,14.141999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1137,-0.77639999999999998,6.0640000000000001,0.20691999999999999,3.6539999999999999,4.2359999999999998,5.0049999999999999,6.0640000000000001,7.5979999999999999,9.99,14.147 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1138,-0.77669999999999995,6.0640000000000001,0.20696000000000001,3.653,4.2350000000000003,5.0049999999999999,6.0640000000000001,7.5990000000000002,9.9920000000000009,14.151999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1139,-0.77690000000000003,6.0640000000000001,0.20699999999999999,3.653,4.2350000000000003,5.0049999999999999,6.0640000000000001,7.5990000000000002,9.9930000000000003,14.156000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1140,-0.77710000000000001,6.0640000000000001,0.20705000000000001,3.653,4.2350000000000003,5.0049999999999999,6.0640000000000001,7.6,9.9949999999999992,14.162000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1141,-0.77739999999999998,6.0639000000000003,0.20709,3.653,4.2350000000000003,5.0039999999999996,6.0640000000000001,7.6,9.9960000000000004,14.167 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1142,-0.77759999999999996,6.0639000000000003,0.20713000000000001,3.653,4.234,5.0039999999999996,6.0640000000000001,7.6,9.9979999999999993,14.170999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1143,-0.77780000000000005,6.0639000000000003,0.20716999999999999,3.6520000000000001,4.234,5.0039999999999996,6.0640000000000001,7.601,9.9990000000000006,14.176 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1144,-0.77810000000000001,6.0639000000000003,0.20721000000000001,3.6520000000000001,4.234,5.0039999999999996,6.0640000000000001,7.601,10.000999999999999,14.180999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1145,-0.77829999999999999,6.0639000000000003,0.20724999999999999,3.6520000000000001,4.234,5.0039999999999996,6.0640000000000001,7.6020000000000003,10.002000000000001,14.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1146,-0.77859999999999996,6.0637999999999996,0.20729,3.6520000000000001,4.234,5.0039999999999996,6.0640000000000001,7.6020000000000003,10.004,14.191000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1147,-0.77880000000000005,6.0637999999999996,0.20734,3.6509999999999998,4.2329999999999997,5.0030000000000001,6.0640000000000001,7.6020000000000003,10.005000000000001,14.196 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1148,-0.77900000000000003,6.0637999999999996,0.20738000000000001,3.6509999999999998,4.2329999999999997,5.0030000000000001,6.0640000000000001,7.6029999999999998,10.007,14.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1149,-0.77929999999999999,6.0637999999999996,0.20741999999999999,3.6509999999999998,4.2329999999999997,5.0030000000000001,6.0640000000000001,7.6029999999999998,10.007999999999999,14.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1150,-0.77949999999999997,6.0637999999999996,0.20746000000000001,3.6509999999999998,4.2329999999999997,5.0030000000000001,6.0640000000000001,7.6040000000000001,10.01,14.211 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1151,-0.77980000000000005,6.0637999999999996,0.20749999999999999,3.6509999999999998,4.2329999999999997,5.0030000000000001,6.0640000000000001,7.6040000000000001,10.012,14.215999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1152,-0.78,6.0636999999999999,0.20754,3.65,4.2320000000000002,5.0030000000000001,6.0640000000000001,7.6040000000000001,10.013,14.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1153,-0.7802,6.0636999999999999,0.20757999999999999,3.65,4.2320000000000002,5.0019999999999998,6.0640000000000001,7.6050000000000004,10.013999999999999,14.225 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1154,-0.78049999999999997,6.0636999999999999,0.20763000000000001,3.65,4.2320000000000002,5.0019999999999998,6.0640000000000001,7.6050000000000004,10.016,14.231 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1155,-0.78069999999999995,6.0636999999999999,0.20766999999999999,3.65,4.2320000000000002,5.0019999999999998,6.0640000000000001,7.6059999999999999,10.018000000000001,14.236000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1156,-0.78090000000000004,6.0636999999999999,0.20771000000000001,3.649,4.2309999999999999,5.0019999999999998,6.0640000000000001,7.6059999999999999,10.019,14.24 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1157,-0.78120000000000001,6.0636999999999999,0.20774999999999999,3.649,4.2309999999999999,5.0019999999999998,6.0640000000000001,7.6070000000000002,10.021000000000001,14.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1158,-0.78139999999999998,6.0636000000000001,0.20779,3.649,4.2309999999999999,5.0019999999999998,6.0640000000000001,7.6070000000000002,10.022,14.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1159,-0.78169999999999995,6.0636000000000001,0.20782999999999999,3.649,4.2309999999999999,5.0010000000000003,6.0640000000000001,7.6070000000000002,10.023999999999999,14.255000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1160,-0.78190000000000004,6.0636000000000001,0.20787,3.649,4.2309999999999999,5.0010000000000003,6.0640000000000001,7.6079999999999997,10.025,14.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1161,-0.78210000000000002,6.0636000000000001,0.20791000000000001,3.6480000000000001,4.2300000000000004,5.0010000000000003,6.0640000000000001,7.6079999999999997,10.026999999999999,14.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1162,-0.78239999999999998,6.0636000000000001,0.20796000000000001,3.6480000000000001,4.2300000000000004,5.0010000000000003,6.0640000000000001,7.609,10.029,14.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1163,-0.78259999999999996,6.0636000000000001,0.20799999999999999,3.6480000000000001,4.2300000000000004,5.0010000000000003,6.0640000000000001,7.609,10.029999999999999,14.276 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1164,-0.78280000000000005,6.0636000000000001,0.20804,3.6480000000000001,4.2300000000000004,5.0010000000000003,6.0640000000000001,7.609,10.032,14.28 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1165,-0.78310000000000002,6.0636000000000001,0.20807999999999999,3.6480000000000001,4.2300000000000004,5,6.0640000000000001,7.61,10.032999999999999,14.286 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1166,-0.7833,6.0635000000000003,0.20812,3.6469999999999998,4.2290000000000001,5,6.0640000000000001,7.61,10.035,14.29 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1167,-0.78349999999999997,6.0635000000000003,0.20816000000000001,3.6469999999999998,4.2290000000000001,5,6.0640000000000001,7.61,10.036,14.295 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1168,-0.78380000000000005,6.0635000000000003,0.2082,3.6469999999999998,4.2290000000000001,5,6.0640000000000001,7.6109999999999998,10.038,14.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1169,-0.78400000000000003,6.0635000000000003,0.20824999999999999,3.6469999999999998,4.2290000000000001,5,6.0640000000000001,7.6109999999999998,10.039,14.305999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1170,-0.78420000000000001,6.0635000000000003,0.20829,3.6459999999999999,4.2279999999999998,5,6.0640000000000001,7.6120000000000001,10.041,14.31 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1171,-0.78449999999999998,6.0635000000000003,0.20832999999999999,3.6459999999999999,4.2279999999999998,4.9989999999999997,6.0640000000000001,7.6120000000000001,10.042999999999999,14.316000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1172,-0.78469999999999995,6.0635000000000003,0.20837,3.6459999999999999,4.2279999999999998,4.9989999999999997,6.0640000000000001,7.6130000000000004,10.044,14.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1173,-0.78490000000000004,6.0635000000000003,0.20841000000000001,3.6459999999999999,4.2279999999999998,4.9989999999999997,6.0640000000000001,7.6130000000000004,10.045999999999999,14.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1174,-0.78520000000000001,6.0635000000000003,0.20845,3.6459999999999999,4.2279999999999998,4.9989999999999997,6.0640000000000001,7.6130000000000004,10.047000000000001,14.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1175,-0.78539999999999999,6.0633999999999997,0.20849000000000001,3.645,4.2270000000000003,4.9989999999999997,6.0629999999999997,7.6139999999999999,10.048999999999999,14.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1176,-0.78559999999999997,6.0633999999999997,0.20852999999999999,3.645,4.2270000000000003,4.9989999999999997,6.0629999999999997,7.6139999999999999,10.050000000000001,14.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1177,-0.78590000000000004,6.0633999999999997,0.20857999999999999,3.645,4.2270000000000003,4.9980000000000002,6.0629999999999997,7.6150000000000002,10.052,14.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1178,-0.78610000000000002,6.0633999999999997,0.20862,3.645,4.2270000000000003,4.9980000000000002,6.0629999999999997,7.6150000000000002,10.053000000000001,14.351000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1179,-0.7863,6.0633999999999997,0.20866000000000001,3.645,4.226,4.9980000000000002,6.0629999999999997,7.6159999999999997,10.055,14.356 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1180,-0.78659999999999997,6.0633999999999997,0.2087,3.6440000000000001,4.226,4.9980000000000002,6.0629999999999997,7.6159999999999997,10.057,14.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1181,-0.78680000000000005,6.0633999999999997,0.20874000000000001,3.6440000000000001,4.226,4.9980000000000002,6.0629999999999997,7.6159999999999997,10.058,14.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1182,-0.78700000000000003,6.0633999999999997,0.20877999999999999,3.6440000000000001,4.226,4.9980000000000002,6.0629999999999997,7.617,10.06,14.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1183,-0.7873,6.0633999999999997,0.20882000000000001,3.6440000000000001,4.226,4.9980000000000002,6.0629999999999997,7.617,10.061,14.375999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1184,-0.78749999999999998,6.0633999999999997,0.20887,3.6440000000000001,4.2249999999999996,4.9969999999999999,6.0629999999999997,7.6180000000000003,10.063000000000001,14.382 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1185,-0.78769999999999996,6.0633999999999997,0.20891000000000001,3.6429999999999998,4.2249999999999996,4.9969999999999999,6.0629999999999997,7.6180000000000003,10.064,14.385999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1186,-0.78800000000000003,6.0632999999999999,0.20895,3.6429999999999998,4.2249999999999996,4.9969999999999999,6.0629999999999997,7.6180000000000003,10.066000000000001,14.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1187,-0.78820000000000001,6.0632999999999999,0.20899000000000001,3.6429999999999998,4.2249999999999996,4.9969999999999999,6.0629999999999997,7.6189999999999998,10.067,14.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1188,-0.78839999999999999,6.0632999999999999,0.20902999999999999,3.6429999999999998,4.2249999999999996,4.9969999999999999,6.0629999999999997,7.6189999999999998,10.069000000000001,14.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1189,-0.78869999999999996,6.0632999999999999,0.20907000000000001,3.6419999999999999,4.2240000000000002,4.9960000000000004,6.0629999999999997,7.62,10.071,14.407 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1190,-0.78890000000000005,6.0632999999999999,0.20910999999999999,3.6419999999999999,4.2240000000000002,4.9960000000000004,6.0629999999999997,7.62,10.071999999999999,14.411 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1191,-0.78910000000000002,6.0632999999999999,0.20915,3.6419999999999999,4.2240000000000002,4.9960000000000004,6.0629999999999997,7.62,10.074,14.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1192,-0.78939999999999999,6.0632999999999999,0.2092,3.6419999999999999,4.2240000000000002,4.9960000000000004,6.0629999999999997,7.6210000000000004,10.076000000000001,14.423 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1193,-0.78959999999999997,6.0632999999999999,0.20924000000000001,3.6419999999999999,4.2240000000000002,4.9960000000000004,6.0629999999999997,7.6210000000000004,10.077,14.427 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1194,-0.78979999999999995,6.0632999999999999,0.20927999999999999,3.641,4.2229999999999999,4.9960000000000004,6.0629999999999997,7.6219999999999999,10.079000000000001,14.432 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1195,-0.79,6.0632999999999999,0.20932000000000001,3.641,4.2229999999999999,4.9960000000000004,6.0629999999999997,7.6219999999999999,10.08,14.436999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1196,-0.7903,6.0632999999999999,0.20935999999999999,3.641,4.2229999999999999,4.9950000000000001,6.0629999999999997,7.6230000000000002,10.082000000000001,14.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1197,-0.79049999999999998,6.0632999999999999,0.2094,3.641,4.2229999999999999,4.9950000000000001,6.0629999999999997,7.6230000000000002,10.083,14.446999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1198,-0.79069999999999996,6.0632999999999999,0.20943999999999999,3.641,4.2229999999999999,4.9950000000000001,6.0629999999999997,7.6230000000000002,10.085000000000001,14.452 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1199,-0.79100000000000004,6.0632999999999999,0.20948,3.64,4.2220000000000004,4.9950000000000001,6.0629999999999997,7.6239999999999997,10.086,14.458 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1200,-0.79120000000000001,6.0632999999999999,0.20952999999999999,3.64,4.2220000000000004,4.9950000000000001,6.0629999999999997,7.6239999999999997,10.087999999999999,14.462999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1201,-0.79139999999999999,6.0632999999999999,0.20957000000000001,3.64,4.2220000000000004,4.9950000000000001,6.0629999999999997,7.625,10.09,14.468 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1202,-0.79169999999999996,6.0632999999999999,0.20960999999999999,3.64,4.2220000000000004,4.9939999999999998,6.0629999999999997,7.625,10.090999999999999,14.474 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1203,-0.79190000000000005,6.0632000000000001,0.20965,3.64,4.2210000000000001,4.9939999999999998,6.0629999999999997,7.625,10.093,14.478 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1204,-0.79210000000000003,6.0632000000000001,0.20968999999999999,3.6389999999999998,4.2210000000000001,4.9939999999999998,6.0629999999999997,7.6260000000000003,10.093999999999999,14.483000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1205,-0.7923,6.0632000000000001,0.20973,3.6389999999999998,4.2210000000000001,4.9939999999999998,6.0629999999999997,7.6260000000000003,10.096,14.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1206,-0.79259999999999997,6.0632000000000001,0.20977000000000001,3.6389999999999998,4.2210000000000001,4.9939999999999998,6.0629999999999997,7.6269999999999998,10.097,14.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1207,-0.79279999999999995,6.0632000000000001,0.20981,3.6389999999999998,4.2210000000000001,4.9939999999999998,6.0629999999999997,7.6269999999999998,10.099,14.499000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1208,-0.79300000000000004,6.0632000000000001,0.20985000000000001,3.6389999999999998,4.22,4.9930000000000003,6.0629999999999997,7.6280000000000001,10.1,14.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1209,-0.79330000000000001,6.0632000000000001,0.2099,3.6379999999999999,4.22,4.9930000000000003,6.0629999999999997,7.6280000000000001,10.102,14.51 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1210,-0.79349999999999998,6.0632000000000001,0.20993999999999999,3.6379999999999999,4.22,4.9930000000000003,6.0629999999999997,7.6280000000000001,10.103999999999999,14.515000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1211,-0.79369999999999996,6.0632000000000001,0.20998,3.6379999999999999,4.22,4.9930000000000003,6.0629999999999997,7.6289999999999996,10.105,14.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1212,-0.79390000000000005,6.0632000000000001,0.21002000000000001,3.6379999999999999,4.22,4.9930000000000003,6.0629999999999997,7.6289999999999996,10.106999999999999,14.525 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1213,-0.79420000000000002,6.0632000000000001,0.21006,3.637,4.2190000000000003,4.9930000000000003,6.0629999999999997,7.63,10.109,14.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1214,-0.7944,6.0632000000000001,0.21010000000000001,3.637,4.2190000000000003,4.992,6.0629999999999997,7.63,10.11,14.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1215,-0.79459999999999997,6.0632000000000001,0.21013999999999999,3.637,4.2190000000000003,4.992,6.0629999999999997,7.6310000000000002,10.112,14.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1216,-0.79479999999999995,6.0632000000000001,0.21018000000000001,3.637,4.2190000000000003,4.992,6.0629999999999997,7.6310000000000002,10.113,14.545 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1217,-0.79510000000000003,6.0632000000000001,0.21021999999999999,3.637,4.2190000000000003,4.992,6.0629999999999997,7.6310000000000002,10.115,14.551 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1218,-0.79530000000000001,6.0632000000000001,0.21027000000000001,3.6360000000000001,4.218,4.992,6.0629999999999997,7.6319999999999997,10.117000000000001,14.555999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1219,-0.79549999999999998,6.0632000000000001,0.21031,3.6360000000000001,4.218,4.992,6.0629999999999997,7.6319999999999997,10.118,14.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1220,-0.79569999999999996,6.0632000000000001,0.21035000000000001,3.6360000000000001,4.218,4.992,6.0629999999999997,7.633,10.119999999999999,14.566000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1221,-0.79600000000000004,6.0632000000000001,0.21038999999999999,3.6360000000000001,4.218,4.9909999999999997,6.0629999999999997,7.633,10.121,14.571999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1222,-0.79620000000000002,6.0632000000000001,0.21043000000000001,3.6360000000000001,4.218,4.9909999999999997,6.0629999999999997,7.6340000000000003,10.122999999999999,14.577 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1223,-0.7964,6.0632000000000001,0.21046999999999999,3.6349999999999998,4.2169999999999996,4.9909999999999997,6.0629999999999997,7.6340000000000003,10.124000000000001,14.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1224,-0.79669999999999996,6.0632000000000001,0.21051,3.6349999999999998,4.2169999999999996,4.9909999999999997,6.0629999999999997,7.6340000000000003,10.125999999999999,14.587999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1225,-0.79690000000000005,6.0632000000000001,0.21054999999999999,3.6349999999999998,4.2169999999999996,4.9909999999999997,6.0629999999999997,7.6349999999999998,10.128,14.593 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1226,-0.79710000000000003,6.0632000000000001,0.21059,3.6349999999999998,4.2169999999999996,4.9909999999999997,6.0629999999999997,7.6349999999999998,10.129,14.597 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1227,-0.79730000000000001,6.0632000000000001,0.21063000000000001,3.6349999999999998,4.2169999999999996,4.99,6.0629999999999997,7.6360000000000001,10.131,14.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1228,-0.79759999999999998,6.0632000000000001,0.21068000000000001,3.6339999999999999,4.2160000000000002,4.99,6.0629999999999997,7.6360000000000001,10.132999999999999,14.609 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1229,-0.79779999999999995,6.0632000000000001,0.21071999999999999,3.6339999999999999,4.2160000000000002,4.99,6.0629999999999997,7.6369999999999996,10.134,14.614000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1230,-0.79800000000000004,6.0632000000000001,0.21076,3.6339999999999999,4.2160000000000002,4.99,6.0629999999999997,7.6369999999999996,10.135999999999999,14.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1231,-0.79820000000000002,6.0632000000000001,0.21079999999999999,3.6339999999999999,4.2160000000000002,4.99,6.0629999999999997,7.6369999999999996,10.137,14.624000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1232,-0.79849999999999999,6.0632000000000001,0.21084,3.6339999999999999,4.2160000000000002,4.99,6.0629999999999997,7.6379999999999999,10.138999999999999,14.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1233,-0.79869999999999997,6.0632000000000001,0.21088000000000001,3.633,4.2149999999999999,4.99,6.0629999999999997,7.6379999999999999,10.14,14.635 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1234,-0.79890000000000005,6.0632000000000001,0.21092,3.633,4.2149999999999999,4.9889999999999999,6.0629999999999997,7.6390000000000002,10.141999999999999,14.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1235,-0.79910000000000003,6.0632000000000001,0.21096000000000001,3.633,4.2149999999999999,4.9889999999999999,6.0629999999999997,7.6390000000000002,10.144,14.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1236,-0.79930000000000001,6.0632000000000001,0.21099999999999999,3.633,4.2149999999999999,4.9889999999999999,6.0629999999999997,7.6390000000000002,10.145,14.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1237,-0.79959999999999998,6.0632000000000001,0.21104000000000001,3.633,4.2149999999999999,4.9889999999999999,6.0629999999999997,7.64,10.147,14.656000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1238,-0.79979999999999996,6.0632000000000001,0.21109,3.6320000000000001,4.2140000000000004,4.9889999999999999,6.0629999999999997,7.64,10.148999999999999,14.661 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1239,-0.8,6.0632000000000001,0.21113000000000001,3.6320000000000001,4.2140000000000004,4.9889999999999999,6.0629999999999997,7.641,10.15,14.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1240,-0.80020000000000002,6.0632000000000001,0.21117,3.6320000000000001,4.2140000000000004,4.9880000000000004,6.0629999999999997,7.641,10.151999999999999,14.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1241,-0.80049999999999999,6.0632000000000001,0.21121000000000001,3.6320000000000001,4.2140000000000004,4.9880000000000004,6.0629999999999997,7.6420000000000003,10.153,14.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1242,-0.80069999999999997,6.0632000000000001,0.21124999999999999,3.6320000000000001,4.2140000000000004,4.9880000000000004,6.0629999999999997,7.6420000000000003,10.154999999999999,14.682 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1243,-0.80089999999999995,6.0632000000000001,0.21129000000000001,3.6309999999999998,4.2130000000000001,4.9880000000000004,6.0629999999999997,7.6420000000000003,10.156000000000001,14.686999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1244,-0.80110000000000003,6.0632000000000001,0.21132999999999999,3.6309999999999998,4.2130000000000001,4.9880000000000004,6.0629999999999997,7.6429999999999998,10.157999999999999,14.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1245,-0.8014,6.0632000000000001,0.21137,3.6309999999999998,4.2130000000000001,4.9880000000000004,6.0629999999999997,7.6429999999999998,10.16,14.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1246,-0.80159999999999998,6.0632000000000001,0.21140999999999999,3.6309999999999998,4.2130000000000001,4.9880000000000004,6.0629999999999997,7.6440000000000001,10.161,14.702999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1247,-0.80179999999999996,6.0632000000000001,0.21145,3.6309999999999998,4.2130000000000001,4.9870000000000001,6.0629999999999997,7.6440000000000001,10.163,14.708 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1248,-0.80200000000000005,6.0632000000000001,0.21149000000000001,3.63,4.2119999999999997,4.9870000000000001,6.0629999999999997,7.6449999999999996,10.164,14.714 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1249,-0.80220000000000002,6.0632999999999999,0.21154000000000001,3.63,4.2119999999999997,4.9870000000000001,6.0629999999999997,7.6449999999999996,10.166,14.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1250,-0.80249999999999999,6.0632999999999999,0.21157999999999999,3.63,4.2119999999999997,4.9870000000000001,6.0629999999999997,7.6459999999999999,10.167999999999999,14.726000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1251,-0.80269999999999997,6.0632999999999999,0.21162,3.63,4.2119999999999997,4.9870000000000001,6.0629999999999997,7.6459999999999999,10.17,14.731 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1252,-0.80289999999999995,6.0632999999999999,0.21165999999999999,3.63,4.2119999999999997,4.9870000000000001,6.0629999999999997,7.6459999999999999,10.170999999999999,14.736000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1253,-0.80310000000000004,6.0632999999999999,0.2117,3.629,4.2110000000000003,4.9870000000000001,6.0629999999999997,7.6470000000000002,10.173,14.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1254,-0.80330000000000001,6.0632999999999999,0.21174000000000001,3.629,4.2110000000000003,4.9859999999999998,6.0629999999999997,7.6470000000000002,10.173999999999999,14.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1255,-0.80359999999999998,6.0632999999999999,0.21178,3.629,4.2110000000000003,4.9859999999999998,6.0629999999999997,7.6479999999999997,10.176,14.752000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1256,-0.80379999999999996,6.0632999999999999,0.21182000000000001,3.629,4.2110000000000003,4.9859999999999998,6.0629999999999997,7.6479999999999997,10.177,14.757 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1257,-0.80400000000000005,6.0632999999999999,0.21185999999999999,3.629,4.2110000000000003,4.9859999999999998,6.0629999999999997,7.649,10.179,14.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1258,-0.80420000000000003,6.0632999999999999,0.21190000000000001,3.6280000000000001,4.21,4.9859999999999998,6.0629999999999997,7.649,10.180999999999999,14.766999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1259,-0.80449999999999999,6.0632999999999999,0.21193999999999999,3.6280000000000001,4.21,4.9859999999999998,6.0629999999999997,7.649,10.182,14.773 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1260,-0.80469999999999997,6.0632999999999999,0.21198,3.6280000000000001,4.21,4.9850000000000003,6.0629999999999997,7.65,10.183999999999999,14.778 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1261,-0.80489999999999995,6.0632999999999999,0.21201999999999999,3.6280000000000001,4.21,4.9850000000000003,6.0629999999999997,7.65,10.185,14.782999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1262,-0.80510000000000004,6.0632999999999999,0.21206,3.6280000000000001,4.21,4.9850000000000003,6.0629999999999997,7.6509999999999998,10.186999999999999,14.789 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1263,-0.80530000000000002,6.0632999999999999,0.21210999999999999,3.6269999999999998,4.2089999999999996,4.9850000000000003,6.0629999999999997,7.6509999999999998,10.189,14.795 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1264,-0.80559999999999998,6.0632999999999999,0.21215000000000001,3.6269999999999998,4.2089999999999996,4.9850000000000003,6.0629999999999997,7.6520000000000001,10.191000000000001,14.801 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1265,-0.80579999999999996,6.0632999999999999,0.21218999999999999,3.6269999999999998,4.2089999999999996,4.9850000000000003,6.0629999999999997,7.6520000000000001,10.192,14.805999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1266,-0.80600000000000005,6.0632999999999999,0.21223,3.6269999999999998,4.2089999999999996,4.9850000000000003,6.0629999999999997,7.6520000000000001,10.194000000000001,14.811 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1267,-0.80620000000000003,6.0632999999999999,0.21226999999999999,3.6269999999999998,4.2089999999999996,4.984,6.0629999999999997,7.6529999999999996,10.195,14.816000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1268,-0.80640000000000001,6.0633999999999997,0.21231,3.6259999999999999,4.2080000000000002,4.984,6.0629999999999997,7.6529999999999996,10.196999999999999,14.821 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1269,-0.80659999999999998,6.0633999999999997,0.21235000000000001,3.6259999999999999,4.2080000000000002,4.984,6.0629999999999997,7.6539999999999999,10.198,14.827 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1270,-0.80689999999999995,6.0633999999999997,0.21239,3.6259999999999999,4.2080000000000002,4.984,6.0629999999999997,7.6539999999999999,10.199999999999999,14.833 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1271,-0.80710000000000004,6.0633999999999997,0.21243000000000001,3.6259999999999999,4.2080000000000002,4.984,6.0629999999999997,7.6550000000000002,10.202,14.837999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1272,-0.80730000000000002,6.0633999999999997,0.21246999999999999,3.6259999999999999,4.2080000000000002,4.984,6.0629999999999997,7.6550000000000002,10.202999999999999,14.843 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1273,-0.8075,6.0633999999999997,0.21251,3.625,4.2080000000000002,4.984,6.0629999999999997,7.6550000000000002,10.205,14.848000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1274,-0.80769999999999997,6.0633999999999997,0.21254999999999999,3.625,4.2069999999999999,4.9829999999999997,6.0629999999999997,7.6559999999999997,10.206,14.853 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1275,-0.80800000000000005,6.0633999999999997,0.21259,3.625,4.2069999999999999,4.9829999999999997,6.0629999999999997,7.6559999999999997,10.208,14.859 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1276,-0.80820000000000003,6.0633999999999997,0.21263000000000001,3.625,4.2069999999999999,4.9829999999999997,6.0629999999999997,7.657,10.210000000000001,14.865 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1277,-0.80840000000000001,6.0633999999999997,0.21267,3.625,4.2069999999999999,4.9829999999999997,6.0629999999999997,7.657,10.211,14.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1278,-0.80859999999999999,6.0633999999999997,0.21271000000000001,3.6240000000000001,4.2069999999999999,4.9829999999999997,6.0629999999999997,7.657,10.212999999999999,14.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1279,-0.80879999999999996,6.0633999999999997,0.21276,3.6240000000000001,4.2060000000000004,4.9829999999999997,6.0629999999999997,7.6580000000000004,10.215,14.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1280,-0.80900000000000005,6.0633999999999997,0.21279999999999999,3.6240000000000001,4.2060000000000004,4.9820000000000002,6.0629999999999997,7.6580000000000004,10.215999999999999,14.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1281,-0.80930000000000002,6.0633999999999997,0.21284,3.6240000000000001,4.2060000000000004,4.9820000000000002,6.0629999999999997,7.6589999999999998,10.218,14.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1282,-0.8095,6.0635000000000003,0.21288000000000001,3.6240000000000001,4.2060000000000004,4.9820000000000002,6.0640000000000001,7.6589999999999998,10.220000000000001,14.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1283,-0.80969999999999998,6.0635000000000003,0.21292,3.6240000000000001,4.2060000000000004,4.9820000000000002,6.0640000000000001,7.66,10.221,14.903 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1284,-0.80989999999999995,6.0635000000000003,0.21296000000000001,3.6230000000000002,4.2050000000000001,4.9820000000000002,6.0640000000000001,7.66,10.223000000000001,14.909000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1285,-0.81010000000000004,6.0635000000000003,0.21299999999999999,3.6230000000000002,4.2050000000000001,4.9820000000000002,6.0640000000000001,7.6609999999999996,10.224,14.914 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1286,-0.81030000000000002,6.0635000000000003,0.21304000000000001,3.6230000000000002,4.2050000000000001,4.9820000000000002,6.0640000000000001,7.6609999999999996,10.226000000000001,14.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1287,-0.81059999999999999,6.0635000000000003,0.21307999999999999,3.6230000000000002,4.2050000000000001,4.9820000000000002,6.0640000000000001,7.6609999999999996,10.228,14.925000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1288,-0.81079999999999997,6.0635000000000003,0.21312,3.6230000000000002,4.2050000000000001,4.9809999999999999,6.0640000000000001,7.6619999999999999,10.228999999999999,14.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1289,-0.81100000000000005,6.0635000000000003,0.21315999999999999,3.6219999999999999,4.2039999999999997,4.9809999999999999,6.0640000000000001,7.6619999999999999,10.231,14.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1290,-0.81120000000000003,6.0635000000000003,0.2132,3.6219999999999999,4.2039999999999997,4.9809999999999999,6.0640000000000001,7.6630000000000003,10.233000000000001,14.941000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1291,-0.81140000000000001,6.0635000000000003,0.21324000000000001,3.6219999999999999,4.2039999999999997,4.9809999999999999,6.0640000000000001,7.6630000000000003,10.234,14.946 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1292,-0.81159999999999999,6.0635000000000003,0.21328,3.6219999999999999,4.2039999999999997,4.9809999999999999,6.0640000000000001,7.6639999999999997,10.236000000000001,14.952 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1293,-0.81189999999999996,6.0636000000000001,0.21332000000000001,3.6219999999999999,4.2039999999999997,4.9809999999999999,6.0640000000000001,7.6639999999999997,10.238,14.958 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1294,-0.81210000000000004,6.0636000000000001,0.21335999999999999,3.621,4.2039999999999997,4.9809999999999999,6.0640000000000001,7.665,10.239000000000001,14.962999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1295,-0.81230000000000002,6.0636000000000001,0.21340000000000001,3.621,4.2030000000000003,4.9800000000000004,6.0640000000000001,7.665,10.241,14.968999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1296,-0.8125,6.0636000000000001,0.21343999999999999,3.621,4.2030000000000003,4.9800000000000004,6.0640000000000001,7.665,10.242000000000001,14.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1297,-0.81269999999999998,6.0636000000000001,0.21348,3.621,4.2030000000000003,4.9800000000000004,6.0640000000000001,7.6660000000000004,10.244,14.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1298,-0.81289999999999996,6.0636000000000001,0.21351999999999999,3.621,4.2030000000000003,4.9800000000000004,6.0640000000000001,7.6660000000000004,10.244999999999999,14.984999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1299,-0.81310000000000004,6.0636000000000001,0.21356,3.62,4.2030000000000003,4.9800000000000004,6.0640000000000001,7.6669999999999998,10.247,14.99 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1300,-0.81340000000000001,6.0636000000000001,0.21360000000000001,3.62,4.202,4.9800000000000004,6.0640000000000001,7.6669999999999998,10.249000000000001,14.996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1301,-0.81359999999999999,6.0636000000000001,0.21364,3.62,4.202,4.9790000000000001,6.0640000000000001,7.6669999999999998,10.25,15.002000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1302,-0.81379999999999997,6.0636999999999999,0.21368000000000001,3.62,4.202,4.9790000000000001,6.0640000000000001,7.6680000000000001,10.252000000000001,15.007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1303,-0.81399999999999995,6.0636999999999999,0.21373,3.62,4.202,4.9790000000000001,6.0640000000000001,7.6689999999999996,10.254,15.013 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1304,-0.81420000000000003,6.0636999999999999,0.21376999999999999,3.6190000000000002,4.202,4.9790000000000001,6.0640000000000001,7.6689999999999996,10.256,15.019 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1305,-0.81440000000000001,6.0636999999999999,0.21381,3.6190000000000002,4.2009999999999996,4.9790000000000001,6.0640000000000001,7.6689999999999996,10.257,15.023999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1306,-0.81459999999999999,6.0636999999999999,0.21385000000000001,3.6190000000000002,4.2009999999999996,4.9790000000000001,6.0640000000000001,7.67,10.259,15.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1307,-0.81489999999999996,6.0636999999999999,0.21389,3.6190000000000002,4.2009999999999996,4.9790000000000001,6.0640000000000001,7.67,10.260999999999999,15.036 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1308,-0.81510000000000005,6.0636999999999999,0.21393000000000001,3.6190000000000002,4.2009999999999996,4.9779999999999998,6.0640000000000001,7.6710000000000003,10.262,15.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1309,-0.81530000000000002,6.0636999999999999,0.21396999999999999,3.6179999999999999,4.2009999999999996,4.9779999999999998,6.0640000000000001,7.6710000000000003,10.263999999999999,15.047000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1310,-0.8155,6.0636999999999999,0.21401000000000001,3.6179999999999999,4.2,4.9779999999999998,6.0640000000000001,7.6710000000000003,10.265000000000001,15.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1311,-0.81569999999999998,6.0637999999999996,0.21404999999999999,3.6179999999999999,4.2,4.9779999999999998,6.0640000000000001,7.6719999999999997,10.266999999999999,15.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1312,-0.81589999999999996,6.0637999999999996,0.21409,3.6179999999999999,4.2,4.9779999999999998,6.0640000000000001,7.6719999999999997,10.269,15.063000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1313,-0.81610000000000005,6.0637999999999996,0.21412999999999999,3.6179999999999999,4.2,4.9779999999999998,6.0640000000000001,7.673,10.27,15.069000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1314,-0.81630000000000003,6.0637999999999996,0.21417,3.6179999999999999,4.2,4.9779999999999998,6.0640000000000001,7.673,10.272,15.074 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1315,-0.81659999999999999,6.0637999999999996,0.21421000000000001,3.617,4.2,4.9779999999999998,6.0640000000000001,7.6740000000000004,10.273999999999999,15.08 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1316,-0.81679999999999997,6.0637999999999996,0.21425,3.617,4.1989999999999998,4.9770000000000003,6.0640000000000001,7.6740000000000004,10.275,15.086 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1317,-0.81699999999999995,6.0637999999999996,0.21429000000000001,3.617,4.1989999999999998,4.9770000000000003,6.0640000000000001,7.6749999999999998,10.276999999999999,15.090999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1318,-0.81720000000000004,6.0637999999999996,0.21432999999999999,3.617,4.1989999999999998,4.9770000000000003,6.0640000000000001,7.6749999999999998,10.278,15.097 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1319,-0.81740000000000002,6.0639000000000003,0.21437,3.617,4.1989999999999998,4.9770000000000003,6.0640000000000001,7.6760000000000002,10.28,15.102 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1320,-0.81759999999999999,6.0639000000000003,0.21440999999999999,3.6160000000000001,4.1989999999999998,4.9770000000000003,6.0640000000000001,7.6760000000000002,10.282,15.108000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1321,-0.81779999999999997,6.0639000000000003,0.21445,3.6160000000000001,4.1980000000000004,4.9770000000000003,6.0640000000000001,7.6760000000000002,10.282999999999999,15.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1322,-0.81799999999999995,6.0639000000000003,0.21448999999999999,3.6160000000000001,4.1980000000000004,4.9770000000000003,6.0640000000000001,7.6769999999999996,10.285,15.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1323,-0.81820000000000004,6.0639000000000003,0.21453,3.6160000000000001,4.1980000000000004,4.976,6.0640000000000001,7.6769999999999996,10.287000000000001,15.124000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1324,-0.81850000000000001,6.0639000000000003,0.21457000000000001,3.6160000000000001,4.1980000000000004,4.976,6.0640000000000001,7.6779999999999999,10.288,15.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1325,-0.81869999999999998,6.0639000000000003,0.21461,3.6150000000000002,4.1980000000000004,4.976,6.0640000000000001,7.6779999999999999,10.29,15.135999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1326,-0.81889999999999996,6.0639000000000003,0.21465000000000001,3.6150000000000002,4.1970000000000001,4.976,6.0640000000000001,7.6779999999999999,10.292,15.141 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1327,-0.81910000000000005,6.0640000000000001,0.21468999999999999,3.6150000000000002,4.1970000000000001,4.976,6.0640000000000001,7.6790000000000003,10.292999999999999,15.147 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1328,-0.81930000000000003,6.0640000000000001,0.21473,3.6150000000000002,4.1970000000000001,4.976,6.0640000000000001,7.6790000000000003,10.295,15.153 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1329,-0.81950000000000001,6.0640000000000001,0.21476999999999999,3.6150000000000002,4.1970000000000001,4.976,6.0640000000000001,7.68,10.297000000000001,15.157999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1330,-0.81969999999999998,6.0640000000000001,0.21481,3.6150000000000002,4.1970000000000001,4.9749999999999996,6.0640000000000001,7.68,10.298,15.164 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1331,-0.81989999999999996,6.0640000000000001,0.21485000000000001,3.6139999999999999,4.1970000000000001,4.9749999999999996,6.0640000000000001,7.681,10.3,15.169 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1332,-0.82010000000000005,6.0640000000000001,0.21489,3.6139999999999999,4.1959999999999997,4.9749999999999996,6.0640000000000001,7.681,10.301,15.175000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1333,-0.82040000000000002,6.0640999999999998,0.21493000000000001,3.6139999999999999,4.1959999999999997,4.9749999999999996,6.0640000000000001,7.6820000000000004,10.303000000000001,15.180999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1334,-0.8206,6.0640999999999998,0.21496999999999999,3.6139999999999999,4.1959999999999997,4.9749999999999996,6.0640000000000001,7.6820000000000004,10.305,15.186999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1335,-0.82079999999999997,6.0640999999999998,0.21501000000000001,3.6139999999999999,4.1959999999999997,4.9749999999999996,6.0640000000000001,7.6829999999999998,10.307,15.192 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1336,-0.82099999999999995,6.0640999999999998,0.21504999999999999,3.613,4.1959999999999997,4.9749999999999996,6.0640000000000001,7.6829999999999998,10.308,15.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1337,-0.82120000000000004,6.0640999999999998,0.21509,3.613,4.1950000000000003,4.9740000000000002,6.0640000000000001,7.6829999999999998,10.31,15.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1338,-0.82140000000000002,6.0640999999999998,0.21512999999999999,3.613,4.1950000000000003,4.9740000000000002,6.0640000000000001,7.6840000000000002,10.311,15.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1339,-0.8216,6.0640999999999998,0.21517,3.613,4.1950000000000003,4.9740000000000002,6.0640000000000001,7.6840000000000002,10.313000000000001,15.215 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1340,-0.82179999999999997,6.0641999999999996,0.21521000000000001,3.613,4.1950000000000003,4.9740000000000002,6.0640000000000001,7.6849999999999996,10.315,15.221 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1341,-0.82199999999999995,6.0641999999999996,0.21525,3.613,4.1950000000000003,4.9740000000000002,6.0640000000000001,7.6849999999999996,10.316000000000001,15.226000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1342,-0.82220000000000004,6.0641999999999996,0.21529000000000001,3.6120000000000001,4.1950000000000003,4.9740000000000002,6.0640000000000001,7.6859999999999999,10.318,15.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1343,-0.82240000000000002,6.0641999999999996,0.21532999999999999,3.6120000000000001,4.194,4.9740000000000002,6.0640000000000001,7.6859999999999999,10.32,15.237 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1344,-0.82269999999999999,6.0641999999999996,0.21537000000000001,3.6120000000000001,4.194,4.9729999999999999,6.0640000000000001,7.6859999999999999,10.321,15.244 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1345,-0.82289999999999996,6.0641999999999996,0.21540999999999999,3.6120000000000001,4.194,4.9729999999999999,6.0640000000000001,7.6870000000000003,10.323,15.249000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1346,-0.82310000000000005,6.0643000000000002,0.21545,3.6120000000000001,4.194,4.9729999999999999,6.0640000000000001,7.6870000000000003,10.324999999999999,15.255000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1347,-0.82330000000000003,6.0643000000000002,0.21548999999999999,3.6110000000000002,4.194,4.9729999999999999,6.0640000000000001,7.6879999999999997,10.326000000000001,15.260999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1348,-0.82350000000000001,6.0643000000000002,0.21553,3.6110000000000002,4.1929999999999996,4.9729999999999999,6.0640000000000001,7.6879999999999997,10.327999999999999,15.266 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1349,-0.82369999999999999,6.0643000000000002,0.21557000000000001,3.6110000000000002,4.1929999999999996,4.9729999999999999,6.0640000000000001,7.6890000000000001,10.33,15.272 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1350,-0.82389999999999997,6.0643000000000002,0.21560000000000001,3.6110000000000002,4.1929999999999996,4.9729999999999999,6.0640000000000001,7.6890000000000001,10.331,15.276999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1351,-0.82410000000000005,6.0643000000000002,0.21564,3.6110000000000002,4.1929999999999996,4.9729999999999999,6.0640000000000001,7.6890000000000001,10.333,15.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1352,-0.82430000000000003,6.0644,0.21568000000000001,3.6110000000000002,4.1929999999999996,4.9720000000000004,6.0640000000000001,7.69,10.334,15.288 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1353,-0.82450000000000001,6.0644,0.21572,3.61,4.1929999999999996,4.9720000000000004,6.0640000000000001,7.69,10.336,15.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1354,-0.82469999999999999,6.0644,0.21576000000000001,3.61,4.1920000000000002,4.9720000000000004,6.0640000000000001,7.6909999999999998,10.337999999999999,15.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1355,-0.82489999999999997,6.0644,0.21579999999999999,3.61,4.1920000000000002,4.9720000000000004,6.0640000000000001,7.6909999999999998,10.339,15.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1356,-0.82509999999999994,6.0644,0.21584,3.61,4.1920000000000002,4.9720000000000004,6.0640000000000001,7.6920000000000002,10.340999999999999,15.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1357,-0.82530000000000003,6.0644,0.21587999999999999,3.61,4.1920000000000002,4.9720000000000004,6.0640000000000001,7.6920000000000002,10.343,15.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1358,-0.8256,6.0644999999999998,0.21592,3.609,4.1920000000000002,4.9720000000000004,6.0640000000000001,7.6929999999999996,10.345000000000001,15.323 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1359,-0.82579999999999998,6.0644999999999998,0.21596000000000001,3.609,4.1920000000000002,4.9720000000000004,6.0640000000000001,7.6929999999999996,10.346,15.329000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1360,-0.82599999999999996,6.0644999999999998,0.216,3.609,4.1909999999999998,4.9710000000000001,6.0640000000000001,7.6929999999999996,10.348000000000001,15.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1361,-0.82620000000000005,6.0644999999999998,0.21604000000000001,3.609,4.1909999999999998,4.9710000000000001,6.0640000000000001,7.694,10.349,15.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1362,-0.82640000000000002,6.0644999999999998,0.21607999999999999,3.609,4.1909999999999998,4.9710000000000001,6.0640000000000001,7.694,10.351000000000001,15.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1363,-0.8266,6.0646000000000004,0.21612000000000001,3.609,4.1909999999999998,4.9710000000000001,6.0650000000000004,7.6950000000000003,10.353,15.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1364,-0.82679999999999998,6.0646000000000004,0.21615999999999999,3.6080000000000001,4.1909999999999998,4.9710000000000001,6.0650000000000004,7.6950000000000003,10.353999999999999,15.358000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1365,-0.82699999999999996,6.0646000000000004,0.2162,3.6080000000000001,4.1900000000000004,4.9710000000000001,6.0650000000000004,7.6959999999999997,10.356,15.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1366,-0.82720000000000005,6.0646000000000004,0.21623999999999999,3.6080000000000001,4.1900000000000004,4.9710000000000001,6.0650000000000004,7.6959999999999997,10.358000000000001,15.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1367,-0.82740000000000002,6.0646000000000004,0.21628,3.6080000000000001,4.1900000000000004,4.97,6.0650000000000004,7.6970000000000001,10.359,15.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1368,-0.8276,6.0646000000000004,0.21632000000000001,3.6080000000000001,4.1900000000000004,4.97,6.0650000000000004,7.6970000000000001,10.361000000000001,15.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1369,-0.82779999999999998,6.0647000000000002,0.21636,3.6070000000000002,4.1900000000000004,4.97,6.0650000000000004,7.6980000000000004,10.363,15.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1370,-0.82799999999999996,6.0647000000000002,0.21640000000000001,3.6070000000000002,4.1900000000000004,4.97,6.0650000000000004,7.6980000000000004,10.364000000000001,15.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1371,-0.82820000000000005,6.0647000000000002,0.21643999999999999,3.6070000000000002,4.1890000000000001,4.97,6.0650000000000004,7.6980000000000004,10.366,15.398 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1372,-0.82840000000000003,6.0647000000000002,0.21648000000000001,3.6070000000000002,4.1890000000000001,4.97,6.0650000000000004,7.6989999999999998,10.368,15.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1373,-0.8286,6.0647000000000002,0.21651000000000001,3.6070000000000002,4.1890000000000001,4.97,6.0650000000000004,7.6989999999999998,10.369,15.409000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1374,-0.82879999999999998,6.0648,0.21654999999999999,3.6070000000000002,4.1890000000000001,4.97,6.0650000000000004,7.7,10.371,15.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1375,-0.82899999999999996,6.0648,0.21659,3.6059999999999999,4.1890000000000001,4.9690000000000003,6.0650000000000004,7.7,10.372999999999999,15.42 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1376,-0.82930000000000004,6.0648,0.21662999999999999,3.6059999999999999,4.1890000000000001,4.9690000000000003,6.0650000000000004,7.7009999999999996,10.374000000000001,15.427 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1377,-0.82950000000000002,6.0648,0.21667,3.6059999999999999,4.1879999999999997,4.9690000000000003,6.0650000000000004,7.7009999999999996,10.375999999999999,15.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1378,-0.82969999999999999,6.0648,0.21671000000000001,3.6059999999999999,4.1879999999999997,4.9690000000000003,6.0650000000000004,7.7009999999999996,10.378,15.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1379,-0.82989999999999997,6.0648999999999997,0.21675,3.6059999999999999,4.1879999999999997,4.9690000000000003,6.0650000000000004,7.702,10.379,15.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1380,-0.83009999999999995,6.0648999999999997,0.21679000000000001,3.6059999999999999,4.1879999999999997,4.9690000000000003,6.0650000000000004,7.702,10.381,15.451000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1381,-0.83030000000000004,6.0648999999999997,0.21682999999999999,3.605,4.1879999999999997,4.9690000000000003,6.0650000000000004,7.7030000000000003,10.382999999999999,15.456 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1382,-0.83050000000000002,6.0648999999999997,0.21687000000000001,3.605,4.1870000000000003,4.968,6.0650000000000004,7.7030000000000003,10.384,15.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1383,-0.83069999999999999,6.0648999999999997,0.21690999999999999,3.605,4.1870000000000003,4.968,6.0650000000000004,7.7039999999999997,10.385999999999999,15.468 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1384,-0.83089999999999997,6.0650000000000004,0.21695,3.605,4.1870000000000003,4.968,6.0650000000000004,7.7039999999999997,10.388,15.474 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1385,-0.83109999999999995,6.0650000000000004,0.21698999999999999,3.605,4.1870000000000003,4.968,6.0650000000000004,7.7050000000000001,10.39,15.48 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1386,-0.83130000000000004,6.0650000000000004,0.21703,3.6040000000000001,4.1870000000000003,4.968,6.0650000000000004,7.7050000000000001,10.391,15.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1387,-0.83150000000000002,6.0650000000000004,0.21707000000000001,3.6040000000000001,4.1870000000000003,4.968,6.0650000000000004,7.7050000000000001,10.393000000000001,15.492000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1388,-0.83169999999999999,6.0651000000000002,0.21709999999999999,3.6040000000000001,4.1859999999999999,4.968,6.0650000000000004,7.7060000000000004,10.394,15.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1389,-0.83189999999999997,6.0651000000000002,0.21714,3.6040000000000001,4.1859999999999999,4.968,6.0650000000000004,7.7060000000000004,10.396000000000001,15.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1390,-0.83209999999999995,6.0651000000000002,0.21718000000000001,3.6040000000000001,4.1859999999999999,4.9669999999999996,6.0650000000000004,7.7069999999999999,10.398,15.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1391,-0.83230000000000004,6.0651000000000002,0.21722,3.6040000000000001,4.1859999999999999,4.9669999999999996,6.0650000000000004,7.7069999999999999,10.398999999999999,15.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1392,-0.83250000000000002,6.0651000000000002,0.21726000000000001,3.6030000000000002,4.1859999999999999,4.9669999999999996,6.0650000000000004,7.7080000000000002,10.401,15.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1393,-0.8327,6.0651999999999999,0.21729999999999999,3.6030000000000002,4.1859999999999999,4.9669999999999996,6.0650000000000004,7.7080000000000002,10.403,15.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1394,-0.83289999999999997,6.0651999999999999,0.21734000000000001,3.6030000000000002,4.1849999999999996,4.9669999999999996,6.0650000000000004,7.7089999999999996,10.404,15.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1395,-0.83309999999999995,6.0651999999999999,0.21737999999999999,3.6030000000000002,4.1849999999999996,4.9669999999999996,6.0650000000000004,7.7089999999999996,10.406000000000001,15.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1396,-0.83330000000000004,6.0651999999999999,0.21742,3.6030000000000002,4.1849999999999996,4.9669999999999996,6.0650000000000004,7.7089999999999996,10.407999999999999,15.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1397,-0.83350000000000002,6.0652999999999997,0.21745999999999999,3.6019999999999999,4.1849999999999996,4.9669999999999996,6.0650000000000004,7.71,10.41,15.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1398,-0.8337,6.0652999999999997,0.2175,3.6019999999999999,4.1849999999999996,4.9660000000000002,6.0650000000000004,7.71,10.411,15.555999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1399,-0.83389999999999997,6.0652999999999997,0.21753,3.6019999999999999,4.1849999999999996,4.9660000000000002,6.0650000000000004,7.7110000000000003,10.413,15.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1400,-0.83409999999999995,6.0652999999999997,0.21757000000000001,3.6019999999999999,4.1840000000000002,4.9660000000000002,6.0650000000000004,7.7110000000000003,10.414,15.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1401,-0.83430000000000004,6.0652999999999997,0.21761,3.6019999999999999,4.1840000000000002,4.9660000000000002,6.0650000000000004,7.7119999999999997,10.416,15.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1402,-0.83450000000000002,6.0654000000000003,0.21765000000000001,3.6019999999999999,4.1840000000000002,4.9660000000000002,6.0650000000000004,7.7119999999999997,10.417999999999999,15.579000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1403,-0.8347,6.0654000000000003,0.21768999999999999,3.601,4.1840000000000002,4.9660000000000002,6.0650000000000004,7.7130000000000001,10.419,15.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1404,-0.83489999999999998,6.0654000000000003,0.21773000000000001,3.601,4.1840000000000002,4.9660000000000002,6.0650000000000004,7.7130000000000001,10.420999999999999,15.590999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1405,-0.83509999999999995,6.0654000000000003,0.21776999999999999,3.601,4.1829999999999998,4.9660000000000002,6.0650000000000004,7.7130000000000001,10.423,15.597 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1406,-0.83530000000000004,6.0655000000000001,0.21781,3.601,4.1829999999999998,4.9649999999999999,6.0659999999999998,7.7140000000000004,10.425000000000001,15.603 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1407,-0.83550000000000002,6.0655000000000001,0.21784999999999999,3.601,4.1829999999999998,4.9649999999999999,6.0659999999999998,7.7140000000000004,10.426,15.609 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1408,-0.8357,6.0655000000000001,0.21789,3.601,4.1829999999999998,4.9649999999999999,6.0659999999999998,7.7149999999999999,10.428000000000001,15.615 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1409,-0.83589999999999998,6.0655000000000001,0.21792,3.6,4.1829999999999998,4.9649999999999999,6.0659999999999998,7.7149999999999999,10.429,15.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1410,-0.83609999999999995,6.0655999999999999,0.21795999999999999,3.6,4.1829999999999998,4.9649999999999999,6.0659999999999998,7.7160000000000002,10.430999999999999,15.625999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1411,-0.83630000000000004,6.0655999999999999,0.218,3.6,4.1820000000000004,4.9649999999999999,6.0659999999999998,7.7160000000000002,10.433,15.632 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1412,-0.83650000000000002,6.0655999999999999,0.21804000000000001,3.6,4.1820000000000004,4.9649999999999999,6.0659999999999998,7.7169999999999996,10.433999999999999,15.638 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1413,-0.8367,6.0655999999999999,0.21808,3.6,4.1820000000000004,4.9649999999999999,6.0659999999999998,7.7169999999999996,10.436,15.644 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1414,-0.83689999999999998,6.0656999999999996,0.21812000000000001,3.6,4.1820000000000004,4.9640000000000004,6.0659999999999998,7.7169999999999996,10.438000000000001,15.651 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1415,-0.83709999999999996,6.0656999999999996,0.21815999999999999,3.5990000000000002,4.1820000000000004,4.9640000000000004,6.0659999999999998,7.718,10.44,15.657 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1416,-0.83730000000000004,6.0656999999999996,0.21820000000000001,3.5990000000000002,4.1820000000000004,4.9640000000000004,6.0659999999999998,7.718,10.441000000000001,15.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1417,-0.83750000000000002,6.0656999999999996,0.21823999999999999,3.5990000000000002,4.181,4.9640000000000004,6.0659999999999998,7.7190000000000003,10.443,15.669 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1418,-0.8377,6.0658000000000003,0.21826999999999999,3.5990000000000002,4.181,4.9640000000000004,6.0659999999999998,7.7190000000000003,10.445,15.673999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1419,-0.83789999999999998,6.0658000000000003,0.21831,3.5990000000000002,4.181,4.9640000000000004,6.0659999999999998,7.72,10.446,15.68 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1420,-0.83809999999999996,6.0658000000000003,0.21834999999999999,3.5990000000000002,4.181,4.9640000000000004,6.0659999999999998,7.72,10.448,15.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1421,-0.83830000000000005,6.0658000000000003,0.21839,3.5979999999999999,4.181,4.9640000000000004,6.0659999999999998,7.7210000000000001,10.45,15.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1422,-0.83850000000000002,6.0659000000000001,0.21843000000000001,3.5979999999999999,4.181,4.9630000000000001,6.0659999999999998,7.7210000000000001,10.451000000000001,15.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1423,-0.8387,6.0659000000000001,0.21847,3.5979999999999999,4.18,4.9630000000000001,6.0659999999999998,7.7210000000000001,10.452999999999999,15.704000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1424,-0.83889999999999998,6.0659000000000001,0.21851000000000001,3.5979999999999999,4.18,4.9630000000000001,6.0659999999999998,7.7220000000000004,10.455,15.711 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1425,-0.83909999999999996,6.0659000000000001,0.21854999999999999,3.5979999999999999,4.18,4.9630000000000001,6.0659999999999998,7.7220000000000004,10.456,15.717000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1426,-0.83930000000000005,6.0659999999999998,0.21858,3.5979999999999999,4.18,4.9630000000000001,6.0659999999999998,7.7229999999999999,10.458,15.722 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1427,-0.83950000000000002,6.0659999999999998,0.21862000000000001,3.597,4.18,4.9630000000000001,6.0659999999999998,7.7229999999999999,10.46,15.728 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1428,-0.8397,6.0659999999999998,0.21865999999999999,3.597,4.18,4.9630000000000001,6.0659999999999998,7.7240000000000002,10.461,15.734 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1429,-0.83989999999999998,6.0659999999999998,0.21870000000000001,3.597,4.1790000000000003,4.9630000000000001,6.0659999999999998,7.7240000000000002,10.462999999999999,15.74 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1430,-0.84009999999999996,6.0660999999999996,0.21873999999999999,3.597,4.1790000000000003,4.9619999999999997,6.0659999999999998,7.7249999999999996,10.465,15.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1431,-0.84030000000000005,6.0660999999999996,0.21878,3.597,4.1790000000000003,4.9619999999999997,6.0659999999999998,7.7249999999999996,10.467000000000001,15.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1432,-0.84050000000000002,6.0660999999999996,0.21881999999999999,3.5960000000000001,4.1790000000000003,4.9619999999999997,6.0659999999999998,7.7249999999999996,10.468,15.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1433,-0.8407,6.0660999999999996,0.21884999999999999,3.5960000000000001,4.1790000000000003,4.9619999999999997,6.0659999999999998,7.726,10.47,15.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1434,-0.84089999999999998,6.0662000000000003,0.21889,3.5960000000000001,4.1790000000000003,4.9619999999999997,6.0659999999999998,7.726,10.472,15.77 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1435,-0.84109999999999996,6.0662000000000003,0.21893000000000001,3.5960000000000001,4.1779999999999999,4.9619999999999997,6.0659999999999998,7.7270000000000003,10.473000000000001,15.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1436,-0.84130000000000005,6.0662000000000003,0.21897,3.5960000000000001,4.1779999999999999,4.9619999999999997,6.0659999999999998,7.7270000000000003,10.475,15.782999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1437,-0.84150000000000003,6.0663,0.21901000000000001,3.5960000000000001,4.1779999999999999,4.9619999999999997,6.0659999999999998,7.7279999999999998,10.477,15.789 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1438,-0.8417,6.0663,0.21904999999999999,3.5950000000000002,4.1779999999999999,4.9619999999999997,6.0659999999999998,7.7279999999999998,10.478,15.795 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1439,-0.84189999999999998,6.0663,0.21909000000000001,3.5950000000000002,4.1779999999999999,4.9610000000000003,6.0659999999999998,7.7290000000000001,10.48,15.801 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1440,-0.84209999999999996,6.0663,0.21912000000000001,3.5950000000000002,4.1779999999999999,4.9610000000000003,6.0659999999999998,7.7290000000000001,10.481999999999999,15.807 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1441,-0.84230000000000005,6.0663999999999998,0.21915999999999999,3.5950000000000002,4.1769999999999996,4.9610000000000003,6.0659999999999998,7.73,10.483000000000001,15.813000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1442,-0.84250000000000003,6.0663999999999998,0.21920000000000001,3.5950000000000002,4.1769999999999996,4.9610000000000003,6.0659999999999998,7.73,10.484999999999999,15.819000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1443,-0.8427,6.0663999999999998,0.21923999999999999,3.5950000000000002,4.1769999999999996,4.9610000000000003,6.0659999999999998,7.73,10.487,15.824999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1444,-0.84289999999999998,6.0663999999999998,0.21928,3.5939999999999999,4.1769999999999996,4.9610000000000003,6.0659999999999998,7.7309999999999999,10.488,15.832000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1445,-0.84299999999999997,6.0664999999999996,0.21931999999999999,3.5939999999999999,4.1769999999999996,4.9610000000000003,6.0659999999999998,7.7309999999999999,10.49,15.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1446,-0.84319999999999995,6.0664999999999996,0.21934999999999999,3.5939999999999999,4.1769999999999996,4.9610000000000003,6.0659999999999998,7.7320000000000002,10.492000000000001,15.842000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1447,-0.84340000000000004,6.0664999999999996,0.21939,3.5939999999999999,4.1760000000000002,4.96,6.0659999999999998,7.7320000000000002,10.493,15.848000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1448,-0.84360000000000002,6.0666000000000002,0.21942999999999999,3.5939999999999999,4.1760000000000002,4.96,6.0670000000000002,7.7329999999999997,10.494999999999999,15.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1449,-0.84379999999999999,6.0666000000000002,0.21947,3.5939999999999999,4.1760000000000002,4.96,6.0670000000000002,7.7329999999999997,10.497,15.861000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1450,-0.84399999999999997,6.0666000000000002,0.21951000000000001,3.593,4.1760000000000002,4.96,6.0670000000000002,7.734,10.499000000000001,15.867000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1451,-0.84419999999999995,6.0666000000000002,0.21955,3.593,4.1760000000000002,4.96,6.0670000000000002,7.734,10.5,15.874000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1452,-0.84440000000000004,6.0667,0.21959000000000001,3.593,4.1760000000000002,4.96,6.0670000000000002,7.7350000000000003,10.502000000000001,15.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1453,-0.84460000000000002,6.0667,0.21962000000000001,3.593,4.1749999999999998,4.96,6.0670000000000002,7.7350000000000003,10.503,15.885 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1454,-0.8448,6.0667,0.21965999999999999,3.593,4.1749999999999998,4.96,6.0670000000000002,7.7350000000000003,10.505000000000001,15.891999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1455,-0.84499999999999997,6.0667999999999997,0.21970000000000001,3.593,4.1749999999999998,4.96,6.0670000000000002,7.7359999999999998,10.507,15.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1456,-0.84519999999999995,6.0667999999999997,0.21973999999999999,3.5920000000000001,4.1749999999999998,4.9589999999999996,6.0670000000000002,7.7359999999999998,10.509,15.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1457,-0.84540000000000004,6.0667999999999997,0.21978,3.5920000000000001,4.1749999999999998,4.9589999999999996,6.0670000000000002,7.7370000000000001,10.510999999999999,15.911 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1458,-0.84560000000000002,6.0669000000000004,0.21981000000000001,3.5920000000000001,4.1749999999999998,4.9589999999999996,6.0670000000000002,7.7370000000000001,10.512,15.916 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1459,-0.8458,6.0669000000000004,0.21984999999999999,3.5920000000000001,4.1749999999999998,4.9589999999999996,6.0670000000000002,7.7380000000000004,10.513999999999999,15.923 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1460,-0.84599999999999997,6.0669000000000004,0.21989,3.5920000000000001,4.1740000000000004,4.9589999999999996,6.0670000000000002,7.7380000000000004,10.515000000000001,15.929 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1461,-0.84619999999999995,6.0669000000000004,0.21992999999999999,3.5920000000000001,4.1740000000000004,4.9589999999999996,6.0670000000000002,7.7380000000000004,10.516999999999999,15.935 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1462,-0.84640000000000004,6.0670000000000002,0.21997,3.5920000000000001,4.1740000000000004,4.9589999999999996,6.0670000000000002,7.7389999999999999,10.519,15.942 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1463,-0.84660000000000002,6.0670000000000002,0.22001000000000001,3.5910000000000002,4.1740000000000004,4.9589999999999996,6.0670000000000002,7.7389999999999999,10.521000000000001,15.948 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1464,-0.84670000000000001,6.0670000000000002,0.22004000000000001,3.5910000000000002,4.1740000000000004,4.9580000000000002,6.0670000000000002,7.74,10.522,15.952 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1465,-0.84689999999999999,6.0670999999999999,0.22008,3.5910000000000002,4.1740000000000004,4.9580000000000002,6.0670000000000002,7.74,10.523999999999999,15.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1466,-0.84709999999999996,6.0670999999999999,0.22012000000000001,3.5910000000000002,4.173,4.9580000000000002,6.0670000000000002,7.7409999999999997,10.526,15.965 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1467,-0.84730000000000005,6.0670999999999999,0.22015999999999999,3.5910000000000002,4.173,4.9580000000000002,6.0670000000000002,7.7409999999999997,10.526999999999999,15.972 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1468,-0.84750000000000003,6.0671999999999997,0.22020000000000001,3.5910000000000002,4.173,4.9580000000000002,6.0670000000000002,7.742,10.529,15.978 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1469,-0.84770000000000001,6.0671999999999997,0.22023000000000001,3.59,4.173,4.9580000000000002,6.0670000000000002,7.742,10.531000000000001,15.983000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1470,-0.84789999999999999,6.0671999999999997,0.22026999999999999,3.59,4.173,4.9580000000000002,6.0670000000000002,7.742,10.532,15.99 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1471,-0.84809999999999997,6.0673000000000004,0.22031000000000001,3.59,4.173,4.9580000000000002,6.0670000000000002,7.7430000000000003,10.534000000000001,15.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1472,-0.84830000000000005,6.0673000000000004,0.22034999999999999,3.59,4.1719999999999997,4.9580000000000002,6.0670000000000002,7.7430000000000003,10.536,16.003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1473,-0.84850000000000003,6.0673000000000004,0.22039,3.59,4.1719999999999997,4.9569999999999999,6.0670000000000002,7.7439999999999998,10.538,16.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1474,-0.84870000000000001,6.0673000000000004,0.22042,3.59,4.1719999999999997,4.9569999999999999,6.0670000000000002,7.7439999999999998,10.539,16.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1475,-0.84889999999999999,6.0674000000000001,0.22045999999999999,3.589,4.1719999999999997,4.9569999999999999,6.0670000000000002,7.7450000000000001,10.541,16.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1476,-0.84909999999999997,6.0674000000000001,0.2205,3.589,4.1719999999999997,4.9569999999999999,6.0670000000000002,7.7450000000000001,10.542999999999999,16.027999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1477,-0.84930000000000005,6.0674000000000001,0.22054000000000001,3.589,4.1719999999999997,4.9569999999999999,6.0670000000000002,7.7460000000000004,10.544,16.033999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1478,-0.84940000000000004,6.0674999999999999,0.22058,3.589,4.1710000000000003,4.9569999999999999,6.0679999999999996,7.7460000000000004,10.545999999999999,16.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1479,-0.84960000000000002,6.0674999999999999,0.22061,3.589,4.1710000000000003,4.9569999999999999,6.0679999999999996,7.7469999999999999,10.548,16.045000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1480,-0.8498,6.0674999999999999,0.22065000000000001,3.589,4.1710000000000003,4.9569999999999999,6.0679999999999996,7.7469999999999999,10.548999999999999,16.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1481,-0.85,6.0675999999999997,0.22069,3.5880000000000001,4.1710000000000003,4.9569999999999999,6.0679999999999996,7.7469999999999999,10.551,16.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1482,-0.85019999999999996,6.0675999999999997,0.22073000000000001,3.5880000000000001,4.1710000000000003,4.9560000000000004,6.0679999999999996,7.7480000000000002,10.553000000000001,16.065000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1483,-0.85040000000000004,6.0675999999999997,0.22076999999999999,3.5880000000000001,4.1710000000000003,4.9560000000000004,6.0679999999999996,7.7480000000000002,10.555,16.071000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1484,-0.85060000000000002,6.0677000000000003,0.2208,3.5880000000000001,4.1710000000000003,4.9560000000000004,6.0679999999999996,7.7489999999999997,10.555999999999999,16.077000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1485,-0.8508,6.0677000000000003,0.22084000000000001,3.5880000000000001,4.17,4.9560000000000004,6.0679999999999996,7.7489999999999997,10.558,16.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1486,-0.85099999999999998,6.0677000000000003,0.22087999999999999,3.5880000000000001,4.17,4.9560000000000004,6.0679999999999996,7.75,10.56,16.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1487,-0.85119999999999996,6.0678000000000001,0.22092000000000001,3.5880000000000001,4.17,4.9560000000000004,6.0679999999999996,7.75,10.561999999999999,16.097000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1488,-0.85140000000000005,6.0678000000000001,0.22095999999999999,3.5870000000000002,4.17,4.9560000000000004,6.0679999999999996,7.7510000000000003,10.563000000000001,16.103000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1489,-0.85160000000000002,6.0678000000000001,0.22098999999999999,3.5870000000000002,4.17,4.9560000000000004,6.0679999999999996,7.7510000000000003,10.565,16.108000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1490,-0.85170000000000001,6.0678999999999998,0.22103,3.5870000000000002,4.17,4.9550000000000001,6.0679999999999996,7.7519999999999998,10.566000000000001,16.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1491,-0.85189999999999999,6.0678999999999998,0.22106999999999999,3.5870000000000002,4.1689999999999996,4.9550000000000001,6.0679999999999996,7.7519999999999998,10.568,16.120999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1492,-0.85209999999999997,6.0678999999999998,0.22111,3.5870000000000002,4.1689999999999996,4.9550000000000001,6.0679999999999996,7.7519999999999998,10.57,16.126999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1493,-0.85229999999999995,6.0679999999999996,0.22114,3.5870000000000002,4.1689999999999996,4.9550000000000001,6.0679999999999996,7.7530000000000001,10.571,16.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1494,-0.85250000000000004,6.0679999999999996,0.22117999999999999,3.5859999999999999,4.1689999999999996,4.9550000000000001,6.0679999999999996,7.7530000000000001,10.573,16.138999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1495,-0.85270000000000001,6.0679999999999996,0.22122,3.5859999999999999,4.1689999999999996,4.9550000000000001,6.0679999999999996,7.7539999999999996,10.574999999999999,16.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1496,-0.85289999999999999,6.0681000000000003,0.22126000000000001,3.5859999999999999,4.1689999999999996,4.9550000000000001,6.0679999999999996,7.7539999999999996,10.577,16.152999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1497,-0.85309999999999997,6.0681000000000003,0.22128999999999999,3.5859999999999999,4.1689999999999996,4.9550000000000001,6.0679999999999996,7.7549999999999999,10.577999999999999,16.158000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1498,-0.85329999999999995,6.0682,0.22133,3.5859999999999999,4.1680000000000001,4.9550000000000001,6.0679999999999996,7.7549999999999999,10.58,16.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1499,-0.85350000000000004,6.0682,0.22137000000000001,3.5859999999999999,4.1680000000000001,4.9539999999999997,6.0679999999999996,7.7560000000000002,10.582000000000001,16.172000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1500,-0.85360000000000003,6.0682,0.22141,3.585,4.1680000000000001,4.9539999999999997,6.0679999999999996,7.7560000000000002,10.583,16.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1501,-0.8538,6.0682999999999998,0.22145000000000001,3.585,4.1680000000000001,4.9539999999999997,6.0679999999999996,7.7569999999999997,10.585000000000001,16.184000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1502,-0.85399999999999998,6.0682999999999998,0.22148000000000001,3.585,4.1680000000000001,4.9539999999999997,6.0679999999999996,7.7569999999999997,10.587,16.189 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1503,-0.85419999999999996,6.0682999999999998,0.22151999999999999,3.585,4.1680000000000001,4.9539999999999997,6.0679999999999996,7.7569999999999997,10.589,16.196000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1504,-0.85440000000000005,6.0683999999999996,0.22156000000000001,3.585,4.1669999999999998,4.9539999999999997,6.0679999999999996,7.758,10.59,16.202999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1505,-0.85460000000000003,6.0683999999999996,0.22159999999999999,3.585,4.1669999999999998,4.9539999999999997,6.0679999999999996,7.758,10.592000000000001,16.21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1506,-0.8548,6.0683999999999996,0.22162999999999999,3.585,4.1669999999999998,4.9539999999999997,6.0679999999999996,7.7590000000000003,10.593999999999999,16.215 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1507,-0.85499999999999998,6.0685000000000002,0.22167000000000001,3.5840000000000001,4.1669999999999998,4.9539999999999997,6.0679999999999996,7.7590000000000003,10.596,16.222000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1508,-0.85519999999999996,6.0685000000000002,0.22170999999999999,3.5840000000000001,4.1669999999999998,4.9530000000000003,6.0679999999999996,7.76,10.597,16.228999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1509,-0.85540000000000005,6.0685000000000002,0.22175,3.5840000000000001,4.1669999999999998,4.9530000000000003,6.0679999999999996,7.76,10.599,16.234999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1510,-0.85550000000000004,6.0686,0.22178,3.5840000000000001,4.1669999999999998,4.9530000000000003,6.069,7.7610000000000001,10.6,16.239999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1511,-0.85570000000000002,6.0686,0.22181999999999999,3.5840000000000001,4.1660000000000004,4.9530000000000003,6.069,7.7610000000000001,10.602,16.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1512,-0.85589999999999999,6.0686999999999998,0.22186,3.5840000000000001,4.1660000000000004,4.9530000000000003,6.069,7.7619999999999996,10.603999999999999,16.254000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1513,-0.85609999999999997,6.0686999999999998,0.22189999999999999,3.5830000000000002,4.1660000000000004,4.9530000000000003,6.069,7.7619999999999996,10.606,16.260000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1514,-0.85629999999999995,6.0686999999999998,0.22192999999999999,3.5830000000000002,4.1660000000000004,4.9530000000000003,6.069,7.7619999999999996,10.606999999999999,16.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1515,-0.85650000000000004,6.0688000000000004,0.22197,3.5830000000000002,4.1660000000000004,4.9530000000000003,6.069,7.7629999999999999,10.609,16.273 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1516,-0.85670000000000002,6.0688000000000004,0.22201000000000001,3.5830000000000002,4.1660000000000004,4.9530000000000003,6.069,7.7629999999999999,10.611000000000001,16.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1517,-0.8569,6.0688000000000004,0.22203999999999999,3.5830000000000002,4.1660000000000004,4.9530000000000003,6.069,7.7640000000000002,10.612,16.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1518,-0.85699999999999998,6.0689000000000002,0.22208,3.5830000000000002,4.165,4.952,6.069,7.7640000000000002,10.614000000000001,16.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1519,-0.85719999999999996,6.0689000000000002,0.22212000000000001,3.5830000000000002,4.165,4.952,6.069,7.7649999999999997,10.616,16.297999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1520,-0.85740000000000005,6.069,0.22216,3.5819999999999999,4.165,4.952,6.069,7.7649999999999997,10.618,16.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1521,-0.85760000000000003,6.069,0.22219,3.5819999999999999,4.165,4.952,6.069,7.766,10.619,16.309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1522,-0.85780000000000001,6.069,0.22223000000000001,3.5819999999999999,4.165,4.952,6.069,7.766,10.621,16.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1523,-0.85799999999999998,6.0690999999999997,0.22227,3.5819999999999999,4.165,4.952,6.069,7.7670000000000003,10.622999999999999,16.324000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1524,-0.85819999999999996,6.0690999999999997,0.22231000000000001,3.5819999999999999,4.1639999999999997,4.952,6.069,7.7670000000000003,10.625,16.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1525,-0.85840000000000005,6.0692000000000004,0.22234000000000001,3.5819999999999999,4.1639999999999997,4.952,6.069,7.7670000000000003,10.625999999999999,16.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1526,-0.85850000000000004,6.0692000000000004,0.22237999999999999,3.581,4.1639999999999997,4.952,6.069,7.7679999999999998,10.628,16.341999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1527,-0.85870000000000002,6.0692000000000004,0.22242000000000001,3.581,4.1639999999999997,4.9509999999999996,6.069,7.7679999999999998,10.63,16.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1528,-0.8589,6.0693000000000001,0.22245000000000001,3.581,4.1639999999999997,4.9509999999999996,6.069,7.7690000000000001,10.631,16.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1529,-0.85909999999999997,6.0693000000000001,0.22248999999999999,3.581,4.1639999999999997,4.9509999999999996,6.069,7.7690000000000001,10.632999999999999,16.361999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1530,-0.85929999999999995,6.0693999999999999,0.22253000000000001,3.581,4.1639999999999997,4.9509999999999996,6.069,7.77,10.635,16.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1531,-0.85950000000000004,6.0693999999999999,0.22256999999999999,3.581,4.1630000000000003,4.9509999999999996,6.069,7.77,10.637,16.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1532,-0.85970000000000002,6.0693999999999999,0.22259999999999999,3.581,4.1630000000000003,4.9509999999999996,6.069,7.7709999999999999,10.638,16.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1533,-0.8599,6.0694999999999997,0.22264,3.58,4.1630000000000003,4.9509999999999996,6.07,7.7709999999999999,10.64,16.388000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1534,-0.86,6.0694999999999997,0.22267999999999999,3.58,4.1630000000000003,4.9509999999999996,6.07,7.7709999999999999,10.641999999999999,16.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1535,-0.86019999999999996,6.0696000000000003,0.22270999999999999,3.58,4.1630000000000003,4.9509999999999996,6.07,7.7720000000000002,10.643000000000001,16.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1536,-0.86040000000000005,6.0696000000000003,0.22275,3.58,4.1630000000000003,4.9509999999999996,6.07,7.7720000000000002,10.645,16.407 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1537,-0.86060000000000003,6.0696000000000003,0.22278999999999999,3.58,4.1630000000000003,4.95,6.07,7.7729999999999997,10.647,16.414000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1538,-0.86080000000000001,6.0697000000000001,0.22283,3.58,4.1619999999999999,4.95,6.07,7.7729999999999997,10.648999999999999,16.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1539,-0.86099999999999999,6.0697000000000001,0.22286,3.58,4.1619999999999999,4.95,6.07,7.774,10.65,16.425999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1540,-0.86119999999999997,6.0697999999999999,0.22289999999999999,3.5790000000000002,4.1619999999999999,4.95,6.07,7.774,10.651999999999999,16.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1541,-0.86129999999999995,6.0697999999999999,0.22294,3.5790000000000002,4.1619999999999999,4.95,6.07,7.7750000000000004,10.654,16.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1542,-0.86150000000000004,6.0697999999999999,0.22297,3.5790000000000002,4.1619999999999999,4.95,6.07,7.7750000000000004,10.654999999999999,16.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1543,-0.86170000000000002,6.0698999999999996,0.22301000000000001,3.5790000000000002,4.1619999999999999,4.95,6.07,7.7759999999999998,10.657,16.452000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1544,-0.8619,6.0698999999999996,0.22305,3.5790000000000002,4.1619999999999999,4.95,6.07,7.7759999999999998,10.659000000000001,16.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1545,-0.86209999999999998,6.07,0.22308,3.5790000000000002,4.1609999999999996,4.95,6.07,7.7770000000000001,10.661,16.465 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1546,-0.86229999999999996,6.07,0.22312000000000001,3.5790000000000002,4.1609999999999996,4.95,6.07,7.7770000000000001,10.662000000000001,16.472000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1547,-0.86240000000000006,6.07,0.22316,3.5779999999999998,4.1609999999999996,4.9489999999999998,6.07,7.7770000000000001,10.664,16.478000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1548,-0.86260000000000003,6.0701000000000001,0.22320000000000001,3.5779999999999998,4.1609999999999996,4.9489999999999998,6.07,7.7779999999999996,10.666,16.484999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1549,-0.86280000000000001,6.0701000000000001,0.22323000000000001,3.5779999999999998,4.1609999999999996,4.9489999999999998,6.07,7.7779999999999996,10.667,16.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1550,-0.86299999999999999,6.0701999999999998,0.22327,3.5779999999999998,4.1609999999999996,4.9489999999999998,6.07,7.7789999999999999,10.669,16.498000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1551,-0.86319999999999997,6.0701999999999998,0.22331000000000001,3.5779999999999998,4.1609999999999996,4.9489999999999998,6.07,7.7789999999999999,10.670999999999999,16.504999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1552,-0.86339999999999995,6.0702999999999996,0.22334000000000001,3.5779999999999998,4.16,4.9489999999999998,6.07,7.78,10.673,16.510999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1553,-0.86360000000000003,6.0702999999999996,0.22338,3.5779999999999998,4.16,4.9489999999999998,6.07,7.78,10.675000000000001,16.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1554,-0.86370000000000002,6.0702999999999996,0.22342000000000001,3.577,4.16,4.9489999999999998,6.07,7.7809999999999997,10.676,16.524000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1555,-0.8639,6.0704000000000002,0.22345000000000001,3.577,4.16,4.9489999999999998,6.07,7.7809999999999997,10.678000000000001,16.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1556,-0.86409999999999998,6.0704000000000002,0.22348999999999999,3.577,4.16,4.9489999999999998,6.07,7.782,10.68,16.536999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1557,-0.86429999999999996,6.0705,0.22353000000000001,3.577,4.16,4.9480000000000004,6.07,7.782,10.682,16.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1558,-0.86450000000000005,6.0705,0.22356000000000001,3.577,4.16,4.9480000000000004,6.07,7.782,10.683,16.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1559,-0.86470000000000002,6.0705999999999998,0.22359999999999999,3.577,4.1589999999999998,4.9480000000000004,6.0709999999999997,7.7830000000000004,10.685,16.556999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1560,-0.86480000000000001,6.0705999999999998,0.22364000000000001,3.5760000000000001,4.1589999999999998,4.9480000000000004,6.0709999999999997,7.7830000000000004,10.686999999999999,16.562999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1561,-0.86499999999999999,6.0707000000000004,0.22367000000000001,3.5760000000000001,4.1589999999999998,4.9480000000000004,6.0709999999999997,7.7839999999999998,10.688000000000001,16.568999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1562,-0.86519999999999997,6.0707000000000004,0.22370999999999999,3.5760000000000001,4.1589999999999998,4.9480000000000004,6.0709999999999997,7.7839999999999998,10.69,16.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1563,-0.86539999999999995,6.0707000000000004,0.22375,3.5760000000000001,4.1589999999999998,4.9480000000000004,6.0709999999999997,7.7850000000000001,10.692,16.582999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1564,-0.86560000000000004,6.0708000000000002,0.22378000000000001,3.5760000000000001,4.1589999999999998,4.9480000000000004,6.0709999999999997,7.7850000000000001,10.694000000000001,16.588999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1565,-0.86580000000000001,6.0708000000000002,0.22381999999999999,3.5760000000000001,4.1589999999999998,4.9480000000000004,6.0709999999999997,7.7859999999999996,10.695,16.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1566,-0.8659,6.0709,0.22386,3.5760000000000001,4.1580000000000004,4.9480000000000004,6.0709999999999997,7.7859999999999996,10.696999999999999,16.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1567,-0.86609999999999998,6.0709,0.22389000000000001,3.5750000000000002,4.1580000000000004,4.9470000000000001,6.0709999999999997,7.7869999999999999,10.699,16.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1568,-0.86629999999999996,6.0709999999999997,0.22392999999999999,3.5750000000000002,4.1580000000000004,4.9470000000000001,6.0709999999999997,7.7869999999999999,10.701000000000001,16.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1569,-0.86650000000000005,6.0709999999999997,0.22397,3.5750000000000002,4.1580000000000004,4.9470000000000001,6.0709999999999997,7.7880000000000003,10.702,16.623000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1570,-0.86670000000000003,6.0711000000000004,0.224,3.5750000000000002,4.1580000000000004,4.9470000000000001,6.0709999999999997,7.7880000000000003,10.704000000000001,16.629000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1571,-0.8669,6.0711000000000004,0.22403999999999999,3.5750000000000002,4.1580000000000004,4.9470000000000001,6.0709999999999997,7.7880000000000003,10.706,16.635999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1572,-0.86699999999999999,6.0712000000000002,0.22406999999999999,3.5750000000000002,4.1580000000000004,4.9470000000000001,6.0709999999999997,7.7889999999999997,10.707000000000001,16.640999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1573,-0.86719999999999997,6.0712000000000002,0.22411,3.5750000000000002,4.157,4.9470000000000001,6.0709999999999997,7.7889999999999997,10.709,16.648 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1574,-0.86739999999999995,6.0712000000000002,0.22414999999999999,3.5739999999999998,4.157,4.9470000000000001,6.0709999999999997,7.79,10.711,16.655000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1575,-0.86760000000000004,6.0712999999999999,0.22417999999999999,3.5739999999999998,4.157,4.9470000000000001,6.0709999999999997,7.79,10.712,16.661000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1576,-0.86780000000000002,6.0712999999999999,0.22422,3.5739999999999998,4.157,4.9470000000000001,6.0709999999999997,7.7910000000000004,10.714,16.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1577,-0.8679,6.0713999999999997,0.22425999999999999,3.5739999999999998,4.157,4.9459999999999997,6.0709999999999997,7.7910000000000004,10.715999999999999,16.675000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1578,-0.86809999999999998,6.0713999999999997,0.22428999999999999,3.5739999999999998,4.157,4.9459999999999997,6.0709999999999997,7.7919999999999998,10.718,16.681000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1579,-0.86829999999999996,6.0715000000000003,0.22433,3.5739999999999998,4.157,4.9459999999999997,6.0720000000000001,7.7919999999999998,10.72,16.687999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1580,-0.86850000000000005,6.0715000000000003,0.22437000000000001,3.5739999999999998,4.1559999999999997,4.9459999999999997,6.0720000000000001,7.7930000000000001,10.721,16.695 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1581,-0.86870000000000003,6.0716000000000001,0.22439999999999999,3.5739999999999998,4.1559999999999997,4.9459999999999997,6.0720000000000001,7.7930000000000001,10.723000000000001,16.701000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1582,-0.86890000000000001,6.0716000000000001,0.22444,3.573,4.1559999999999997,4.9459999999999997,6.0720000000000001,7.7930000000000001,10.725,16.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1583,-0.86899999999999999,6.0716999999999999,0.22448000000000001,3.573,4.1559999999999997,4.9459999999999997,6.0720000000000001,7.7939999999999996,10.727,16.715 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1584,-0.86919999999999997,6.0716999999999999,0.22450999999999999,3.573,4.1559999999999997,4.9459999999999997,6.0720000000000001,7.7939999999999996,10.728,16.721 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1585,-0.86939999999999995,6.0717999999999996,0.22455,3.573,4.1559999999999997,4.9459999999999997,6.0720000000000001,7.7949999999999999,10.73,16.728000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1586,-0.86960000000000004,6.0717999999999996,0.22458,3.573,4.1559999999999997,4.9459999999999997,6.0720000000000001,7.7949999999999999,10.731999999999999,16.734000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1587,-0.86980000000000002,6.0719000000000003,0.22461999999999999,3.573,4.1559999999999997,4.9459999999999997,6.0720000000000001,7.7960000000000003,10.734,16.742000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1588,-0.86990000000000001,6.0719000000000003,0.22466,3.5720000000000001,4.1550000000000002,4.9450000000000003,6.0720000000000001,7.7960000000000003,10.734999999999999,16.748000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1589,-0.87009999999999998,6.0720000000000001,0.22469,3.5720000000000001,4.1550000000000002,4.9450000000000003,6.0720000000000001,7.7969999999999997,10.737,16.754000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1590,-0.87029999999999996,6.0720000000000001,0.22473000000000001,3.5720000000000001,4.1550000000000002,4.9450000000000003,6.0720000000000001,7.7969999999999997,10.739000000000001,16.760999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1591,-0.87050000000000005,6.0720000000000001,0.22475999999999999,3.5720000000000001,4.1550000000000002,4.9450000000000003,6.0720000000000001,7.798,10.74,16.766999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1592,-0.87070000000000003,6.0720999999999998,0.2248,3.5720000000000001,4.1550000000000002,4.9450000000000003,6.0720000000000001,7.798,10.742000000000001,16.774999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1593,-0.87080000000000002,6.0720999999999998,0.22484000000000001,3.5720000000000001,4.1550000000000002,4.9450000000000003,6.0720000000000001,7.798,10.744,16.780999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1594,-0.871,6.0721999999999996,0.22486999999999999,3.5720000000000001,4.1550000000000002,4.9450000000000003,6.0720000000000001,7.7990000000000004,10.744999999999999,16.786999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1595,-0.87119999999999997,6.0721999999999996,0.22491,3.5720000000000001,4.1539999999999999,4.9450000000000003,6.0720000000000001,7.7990000000000004,10.747,16.795000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1596,-0.87139999999999995,6.0723000000000003,0.22495000000000001,3.5710000000000002,4.1539999999999999,4.9450000000000003,6.0720000000000001,7.8,10.749000000000001,16.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1597,-0.87160000000000004,6.0723000000000003,0.22498000000000001,3.5710000000000002,4.1539999999999999,4.9450000000000003,6.0720000000000001,7.8,10.750999999999999,16.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1598,-0.87170000000000003,6.0724,0.22502,3.5710000000000002,4.1539999999999999,4.9450000000000003,6.0720000000000001,7.8010000000000002,10.752000000000001,16.815000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1599,-0.87190000000000001,6.0724,0.22505,3.5710000000000002,4.1539999999999999,4.944,6.0720000000000001,7.8010000000000002,10.754,16.821000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1600,-0.87209999999999999,6.0724999999999998,0.22509000000000001,3.5710000000000002,4.1539999999999999,4.944,6.0720000000000001,7.8019999999999996,10.756,16.827999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1601,-0.87229999999999996,6.0724999999999998,0.22513,3.5710000000000002,4.1539999999999999,4.944,6.0720000000000001,7.8019999999999996,10.757999999999999,16.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1602,-0.87250000000000005,6.0726000000000004,0.22516,3.5710000000000002,4.1539999999999999,4.944,6.0730000000000004,7.8029999999999999,10.759,16.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1603,-0.87260000000000004,6.0726000000000004,0.22520000000000001,3.57,4.1529999999999996,4.944,6.0730000000000004,7.8029999999999999,10.760999999999999,16.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1604,-0.87280000000000002,6.0727000000000002,0.22523000000000001,3.57,4.1529999999999996,4.944,6.0730000000000004,7.8040000000000003,10.763,16.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1605,-0.873,6.0727000000000002,0.22527,3.57,4.1529999999999996,4.944,6.0730000000000004,7.8040000000000003,10.765000000000001,16.861999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1606,-0.87319999999999998,6.0728,0.22531000000000001,3.57,4.1529999999999996,4.944,6.0730000000000004,7.8049999999999997,10.766999999999999,16.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1607,-0.87339999999999995,6.0728,0.22534000000000001,3.57,4.1529999999999996,4.944,6.0730000000000004,7.8049999999999997,10.768000000000001,16.876000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1608,-0.87350000000000005,6.0728999999999997,0.22538,3.57,4.1529999999999996,4.944,6.0730000000000004,7.8049999999999997,10.77,16.882000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1609,-0.87370000000000003,6.0728999999999997,0.22541,3.57,4.1529999999999996,4.944,6.0730000000000004,7.806,10.771000000000001,16.888000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1610,-0.87390000000000001,6.0730000000000004,0.22545000000000001,3.57,4.1520000000000001,4.9429999999999996,6.0730000000000004,7.806,10.773,16.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1611,-0.87409999999999999,6.0731000000000002,0.22548000000000001,3.569,4.1520000000000001,4.9429999999999996,6.0730000000000004,7.8070000000000004,10.775,16.902000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1612,-0.87429999999999997,6.0731000000000002,0.22552,3.569,4.1520000000000001,4.9429999999999996,6.0730000000000004,7.8070000000000004,10.776999999999999,16.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1613,-0.87439999999999996,6.0731999999999999,0.22556000000000001,3.569,4.1520000000000001,4.9429999999999996,6.0730000000000004,7.8079999999999998,10.779,16.916 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1614,-0.87460000000000004,6.0731999999999999,0.22559000000000001,3.569,4.1520000000000001,4.9429999999999996,6.0730000000000004,7.8079999999999998,10.78,16.922000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1615,-0.87480000000000002,6.0732999999999997,0.22563,3.569,4.1520000000000001,4.9429999999999996,6.0730000000000004,7.8090000000000002,10.782,16.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1616,-0.875,6.0732999999999997,0.22566,3.569,4.1520000000000001,4.9429999999999996,6.0730000000000004,7.8090000000000002,10.784000000000001,16.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1617,-0.87509999999999999,6.0734000000000004,0.22570000000000001,3.569,4.1520000000000001,4.9429999999999996,6.0730000000000004,7.81,10.786,16.943000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1618,-0.87529999999999997,6.0734000000000004,0.22574,3.5680000000000001,4.1509999999999998,4.9429999999999996,6.0730000000000004,7.81,10.787000000000001,16.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1619,-0.87549999999999994,6.0735000000000001,0.22577,3.5680000000000001,4.1509999999999998,4.9429999999999996,6.0739999999999998,7.8109999999999999,10.789,16.957000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1620,-0.87570000000000003,6.0735000000000001,0.22581000000000001,3.5680000000000001,4.1509999999999998,4.9429999999999996,6.0739999999999998,7.8109999999999999,10.791,16.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1621,-0.87590000000000001,6.0735999999999999,0.22584000000000001,3.5680000000000001,4.1509999999999998,4.9429999999999996,6.0739999999999998,7.8109999999999999,10.792999999999999,16.971 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1622,-0.876,6.0735999999999999,0.22588,3.5680000000000001,4.1509999999999998,4.9420000000000002,6.0739999999999998,7.8120000000000003,10.794,16.977 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1623,-0.87619999999999998,6.0736999999999997,0.22591,3.5680000000000001,4.1509999999999998,4.9420000000000002,6.0739999999999998,7.8120000000000003,10.795999999999999,16.984000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1624,-0.87639999999999996,6.0736999999999997,0.22595000000000001,3.5680000000000001,4.1509999999999998,4.9420000000000002,6.0739999999999998,7.8129999999999997,10.798,16.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1625,-0.87660000000000005,6.0738000000000003,0.22597999999999999,3.5680000000000001,4.1509999999999998,4.9420000000000002,6.0739999999999998,7.8129999999999997,10.798999999999999,16.998000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1626,-0.87670000000000003,6.0738000000000003,0.22602,3.5670000000000002,4.1500000000000004,4.9420000000000002,6.0739999999999998,7.8140000000000001,10.801,17.004000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1627,-0.87690000000000001,6.0739000000000001,0.22606000000000001,3.5670000000000002,4.1500000000000004,4.9420000000000002,6.0739999999999998,7.8140000000000001,10.803000000000001,17.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1628,-0.87709999999999999,6.0739000000000001,0.22609000000000001,3.5670000000000002,4.1500000000000004,4.9420000000000002,6.0739999999999998,7.8150000000000004,10.805,17.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1629,-0.87729999999999997,6.0739999999999998,0.22613,3.5670000000000002,4.1500000000000004,4.9420000000000002,6.0739999999999998,7.8150000000000004,10.807,17.026 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1630,-0.87749999999999995,6.0740999999999996,0.22616,3.5670000000000002,4.1500000000000004,4.9420000000000002,6.0739999999999998,7.8159999999999998,10.808,17.032 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1631,-0.87760000000000005,6.0740999999999996,0.22620000000000001,3.5670000000000002,4.1500000000000004,4.9420000000000002,6.0739999999999998,7.8159999999999998,10.81,17.039000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1632,-0.87780000000000002,6.0742000000000003,0.22622999999999999,3.5670000000000002,4.1500000000000004,4.9420000000000002,6.0739999999999998,7.8170000000000002,10.811999999999999,17.045000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1633,-0.878,6.0742000000000003,0.22627,3.5670000000000002,4.1500000000000004,4.9409999999999998,6.0739999999999998,7.8170000000000002,10.814,17.053000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1634,-0.87819999999999998,6.0743,0.2263,3.5659999999999998,4.149,4.9409999999999998,6.0739999999999998,7.8170000000000002,10.815,17.059000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1635,-0.87829999999999997,6.0743,0.22634000000000001,3.5659999999999998,4.149,4.9409999999999998,6.0739999999999998,7.8179999999999996,10.817,17.065999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1636,-0.87849999999999995,6.0743999999999998,0.22638,3.5659999999999998,4.149,4.9409999999999998,6.0739999999999998,7.8179999999999996,10.819000000000001,17.074000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1637,-0.87870000000000004,6.0743999999999998,0.22641,3.5659999999999998,4.149,4.9409999999999998,6.0739999999999998,7.819,10.82,17.079999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1638,-0.87890000000000001,6.0744999999999996,0.22645000000000001,3.5659999999999998,4.149,4.9409999999999998,6.0739999999999998,7.819,10.821999999999999,17.088000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1639,-0.879,6.0744999999999996,0.22647999999999999,3.5659999999999998,4.149,4.9409999999999998,6.0739999999999998,7.82,10.824,17.093 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1640,-0.87919999999999998,6.0746000000000002,0.22652,3.5659999999999998,4.149,4.9409999999999998,6.0750000000000002,7.82,10.826000000000001,17.100999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1641,-0.87939999999999996,6.0747,0.22655,3.5659999999999998,4.149,4.9409999999999998,6.0750000000000002,7.8209999999999997,10.827999999999999,17.108000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1642,-0.87960000000000005,6.0747,0.22659000000000001,3.5649999999999999,4.1479999999999997,4.9409999999999998,6.0750000000000002,7.8209999999999997,10.829000000000001,17.114999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1643,-0.87970000000000004,6.0747999999999998,0.22661999999999999,3.5649999999999999,4.1479999999999997,4.9409999999999998,6.0750000000000002,7.8220000000000001,10.831,17.120999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1644,-0.87990000000000002,6.0747999999999998,0.22666,3.5649999999999999,4.1479999999999997,4.9409999999999998,6.0750000000000002,7.8220000000000001,10.833,17.128 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1645,-0.88009999999999999,6.0749000000000004,0.22669,3.5649999999999999,4.1479999999999997,4.9409999999999998,6.0750000000000002,7.8230000000000004,10.834,17.135000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1646,-0.88029999999999997,6.0749000000000004,0.22672999999999999,3.5649999999999999,4.1479999999999997,4.9400000000000004,6.0750000000000002,7.8230000000000004,10.836,17.143000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1647,-0.88039999999999996,6.0750000000000002,0.22675999999999999,3.5649999999999999,4.1479999999999997,4.9400000000000004,6.0750000000000002,7.8230000000000004,10.837999999999999,17.148 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1648,-0.88060000000000005,6.0750000000000002,0.2268,3.5649999999999999,4.1479999999999997,4.9400000000000004,6.0750000000000002,7.8239999999999998,10.84,17.155999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1649,-0.88080000000000003,6.0750999999999999,0.22683,3.5649999999999999,4.1479999999999997,4.9400000000000004,6.0750000000000002,7.8239999999999998,10.840999999999999,17.161999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1650,-0.88100000000000001,6.0751999999999997,0.22686999999999999,3.5640000000000001,4.1470000000000002,4.9400000000000004,6.0750000000000002,7.8250000000000002,10.843,17.170000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1651,-0.88109999999999999,6.0751999999999997,0.22689999999999999,3.5640000000000001,4.1470000000000002,4.9400000000000004,6.0750000000000002,7.8250000000000002,10.845000000000001,17.175999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1652,-0.88129999999999997,6.0753000000000004,0.22694,3.5640000000000001,4.1470000000000002,4.9400000000000004,6.0750000000000002,7.8259999999999996,10.847,17.184000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1653,-0.88149999999999995,6.0753000000000004,0.22697000000000001,3.5640000000000001,4.1470000000000002,4.9400000000000004,6.0750000000000002,7.8259999999999996,10.848000000000001,17.190000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1654,-0.88170000000000004,6.0754000000000001,0.22700999999999999,3.5640000000000001,4.1470000000000002,4.9400000000000004,6.0750000000000002,7.827,10.85,17.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1655,-0.88180000000000003,6.0754000000000001,0.22703999999999999,3.5640000000000001,4.1470000000000002,4.9400000000000004,6.0750000000000002,7.827,10.852,17.202999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1656,-0.88200000000000001,6.0754999999999999,0.22708,3.5640000000000001,4.1470000000000002,4.9400000000000004,6.0759999999999996,7.8280000000000003,10.853999999999999,17.210999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1657,-0.88219999999999998,6.0755999999999997,0.22711000000000001,3.5640000000000001,4.1470000000000002,4.9400000000000004,6.0759999999999996,7.8280000000000003,10.855,17.218 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1658,-0.88239999999999996,6.0755999999999997,0.22714999999999999,3.5630000000000002,4.1459999999999999,4.9390000000000001,6.0759999999999996,7.8289999999999997,10.856999999999999,17.225999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1659,-0.88249999999999995,6.0757000000000003,0.22719,3.5630000000000002,4.1459999999999999,4.9390000000000001,6.0759999999999996,7.8289999999999997,10.859,17.233000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1660,-0.88270000000000004,6.0757000000000003,0.22722000000000001,3.5630000000000002,4.1459999999999999,4.9390000000000001,6.0759999999999996,7.8289999999999997,10.861000000000001,17.239000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1661,-0.88290000000000002,6.0758000000000001,0.22725999999999999,3.5630000000000002,4.1459999999999999,4.9390000000000001,6.0759999999999996,7.83,10.863,17.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1662,-0.8831,6.0758000000000001,0.22728999999999999,3.5630000000000002,4.1459999999999999,4.9390000000000001,6.0759999999999996,7.83,10.864000000000001,17.254000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1663,-0.88319999999999999,6.0758999999999999,0.22731999999999999,3.5630000000000002,4.1459999999999999,4.9390000000000001,6.0759999999999996,7.8310000000000004,10.866,17.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1664,-0.88339999999999996,6.0759999999999996,0.22736000000000001,3.5630000000000002,4.1459999999999999,4.9390000000000001,6.0759999999999996,7.8310000000000004,10.868,17.266999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1665,-0.88360000000000005,6.0759999999999996,0.22739000000000001,3.5630000000000002,4.1459999999999999,4.9390000000000001,6.0759999999999996,7.8319999999999999,10.869,17.274000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1666,-0.88380000000000003,6.0761000000000003,0.22742999999999999,3.5619999999999998,4.1459999999999999,4.9390000000000001,6.0759999999999996,7.8319999999999999,10.871,17.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1667,-0.88390000000000002,6.0761000000000003,0.22746,3.5619999999999998,4.1449999999999996,4.9390000000000001,6.0759999999999996,7.8330000000000002,10.872999999999999,17.286999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1668,-0.8841,6.0762,0.22750000000000001,3.5619999999999998,4.1449999999999996,4.9390000000000001,6.0759999999999996,7.8330000000000002,10.875,17.295000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1669,-0.88429999999999997,6.0762,0.22753000000000001,3.5619999999999998,4.1449999999999996,4.9390000000000001,6.0759999999999996,7.8339999999999996,10.875999999999999,17.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1670,-0.88439999999999996,6.0762999999999998,0.22756999999999999,3.5619999999999998,4.1449999999999996,4.9379999999999997,6.0759999999999996,7.8339999999999996,10.878,17.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1671,-0.88460000000000005,6.0763999999999996,0.2276,3.5619999999999998,4.1449999999999996,4.9379999999999997,6.0759999999999996,7.835,10.88,17.315999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1672,-0.88480000000000003,6.0763999999999996,0.22764000000000001,3.5619999999999998,4.1449999999999996,4.9379999999999997,6.0759999999999996,7.835,10.882,17.324000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1673,-0.88500000000000001,6.0765000000000002,0.22767000000000001,3.5619999999999998,4.1449999999999996,4.9379999999999997,6.0759999999999996,7.8360000000000003,10.884,17.329999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1674,-0.8851,6.0765000000000002,0.22771,3.5609999999999999,4.1449999999999996,4.9379999999999997,6.0759999999999996,7.8360000000000003,10.885,17.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1675,-0.88529999999999998,6.0766,0.22774,3.5609999999999999,4.1440000000000001,4.9379999999999997,6.077,7.8360000000000003,10.887,17.344000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1676,-0.88549999999999995,6.0766999999999998,0.22778000000000001,3.5609999999999999,4.1440000000000001,4.9379999999999997,6.077,7.8369999999999997,10.888999999999999,17.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1677,-0.88570000000000004,6.0766999999999998,0.22781000000000001,3.5609999999999999,4.1440000000000001,4.9379999999999997,6.077,7.8369999999999997,10.891,17.359000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1678,-0.88580000000000003,6.0768000000000004,0.22785,3.5609999999999999,4.1440000000000001,4.9379999999999997,6.077,7.8380000000000001,10.891999999999999,17.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1679,-0.88600000000000001,6.0768000000000004,0.22788,3.5609999999999999,4.1440000000000001,4.9379999999999997,6.077,7.8380000000000001,10.894,17.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1680,-0.88619999999999999,6.0769000000000002,0.22792000000000001,3.5609999999999999,4.1440000000000001,4.9379999999999997,6.077,7.8390000000000004,10.896000000000001,17.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1681,-0.88629999999999998,6.077,0.22795000000000001,3.5609999999999999,4.1440000000000001,4.9379999999999997,6.077,7.8390000000000004,10.898,17.385999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1682,-0.88649999999999995,6.077,0.22799,3.56,4.1440000000000001,4.9379999999999997,6.077,7.84,10.898999999999999,17.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1683,-0.88670000000000004,6.0770999999999997,0.22802,3.56,4.1440000000000001,4.9370000000000003,6.077,7.84,10.901,17.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1684,-0.88690000000000002,6.0770999999999997,0.22805,3.56,4.1429999999999998,4.9370000000000003,6.077,7.8410000000000002,10.903,17.408000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1685,-0.88700000000000001,6.0772000000000004,0.22808999999999999,3.56,4.1429999999999998,4.9370000000000003,6.077,7.8410000000000002,10.904999999999999,17.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1686,-0.88719999999999999,6.0773000000000001,0.22811999999999999,3.56,4.1429999999999998,4.9370000000000003,6.077,7.8419999999999996,10.906000000000001,17.422000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1687,-0.88739999999999997,6.0773000000000001,0.22816,3.56,4.1429999999999998,4.9370000000000003,6.077,7.8419999999999996,10.907999999999999,17.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1688,-0.88759999999999994,6.0773999999999999,0.22819,3.56,4.1429999999999998,4.9370000000000003,6.077,7.843,10.91,17.437000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1689,-0.88770000000000004,6.0773999999999999,0.22822999999999999,3.56,4.1429999999999998,4.9370000000000003,6.077,7.843,10.912000000000001,17.443000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1690,-0.88790000000000002,6.0774999999999997,0.22825999999999999,3.56,4.1429999999999998,4.9370000000000003,6.0780000000000003,7.843,10.913,17.451000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1691,-0.8881,6.0776000000000003,0.2283,3.5590000000000002,4.1429999999999998,4.9370000000000003,6.0780000000000003,7.8440000000000003,10.914999999999999,17.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1692,-0.88819999999999999,6.0776000000000003,0.22833000000000001,3.5590000000000002,4.1420000000000003,4.9370000000000003,6.0780000000000003,7.8440000000000003,10.917,17.463999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1693,-0.88839999999999997,6.0777000000000001,0.22836999999999999,3.5590000000000002,4.1420000000000003,4.9370000000000003,6.0780000000000003,7.8449999999999998,10.919,17.472999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1694,-0.88859999999999995,6.0777000000000001,0.22839999999999999,3.5590000000000002,4.1420000000000003,4.9370000000000003,6.0780000000000003,7.8449999999999998,10.92,17.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1695,-0.88880000000000003,6.0777999999999999,0.22842999999999999,3.5590000000000002,4.1420000000000003,4.9370000000000003,6.0780000000000003,7.8460000000000001,10.922000000000001,17.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1696,-0.88890000000000002,6.0778999999999996,0.22847000000000001,3.5590000000000002,4.1420000000000003,4.9370000000000003,6.0780000000000003,7.8460000000000001,10.923999999999999,17.492999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1697,-0.8891,6.0778999999999996,0.22850000000000001,3.5590000000000002,4.1420000000000003,4.9359999999999999,6.0780000000000003,7.8470000000000004,10.926,17.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1698,-0.88929999999999998,6.0780000000000003,0.22853999999999999,3.5590000000000002,4.1420000000000003,4.9359999999999999,6.0780000000000003,7.8470000000000004,10.928000000000001,17.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1699,-0.88939999999999997,6.0781000000000001,0.22857,3.5579999999999998,4.1420000000000003,4.9359999999999999,6.0780000000000003,7.8479999999999999,10.929,17.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1700,-0.88959999999999995,6.0781000000000001,0.22861000000000001,3.5579999999999998,4.1420000000000003,4.9359999999999999,6.0780000000000003,7.8479999999999999,10.930999999999999,17.521999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1701,-0.88980000000000004,6.0781999999999998,0.22864000000000001,3.5579999999999998,4.141,4.9359999999999999,6.0780000000000003,7.8490000000000002,10.933,17.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1702,-0.88990000000000002,6.0781999999999998,0.22867000000000001,3.5579999999999998,4.141,4.9359999999999999,6.0780000000000003,7.8490000000000002,10.933999999999999,17.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1703,-0.8901,6.0782999999999996,0.22871,3.5579999999999998,4.141,4.9359999999999999,6.0780000000000003,7.85,10.936,17.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1704,-0.89029999999999998,6.0784000000000002,0.22874,3.5579999999999998,4.141,4.9359999999999999,6.0780000000000003,7.85,10.938000000000001,17.550999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1705,-0.89049999999999996,6.0784000000000002,0.22878000000000001,3.5579999999999998,4.141,4.9359999999999999,6.0780000000000003,7.85,10.94,17.559000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1706,-0.89059999999999995,6.0785,0.22881000000000001,3.5579999999999998,4.141,4.9359999999999999,6.0780000000000003,7.851,10.942,17.565000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1707,-0.89080000000000004,6.0785999999999998,0.22885,3.5579999999999998,4.141,4.9359999999999999,6.0789999999999997,7.851,10.944000000000001,17.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1708,-0.89100000000000001,6.0785999999999998,0.22888,3.5569999999999999,4.141,4.9359999999999999,6.0789999999999997,7.8520000000000003,10.945,17.579999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1709,-0.8911,6.0787000000000004,0.22891,3.5569999999999999,4.141,4.9359999999999999,6.0789999999999997,7.8520000000000003,10.946999999999999,17.585999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1710,-0.89129999999999998,6.0787000000000004,0.22894999999999999,3.5569999999999999,4.1399999999999997,4.9349999999999996,6.0789999999999997,7.8529999999999998,10.949,17.594000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1711,-0.89149999999999996,6.0788000000000002,0.22897999999999999,3.5569999999999999,4.1399999999999997,4.9349999999999996,6.0789999999999997,7.8529999999999998,10.95,17.600999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1712,-0.89159999999999995,6.0789,0.22902,3.5569999999999999,4.1399999999999997,4.9349999999999996,6.0789999999999997,7.8540000000000001,10.952,17.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1713,-0.89180000000000004,6.0789,0.22905,3.5569999999999999,4.1399999999999997,4.9349999999999996,6.0789999999999997,7.8540000000000001,10.954000000000001,17.614999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1714,-0.89200000000000002,6.0789999999999997,0.22908000000000001,3.5569999999999999,4.1399999999999997,4.9349999999999996,6.0789999999999997,7.8550000000000004,10.956,17.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1715,-0.89219999999999999,6.0791000000000004,0.22911999999999999,3.5569999999999999,4.1399999999999997,4.9349999999999996,6.0789999999999997,7.8550000000000004,10.958,17.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1716,-0.89229999999999998,6.0791000000000004,0.22914999999999999,3.556,4.1399999999999997,4.9349999999999996,6.0789999999999997,7.8550000000000004,10.959,17.635999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1717,-0.89249999999999996,6.0792000000000002,0.22919,3.556,4.1399999999999997,4.9349999999999996,6.0789999999999997,7.8559999999999999,10.961,17.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1718,-0.89270000000000005,6.0792000000000002,0.22922000000000001,3.556,4.1399999999999997,4.9349999999999996,6.0789999999999997,7.8559999999999999,10.962999999999999,17.652000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1719,-0.89280000000000004,6.0792999999999999,0.22925000000000001,3.556,4.1390000000000002,4.9349999999999996,6.0789999999999997,7.8570000000000002,10.964,17.658000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1720,-0.89300000000000002,6.0793999999999997,0.22928999999999999,3.556,4.1390000000000002,4.9349999999999996,6.0789999999999997,7.8570000000000002,10.965999999999999,17.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1721,-0.89319999999999999,6.0793999999999997,0.22932,3.556,4.1390000000000002,4.9349999999999996,6.0789999999999997,7.8579999999999997,10.968,17.672999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1722,-0.89329999999999998,6.0795000000000003,0.22936000000000001,3.556,4.1390000000000002,4.9349999999999996,6.08,7.8579999999999997,10.97,17.681000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1723,-0.89349999999999996,6.0796000000000001,0.22939000000000001,3.556,4.1390000000000002,4.9349999999999996,6.08,7.859,10.972,17.687999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1724,-0.89370000000000005,6.0796000000000001,0.22942000000000001,3.556,4.1390000000000002,4.9340000000000002,6.08,7.859,10.973000000000001,17.695 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1725,-0.89380000000000004,6.0796999999999999,0.22946,3.5550000000000002,4.1390000000000002,4.9340000000000002,6.08,7.86,10.975,17.702000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1726,-0.89400000000000002,6.0797999999999996,0.22949,3.5550000000000002,4.1390000000000002,4.9340000000000002,6.08,7.86,10.977,17.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1727,-0.89419999999999999,6.0797999999999996,0.22953000000000001,3.5550000000000002,4.1390000000000002,4.9340000000000002,6.08,7.8609999999999998,10.978999999999999,17.718 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1728,-0.89429999999999998,6.0799000000000003,0.22955999999999999,3.5550000000000002,4.1379999999999999,4.9340000000000002,6.08,7.8609999999999998,10.98,17.724 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1729,-0.89449999999999996,6.08,0.22958999999999999,3.5550000000000002,4.1379999999999999,4.9340000000000002,6.08,7.8620000000000001,10.981999999999999,17.731000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1730,-0.89470000000000005,6.08,0.22963,3.5550000000000002,4.1379999999999999,4.9340000000000002,6.08,7.8620000000000001,10.984,17.739000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1731,-0.89490000000000003,6.0800999999999998,0.22966,3.5550000000000002,4.1379999999999999,4.9340000000000002,6.08,7.8630000000000004,10.986000000000001,17.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1732,-0.89500000000000002,6.0800999999999998,0.22969999999999999,3.5550000000000002,4.1379999999999999,4.9340000000000002,6.08,7.8630000000000004,10.988,17.754000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1733,-0.8952,6.0801999999999996,0.22972999999999999,3.5550000000000002,4.1379999999999999,4.9340000000000002,6.08,7.8630000000000004,10.989000000000001,17.760999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1734,-0.89539999999999997,6.0803000000000003,0.22975999999999999,3.5550000000000002,4.1379999999999999,4.9340000000000002,6.08,7.8639999999999999,10.991,17.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1735,-0.89549999999999996,6.0803000000000003,0.2298,3.5539999999999998,4.1379999999999999,4.9340000000000002,6.08,7.8639999999999999,10.993,17.774999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1736,-0.89570000000000005,6.0804,0.22983000000000001,3.5539999999999998,4.1379999999999999,4.9340000000000002,6.08,7.8650000000000002,10.994999999999999,17.783000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1737,-0.89590000000000003,6.0804999999999998,0.22986000000000001,3.5539999999999998,4.1379999999999999,4.9340000000000002,6.08,7.8650000000000002,10.996,17.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1738,-0.89600000000000002,6.0804999999999998,0.22989999999999999,3.5539999999999998,4.1369999999999996,4.9329999999999998,6.08,7.8659999999999997,10.997999999999999,17.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1739,-0.8962,6.0805999999999996,0.22993,3.5539999999999998,4.1369999999999996,4.9329999999999998,6.0810000000000004,7.8659999999999997,11,17.805 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1740,-0.89639999999999997,6.0807000000000002,0.22996,3.5539999999999998,4.1369999999999996,4.9329999999999998,6.0810000000000004,7.867,11.002000000000001,17.812000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1741,-0.89649999999999996,6.0807000000000002,0.23,3.5539999999999998,4.1369999999999996,4.9329999999999998,6.0810000000000004,7.867,11.003,17.818999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1742,-0.89670000000000005,6.0808,0.23003000000000001,3.5539999999999998,4.1369999999999996,4.9329999999999998,6.0810000000000004,7.8680000000000003,11.005000000000001,17.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1743,-0.89690000000000003,6.0808999999999997,0.23007,3.5529999999999999,4.1369999999999996,4.9329999999999998,6.0810000000000004,7.8680000000000003,11.007,17.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1744,-0.89700000000000002,6.0808999999999997,0.2301,3.5529999999999999,4.1369999999999996,4.9329999999999998,6.0810000000000004,7.8689999999999998,11.009,17.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1745,-0.8972,6.0810000000000004,0.23013,3.5529999999999999,4.1369999999999996,4.9329999999999998,6.0810000000000004,7.8689999999999998,11.01,17.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1746,-0.89739999999999998,6.0811000000000002,0.23017000000000001,3.5529999999999999,4.1369999999999996,4.9329999999999998,6.0810000000000004,7.87,11.012,17.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1747,-0.89749999999999996,6.0811000000000002,0.23019999999999999,3.5529999999999999,4.1360000000000001,4.9329999999999998,6.0810000000000004,7.87,11.013999999999999,17.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1748,-0.89770000000000005,6.0811999999999999,0.23022999999999999,3.5529999999999999,4.1360000000000001,4.9329999999999998,6.0810000000000004,7.87,11.016,17.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1749,-0.89790000000000003,6.0812999999999997,0.23027,3.5529999999999999,4.1360000000000001,4.9329999999999998,6.0810000000000004,7.8710000000000004,11.018000000000001,17.879000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1750,-0.89800000000000002,6.0812999999999997,0.2303,3.5529999999999999,4.1360000000000001,4.9329999999999998,6.0810000000000004,7.8710000000000004,11.019,17.885000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1751,-0.8982,6.0814000000000004,0.23033000000000001,3.5529999999999999,4.1360000000000001,4.9329999999999998,6.0810000000000004,7.8719999999999999,11.021000000000001,17.891999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1752,-0.89839999999999998,6.0815000000000001,0.23036999999999999,3.5529999999999999,4.1360000000000001,4.9329999999999998,6.0819999999999999,7.8719999999999999,11.023,17.901 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1753,-0.89849999999999997,6.0815000000000001,0.23039999999999999,3.552,4.1360000000000001,4.9329999999999998,6.0819999999999999,7.8730000000000002,11.023999999999999,17.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1754,-0.89870000000000005,6.0815999999999999,0.23043,3.552,4.1360000000000001,4.9320000000000004,6.0819999999999999,7.8730000000000002,11.026,17.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1755,-0.89890000000000003,6.0815999999999999,0.23047000000000001,3.552,4.1360000000000001,4.9320000000000004,6.0819999999999999,7.8739999999999997,11.028,17.922999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1756,-0.89900000000000002,6.0816999999999997,0.23050000000000001,3.552,4.1349999999999998,4.9320000000000004,6.0819999999999999,7.8739999999999997,11.03,17.928999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1757,-0.8992,6.0818000000000003,0.23053000000000001,3.552,4.1349999999999998,4.9320000000000004,6.0819999999999999,7.875,11.032,17.937000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1758,-0.89939999999999998,6.0818000000000003,0.23057,3.552,4.1349999999999998,4.9320000000000004,6.0819999999999999,7.875,11.034000000000001,17.946000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1759,-0.89949999999999997,6.0819000000000001,0.2306,3.552,4.1349999999999998,4.9320000000000004,6.0819999999999999,7.8760000000000003,11.035,17.952000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1760,-0.89970000000000006,6.0819999999999999,0.23063,3.552,4.1349999999999998,4.9320000000000004,6.0819999999999999,7.8760000000000003,11.037000000000001,17.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1761,-0.89990000000000003,6.0819999999999999,0.23066999999999999,3.5510000000000002,4.1349999999999998,4.9320000000000004,6.0819999999999999,7.8760000000000003,11.039,17.968 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1762,-0.9,6.0820999999999996,0.23069999999999999,3.5510000000000002,4.1349999999999998,4.9320000000000004,6.0819999999999999,7.8769999999999998,11.04,17.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1763,-0.9002,6.0822000000000003,0.23072999999999999,3.5510000000000002,4.1349999999999998,4.9320000000000004,6.0819999999999999,7.8769999999999998,11.042,17.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1764,-0.90039999999999998,6.0822000000000003,0.23077,3.5510000000000002,4.1349999999999998,4.9320000000000004,6.0819999999999999,7.8780000000000001,11.044,17.989999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1765,-0.90049999999999997,6.0823,0.23080000000000001,3.5510000000000002,4.1349999999999998,4.9320000000000004,6.0819999999999999,7.8780000000000001,11.045999999999999,17.995999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1766,-0.90069999999999995,6.0823999999999998,0.23083000000000001,3.5510000000000002,4.1340000000000003,4.9320000000000004,6.0819999999999999,7.8789999999999996,11.047000000000001,18.004000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1767,-0.90080000000000005,6.0823999999999998,0.23086999999999999,3.5510000000000002,4.1340000000000003,4.9320000000000004,6.0819999999999999,7.8789999999999996,11.048999999999999,18.010999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1768,-0.90100000000000002,6.0824999999999996,0.23089999999999999,3.5510000000000002,4.1340000000000003,4.9320000000000004,6.0819999999999999,7.88,11.051,18.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1769,-0.9012,6.0826000000000002,0.23093,3.5510000000000002,4.1340000000000003,4.9320000000000004,6.0830000000000002,7.88,11.053000000000001,18.027000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1770,-0.90129999999999999,6.0827,0.23097000000000001,3.5510000000000002,4.1340000000000003,4.931,6.0830000000000002,7.8810000000000002,11.055,18.033999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1771,-0.90149999999999997,6.0827,0.23100000000000001,3.55,4.1340000000000003,4.931,6.0830000000000002,7.8810000000000002,11.055999999999999,18.042000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1772,-0.90169999999999995,6.0827999999999998,0.23103000000000001,3.55,4.1340000000000003,4.931,6.0830000000000002,7.8819999999999997,11.058,18.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1773,-0.90180000000000005,6.0829000000000004,0.23107,3.55,4.1340000000000003,4.931,6.0830000000000002,7.8819999999999997,11.06,18.056999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1774,-0.90200000000000002,6.0829000000000004,0.2311,3.55,4.1340000000000003,4.931,6.0830000000000002,7.8819999999999997,11.061999999999999,18.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1775,-0.9022,6.0830000000000002,0.23113,3.55,4.1340000000000003,4.931,6.0830000000000002,7.883,11.064,18.071999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1776,-0.90229999999999999,6.0831,0.23116,3.55,4.133,4.931,6.0830000000000002,7.883,11.065,18.077999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1777,-0.90249999999999997,6.0831,0.23119999999999999,3.55,4.133,4.931,6.0830000000000002,7.8840000000000003,11.067,18.087 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1778,-0.90269999999999995,6.0831999999999997,0.23122999999999999,3.55,4.133,4.931,6.0830000000000002,7.8840000000000003,11.069000000000001,18.094999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1779,-0.90280000000000005,6.0833000000000004,0.23125999999999999,3.55,4.133,4.931,6.0830000000000002,7.8849999999999998,11.07,18.100999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1780,-0.90300000000000002,6.0833000000000004,0.23130000000000001,3.5489999999999999,4.133,4.931,6.0830000000000002,7.8849999999999998,11.071999999999999,18.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1781,-0.9032,6.0834000000000001,0.23133000000000001,3.5489999999999999,4.133,4.931,6.0830000000000002,7.8860000000000001,11.074,18.117000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1782,-0.90329999999999999,6.0834999999999999,0.23136000000000001,3.5489999999999999,4.133,4.931,6.0839999999999996,7.8860000000000001,11.076000000000001,18.123999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1783,-0.90349999999999997,6.0834999999999999,0.23139999999999999,3.5489999999999999,4.133,4.931,6.0839999999999996,7.8869999999999996,11.077999999999999,18.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1784,-0.90359999999999996,6.0835999999999997,0.23143,3.5489999999999999,4.133,4.931,6.0839999999999996,7.8869999999999996,11.079000000000001,18.138999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1785,-0.90380000000000005,6.0837000000000003,0.23146,3.5489999999999999,4.133,4.931,6.0839999999999996,7.8879999999999999,11.081,18.146999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1786,-0.90400000000000003,6.0837000000000003,0.23149,3.5489999999999999,4.1319999999999997,4.93,6.0839999999999996,7.8879999999999999,11.083,18.154 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1787,-0.90410000000000001,6.0838000000000001,0.23153000000000001,3.5489999999999999,4.1319999999999997,4.93,6.0839999999999996,7.8890000000000002,11.085000000000001,18.161999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1788,-0.90429999999999999,6.0838999999999999,0.23155999999999999,3.5489999999999999,4.1319999999999997,4.93,6.0839999999999996,7.8890000000000002,11.087,18.170000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1789,-0.90449999999999997,6.0838999999999999,0.23158999999999999,3.5489999999999999,4.1319999999999997,4.93,6.0839999999999996,7.8890000000000002,11.087999999999999,18.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1790,-0.90459999999999996,6.0839999999999996,0.23163,3.548,4.1319999999999997,4.93,6.0839999999999996,7.89,11.09,18.184999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1791,-0.90480000000000005,6.0841000000000003,0.23166,3.548,4.1319999999999997,4.93,6.0839999999999996,7.89,11.092000000000001,18.193000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1792,-0.90490000000000004,6.0841000000000003,0.23169000000000001,3.548,4.1319999999999997,4.93,6.0839999999999996,7.891,11.093,18.199000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1793,-0.90510000000000002,6.0842000000000001,0.23172000000000001,3.548,4.1319999999999997,4.93,6.0839999999999996,7.891,11.095000000000001,18.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1794,-0.90529999999999999,6.0842999999999998,0.23175999999999999,3.548,4.1319999999999997,4.93,6.0839999999999996,7.8920000000000003,11.097,18.216000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1795,-0.90539999999999998,6.0843999999999996,0.23179,3.548,4.1319999999999997,4.93,6.0839999999999996,7.8920000000000003,11.099,18.222000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1796,-0.90559999999999996,6.0843999999999996,0.23182,3.548,4.1310000000000002,4.93,6.0839999999999996,7.8929999999999998,11.101000000000001,18.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1797,-0.90580000000000005,6.0845000000000002,0.23185,3.548,4.1310000000000002,4.93,6.0839999999999996,7.8929999999999998,11.102,18.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1798,-0.90590000000000004,6.0846,0.23189000000000001,3.548,4.1310000000000002,4.93,6.085,7.8940000000000001,11.103999999999999,18.245000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1799,-0.90610000000000002,6.0846,0.23191999999999999,3.548,4.1310000000000002,4.93,6.085,7.8940000000000001,11.106,18.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1800,-0.90629999999999999,6.0846999999999998,0.23194999999999999,3.548,4.1310000000000002,4.93,6.085,7.8949999999999996,11.108000000000001,18.260999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1801,-0.90639999999999998,6.0848000000000004,0.23199,3.5470000000000002,4.1310000000000002,4.93,6.085,7.8949999999999996,11.11,18.268999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1802,-0.90659999999999996,6.0848000000000004,0.23202,3.5470000000000002,4.1310000000000002,4.9290000000000003,6.085,7.8949999999999996,11.111000000000001,18.276 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1803,-0.90669999999999995,6.0849000000000002,0.23205000000000001,3.5470000000000002,4.1310000000000002,4.9290000000000003,6.085,7.8959999999999999,11.113,18.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1804,-0.90690000000000004,6.085,0.23208000000000001,3.5470000000000002,4.1310000000000002,4.9290000000000003,6.085,7.8959999999999999,11.115,18.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1805,-0.90710000000000002,6.085,0.23211999999999999,3.5470000000000002,4.13,4.9290000000000003,6.085,7.8970000000000002,11.117000000000001,18.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1806,-0.90720000000000001,6.0850999999999997,0.23215,3.5470000000000002,4.13,4.9290000000000003,6.085,7.8970000000000002,11.118,18.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1807,-0.90739999999999998,6.0852000000000004,0.23218,3.5470000000000002,4.13,4.9290000000000003,6.085,7.8979999999999997,11.12,18.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1808,-0.90749999999999997,6.0852000000000004,0.23221,3.5470000000000002,4.13,4.9290000000000003,6.085,7.8979999999999997,11.122,18.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1809,-0.90769999999999995,6.0853000000000002,0.23225000000000001,3.5470000000000002,4.13,4.9290000000000003,6.085,7.899,11.124000000000001,18.329999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1810,-0.90790000000000004,6.0853999999999999,0.23227999999999999,3.5459999999999998,4.13,4.9290000000000003,6.085,7.899,11.125999999999999,18.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1811,-0.90800000000000003,6.0854999999999997,0.23230999999999999,3.5459999999999998,4.13,4.9290000000000003,6.0860000000000003,7.9,11.127000000000001,18.344000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1812,-0.90820000000000001,6.0854999999999997,0.23233999999999999,3.5459999999999998,4.13,4.9290000000000003,6.0860000000000003,7.9,11.129,18.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1813,-0.90839999999999999,6.0856000000000003,0.23238,3.5459999999999998,4.13,4.9290000000000003,6.0860000000000003,7.9009999999999998,11.131,18.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1814,-0.90849999999999997,6.0857000000000001,0.23241000000000001,3.5459999999999998,4.13,4.9290000000000003,6.0860000000000003,7.9009999999999998,11.132999999999999,18.367999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1815,-0.90869999999999995,6.0857000000000001,0.23244000000000001,3.5459999999999998,4.13,4.9290000000000003,6.0860000000000003,7.9009999999999998,11.134,18.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1816,-0.90880000000000005,6.0857999999999999,0.23247000000000001,3.5459999999999998,4.1289999999999996,4.9290000000000003,6.0860000000000003,7.9020000000000001,11.135999999999999,18.382000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1817,-0.90900000000000003,6.0858999999999996,0.23250999999999999,3.5459999999999998,4.1289999999999996,4.9290000000000003,6.0860000000000003,7.9020000000000001,11.138,18.390999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1818,-0.90920000000000001,6.0858999999999996,0.23254,3.5459999999999998,4.1289999999999996,4.9279999999999999,6.0860000000000003,7.9029999999999996,11.14,18.399000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1819,-0.9093,6.0860000000000003,0.23257,3.5459999999999998,4.1289999999999996,4.9279999999999999,6.0860000000000003,7.9029999999999996,11.141,18.405999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1820,-0.90949999999999998,6.0861000000000001,0.2326,3.5459999999999998,4.1289999999999996,4.9279999999999999,6.0860000000000003,7.9039999999999999,11.143000000000001,18.414000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1821,-0.90959999999999996,6.0861999999999998,0.23264000000000001,3.5449999999999999,4.1289999999999996,4.9279999999999999,6.0860000000000003,7.9039999999999999,11.145,18.422000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1822,-0.90980000000000005,6.0861999999999998,0.23266999999999999,3.5449999999999999,4.1289999999999996,4.9279999999999999,6.0860000000000003,7.9050000000000002,11.147,18.428999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1823,-0.91,6.0862999999999996,0.23269999999999999,3.5449999999999999,4.1289999999999996,4.9279999999999999,6.0860000000000003,7.9050000000000002,11.148999999999999,18.437999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1824,-0.91010000000000002,6.0864000000000003,0.23272999999999999,3.5449999999999999,4.1289999999999996,4.9279999999999999,6.0860000000000003,7.9059999999999997,11.15,18.443999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1825,-0.9103,6.0864000000000003,0.23275999999999999,3.5449999999999999,4.1289999999999996,4.9279999999999999,6.0860000000000003,7.9059999999999997,11.151999999999999,18.452000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1826,-0.91049999999999998,6.0865,0.23280000000000001,3.5449999999999999,4.1280000000000001,4.9279999999999999,6.0860000000000003,7.907,11.154,18.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1827,-0.91059999999999997,6.0865999999999998,0.23283000000000001,3.5449999999999999,4.1280000000000001,4.9279999999999999,6.0869999999999997,7.907,11.156000000000001,18.468 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1828,-0.91080000000000005,6.0865999999999998,0.23286000000000001,3.5449999999999999,4.1280000000000001,4.9279999999999999,6.0869999999999997,7.907,11.157,18.475999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1829,-0.91090000000000004,6.0867000000000004,0.23289000000000001,3.5449999999999999,4.1280000000000001,4.9279999999999999,6.0869999999999997,7.9080000000000004,11.159000000000001,18.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1830,-0.91110000000000002,6.0868000000000002,0.23293,3.544,4.1280000000000001,4.9279999999999999,6.0869999999999997,7.9080000000000004,11.161,18.492000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1831,-0.9113,6.0869,0.23296,3.544,4.1280000000000001,4.9279999999999999,6.0869999999999997,7.9089999999999998,11.163,18.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1832,-0.91139999999999999,6.0869,0.23299,3.544,4.1280000000000001,4.9279999999999999,6.0869999999999997,7.9089999999999998,11.164,18.507000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1833,-0.91159999999999997,6.0869999999999997,0.23302,3.544,4.1280000000000001,4.9279999999999999,6.0869999999999997,7.91,11.166,18.515000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1834,-0.91169999999999995,6.0871000000000004,0.23305000000000001,3.544,4.1280000000000001,4.9279999999999999,6.0869999999999997,7.91,11.167999999999999,18.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1835,-0.91190000000000004,6.0871000000000004,0.23308999999999999,3.544,4.1280000000000001,4.9269999999999996,6.0869999999999997,7.9109999999999996,11.17,18.530999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1836,-0.91210000000000002,6.0872000000000002,0.23311999999999999,3.544,4.1280000000000001,4.9269999999999996,6.0869999999999997,7.9109999999999996,11.172000000000001,18.539000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1837,-0.91220000000000001,6.0872999999999999,0.23315,3.544,4.1269999999999998,4.9269999999999996,6.0869999999999997,7.9119999999999999,11.173,18.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1838,-0.91239999999999999,6.0873999999999997,0.23318,3.544,4.1269999999999998,4.9269999999999996,6.0869999999999997,7.9119999999999999,11.175000000000001,18.553999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1839,-0.91249999999999998,6.0873999999999997,0.23322000000000001,3.544,4.1269999999999998,4.9269999999999996,6.0869999999999997,7.9130000000000003,11.177,18.562000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1840,-0.91269999999999996,6.0875000000000004,0.23325000000000001,3.544,4.1269999999999998,4.9269999999999996,6.0880000000000001,7.9130000000000003,11.179,18.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1841,-0.91290000000000004,6.0876000000000001,0.23327999999999999,3.5430000000000001,4.1269999999999998,4.9269999999999996,6.0880000000000001,7.9139999999999997,11.180999999999999,18.577999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1842,-0.91300000000000003,6.0876000000000001,0.23330999999999999,3.5430000000000001,4.1269999999999998,4.9269999999999996,6.0880000000000001,7.9139999999999997,11.182,18.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1843,-0.91320000000000001,6.0876999999999999,0.23333999999999999,3.5430000000000001,4.1269999999999998,4.9269999999999996,6.0880000000000001,7.9139999999999997,11.183999999999999,18.593 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1844,-0.9133,6.0877999999999997,0.23338,3.5430000000000001,4.1269999999999998,4.9269999999999996,6.0880000000000001,7.915,11.186,18.600999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1845,-0.91349999999999998,6.0877999999999997,0.23341000000000001,3.5430000000000001,4.1269999999999998,4.9269999999999996,6.0880000000000001,7.915,11.188000000000001,18.609000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1846,-0.91359999999999997,6.0879000000000003,0.23344000000000001,3.5430000000000001,4.1269999999999998,4.9269999999999996,6.0880000000000001,7.9160000000000004,11.189,18.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1847,-0.91379999999999995,6.0880000000000001,0.23347000000000001,3.5430000000000001,4.1269999999999998,4.9269999999999996,6.0880000000000001,7.9160000000000004,11.191000000000001,18.623999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1848,-0.91400000000000003,6.0880999999999998,0.23350000000000001,3.5430000000000001,4.1260000000000003,4.9269999999999996,6.0880000000000001,7.9169999999999998,11.193,18.632000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1849,-0.91410000000000002,6.0880999999999998,0.23354,3.5430000000000001,4.1260000000000003,4.9269999999999996,6.0880000000000001,7.9169999999999998,11.195,18.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1850,-0.9143,6.0881999999999996,0.23357,3.5430000000000001,4.1260000000000003,4.9269999999999996,6.0880000000000001,7.9180000000000001,11.196999999999999,18.649000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1851,-0.91439999999999999,6.0883000000000003,0.2336,3.5419999999999998,4.1260000000000003,4.9269999999999996,6.0880000000000001,7.9180000000000001,11.198,18.655000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1852,-0.91459999999999997,6.0883000000000003,0.23363,3.5419999999999998,4.1260000000000003,4.9269999999999996,6.0880000000000001,7.9189999999999996,11.2,18.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1853,-0.91479999999999995,6.0884,0.23366000000000001,3.5419999999999998,4.1260000000000003,4.9260000000000002,6.0880000000000001,7.9189999999999996,11.202,18.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1854,-0.91490000000000005,6.0884999999999998,0.23369000000000001,3.5419999999999998,4.1260000000000003,4.9260000000000002,6.0880000000000001,7.9189999999999996,11.202999999999999,18.678000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1855,-0.91510000000000002,6.0885999999999996,0.23372999999999999,3.5419999999999998,4.1260000000000003,4.9260000000000002,6.0890000000000004,7.92,11.206,18.687999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-girls-zscore-expanded-table.xlsx,expanded,female,day,1856,-0.91520000000000001,6.0885999999999996,0.23376,3.5419999999999998,4.1260000000000003,4.9260000000000002,6.0890000000000004,7.92,11.207000000000001,18.695 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,91,-0.30299999999999999,7.6920000000000002,0.17019000000000001,4.7850000000000001,5.5640000000000001,6.516,7.6920000000000002,9.1609999999999996,11.016999999999999,13.395 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,92,-0.3039,7.6852999999999998,0.17022000000000001,4.7809999999999997,5.5590000000000002,6.51,7.6849999999999996,9.1530000000000005,11.009,13.385999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,93,-0.30470000000000003,7.6787000000000001,0.17025000000000001,4.7770000000000001,5.5540000000000003,6.5039999999999996,7.6790000000000003,9.1460000000000008,11,13.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,94,-0.30559999999999998,7.6721000000000004,0.17027,4.7729999999999997,5.5490000000000004,6.4989999999999997,7.6719999999999997,9.1379999999999999,10.992000000000001,13.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,95,-0.30640000000000001,7.6654,0.17030000000000001,4.7690000000000001,5.5439999999999996,6.4930000000000003,7.665,9.1310000000000002,10.984,13.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,96,-0.30719999999999997,7.6589,0.17032,4.7649999999999997,5.5389999999999997,6.4870000000000001,7.6589999999999998,9.1229999999999993,10.976000000000001,13.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,97,-0.30809999999999998,7.6523000000000003,0.17035,4.7610000000000001,5.5350000000000001,6.4820000000000002,7.6520000000000001,9.1159999999999997,10.968,13.343999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,98,-0.30890000000000001,7.6458000000000004,0.17038,4.7569999999999997,5.53,6.476,7.6459999999999999,9.1080000000000005,10.96,13.336 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,99,-0.30969999999999998,7.6393000000000004,0.1704,4.7530000000000001,5.5250000000000004,6.47,7.6390000000000002,9.1010000000000009,10.951000000000001,13.327 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,100,-0.31059999999999999,7.6327999999999996,0.17043,4.7489999999999997,5.52,6.4649999999999999,7.633,9.0939999999999994,10.943,13.319000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,101,-0.31140000000000001,7.6262999999999996,0.17044999999999999,4.7450000000000001,5.516,6.4589999999999996,7.6260000000000003,9.0860000000000003,10.935,13.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,102,-0.31219999999999998,7.6197999999999997,0.17047999999999999,4.7409999999999997,5.5110000000000001,6.4539999999999997,7.62,9.0790000000000006,10.927,13.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,103,-0.313,7.6134000000000004,0.17050000000000001,4.7370000000000001,5.5060000000000002,6.4480000000000004,7.6130000000000004,9.0709999999999997,10.919,13.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,104,-0.31380000000000002,7.6070000000000002,0.17052999999999999,4.7329999999999997,5.5019999999999998,6.4429999999999996,7.6070000000000002,9.0640000000000001,10.911,13.286 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,105,-0.31459999999999999,7.6006,0.17055000000000001,4.7290000000000001,5.4969999999999999,6.4370000000000003,7.601,9.0570000000000004,10.903,13.278 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,106,-0.31540000000000001,7.5942999999999996,0.17058000000000001,4.726,5.492,6.4320000000000004,7.5940000000000003,9.0500000000000007,10.895,13.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,107,-0.31619999999999998,7.5880000000000001,0.17061000000000001,4.7220000000000004,5.4880000000000004,6.4260000000000002,7.5880000000000001,9.0429999999999993,10.888,13.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,108,-0.317,7.5815999999999999,0.17063,4.718,5.4829999999999997,6.4210000000000003,7.5819999999999999,9.0350000000000001,10.88,13.254 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,109,-0.31780000000000003,7.5753000000000004,0.17066000000000001,4.7140000000000004,5.4790000000000001,6.415,7.5750000000000002,9.0280000000000005,10.872,13.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,110,-0.31859999999999999,7.5690999999999997,0.17068,4.71,5.4740000000000002,6.41,7.569,9.0210000000000008,10.864000000000001,13.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,111,-0.31940000000000002,7.5628000000000002,0.17069999999999999,4.7069999999999999,5.47,6.4050000000000002,7.5629999999999997,9.0139999999999993,10.856,13.228999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,112,-0.32019999999999998,7.5566000000000004,0.17072999999999999,4.7030000000000003,5.4649999999999999,6.399,7.5570000000000004,9.0069999999999997,10.849,13.222 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,113,-0.32100000000000001,7.5503999999999998,0.17075000000000001,4.6989999999999998,5.4610000000000003,6.3940000000000001,7.55,9,10.840999999999999,13.212999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,114,-0.32179999999999997,7.5442,0.17077999999999999,4.6950000000000003,5.4560000000000004,6.3890000000000002,7.5439999999999996,8.9930000000000003,10.833,13.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,115,-0.3226,7.5380000000000003,0.17080000000000001,4.6909999999999998,5.452,6.383,7.5380000000000003,8.9860000000000007,10.824999999999999,13.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,116,-0.32340000000000002,7.5317999999999996,0.17083000000000001,4.6879999999999997,5.4470000000000001,6.3780000000000001,7.532,8.9789999999999992,10.818,13.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,117,-0.32419999999999999,7.5256999999999996,0.17085,4.6840000000000002,5.4429999999999996,6.3730000000000002,7.5259999999999998,8.9719999999999995,10.81,13.182 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,118,-0.32490000000000002,7.5195999999999996,0.17088,4.68,5.4379999999999997,6.3680000000000003,7.52,8.9649999999999999,10.803000000000001,13.173999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,119,-0.32569999999999999,7.5134999999999996,0.1709,4.6769999999999996,5.4340000000000002,6.3620000000000001,7.5140000000000002,8.9580000000000002,10.795,13.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,120,-0.32650000000000001,7.5073999999999996,0.17091999999999999,4.673,5.4290000000000003,6.3570000000000002,7.5069999999999997,8.9510000000000005,10.787000000000001,13.157999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,121,-0.32719999999999999,7.5012999999999996,0.17094999999999999,4.6689999999999996,5.4249999999999998,6.3520000000000003,7.5010000000000003,8.9440000000000008,10.78,13.151 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,122,-0.32800000000000001,7.4953000000000003,0.17097000000000001,4.6660000000000004,5.4210000000000003,6.3470000000000004,7.4950000000000001,8.9369999999999994,10.772,13.143000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,123,-0.32879999999999998,7.4893000000000001,0.17100000000000001,4.6619999999999999,5.4160000000000004,6.3410000000000002,7.4889999999999999,8.93,10.765000000000001,13.135 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,124,-0.32950000000000002,7.4832999999999998,0.17102000000000001,4.6580000000000004,5.4119999999999999,6.3360000000000003,7.4829999999999997,8.9239999999999995,10.757,13.127000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,125,-0.33029999999999998,7.4772999999999996,0.17104,4.6550000000000002,5.407,6.3310000000000004,7.4770000000000003,8.9169999999999998,10.75,13.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,126,-0.33110000000000001,7.4713000000000003,0.17107,4.6509999999999998,5.4029999999999996,6.3259999999999996,7.4710000000000001,8.91,10.742000000000001,13.112 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,127,-0.33179999999999998,7.4653,0.17108999999999999,4.6470000000000002,5.399,6.3209999999999997,7.4649999999999999,8.9030000000000005,10.734999999999999,13.103999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,128,-0.33260000000000001,7.4593999999999996,0.17111000000000001,4.6440000000000001,5.3940000000000001,6.3159999999999998,7.4589999999999996,8.8960000000000008,10.727,13.097 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,129,-0.33329999999999999,7.4535,0.17113999999999999,4.6399999999999997,5.39,6.3109999999999999,7.4539999999999997,8.89,10.72,13.089 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,130,-0.33410000000000001,7.4476000000000004,0.17116000000000001,4.6369999999999996,5.3860000000000001,6.306,7.4480000000000004,8.8829999999999991,10.712999999999999,13.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,131,-0.33479999999999999,7.4417,0.17118,4.633,5.3819999999999997,6.3010000000000002,7.4420000000000002,8.8759999999999994,10.705,13.074 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,132,-0.33560000000000001,7.4358000000000004,0.17121,4.6289999999999996,5.3769999999999998,6.2949999999999999,7.4359999999999999,8.8699999999999992,10.698,13.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,133,-0.33629999999999999,7.43,0.17122999999999999,4.6260000000000003,5.3730000000000002,6.2910000000000004,7.43,8.8629999999999995,10.691000000000001,13.058999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,134,-0.33710000000000001,7.4241000000000001,0.17125000000000001,4.6219999999999999,5.3689999999999998,6.2850000000000001,7.4240000000000004,8.8559999999999999,10.683,13.051 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,135,-0.33779999999999999,7.4183000000000003,0.17127999999999999,4.6189999999999998,5.3639999999999999,6.28,7.4180000000000001,8.85,10.676,13.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,136,-0.33860000000000001,7.4124999999999996,0.17130000000000001,4.6150000000000002,5.36,6.2750000000000004,7.4119999999999999,8.843,10.669,13.036 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,137,-0.33929999999999999,7.4066999999999998,0.17132,4.6120000000000001,5.3559999999999999,6.2709999999999999,7.407,8.8360000000000003,10.661,13.029 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,138,-0.34,7.4009,0.17135,4.6079999999999997,5.3520000000000003,6.2649999999999997,7.4009999999999998,8.83,10.654,13.022 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,139,-0.34079999999999999,7.3952,0.17136999999999999,4.6050000000000004,5.3479999999999999,6.2610000000000001,7.3949999999999996,8.8230000000000004,10.647,13.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,140,-0.34150000000000003,7.3894000000000002,0.17138999999999999,4.601,5.3440000000000003,6.2560000000000002,7.3890000000000002,8.8170000000000002,10.64,13.007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,141,-0.3422,7.3837000000000002,0.17141999999999999,4.5979999999999999,5.3390000000000004,6.2510000000000003,7.3840000000000003,8.81,10.632999999999999,12.999000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,142,-0.34300000000000003,7.3780000000000001,0.17144000000000001,4.5940000000000003,5.335,6.2460000000000004,7.3780000000000001,8.8040000000000003,10.625999999999999,12.992000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,143,-0.34370000000000001,7.3723000000000001,0.17146,4.5910000000000002,5.3310000000000004,6.2409999999999997,7.3719999999999999,8.7970000000000006,10.619,12.984999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,144,-0.34439999999999998,7.3666,0.17147999999999999,4.5869999999999997,5.327,6.2359999999999998,7.367,8.7910000000000004,10.611000000000001,12.977 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,145,-0.34510000000000002,7.3609999999999998,0.17151,4.5839999999999996,5.3230000000000004,6.2309999999999999,7.3609999999999998,8.7850000000000001,10.603999999999999,12.97 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,146,-0.3458,7.3552999999999997,0.17152999999999999,4.5810000000000004,5.319,6.226,7.3550000000000004,8.7780000000000005,10.597,12.962999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,147,-0.34660000000000002,7.3497000000000003,0.17155000000000001,4.577,5.3150000000000004,6.2220000000000004,7.35,8.7720000000000002,10.59,12.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,148,-0.3473,7.3441000000000001,0.17157,4.5739999999999998,5.3109999999999999,6.2169999999999996,7.3440000000000003,8.7650000000000006,10.583,12.948 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,149,-0.34799999999999998,7.3384999999999998,0.1716,4.57,5.306,6.2119999999999997,7.3380000000000001,8.7590000000000003,10.576000000000001,12.941000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,150,-0.34870000000000001,7.3329000000000004,0.17161999999999999,4.5670000000000002,5.3019999999999996,6.2069999999999999,7.3330000000000002,8.7530000000000001,10.569000000000001,12.933999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,151,-0.34939999999999999,7.3273000000000001,0.17163999999999999,4.5640000000000001,5.298,6.202,7.327,8.7460000000000004,10.561999999999999,12.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,152,-0.35010000000000002,7.3217999999999996,0.17166000000000001,4.5599999999999996,5.2939999999999996,6.1980000000000004,7.3220000000000001,8.74,10.555,12.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,153,-0.35089999999999999,7.3162000000000003,0.17168,4.5570000000000004,5.29,6.1929999999999996,7.3159999999999998,8.7330000000000005,10.548,12.912000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,154,-0.35160000000000002,7.3106999999999998,0.17171,4.5529999999999999,5.2859999999999996,6.1879999999999997,7.3109999999999999,8.7270000000000003,10.542,12.904999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,155,-0.3523,7.3052000000000001,0.17172999999999999,4.55,5.282,6.1829999999999998,7.3049999999999997,8.7210000000000001,10.535,12.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,156,-0.35299999999999998,7.2996999999999996,0.17175000000000001,4.5469999999999997,5.2779999999999996,6.1790000000000003,7.3,8.7149999999999999,10.528,12.891 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,157,-0.35370000000000001,7.2942,0.17177000000000001,4.5439999999999996,5.274,6.1740000000000004,7.2939999999999996,8.7080000000000002,10.521000000000001,12.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,158,-0.35439999999999999,7.2887000000000004,0.17179,4.54,5.27,6.1689999999999996,7.2889999999999997,8.702,10.513999999999999,12.877000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,159,-0.35510000000000003,7.2832999999999997,0.17182,4.5369999999999999,5.266,6.1639999999999997,7.2830000000000004,8.6959999999999997,10.507,12.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,160,-0.35580000000000001,7.2778,0.17183999999999999,4.5339999999999998,5.2619999999999996,6.16,7.2779999999999996,8.69,10.5,12.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,161,-0.35649999999999998,7.2724000000000002,0.17186000000000001,4.53,5.2590000000000003,6.1550000000000002,7.2720000000000002,8.6839999999999993,10.494,12.856 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,162,-0.35720000000000002,7.2670000000000003,0.17188000000000001,4.5270000000000001,5.2549999999999999,6.1509999999999998,7.2670000000000003,8.6769999999999996,10.487,12.849 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,163,-0.3579,7.2615999999999996,0.1719,4.524,5.2510000000000003,6.1459999999999999,7.2619999999999996,8.6709999999999994,10.48,12.842000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,164,-0.35859999999999997,7.2561999999999998,0.17191999999999999,4.5199999999999996,5.2469999999999999,6.141,7.2560000000000002,8.6649999999999991,10.473000000000001,12.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,165,-0.35920000000000002,7.2508999999999997,0.17194999999999999,4.5170000000000003,5.2430000000000003,6.1369999999999996,7.2510000000000003,8.6590000000000007,10.467000000000001,12.827999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,166,-0.3599,7.2454999999999998,0.17197000000000001,4.5140000000000002,5.2389999999999999,6.1319999999999997,7.2460000000000004,8.6530000000000005,10.46,12.821 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,167,-0.36059999999999998,7.2401999999999997,0.17199,4.5110000000000001,5.2350000000000003,6.1269999999999998,7.24,8.6470000000000002,10.452999999999999,12.814 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,168,-0.36130000000000001,7.2348999999999997,0.17201,4.5069999999999997,5.2309999999999999,6.1230000000000002,7.2350000000000003,8.641,10.446999999999999,12.807 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,169,-0.36199999999999999,7.2295999999999996,0.17202999999999999,4.5039999999999996,5.2270000000000003,6.1180000000000003,7.23,8.6349999999999998,10.44,12.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,170,-0.36270000000000002,7.2243000000000004,0.17205000000000001,4.5010000000000003,5.2240000000000002,6.1139999999999999,7.2240000000000002,8.6289999999999996,10.433,12.794 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,171,-0.3634,7.2190000000000003,0.17207,4.4980000000000002,5.22,6.109,7.2190000000000003,8.6229999999999993,10.427,12.787000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,172,-0.36399999999999999,7.2137000000000002,0.1721,4.4950000000000001,5.2160000000000002,6.1050000000000004,7.2140000000000004,8.6170000000000009,10.42,12.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,173,-0.36470000000000002,7.2084999999999999,0.17212,4.4909999999999997,5.2119999999999997,6.1,7.2080000000000002,8.6110000000000007,10.414,12.773 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,174,-0.3654,7.2032999999999996,0.17213999999999999,4.4880000000000004,5.2080000000000002,6.0960000000000001,7.2030000000000003,8.6050000000000004,10.407,12.766999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,175,-0.36609999999999998,7.1981000000000002,0.17216000000000001,4.4850000000000003,5.2050000000000001,6.0910000000000002,7.1980000000000004,8.5990000000000002,10.401,12.76 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,176,-0.36680000000000001,7.1928999999999998,0.17218,4.4820000000000002,5.2009999999999996,6.0869999999999997,7.1929999999999996,8.593,10.394,12.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,177,-0.3674,7.1877000000000004,0.17219999999999999,4.4790000000000001,5.1970000000000001,6.0819999999999999,7.1879999999999997,8.5869999999999997,10.387,12.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,178,-0.36809999999999998,7.1825000000000001,0.17222000000000001,4.476,5.1929999999999996,6.0780000000000003,7.1820000000000004,8.5809999999999995,10.381,12.74 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,179,-0.36880000000000002,7.1772999999999998,0.17224,4.4729999999999999,5.1890000000000001,6.0730000000000004,7.1769999999999996,8.5749999999999993,10.374000000000001,12.733000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,180,-0.36940000000000001,7.1722000000000001,0.17226,4.4690000000000003,5.1859999999999999,6.069,7.1719999999999997,8.5690000000000008,10.368,12.726000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,181,-0.37009999999999998,7.1670999999999996,0.17227999999999999,4.4660000000000002,5.1820000000000004,6.0650000000000004,7.1669999999999998,8.5640000000000001,10.362,12.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,182,-0.37080000000000002,7.1619999999999999,0.17230999999999999,4.4630000000000001,5.1779999999999999,6.06,7.1619999999999999,8.5579999999999998,10.355,12.714 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,183,-0.37140000000000001,7.1569000000000003,0.17233000000000001,4.46,5.1749999999999998,6.056,7.157,8.5519999999999996,10.349,12.707000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,184,-0.37209999999999999,7.1517999999999997,0.17235,4.4569999999999999,5.1710000000000003,6.0519999999999996,7.1520000000000001,8.5459999999999994,10.343,12.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,185,-0.37280000000000002,7.1467000000000001,0.17237,4.4539999999999997,5.1669999999999998,6.0469999999999997,7.1470000000000002,8.5399999999999991,10.336,12.694000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,186,-0.37340000000000001,7.1417000000000002,0.17238999999999999,4.4509999999999996,5.1639999999999997,6.0430000000000001,7.1420000000000003,8.5350000000000001,10.33,12.686999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,187,-0.37409999999999999,7.1365999999999996,0.17241000000000001,4.4480000000000004,5.16,6.0389999999999997,7.1369999999999996,8.5289999999999999,10.323,12.680999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,188,-0.37480000000000002,7.1315999999999997,0.17243,4.4450000000000003,5.1559999999999997,6.0339999999999998,7.1319999999999997,8.5229999999999997,10.317,12.673999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,189,-0.37540000000000001,7.1265999999999998,0.17244999999999999,4.4420000000000002,5.1529999999999996,6.03,7.1269999999999998,8.5169999999999995,10.311,12.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,190,-0.37609999999999999,7.1215999999999999,0.17247000000000001,4.4390000000000001,5.149,6.0259999999999998,7.1219999999999999,8.5120000000000005,10.305,12.661 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,191,-0.37669999999999998,7.1166,0.17249,4.4359999999999999,5.1449999999999996,6.0209999999999999,7.117,8.5060000000000002,10.298,12.654999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,192,-0.37740000000000001,7.1116000000000001,0.17251,4.4329999999999998,5.1420000000000003,6.0170000000000003,7.1120000000000001,8.5,10.292,12.648 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,193,-0.378,7.1067,0.17252999999999999,4.43,5.1379999999999999,6.0129999999999999,7.1070000000000002,8.4949999999999992,10.286,12.641999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,194,-0.37869999999999998,7.1017999999999999,0.17255000000000001,4.4269999999999996,5.1349999999999998,6.0090000000000003,7.1020000000000003,8.4890000000000008,10.28,12.635999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,195,-0.37930000000000003,7.0968,0.17257,4.4240000000000004,5.1310000000000002,6.0039999999999996,7.0970000000000004,8.4830000000000005,10.273,12.629 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,196,-0.38,7.0918999999999999,0.17258999999999999,4.4210000000000003,5.1269999999999998,6,7.0919999999999996,8.4779999999999998,10.266999999999999,12.622999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,197,-0.38059999999999999,7.0869999999999997,0.17261000000000001,4.4180000000000001,5.1239999999999997,5.9960000000000004,7.0869999999999997,8.4719999999999995,10.260999999999999,12.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,198,-0.38129999999999997,7.0822000000000003,0.17263000000000001,4.415,5.12,5.992,7.0819999999999999,8.4670000000000005,10.255000000000001,12.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,199,-0.38190000000000002,7.0773000000000001,0.17265,4.4119999999999999,5.117,5.9880000000000004,7.077,8.4610000000000003,10.249000000000001,12.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,200,-0.3826,7.0724,0.17266999999999999,4.4089999999999998,5.1130000000000004,5.9829999999999997,7.0720000000000001,8.4559999999999995,10.243,12.598000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,201,-0.38319999999999999,7.0675999999999997,0.17269000000000001,4.4059999999999997,5.1100000000000003,5.9790000000000001,7.0679999999999996,8.4499999999999993,10.237,12.592000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,202,-0.38390000000000002,7.0628000000000002,0.17271,4.4029999999999996,5.1059999999999999,5.9749999999999996,7.0629999999999997,8.4450000000000003,10.231,12.586 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,203,-0.38450000000000001,7.0579999999999998,0.17272999999999999,4.4000000000000004,5.1029999999999998,5.9710000000000001,7.0579999999999998,8.4390000000000001,10.225,12.579000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,204,-0.38519999999999999,7.0532000000000004,0.17274999999999999,4.3970000000000002,5.0990000000000002,5.9669999999999996,7.0529999999999999,8.4339999999999993,10.218999999999999,12.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,205,-0.38579999999999998,7.0484,0.17277000000000001,4.3940000000000001,5.0960000000000001,5.9630000000000001,7.048,8.4280000000000008,10.212999999999999,12.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,206,-0.38640000000000002,7.0435999999999996,0.17279,4.391,5.0919999999999996,5.9589999999999996,7.0439999999999996,8.423,10.207000000000001,12.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,207,-0.3871,7.0388999999999999,0.17280999999999999,4.3879999999999999,5.0890000000000004,5.9550000000000001,7.0389999999999997,8.4179999999999993,10.201000000000001,12.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,208,-0.38769999999999999,7.0342000000000002,0.17283000000000001,4.3860000000000001,5.0860000000000003,5.9509999999999996,7.0339999999999998,8.4120000000000008,10.195,12.548999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,209,-0.38840000000000002,7.0293999999999999,0.17285,4.383,5.0819999999999999,5.9470000000000001,7.0289999999999999,8.407,10.189,12.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,210,-0.38900000000000001,7.0247000000000002,0.17287,4.38,5.0789999999999997,5.9420000000000002,7.0250000000000004,8.4009999999999998,10.183,12.537000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,211,-0.3896,7.0201000000000002,0.17288999999999999,4.3769999999999998,5.0750000000000002,5.9390000000000001,7.02,8.3960000000000008,10.177,12.531000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,212,-0.39029999999999998,7.0153999999999996,0.17291000000000001,4.3739999999999997,5.0720000000000001,5.9340000000000002,7.0149999999999997,8.391,10.172000000000001,12.525 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,213,-0.39090000000000003,7.0106999999999999,0.17293,4.3710000000000004,5.0679999999999996,5.93,7.0110000000000001,8.3849999999999998,10.166,12.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,214,-0.39150000000000001,7.0061,0.17294999999999999,4.3689999999999998,5.0650000000000004,5.9269999999999996,7.0060000000000002,8.3800000000000008,10.16,12.513 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,215,-0.3921,7.0014000000000003,0.17297000000000001,4.3659999999999997,5.0620000000000003,5.9219999999999997,7.0010000000000003,8.375,10.154,12.507 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,216,-0.39279999999999998,6.9968000000000004,0.17299,4.3630000000000004,5.0579999999999998,5.9189999999999996,6.9969999999999999,8.3699999999999992,10.148,12.500999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,217,-0.39340000000000003,6.9922000000000004,0.17301,4.3600000000000003,5.0549999999999997,5.915,6.992,8.3640000000000008,10.143000000000001,12.494999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,218,-0.39400000000000002,6.9875999999999996,0.17302999999999999,4.3570000000000002,5.0519999999999996,5.9109999999999996,6.9880000000000004,8.359,10.137,12.489000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,219,-0.3947,6.9829999999999997,0.17305000000000001,4.3550000000000004,5.048,5.907,6.9829999999999997,8.3539999999999992,10.131,12.484 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,220,-0.39529999999999998,6.9785000000000004,0.17307,4.3520000000000003,5.0449999999999999,5.9029999999999996,6.9779999999999998,8.3490000000000002,10.125999999999999,12.478 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,221,-0.39589999999999997,6.9739000000000004,0.17308999999999999,4.3490000000000002,5.0419999999999998,5.899,6.9740000000000002,8.343,10.119999999999999,12.472 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,222,-0.39650000000000002,6.9694000000000003,0.17311000000000001,4.3460000000000001,5.0380000000000003,5.8949999999999996,6.9690000000000003,8.3379999999999992,10.114000000000001,12.465999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,223,-0.39710000000000001,6.9649000000000001,0.17313000000000001,4.343,5.0350000000000001,5.891,6.9649999999999999,8.3330000000000002,10.109,12.461 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,224,-0.39779999999999999,6.9603999999999999,0.17315,4.3410000000000002,5.032,5.8869999999999996,6.96,8.3279999999999994,10.103,12.455 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,225,-0.39839999999999998,6.9558999999999997,0.17316999999999999,4.3380000000000001,5.0289999999999999,5.883,6.9560000000000004,8.3230000000000004,10.097,12.449 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,226,-0.39900000000000002,6.9513999999999996,0.17319000000000001,4.335,5.0250000000000004,5.88,6.9509999999999996,8.3179999999999996,10.092000000000001,12.444000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,227,-0.39960000000000001,6.9469000000000003,0.17319999999999999,4.3330000000000002,5.0220000000000002,5.8760000000000003,6.9470000000000001,8.3130000000000006,10.086,12.436999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,228,-0.4002,6.9424999999999999,0.17322000000000001,4.33,5.0190000000000001,5.8719999999999999,6.9420000000000002,8.3079999999999998,10.08,12.432 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,229,-0.40089999999999998,6.9381000000000004,0.17324000000000001,4.327,5.016,5.8680000000000003,6.9379999999999997,8.3030000000000008,10.074999999999999,12.426 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,230,-0.40150000000000002,6.9336000000000002,0.17326,4.3250000000000002,5.0129999999999999,5.8639999999999999,6.9340000000000002,8.298,10.069000000000001,12.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,231,-0.40210000000000001,6.9291999999999998,0.17327999999999999,4.3220000000000001,5.0090000000000003,5.86,6.9290000000000003,8.2929999999999993,10.064,12.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,232,-0.4027,6.9248000000000003,0.17330000000000001,4.319,5.0060000000000002,5.8570000000000002,6.9249999999999998,8.2880000000000003,10.058,12.41 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,233,-0.40329999999999999,6.9204999999999997,0.17332,4.3170000000000002,5.0030000000000001,5.8529999999999998,6.92,8.2829999999999995,10.053000000000001,12.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,234,-0.40389999999999998,6.9161000000000001,0.17333999999999999,4.3140000000000001,5,5.8490000000000002,6.9160000000000004,8.2780000000000005,10.048,12.398999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,235,-0.40450000000000003,6.9116999999999997,0.17335999999999999,4.3109999999999999,4.9969999999999999,5.8449999999999998,6.9119999999999999,8.2729999999999997,10.042,12.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,236,-0.40510000000000002,6.9074,0.17338000000000001,4.3090000000000002,4.9930000000000003,5.8419999999999996,6.907,8.2680000000000007,10.037000000000001,12.388 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,237,-0.40579999999999999,6.9031000000000002,0.1734,4.306,4.99,5.8380000000000001,6.9029999999999996,8.2629999999999999,10.032,12.382 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,238,-0.40639999999999998,6.8987999999999996,0.17341000000000001,4.3029999999999999,4.9870000000000001,5.8339999999999996,6.899,8.2579999999999991,10.026,12.377000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,239,-0.40699999999999997,6.8944999999999999,0.17343,4.3010000000000002,4.984,5.8310000000000004,6.8940000000000001,8.2530000000000001,10.021000000000001,12.371 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,240,-0.40760000000000002,6.8902000000000001,0.17344999999999999,4.298,4.9809999999999999,5.827,6.89,8.2479999999999993,10.015000000000001,12.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,241,-0.40820000000000001,6.8859000000000004,0.17347000000000001,4.2960000000000003,4.9779999999999998,5.8230000000000004,6.8860000000000001,8.2430000000000003,10.01,12.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,242,-0.4088,6.8817000000000004,0.17349000000000001,4.2930000000000001,4.9749999999999996,5.82,6.8819999999999997,8.2379999999999995,10.005000000000001,12.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,243,-0.40939999999999999,6.8773999999999997,0.17351,4.29,4.9720000000000004,5.8159999999999998,6.8769999999999998,8.234,9.9990000000000006,12.35 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,244,-0.41,6.8731999999999998,0.17352999999999999,4.2880000000000003,4.9690000000000003,5.8120000000000003,6.8730000000000002,8.2289999999999992,9.9939999999999998,12.345000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,245,-0.41060000000000002,6.8689999999999998,0.17355000000000001,4.2850000000000001,4.9660000000000002,5.8090000000000002,6.8689999999999998,8.2240000000000002,9.9890000000000008,12.339 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,246,-0.41120000000000001,6.8647999999999998,0.17355999999999999,4.2830000000000004,4.9630000000000001,5.8049999999999997,6.8650000000000002,8.2189999999999994,9.984,12.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,247,-0.4118,6.8605999999999998,0.17358000000000001,4.28,4.96,5.8019999999999996,6.8609999999999998,8.2140000000000004,9.9779999999999998,12.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,248,-0.41239999999999999,6.8563999999999998,0.1736,4.2779999999999996,4.9560000000000004,5.798,6.8559999999999999,8.2100000000000009,9.9730000000000008,12.323 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,249,-0.41299999999999998,6.8522999999999996,0.17362,4.2750000000000004,4.9530000000000003,5.7939999999999996,6.8520000000000003,8.2050000000000001,9.968,12.318 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,250,-0.41360000000000002,6.8480999999999996,0.17363999999999999,4.2729999999999997,4.95,5.7910000000000004,6.8479999999999999,8.1999999999999993,9.9629999999999992,12.313000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,251,-0.41420000000000001,6.8440000000000003,0.17366000000000001,4.2699999999999996,4.9470000000000001,5.7869999999999999,6.8440000000000003,8.1959999999999997,9.9580000000000002,12.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,252,-0.4148,6.8399000000000001,0.17368,4.2679999999999998,4.944,5.7839999999999998,6.84,8.1910000000000007,9.9529999999999994,12.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,253,-0.41539999999999999,6.8357999999999999,0.17369999999999999,4.2649999999999997,4.9409999999999998,5.78,6.8360000000000003,8.1859999999999999,9.9480000000000004,12.298 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,254,-0.41599999999999998,6.8316999999999997,0.17371,4.2629999999999999,4.9390000000000001,5.7770000000000001,6.8319999999999999,8.1820000000000004,9.9420000000000002,12.292 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,255,-0.41660000000000003,6.8276000000000003,0.17373,4.26,4.9359999999999999,5.7729999999999997,6.8280000000000003,8.1769999999999996,9.9369999999999994,12.287000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,256,-0.41720000000000002,6.8235999999999999,0.17374999999999999,4.258,4.9329999999999998,5.77,6.8239999999999998,8.1720000000000006,9.9320000000000004,12.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,257,-0.41770000000000002,6.8194999999999997,0.17377000000000001,4.2549999999999999,4.93,5.766,6.82,8.1679999999999993,9.9269999999999996,12.276999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,258,-0.41830000000000001,6.8155000000000001,0.17379,4.2530000000000001,4.9269999999999996,5.7629999999999999,6.8159999999999998,8.1630000000000003,9.9220000000000006,12.272 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,259,-0.41889999999999999,6.8114999999999997,0.17380999999999999,4.25,4.9240000000000004,5.7590000000000003,6.8120000000000003,8.1590000000000007,9.9179999999999993,12.266999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,260,-0.41949999999999998,6.8074000000000003,0.17382,4.2480000000000002,4.9210000000000003,5.7560000000000002,6.8070000000000004,8.1539999999999999,9.9120000000000008,12.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,261,-0.42009999999999997,6.8033999999999999,0.17383999999999999,4.2450000000000001,4.9180000000000001,5.7530000000000001,6.8029999999999999,8.1489999999999991,9.907,12.257 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,262,-0.42070000000000002,6.7995000000000001,0.17385999999999999,4.2430000000000003,4.915,5.7489999999999997,6.8,8.1449999999999996,9.9030000000000005,12.252000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,263,-0.42130000000000001,6.7954999999999997,0.17388000000000001,4.2409999999999997,4.9119999999999999,5.7460000000000004,6.7960000000000003,8.14,9.8979999999999997,12.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,264,-0.4219,6.7915000000000001,0.1739,4.2380000000000004,4.9089999999999998,5.742,6.7919999999999998,8.1359999999999992,9.8930000000000007,12.242000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,265,-0.4224,6.7876000000000003,0.17391999999999999,4.2359999999999998,4.9059999999999997,5.7389999999999999,6.7880000000000003,8.1310000000000002,9.8879999999999999,12.237 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,266,-0.42299999999999999,6.7836999999999996,0.17393,4.234,4.9039999999999999,5.7359999999999998,6.7839999999999998,8.1270000000000007,9.8829999999999991,12.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,267,-0.42359999999999998,6.7797999999999998,0.17394999999999999,4.2309999999999999,4.9009999999999998,5.7320000000000002,6.78,8.1229999999999993,9.8780000000000001,12.228 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,268,-0.42420000000000002,6.7759,0.17397000000000001,4.2290000000000001,4.8979999999999997,5.7290000000000001,6.7759999999999998,8.1180000000000003,9.8729999999999993,12.223000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,269,-0.42480000000000001,6.7720000000000002,0.17399000000000001,4.226,4.8949999999999996,5.726,6.7720000000000002,8.1140000000000008,9.8689999999999998,12.218 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,270,-0.4254,6.7680999999999996,0.17401,4.2240000000000002,4.8920000000000003,5.7220000000000004,6.7679999999999998,8.109,9.8640000000000008,12.212999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,271,-0.4259,6.7641999999999998,0.17402000000000001,4.2220000000000004,4.8899999999999997,5.7190000000000003,6.7640000000000002,8.1050000000000004,9.859,12.208 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,272,-0.42649999999999999,6.7603999999999997,0.17404,4.2190000000000003,4.8869999999999996,5.7160000000000002,6.76,8.1,9.8539999999999992,12.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,273,-0.42709999999999998,6.7565,0.17405999999999999,4.2169999999999996,4.8840000000000003,5.7119999999999997,6.7560000000000002,8.0960000000000001,9.8490000000000002,12.199 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,274,-0.42770000000000002,6.7526999999999999,0.17408000000000001,4.2149999999999999,4.8810000000000002,5.7089999999999996,6.7530000000000001,8.0920000000000005,9.8450000000000006,12.194000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,275,-0.42830000000000001,6.7488999999999999,0.1741,4.2119999999999997,4.8780000000000001,5.7060000000000004,6.7489999999999997,8.0869999999999997,9.84,12.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,276,-0.42880000000000001,6.7450999999999999,0.17410999999999999,4.21,4.8760000000000003,5.702,6.7450000000000001,8.0830000000000002,9.8350000000000009,12.185 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,277,-0.4294,6.7412999999999998,0.17413000000000001,4.2080000000000002,4.8730000000000002,5.6989999999999998,6.7409999999999997,8.0790000000000006,9.83,12.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,278,-0.43,6.7375999999999996,0.17415,4.2060000000000004,4.87,5.6959999999999997,6.7380000000000004,8.0749999999999993,9.8260000000000005,12.176 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,279,-0.43059999999999998,6.7337999999999996,0.17416999999999999,4.2030000000000003,4.867,5.6929999999999996,6.734,8.07,9.8209999999999997,12.170999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,280,-0.43109999999999998,6.7301000000000002,0.17419000000000001,4.2009999999999996,4.8650000000000002,5.69,6.73,8.0660000000000007,9.8170000000000002,12.167 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,281,-0.43169999999999997,6.7263000000000002,0.17419999999999999,4.1989999999999998,4.8620000000000001,5.6859999999999999,6.726,8.0619999999999994,9.8119999999999994,12.162000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,282,-0.43230000000000002,6.7225999999999999,0.17422000000000001,4.1959999999999997,4.859,5.6829999999999998,6.7229999999999999,8.0579999999999998,9.8070000000000004,12.157 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,283,-0.43290000000000001,6.7188999999999997,0.17424000000000001,4.194,4.8570000000000002,5.68,6.7190000000000003,8.0530000000000008,9.8030000000000008,12.153 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,284,-0.43340000000000001,6.7152000000000003,0.17426,4.1920000000000002,4.8540000000000001,5.6769999999999996,6.7149999999999999,8.0489999999999995,9.798,12.148 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,285,-0.434,6.7115999999999998,0.17427999999999999,4.1900000000000004,4.851,5.6740000000000004,6.7119999999999997,8.0449999999999999,9.7940000000000005,12.144 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,286,-0.43459999999999999,6.7079000000000004,0.17429,4.1879999999999997,4.8490000000000002,5.6710000000000003,6.7080000000000002,8.0410000000000004,9.7889999999999997,12.138999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,287,-0.43509999999999999,6.7042000000000002,0.17430999999999999,4.1849999999999996,4.8460000000000001,5.6669999999999998,6.7039999999999997,8.0370000000000008,9.7850000000000001,12.135 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,288,-0.43569999999999998,6.7005999999999997,0.17433000000000001,4.1829999999999998,4.843,5.6639999999999997,6.7009999999999996,8.0329999999999995,9.7799999999999994,12.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,289,-0.43630000000000002,6.6970000000000001,0.17435,4.181,4.8410000000000002,5.6609999999999996,6.6970000000000001,8.0280000000000005,9.7759999999999998,12.125999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,290,-0.43680000000000002,6.6933999999999996,0.17435999999999999,4.1790000000000003,4.8380000000000001,5.6580000000000004,6.6929999999999996,8.0239999999999991,9.7710000000000008,12.121 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,291,-0.43740000000000001,6.6898,0.17438000000000001,4.1769999999999996,4.8360000000000003,5.6550000000000002,6.69,8.02,9.7669999999999995,12.117000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,292,-0.438,6.6862000000000004,0.1744,4.1740000000000004,4.8330000000000002,5.6520000000000001,6.6859999999999999,8.016,9.7629999999999999,12.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,293,-0.4385,6.6825999999999999,0.17441999999999999,4.1719999999999997,4.83,5.649,6.6829999999999998,8.0120000000000005,9.7579999999999991,12.109 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,294,-0.43909999999999999,6.6790000000000003,0.17443,4.17,4.8280000000000003,5.6459999999999999,6.6790000000000003,8.0079999999999991,9.7539999999999996,12.103999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,295,-0.43969999999999998,6.6755000000000004,0.17444999999999999,4.1680000000000001,4.8250000000000002,5.6429999999999998,6.6760000000000002,8.0039999999999996,9.7490000000000006,12.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,296,-0.44019999999999998,6.6718999999999999,0.17446999999999999,4.1660000000000004,4.8230000000000004,5.64,6.6719999999999997,8,9.7449999999999992,12.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,297,-0.44080000000000003,6.6684000000000001,0.17449000000000001,4.1639999999999997,4.82,5.6369999999999996,6.6680000000000001,7.9960000000000004,9.7409999999999997,12.092000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,298,-0.44140000000000001,6.6649000000000003,0.17451,4.1609999999999996,4.8170000000000002,5.6340000000000003,6.665,7.992,9.7370000000000001,12.087999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,299,-0.44190000000000002,6.6614000000000004,0.17452000000000001,4.1589999999999998,4.8150000000000004,5.6310000000000002,6.6609999999999996,7.9880000000000004,9.7319999999999993,12.083 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,300,-0.4425,6.6578999999999997,0.17454,4.157,4.8120000000000003,5.6280000000000001,6.6580000000000004,7.984,9.7279999999999998,12.079000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,301,-0.443,6.6543999999999999,0.17455999999999999,4.1550000000000002,4.8099999999999996,5.625,6.6539999999999999,7.98,9.7240000000000002,12.074999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,302,-0.44359999999999999,6.6509999999999998,0.17457,4.1529999999999996,4.8070000000000004,5.6219999999999999,6.6509999999999998,7.976,9.7189999999999994,12.07 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,303,-0.44409999999999999,6.6475,0.17459,4.1509999999999998,4.8049999999999997,5.6189999999999998,6.6479999999999997,7.9720000000000004,9.7149999999999999,12.066000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,304,-0.44469999999999998,6.6440999999999999,0.17460999999999999,4.149,4.8019999999999996,5.6159999999999997,6.6440000000000001,7.968,9.7110000000000003,12.061999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,305,-0.44529999999999997,6.6406999999999998,0.17463000000000001,4.1470000000000002,4.8,5.6130000000000004,6.641,7.9649999999999999,9.7070000000000007,12.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,306,-0.44579999999999997,6.6372999999999998,0.17463999999999999,4.1449999999999996,4.7969999999999997,5.61,6.6369999999999996,7.9610000000000003,9.702,12.054 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,307,-0.44640000000000002,6.6338999999999997,0.17466000000000001,4.1429999999999998,4.7949999999999999,5.6070000000000002,6.6340000000000003,7.9569999999999999,9.6980000000000004,12.05 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,308,-0.44690000000000002,6.6304999999999996,0.17468,4.141,4.7919999999999998,5.6040000000000001,6.63,7.9530000000000003,9.6940000000000008,12.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,309,-0.44750000000000001,6.6271000000000004,0.17469999999999999,4.1390000000000002,4.79,5.601,6.6269999999999998,7.9489999999999998,9.69,12.042 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,310,-0.44800000000000001,6.6237000000000004,0.17471,4.1369999999999996,4.7880000000000003,5.5979999999999999,6.6239999999999997,7.9450000000000003,9.6859999999999999,12.038 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,311,-0.4486,6.6204000000000001,0.17473,4.1349999999999998,4.7850000000000001,5.5949999999999998,6.62,7.9420000000000002,9.6820000000000004,12.034000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,312,-0.4491,6.6170999999999998,0.17474999999999999,4.1319999999999997,4.7830000000000004,5.5919999999999996,6.617,7.9379999999999997,9.6780000000000008,12.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,313,-0.44969999999999999,6.6136999999999997,0.17477000000000001,4.13,4.78,5.59,6.6139999999999999,7.9340000000000002,9.6739999999999995,12.026 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,314,-0.45019999999999999,6.6104000000000003,0.17477999999999999,4.1280000000000001,4.7779999999999996,5.5869999999999997,6.61,7.93,9.67,12.022 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,315,-0.45079999999999998,6.6071,0.17480000000000001,4.1260000000000003,4.7759999999999998,5.5839999999999996,6.6070000000000002,7.9269999999999996,9.6660000000000004,12.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,316,-0.45140000000000002,6.6037999999999997,0.17482,4.1239999999999997,4.7729999999999997,5.5810000000000004,6.6040000000000001,7.923,9.6620000000000008,12.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,317,-0.45190000000000002,6.6006,0.17483000000000001,4.1230000000000002,4.7709999999999999,5.5780000000000003,6.601,7.9189999999999996,9.6579999999999995,12.010999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,318,-0.45240000000000002,6.5972999999999997,0.17485000000000001,4.1210000000000004,4.7679999999999998,5.5750000000000002,6.5970000000000004,7.915,9.6539999999999999,12.007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,319,-0.45300000000000001,6.5940000000000003,0.17487,4.1189999999999998,4.766,5.5730000000000004,6.5940000000000003,7.9119999999999999,9.65,12.003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,320,-0.45350000000000001,6.5907999999999998,0.17488999999999999,4.117,4.7640000000000002,5.57,6.5910000000000002,7.9080000000000004,9.6460000000000008,11.999000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,321,-0.4541,6.5876000000000001,0.1749,4.1150000000000002,4.7610000000000001,5.5670000000000002,6.5880000000000001,7.9039999999999999,9.6419999999999995,11.994999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,322,-0.4546,6.5843999999999996,0.17491999999999999,4.1130000000000004,4.7590000000000003,5.5640000000000001,6.5839999999999996,7.9009999999999998,9.6379999999999999,11.992000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,323,-0.45519999999999999,6.5811999999999999,0.17494000000000001,4.1109999999999998,4.7569999999999997,5.5620000000000003,6.5810000000000004,7.8970000000000002,9.6340000000000003,11.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,324,-0.45569999999999999,6.5780000000000003,0.17494999999999999,4.109,4.7539999999999996,5.5590000000000002,6.5780000000000003,7.8940000000000001,9.6300000000000008,11.984 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,325,-0.45629999999999998,6.5747999999999998,0.17496999999999999,4.1070000000000002,4.7519999999999998,5.556,6.5750000000000002,7.89,9.6259999999999994,11.981 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,326,-0.45679999999999998,6.5716000000000001,0.17499000000000001,4.1050000000000004,4.75,5.5529999999999999,6.5720000000000001,7.8860000000000001,9.6229999999999993,11.977 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,327,-0.45739999999999997,6.5685000000000002,0.17499999999999999,4.1029999999999998,4.7480000000000002,5.5510000000000002,6.5679999999999996,7.883,9.6189999999999998,11.973000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,328,-0.45789999999999997,6.5652999999999997,0.17502000000000001,4.101,4.7450000000000001,5.548,6.5650000000000004,7.8789999999999996,9.6150000000000002,11.968999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,329,-0.45839999999999997,6.5621999999999998,0.17504,4.0990000000000002,4.7430000000000003,5.5449999999999999,6.5620000000000003,7.8760000000000003,9.6110000000000007,11.965999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,330,-0.45900000000000002,6.5590999999999999,0.17505000000000001,4.0970000000000004,4.7409999999999997,5.5430000000000001,6.5590000000000002,7.8719999999999999,9.6069999999999993,11.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,331,-0.45950000000000002,6.5559000000000003,0.17507,4.0949999999999998,4.7380000000000004,5.54,6.556,7.8689999999999998,9.6029999999999998,11.958 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,332,-0.46010000000000001,6.5528000000000004,0.17509,4.0940000000000003,4.7359999999999998,5.5369999999999999,6.5529999999999999,7.8650000000000002,9.6,11.955 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,333,-0.46060000000000001,6.5498000000000003,0.17510999999999999,4.0919999999999996,4.734,5.5350000000000001,6.55,7.8620000000000001,9.5960000000000001,11.952 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,334,-0.4612,6.5467000000000004,0.17512,4.09,4.7320000000000002,5.532,6.5469999999999997,7.8579999999999997,9.5920000000000005,11.948 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,335,-0.4617,6.5435999999999996,0.17513999999999999,4.0880000000000001,4.7290000000000001,5.5289999999999999,6.5439999999999996,7.8550000000000004,9.5890000000000004,11.945 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,336,-0.4622,6.5406000000000004,0.17516000000000001,4.0860000000000003,4.7270000000000003,5.5270000000000001,6.5410000000000004,7.851,9.5850000000000009,11.941000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,337,-0.46279999999999999,6.5374999999999996,0.17516999999999999,4.0839999999999996,4.7249999999999996,5.524,6.5380000000000003,7.8479999999999999,9.5809999999999995,11.936999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,338,-0.46329999999999999,6.5345000000000004,0.17519000000000001,4.0830000000000002,4.7229999999999999,5.5220000000000002,6.5339999999999998,7.8440000000000003,9.5779999999999994,11.933999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,339,-0.46379999999999999,6.5315000000000003,0.17521,4.0810000000000004,4.7210000000000001,5.5190000000000001,6.532,7.8410000000000002,9.5739999999999998,11.930999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,340,-0.46439999999999998,6.5285000000000002,0.17521999999999999,4.0789999999999997,4.7190000000000003,5.516,6.5279999999999996,7.8380000000000001,9.57,11.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,341,-0.46489999999999998,6.5255000000000001,0.17524000000000001,4.077,4.7160000000000002,5.5140000000000002,6.5259999999999998,7.8339999999999996,9.5670000000000002,11.923999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,342,-0.46550000000000002,6.5225,0.17526,4.0750000000000002,4.7140000000000004,5.5110000000000001,6.5220000000000002,7.8310000000000004,9.5630000000000006,11.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,343,-0.46600000000000003,6.5194999999999999,0.17527000000000001,4.0730000000000004,4.7119999999999997,5.5090000000000003,6.52,7.827,9.5589999999999993,11.917 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,344,-0.46650000000000003,6.5164999999999997,0.17529,4.0720000000000001,4.71,5.5060000000000002,6.516,7.8239999999999998,9.5559999999999992,11.914 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,345,-0.46710000000000002,6.5136000000000003,0.17530999999999999,4.07,4.7080000000000002,5.5039999999999996,6.5140000000000002,7.8209999999999997,9.5519999999999996,11.911 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,346,-0.46760000000000002,6.5106999999999999,0.17532,4.0679999999999996,4.7060000000000004,5.5010000000000003,6.5110000000000001,7.8179999999999996,9.5489999999999995,11.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,347,-0.46810000000000002,6.5076999999999998,0.17534,4.0659999999999998,4.7030000000000003,5.4980000000000002,6.508,7.8140000000000001,9.5449999999999999,11.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,348,-0.46870000000000001,6.5048000000000004,0.17535999999999999,4.0650000000000004,4.7009999999999996,5.4960000000000004,6.5049999999999999,7.8109999999999999,9.5419999999999998,11.901 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,349,-0.46920000000000001,6.5019,0.17537,4.0629999999999997,4.6989999999999998,5.4939999999999998,6.5019999999999998,7.8079999999999998,9.5380000000000003,11.897 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,350,-0.46970000000000001,6.4989999999999997,0.17538999999999999,4.0609999999999999,4.6970000000000001,5.4909999999999997,6.4989999999999997,7.8040000000000003,9.5350000000000001,11.894 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,351,-0.47020000000000001,6.4961000000000002,0.17541000000000001,4.0590000000000002,4.6950000000000003,5.4880000000000004,6.4960000000000004,7.8010000000000002,9.5310000000000006,11.891 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,352,-0.4708,6.4931999999999999,0.17541999999999999,4.0579999999999998,4.6929999999999996,5.4859999999999998,6.4930000000000003,7.798,9.5280000000000005,11.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,353,-0.4713,6.4904000000000002,0.17544000000000001,4.056,4.6909999999999998,5.484,6.49,7.7949999999999999,9.5250000000000004,11.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,354,-0.4718,6.4874999999999998,0.17546,4.0540000000000003,4.6890000000000001,5.4809999999999999,6.4880000000000004,7.7910000000000004,9.5210000000000008,11.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,355,-0.47239999999999999,6.4847000000000001,0.17546999999999999,4.0519999999999996,4.6870000000000003,5.4790000000000001,6.4850000000000003,7.7880000000000003,9.5180000000000007,11.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,356,-0.47289999999999999,6.4819000000000004,0.17549000000000001,4.0510000000000002,4.6849999999999996,5.476,6.4820000000000002,7.7850000000000001,9.5139999999999993,11.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,357,-0.47339999999999999,6.4790000000000001,0.17549999999999999,4.0490000000000004,4.6829999999999998,5.4740000000000002,6.4790000000000001,7.782,9.5109999999999992,11.871 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,358,-0.47389999999999999,6.4762000000000004,0.17552000000000001,4.0469999999999997,4.681,5.4710000000000001,6.476,7.7789999999999999,9.5069999999999997,11.868 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,359,-0.47449999999999998,6.4733999999999998,0.17554,4.0460000000000003,4.6779999999999999,5.4690000000000003,6.4729999999999999,7.7759999999999998,9.5039999999999996,11.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,360,-0.47499999999999998,6.4706000000000001,0.17555000000000001,4.0439999999999996,4.6769999999999996,5.4669999999999996,6.4710000000000001,7.7720000000000002,9.5009999999999994,11.862 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,361,-0.47549999999999998,6.4679000000000002,0.17557,4.0419999999999998,4.6749999999999998,5.4640000000000004,6.468,7.7690000000000001,9.4979999999999993,11.859 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,362,-0.47599999999999998,6.4650999999999996,0.17559,4.0410000000000004,4.6719999999999997,5.4619999999999997,6.4649999999999999,7.766,9.4939999999999998,11.856 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,363,-0.47660000000000002,6.4623999999999997,0.17560000000000001,4.0389999999999997,4.6710000000000003,5.46,6.4619999999999997,7.7629999999999999,9.4909999999999997,11.853 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,364,-0.47710000000000002,6.4596,0.17562,4.0369999999999999,4.6680000000000001,5.4569999999999999,6.46,7.76,9.4879999999999995,11.85 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,365,-0.47760000000000002,6.4569000000000001,0.17563999999999999,4.0359999999999996,4.6660000000000004,5.4550000000000001,6.4569999999999999,7.7569999999999997,9.4849999999999994,11.848000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,366,-0.47810000000000002,6.4542000000000002,0.17565,4.0339999999999998,4.665,5.452,6.4539999999999997,7.7539999999999996,9.4809999999999999,11.843999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,367,-0.47870000000000001,6.4513999999999996,0.17566999999999999,4.032,4.6630000000000003,5.45,6.4509999999999996,7.7510000000000003,9.4779999999999998,11.842000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,368,-0.47920000000000001,6.4486999999999997,0.17568,4.0309999999999997,4.6609999999999996,5.4480000000000004,6.4489999999999998,7.7480000000000002,9.4749999999999996,11.837999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,369,-0.47970000000000002,6.4459999999999997,0.1757,4.0289999999999999,4.6589999999999998,5.4450000000000003,6.4459999999999997,7.7450000000000001,9.4719999999999995,11.836 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,370,-0.48020000000000002,6.4433999999999996,0.17571999999999999,4.0270000000000001,4.657,5.4429999999999996,6.4429999999999996,7.742,9.4689999999999994,11.833 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,371,-0.48070000000000002,6.4406999999999996,0.17573,4.0259999999999998,4.6550000000000002,5.4409999999999998,6.4409999999999998,7.7389999999999999,9.4649999999999999,11.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,372,-0.48130000000000001,6.4379999999999997,0.17574999999999999,4.024,4.6529999999999996,5.4390000000000001,6.4379999999999997,7.7359999999999998,9.4619999999999997,11.827 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,373,-0.48180000000000001,6.4353999999999996,0.17577000000000001,4.0229999999999997,4.6509999999999998,5.4359999999999999,6.4349999999999996,7.7329999999999997,9.4589999999999996,11.824 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,374,-0.48230000000000001,6.4328000000000003,0.17577999999999999,4.0209999999999999,4.649,5.4340000000000002,6.4329999999999998,7.73,9.4559999999999995,11.821 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,375,-0.48280000000000001,6.4301000000000004,0.17580000000000001,4.0190000000000001,4.6470000000000002,5.4320000000000004,6.43,7.7270000000000003,9.4529999999999994,11.819000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,376,-0.48330000000000001,6.4275000000000002,0.17580999999999999,4.0179999999999998,4.6449999999999996,5.4290000000000003,6.4279999999999999,7.7240000000000002,9.4499999999999993,11.816000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,377,-0.4839,6.4249000000000001,0.17582999999999999,4.016,4.6429999999999998,5.4269999999999996,6.4249999999999998,7.7210000000000001,9.4469999999999992,11.813000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,378,-0.4844,6.4222999999999999,0.17585000000000001,4.0149999999999997,4.641,5.4249999999999998,6.4219999999999997,7.718,9.4440000000000008,11.811 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,379,-0.4849,6.4196999999999997,0.17585999999999999,4.0129999999999999,4.6399999999999997,5.423,6.42,7.7149999999999999,9.44,11.807 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,380,-0.4854,6.4170999999999996,0.17588000000000001,4.0119999999999996,4.6379999999999999,5.4210000000000003,6.4169999999999998,7.7119999999999997,9.4369999999999994,11.805 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,381,-0.4859,6.4146000000000001,0.17588999999999999,4.01,4.6360000000000001,5.4180000000000001,6.415,7.7089999999999996,9.4339999999999993,11.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,382,-0.4864,6.4119999999999999,0.17591000000000001,4.0090000000000003,4.6340000000000003,5.4160000000000004,6.4119999999999999,7.7069999999999999,9.4309999999999992,11.798999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,383,-0.4869,6.4095000000000004,0.17593,4.0069999999999997,4.6319999999999997,5.4139999999999997,6.41,7.7039999999999997,9.4290000000000003,11.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,384,-0.48749999999999999,6.4069000000000003,0.17594000000000001,4.0060000000000002,4.63,5.4119999999999999,6.407,7.7009999999999996,9.4250000000000007,11.794 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,385,-0.48799999999999999,6.4043999999999999,0.17596000000000001,4.0039999999999996,4.6280000000000001,5.41,6.4039999999999999,7.6980000000000004,9.423,11.792 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,386,-0.48849999999999999,6.4019000000000004,0.17596999999999999,4.0030000000000001,4.6269999999999998,5.407,6.4020000000000001,7.6950000000000003,9.4190000000000005,11.789 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,387,-0.48899999999999999,6.3994,0.17599000000000001,4.0010000000000003,4.625,5.4050000000000002,6.399,7.6920000000000002,9.4169999999999998,11.786 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,388,-0.48949999999999999,6.3968999999999996,0.17601,3.9990000000000001,4.6230000000000002,5.4029999999999996,6.3970000000000002,7.69,9.4139999999999997,11.784000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,389,-0.49,6.3944000000000001,0.17602000000000001,3.9980000000000002,4.6210000000000004,5.4009999999999998,6.3940000000000001,7.6870000000000003,9.4109999999999996,11.781000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,390,-0.49049999999999999,6.3918999999999997,0.17604,3.996,4.6189999999999998,5.399,6.3920000000000003,7.6840000000000002,9.4079999999999995,11.778 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,391,-0.49099999999999999,6.3894000000000002,0.17605000000000001,3.9950000000000001,4.6180000000000003,5.3970000000000002,6.3890000000000002,7.681,9.4049999999999994,11.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,392,-0.49159999999999998,6.3869999999999996,0.17607,3.9940000000000002,4.6159999999999997,5.3949999999999996,6.3869999999999996,7.6790000000000003,9.4019999999999992,11.773999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,393,-0.49209999999999998,6.3845000000000001,0.17609,3.992,4.6139999999999999,5.3920000000000003,6.3840000000000003,7.6760000000000002,9.3989999999999991,11.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,394,-0.49259999999999998,6.3821000000000003,0.17610000000000001,3.9910000000000001,4.6120000000000001,5.39,6.3819999999999997,7.673,9.3960000000000008,11.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,395,-0.49309999999999998,6.3795999999999999,0.17612,3.9889999999999999,4.6100000000000003,5.3879999999999999,6.38,7.67,9.3930000000000007,11.766 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,396,-0.49359999999999998,6.3772000000000002,0.17613000000000001,3.988,4.609,5.3860000000000001,6.3769999999999998,7.6669999999999998,9.391,11.763 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,397,-0.49409999999999998,6.3747999999999996,0.17615,3.9860000000000002,4.6070000000000002,5.3840000000000003,6.375,7.665,9.3879999999999999,11.760999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,398,-0.49459999999999998,6.3723999999999998,0.17616999999999999,3.9849999999999999,4.6050000000000004,5.3819999999999997,6.3719999999999999,7.6619999999999999,9.3849999999999998,11.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,399,-0.49509999999999998,6.37,0.17618,3.9830000000000001,4.6029999999999998,5.38,6.37,7.6589999999999998,9.3819999999999997,11.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,400,-0.49559999999999998,6.3676000000000004,0.1762,3.9820000000000002,4.6020000000000003,5.3780000000000001,6.3680000000000003,7.657,9.3789999999999996,11.754 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,401,-0.49609999999999999,6.3653000000000004,0.17621000000000001,3.98,4.5999999999999996,5.3760000000000003,6.3650000000000002,7.6539999999999999,9.3770000000000007,11.750999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,402,-0.49659999999999999,6.3628999999999998,0.17623,3.9790000000000001,4.5979999999999999,5.3739999999999997,6.3630000000000004,7.6520000000000001,9.3740000000000006,11.749000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,403,-0.49709999999999999,6.3605,0.17624000000000001,3.9780000000000002,4.5970000000000004,5.3719999999999999,6.36,7.649,9.3710000000000004,11.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,404,-0.49759999999999999,6.3582000000000001,0.17626,3.976,4.5949999999999998,5.37,6.3579999999999997,7.6459999999999999,9.3689999999999998,11.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,405,-0.49809999999999999,6.3558000000000003,0.17627999999999999,3.9750000000000001,4.593,5.3680000000000003,6.3559999999999999,7.6440000000000001,9.3659999999999997,11.742000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,406,-0.49859999999999999,6.3535000000000004,0.17629,3.9729999999999999,4.5910000000000002,5.3659999999999997,6.3540000000000001,7.641,9.3629999999999995,11.739000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,407,-0.49919999999999998,6.3512000000000004,0.17630999999999999,3.972,4.59,5.3639999999999999,6.351,7.6379999999999999,9.3610000000000007,11.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,408,-0.49969999999999998,6.3489000000000004,0.17632,3.9710000000000001,4.5880000000000001,5.3620000000000001,6.3490000000000002,7.6360000000000001,9.3580000000000005,11.734999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,409,-0.50019999999999998,6.3465999999999996,0.17634,3.9689999999999999,4.5860000000000003,5.36,6.3470000000000004,7.633,9.3550000000000004,11.733000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,410,-0.50070000000000003,6.3442999999999996,0.17635000000000001,3.968,4.585,5.3579999999999997,6.3440000000000003,7.6310000000000002,9.3520000000000003,11.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,411,-0.50119999999999998,6.3419999999999996,0.17637,3.9660000000000002,4.5830000000000002,5.3559999999999999,6.3419999999999996,7.6280000000000001,9.35,11.728 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,412,-0.50170000000000003,6.3396999999999997,0.17638999999999999,3.9649999999999999,4.5810000000000004,5.3540000000000001,6.34,7.6260000000000003,9.3469999999999995,11.726000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,413,-0.50219999999999998,6.3375000000000004,0.1764,3.964,4.58,5.3520000000000003,6.3380000000000001,7.6230000000000002,9.3450000000000006,11.724 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,414,-0.50270000000000004,6.3352000000000004,0.17641999999999999,3.9620000000000002,4.5780000000000003,5.35,6.335,7.6210000000000004,9.3420000000000005,11.722 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,415,-0.50319999999999998,6.3330000000000002,0.17643,3.9609999999999999,4.577,5.3479999999999999,6.3330000000000002,7.6180000000000003,9.3390000000000004,11.718999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,416,-0.50370000000000004,6.3307000000000002,0.17645,3.96,4.5750000000000002,5.3460000000000001,6.3310000000000004,7.6159999999999997,9.3369999999999997,11.717000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,417,-0.50419999999999998,6.3285,0.17646000000000001,3.9580000000000002,4.5730000000000004,5.3440000000000003,6.3280000000000003,7.6130000000000004,9.3339999999999996,11.715 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,418,-0.50470000000000004,6.3262999999999998,0.17648,3.9569999999999999,4.5720000000000001,5.3419999999999996,6.3259999999999996,7.6109999999999998,9.3320000000000007,11.712999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,419,-0.50519999999999998,6.3239999999999998,0.17649000000000001,3.956,4.57,5.34,6.3239999999999998,7.6079999999999997,9.3290000000000006,11.711 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,420,-0.50570000000000004,6.3217999999999996,0.17651,3.9540000000000002,4.5679999999999996,5.3380000000000001,6.3220000000000001,7.6059999999999999,9.327,11.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,421,-0.50619999999999998,6.3196000000000003,0.17652999999999999,3.9529999999999998,4.5670000000000002,5.3369999999999997,6.32,7.6029999999999998,9.3239999999999998,11.707000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,422,-0.50670000000000004,6.3174999999999999,0.17654,3.952,4.5650000000000004,5.335,6.3179999999999996,7.601,9.3219999999999992,11.705 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,423,-0.50719999999999998,6.3152999999999997,0.17655999999999999,3.95,4.5640000000000001,5.3330000000000002,6.3150000000000004,7.5979999999999999,9.3190000000000008,11.702999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,424,-0.50760000000000005,6.3131000000000004,0.17657,3.9489999999999998,4.5620000000000003,5.3310000000000004,6.3129999999999997,7.5960000000000001,9.3170000000000002,11.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,425,-0.5081,6.3109000000000002,0.17659,3.948,4.5609999999999999,5.3289999999999997,6.3109999999999999,7.5940000000000003,9.3140000000000001,11.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,426,-0.50860000000000005,6.3087999999999997,0.17660000000000001,3.9470000000000001,4.5590000000000002,5.327,6.3090000000000002,7.5910000000000002,9.3119999999999994,11.696 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,427,-0.5091,6.3066000000000004,0.17662,3.9449999999999998,4.5570000000000004,5.3250000000000002,6.3070000000000004,7.5890000000000004,9.3089999999999993,11.694000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,428,-0.50960000000000005,6.3045,0.17663000000000001,3.944,4.556,5.3239999999999998,6.3040000000000003,7.5860000000000003,9.3070000000000004,11.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,429,-0.5101,6.3023999999999996,0.17665,3.9430000000000001,4.5540000000000003,5.3220000000000001,6.3019999999999996,7.5839999999999996,9.3040000000000003,11.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,430,-0.51060000000000005,6.3003,0.17666000000000001,3.9409999999999998,4.5529999999999999,5.32,6.3,7.5819999999999999,9.3019999999999996,11.688000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,431,-0.5111,6.2980999999999998,0.17668,3.94,4.5510000000000002,5.3179999999999996,6.298,7.5789999999999997,9.3000000000000007,11.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,432,-0.51160000000000005,6.2960000000000003,0.17669000000000001,3.9390000000000001,4.55,5.3159999999999998,6.2960000000000003,7.577,9.2970000000000006,11.683999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,433,-0.5121,6.2938999999999998,0.17671000000000001,3.9380000000000002,4.548,5.3140000000000001,6.2939999999999996,7.5750000000000002,9.2949999999999999,11.683 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,434,-0.51259999999999994,6.2918000000000003,0.17673,3.9359999999999999,4.5469999999999997,5.3129999999999997,6.2919999999999998,7.5720000000000001,9.2929999999999993,11.680999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,435,-0.5131,6.2897999999999996,0.17674000000000001,3.9350000000000001,4.5449999999999999,5.3109999999999999,6.29,7.57,9.2899999999999991,11.679 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,436,-0.51359999999999995,6.2877000000000001,0.17676,3.9340000000000002,4.5439999999999996,5.3090000000000002,6.2880000000000003,7.5679999999999996,9.2880000000000003,11.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,437,-0.5141,6.2855999999999996,0.17677000000000001,3.9329999999999998,4.5419999999999998,5.3070000000000004,6.2859999999999996,7.5650000000000004,9.2850000000000001,11.675000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,438,-0.51459999999999995,6.2835999999999999,0.17679,3.931,4.5410000000000004,5.3049999999999997,6.2839999999999998,7.5629999999999997,9.2829999999999995,11.673 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,439,-0.51500000000000001,6.2815000000000003,0.17680000000000001,3.93,4.5389999999999997,5.3040000000000003,6.282,7.5609999999999999,9.2810000000000006,11.670999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,440,-0.51549999999999996,6.2794999999999996,0.17682,3.9289999999999998,4.5380000000000003,5.3019999999999996,6.28,7.5590000000000002,9.2789999999999999,11.67 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,441,-0.51600000000000001,6.2774999999999999,0.17682999999999999,3.9279999999999999,4.5359999999999996,5.3,6.2779999999999996,7.556,9.2759999999999998,11.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,442,-0.51649999999999996,6.2754000000000003,0.17685000000000001,3.9260000000000002,4.5350000000000001,5.298,6.2750000000000004,7.5540000000000003,9.2739999999999991,11.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,443,-0.51700000000000002,6.2733999999999996,0.17685999999999999,3.9249999999999998,4.5330000000000004,5.2969999999999997,6.2729999999999997,7.5519999999999996,9.2720000000000002,11.664 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,444,-0.51749999999999996,6.2713999999999999,0.17688000000000001,3.9239999999999999,4.532,5.2949999999999999,6.2709999999999999,7.55,9.27,11.662000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,445,-0.51800000000000002,6.2694000000000001,0.17688999999999999,3.923,4.53,5.2930000000000001,6.2690000000000001,7.5469999999999997,9.2669999999999995,11.66 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,446,-0.51849999999999996,6.2674000000000003,0.17691000000000001,3.9220000000000002,4.5289999999999999,5.2910000000000004,6.2670000000000003,7.5449999999999999,9.2650000000000006,11.659000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,447,-0.51900000000000002,6.2653999999999996,0.17691999999999999,3.9209999999999998,4.5279999999999996,5.29,6.2649999999999997,7.5430000000000001,9.2629999999999999,11.657 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,448,-0.51939999999999997,6.2634999999999996,0.17693999999999999,3.919,4.5259999999999998,5.2880000000000003,6.2640000000000002,7.5410000000000004,9.2609999999999992,11.654999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,449,-0.51990000000000003,6.2614999999999998,0.17695,3.9180000000000001,4.5250000000000004,5.2859999999999996,6.2619999999999996,7.5389999999999997,9.2579999999999991,11.653 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,450,-0.52039999999999997,6.2595000000000001,0.17696999999999999,3.9169999999999998,4.5229999999999997,5.2850000000000001,6.26,7.5359999999999996,9.2560000000000002,11.651999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,451,-0.52090000000000003,6.2576000000000001,0.17698,3.9159999999999999,4.5220000000000002,5.2830000000000004,6.258,7.5339999999999998,9.2539999999999996,11.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,452,-0.52139999999999997,6.2556000000000003,0.17699999999999999,3.915,4.5199999999999996,5.2809999999999997,6.2560000000000002,7.532,9.2520000000000007,11.648999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,453,-0.52190000000000003,6.2537000000000003,0.17701,3.9140000000000001,4.5190000000000001,5.28,6.2539999999999996,7.53,9.25,11.647 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,454,-0.52239999999999998,6.2518000000000002,0.17702999999999999,3.9119999999999999,4.5179999999999998,5.2779999999999996,6.2519999999999998,7.5279999999999996,9.2479999999999993,11.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,455,-0.52280000000000004,6.2497999999999996,0.17705000000000001,3.911,4.516,5.2759999999999998,6.25,7.5259999999999998,9.2449999999999992,11.644 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,456,-0.52329999999999999,6.2478999999999996,0.17706,3.91,4.5149999999999997,5.2750000000000004,6.2480000000000002,7.524,9.2430000000000003,11.641999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,457,-0.52380000000000004,6.2460000000000004,0.17707999999999999,3.9089999999999998,4.5129999999999999,5.2729999999999997,6.2460000000000004,7.5220000000000002,9.2409999999999997,11.641 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,458,-0.52429999999999999,6.2441000000000004,0.17709,3.9079999999999999,4.5119999999999996,5.2709999999999999,6.2439999999999998,7.5190000000000001,9.2390000000000008,11.638999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,459,-0.52480000000000004,6.2422000000000004,0.17710999999999999,3.907,4.5110000000000001,5.27,6.242,7.5170000000000003,9.2370000000000001,11.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,460,-0.52529999999999999,6.2403000000000004,0.17712,3.9060000000000001,4.5090000000000003,5.2679999999999998,6.24,7.5149999999999997,9.2349999999999994,11.635999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,461,-0.52569999999999995,6.2384000000000004,0.17713999999999999,3.9039999999999999,4.508,5.266,6.2380000000000004,7.5129999999999999,9.2330000000000005,11.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,462,-0.5262,6.2366000000000001,0.17715,3.903,4.5069999999999997,5.2649999999999997,6.2370000000000001,7.5110000000000001,9.2309999999999999,11.632999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,463,-0.52669999999999995,6.2347000000000001,0.17716999999999999,3.9020000000000001,4.5049999999999999,5.2629999999999999,6.2350000000000003,7.5090000000000003,9.2289999999999992,11.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,464,-0.5272,6.2328999999999999,0.17718,3.9009999999999998,4.5039999999999996,5.2619999999999996,6.2329999999999997,7.5069999999999997,9.2270000000000003,11.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,465,-0.52769999999999995,6.2309999999999999,0.1772,3.9,4.5030000000000001,5.26,6.2309999999999999,7.5049999999999999,9.2249999999999996,11.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,466,-0.52810000000000001,6.2291999999999996,0.17721000000000001,3.899,4.5010000000000003,5.2590000000000003,6.2290000000000001,7.5030000000000001,9.2230000000000008,11.625999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,467,-0.52859999999999996,6.2272999999999996,0.17723,3.8980000000000001,4.5,5.2569999999999997,6.2270000000000003,7.5010000000000003,9.2210000000000001,11.625 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,468,-0.52910000000000001,6.2255000000000003,0.17724000000000001,3.8969999999999998,4.4989999999999997,5.2549999999999999,6.226,7.4989999999999997,9.2189999999999994,11.624000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,469,-0.52959999999999996,6.2237,0.17726,3.8959999999999999,4.4969999999999999,5.2539999999999996,6.2240000000000002,7.4969999999999999,9.2170000000000005,11.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,470,-0.53010000000000002,6.2218999999999998,0.17727000000000001,3.895,4.4960000000000004,5.2519999999999998,6.2220000000000004,7.4950000000000001,9.2149999999999999,11.621 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,471,-0.53049999999999997,6.2201000000000004,0.17729,3.8929999999999998,4.4950000000000001,5.2510000000000003,6.22,7.4930000000000003,9.2129999999999992,11.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,472,-0.53100000000000003,6.2183000000000002,0.17730000000000001,3.8919999999999999,4.4930000000000003,5.2489999999999997,6.218,7.4909999999999997,9.2110000000000003,11.618 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,473,-0.53149999999999997,6.2164999999999999,0.17731,3.891,4.492,5.2480000000000002,6.2160000000000002,7.4889999999999999,9.2089999999999996,11.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,474,-0.53200000000000003,6.2146999999999997,0.17732999999999999,3.89,4.4909999999999997,5.2460000000000004,6.2149999999999999,7.4870000000000001,9.2070000000000007,11.615 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,475,-0.53239999999999998,6.2129000000000003,0.17734,3.8889999999999998,4.4889999999999999,5.2439999999999998,6.2130000000000001,7.4850000000000003,9.2050000000000001,11.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,476,-0.53290000000000004,6.2111000000000001,0.17735999999999999,3.8879999999999999,4.4880000000000004,5.2430000000000003,6.2110000000000003,7.4829999999999997,9.2029999999999994,11.612 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,477,-0.53339999999999999,6.2093999999999996,0.17737,3.887,4.4870000000000001,5.2409999999999997,6.2089999999999996,7.4809999999999999,9.2010000000000005,11.611000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,478,-0.53390000000000004,6.2076000000000002,0.17738999999999999,3.8860000000000001,4.4859999999999998,5.24,6.2080000000000002,7.4790000000000001,9.1989999999999998,11.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,479,-0.53439999999999999,6.2058999999999997,0.1774,3.8849999999999998,4.484,5.2380000000000004,6.2060000000000004,7.4770000000000003,9.1969999999999992,11.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,480,-0.53480000000000005,6.2041000000000004,0.17741999999999999,3.8839999999999999,4.4829999999999997,5.2370000000000001,6.2039999999999997,7.4749999999999996,9.1950000000000003,11.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,481,-0.5353,6.2023999999999999,0.17743,3.883,4.4820000000000002,5.2350000000000003,6.202,7.4740000000000002,9.1929999999999996,11.605 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,482,-0.53580000000000005,6.2005999999999997,0.17745,3.8820000000000001,4.4809999999999999,5.234,6.2009999999999996,7.4720000000000004,9.1920000000000002,11.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,483,-0.53620000000000001,6.1989000000000001,0.17746000000000001,3.8809999999999998,4.4790000000000001,5.2320000000000002,6.1989999999999998,7.47,9.19,11.603 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,484,-0.53669999999999995,6.1971999999999996,0.17748,3.88,4.4779999999999998,5.2309999999999999,6.1970000000000001,7.468,9.1880000000000006,11.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,485,-0.53720000000000001,6.1955,0.17749000000000001,3.879,4.4770000000000003,5.2290000000000001,6.1959999999999997,7.4660000000000002,9.1859999999999999,11.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,486,-0.53769999999999996,6.1938000000000004,0.17751,3.8780000000000001,4.476,5.2279999999999998,6.194,7.4640000000000004,9.1839999999999993,11.599 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,487,-0.53810000000000002,6.1920999999999999,0.17752000000000001,3.8769999999999998,4.4740000000000002,5.226,6.1920000000000002,7.4619999999999997,9.1820000000000004,11.598000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,488,-0.53859999999999997,6.1904000000000003,0.17754,3.8759999999999999,4.4729999999999999,5.2249999999999996,6.19,7.46,9.1809999999999992,11.597 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,489,-0.53910000000000002,6.1886999999999999,0.17755000000000001,3.875,4.4720000000000004,5.2229999999999999,6.1890000000000001,7.4589999999999996,9.1790000000000003,11.595000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,490,-0.53959999999999997,6.1871,0.17757000000000001,3.8740000000000001,4.4710000000000001,5.2220000000000004,6.1870000000000003,7.4569999999999999,9.1769999999999996,11.595000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,491,-0.54,6.1853999999999996,0.17757999999999999,3.8730000000000002,4.47,5.2210000000000001,6.1849999999999996,7.4550000000000001,9.1750000000000007,11.593 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,492,-0.54049999999999998,6.1837,0.17760000000000001,3.8719999999999999,4.468,5.2190000000000003,6.1840000000000002,7.4530000000000003,9.1739999999999995,11.592000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,493,-0.54100000000000004,6.1821000000000002,0.17760999999999999,3.871,4.4669999999999996,5.218,6.1820000000000004,7.4509999999999996,9.1720000000000006,11.590999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,494,-0.54139999999999999,6.1803999999999997,0.17763000000000001,3.87,4.4660000000000002,5.2160000000000002,6.18,7.4489999999999998,9.17,11.59 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,495,-0.54190000000000005,6.1787999999999998,0.17763999999999999,3.8690000000000002,4.4649999999999999,5.2149999999999999,6.1790000000000003,7.4480000000000004,9.1679999999999993,11.587999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,496,-0.54239999999999999,6.1771000000000003,0.17765,3.8679999999999999,4.4640000000000004,5.2130000000000001,6.1769999999999996,7.4459999999999997,9.1660000000000004,11.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,497,-0.54290000000000005,6.1755000000000004,0.17766999999999999,3.867,4.4619999999999997,5.2119999999999997,6.1760000000000002,7.444,9.1649999999999991,11.586 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,498,-0.54330000000000001,6.1738999999999997,0.17768,3.8660000000000001,4.4610000000000003,5.2110000000000003,6.1740000000000004,7.4420000000000002,9.1630000000000003,11.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,499,-0.54379999999999995,6.1722999999999999,0.1777,3.8650000000000002,4.46,5.2089999999999996,6.1719999999999997,7.4409999999999998,9.1609999999999996,11.584 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,500,-0.54430000000000001,6.1706000000000003,0.17771000000000001,3.8639999999999999,4.4589999999999996,5.2080000000000002,6.1710000000000003,7.4390000000000001,9.1590000000000007,11.583 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,501,-0.54469999999999996,6.1689999999999996,0.17773,3.863,4.4580000000000002,5.2060000000000004,6.1689999999999996,7.4370000000000003,9.1579999999999995,11.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,502,-0.54520000000000002,6.1673999999999998,0.17774000000000001,3.8620000000000001,4.4560000000000004,5.2050000000000001,6.1669999999999998,7.4349999999999996,9.1560000000000006,11.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,503,-0.54569999999999996,6.1657999999999999,0.17776,3.8610000000000002,4.4550000000000001,5.2039999999999997,6.1660000000000004,7.4340000000000002,9.1549999999999994,11.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,504,-0.54610000000000003,6.1642999999999999,0.17777000000000001,3.86,4.4539999999999997,5.202,6.1639999999999997,7.4320000000000004,9.1530000000000005,11.577999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,505,-0.54659999999999997,6.1627000000000001,0.17779,3.859,4.4530000000000003,5.2009999999999996,6.1630000000000003,7.43,9.1509999999999998,11.577999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,506,-0.54710000000000003,6.1611000000000002,0.17780000000000001,3.8580000000000001,4.452,5.2,6.1609999999999996,7.4279999999999999,9.15,11.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,507,-0.54749999999999999,6.1595000000000004,0.17781,3.8570000000000002,4.4509999999999996,5.1980000000000004,6.16,7.4269999999999996,9.1479999999999997,11.574999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,508,-0.54800000000000004,6.1580000000000004,0.17782999999999999,3.8559999999999999,4.45,5.1970000000000001,6.1580000000000004,7.4249999999999998,9.1460000000000008,11.574 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,509,-0.54849999999999999,6.1563999999999997,0.17784,3.8559999999999999,4.4480000000000004,5.1959999999999997,6.1559999999999997,7.423,9.1449999999999996,11.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,510,-0.54890000000000005,6.1548999999999996,0.17785999999999999,3.855,4.4470000000000001,5.194,6.1550000000000002,7.4219999999999997,9.1430000000000007,11.571999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,511,-0.5494,6.1532999999999998,0.17787,3.8540000000000001,4.4459999999999997,5.1929999999999996,6.1529999999999996,7.42,9.141,11.571 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,512,-0.54990000000000006,6.1517999999999997,0.17788999999999999,3.8530000000000002,4.4450000000000003,5.1920000000000002,6.1520000000000001,7.4180000000000001,9.14,11.571 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,513,-0.55030000000000001,6.1501999999999999,0.1779,3.8519999999999999,4.444,5.19,6.15,7.4160000000000004,9.1379999999999999,11.569000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,514,-0.55079999999999996,6.1486999999999998,0.17791999999999999,3.851,4.4429999999999996,5.1890000000000001,6.149,7.415,9.1370000000000005,11.569000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,515,-0.55120000000000002,6.1471999999999998,0.17793,3.85,4.4420000000000002,5.1879999999999997,6.1470000000000002,7.4130000000000003,9.1349999999999998,11.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,516,-0.55169999999999997,6.1456999999999997,0.17795,3.8490000000000002,4.4409999999999998,5.1859999999999999,6.1459999999999999,7.4119999999999999,9.1340000000000003,11.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,517,-0.55220000000000002,6.1441999999999997,0.17796000000000001,3.8479999999999999,4.4400000000000004,5.1849999999999996,6.1440000000000001,7.41,9.1319999999999997,11.566000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,518,-0.55259999999999998,6.1426999999999996,0.17796999999999999,3.847,4.4390000000000001,5.1840000000000002,6.1429999999999998,7.4080000000000004,9.1300000000000008,11.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,519,-0.55310000000000004,6.1412000000000004,0.17799000000000001,3.8460000000000001,4.4370000000000003,5.1820000000000004,6.141,7.407,9.1289999999999996,11.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,520,-0.55359999999999998,6.1397000000000004,0.17799999999999999,3.8460000000000001,4.4359999999999999,5.181,6.14,7.4050000000000002,9.1270000000000007,11.563000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,521,-0.55400000000000005,6.1382000000000003,0.17802000000000001,3.8450000000000002,4.4349999999999996,5.18,6.1379999999999999,7.4039999999999999,9.1259999999999994,11.561999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,522,-0.55449999999999999,6.1367000000000003,0.17802999999999999,3.8439999999999999,4.4340000000000002,5.1779999999999999,6.1369999999999996,7.4020000000000001,9.1240000000000006,11.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,523,-0.55489999999999995,6.1352000000000002,0.17805000000000001,3.843,4.4329999999999998,5.1769999999999996,6.1349999999999998,7.4,9.1229999999999993,11.56 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,524,-0.5554,6.1337999999999999,0.17806,3.8420000000000001,4.4320000000000004,5.1760000000000002,6.1340000000000003,7.399,9.1210000000000004,11.558999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,525,-0.55589999999999995,6.1322999999999999,0.17807000000000001,3.8410000000000002,4.431,5.1749999999999998,6.1319999999999997,7.3970000000000002,9.1199999999999992,11.558 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,526,-0.55630000000000002,6.1307999999999998,0.17809,3.84,4.43,5.173,6.1310000000000002,7.3949999999999996,9.1180000000000003,11.558 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,527,-0.55679999999999996,6.1294000000000004,0.17810000000000001,3.84,4.4290000000000003,5.1719999999999997,6.1289999999999996,7.3940000000000001,9.1170000000000009,11.557 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,528,-0.55720000000000003,6.1279000000000003,0.17812,3.839,4.4279999999999999,5.1710000000000003,6.1280000000000001,7.3920000000000003,9.1150000000000002,11.555999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,529,-0.55769999999999997,6.1265000000000001,0.17813000000000001,3.8380000000000001,4.4269999999999996,5.17,6.1260000000000003,7.391,9.1140000000000008,11.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,530,-0.55820000000000003,6.1250999999999998,0.17815,3.8370000000000002,4.4260000000000002,5.1680000000000001,6.125,7.3890000000000002,9.1129999999999995,11.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,531,-0.55859999999999999,6.1235999999999997,0.17816000000000001,3.8359999999999999,4.4249999999999998,5.1669999999999998,6.1239999999999997,7.3879999999999999,9.1110000000000007,11.554 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,532,-0.55910000000000004,6.1222000000000003,0.17817,3.835,4.4240000000000004,5.1660000000000004,6.1219999999999999,7.3860000000000001,9.109,11.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,533,-0.5595,6.1208,0.17818999999999999,3.8340000000000001,4.423,5.165,6.1210000000000004,7.3849999999999998,9.1080000000000005,11.552 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,534,-0.56000000000000005,6.1193999999999997,0.1782,3.8340000000000001,4.4219999999999997,5.1630000000000003,6.1189999999999998,7.383,9.1069999999999993,11.551 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,535,-0.5605,6.1180000000000003,0.17821999999999999,3.8330000000000002,4.4210000000000003,5.1619999999999999,6.1180000000000003,7.3819999999999997,9.1050000000000004,11.551 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,536,-0.56089999999999995,6.1166,0.17823,3.8319999999999999,4.42,5.1609999999999996,6.117,7.38,9.1039999999999992,11.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,537,-0.56140000000000001,6.1151999999999997,0.17824999999999999,3.831,4.4189999999999996,5.16,6.1150000000000002,7.3789999999999996,9.1029999999999998,11.548999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,538,-0.56179999999999997,6.1138000000000003,0.17826,3.83,4.4180000000000001,5.1589999999999998,6.1139999999999999,7.3769999999999998,9.1010000000000009,11.548 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,539,-0.56230000000000002,6.1124000000000001,0.17827000000000001,3.83,4.4169999999999998,5.157,6.1120000000000001,7.3760000000000003,9.1,11.548 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,540,-0.56269999999999998,6.1109999999999998,0.17829,3.8290000000000002,4.415,5.1559999999999997,6.1109999999999998,7.3739999999999997,9.0980000000000008,11.547000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,541,-0.56320000000000003,6.1096000000000004,0.17829999999999999,3.8279999999999998,4.415,5.1550000000000002,6.11,7.3730000000000002,9.0969999999999995,11.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,542,-0.56359999999999999,6.1082000000000001,0.17832000000000001,3.827,4.4130000000000003,5.1539999999999999,6.1079999999999997,7.3710000000000004,9.0960000000000001,11.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,543,-0.56410000000000005,6.1069000000000004,0.17832999999999999,3.8260000000000001,4.4130000000000003,5.1529999999999996,6.1070000000000002,7.37,9.0939999999999994,11.545 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,544,-0.56459999999999999,6.1055000000000001,0.17835000000000001,3.8250000000000002,4.4109999999999996,5.1509999999999998,6.1059999999999999,7.3680000000000003,9.093,11.545 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,545,-0.56499999999999995,6.1040999999999999,0.17835999999999999,3.8250000000000002,4.41,5.15,6.1040000000000001,7.367,9.0909999999999993,11.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,546,-0.5655,6.1028000000000002,0.17837,3.8239999999999998,4.41,5.149,6.1029999999999998,7.3650000000000002,9.09,11.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,547,-0.56589999999999996,6.1013999999999999,0.17838999999999999,3.823,4.4089999999999998,5.1479999999999997,6.101,7.3639999999999999,9.0890000000000004,11.542 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,548,-0.56640000000000001,6.1001000000000003,0.1784,3.8220000000000001,4.4080000000000004,5.1470000000000002,6.1,7.3620000000000001,9.0869999999999997,11.542 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,549,-0.56679999999999997,6.0987999999999998,0.17842,3.8210000000000002,4.407,5.1459999999999999,6.0990000000000002,7.3609999999999998,9.0860000000000003,11.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,550,-0.56730000000000003,6.0974000000000004,0.17843000000000001,3.8210000000000002,4.4059999999999997,5.1440000000000001,6.0970000000000004,7.359,9.0850000000000009,11.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,551,-0.56769999999999998,6.0960999999999999,0.17843999999999999,3.82,4.4050000000000002,5.1429999999999998,6.0960000000000001,7.3579999999999997,9.0830000000000002,11.539 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,552,-0.56820000000000004,6.0948000000000002,0.17846000000000001,3.819,4.4039999999999999,5.1420000000000003,6.0949999999999998,7.3570000000000002,9.0820000000000007,11.539 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,553,-0.56859999999999999,6.0933999999999999,0.17846999999999999,3.8180000000000001,4.4029999999999996,5.141,6.093,7.3550000000000004,9.0809999999999995,11.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,554,-0.56910000000000005,6.0921000000000003,0.17849000000000001,3.8170000000000002,4.4020000000000001,5.14,6.0919999999999996,7.3540000000000001,9.08,11.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,555,-0.56950000000000001,6.0907999999999998,0.17849999999999999,3.8170000000000002,4.4009999999999998,5.1390000000000002,6.0910000000000002,7.3520000000000003,9.0779999999999994,11.537000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,556,-0.56999999999999995,6.0895000000000001,0.17852000000000001,3.8159999999999998,4.4000000000000004,5.1369999999999996,6.09,7.351,9.077,11.537000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,557,-0.57040000000000002,6.0881999999999996,0.17852999999999999,3.8149999999999999,4.399,5.1360000000000001,6.0880000000000001,7.35,9.0760000000000005,11.536 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,558,-0.57089999999999996,6.0869,0.17854,3.8140000000000001,4.3979999999999997,5.1349999999999998,6.0869999999999997,7.3479999999999999,9.0739999999999998,11.536 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,559,-0.57130000000000003,6.0856000000000003,0.17856,3.8140000000000001,4.3970000000000002,5.1340000000000003,6.0860000000000003,7.3470000000000004,9.0730000000000004,11.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,560,-0.57179999999999997,6.0842999999999998,0.17857000000000001,3.8130000000000002,4.3959999999999999,5.133,6.0839999999999996,7.3449999999999998,9.0719999999999992,11.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,561,-0.57220000000000004,6.0831,0.17859,3.8119999999999998,4.3949999999999996,5.1319999999999997,6.0830000000000002,7.3440000000000003,9.0709999999999997,11.534000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,562,-0.57269999999999999,6.0818000000000003,0.17860000000000001,3.8109999999999999,4.3940000000000001,5.1310000000000002,6.0819999999999999,7.343,9.07,11.534000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,563,-0.57310000000000005,6.0804999999999998,0.17860999999999999,3.8109999999999999,4.3929999999999998,5.13,6.08,7.3410000000000002,9.0679999999999996,11.532999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,564,-0.5736,6.0792999999999999,0.17863000000000001,3.81,4.3920000000000003,5.1289999999999996,6.0789999999999997,7.34,9.0670000000000002,11.532999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,565,-0.57399999999999995,6.0780000000000003,0.17863999999999999,3.8090000000000002,4.3920000000000003,5.1269999999999998,6.0780000000000003,7.3390000000000004,9.0660000000000007,11.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,566,-0.57450000000000001,6.0766999999999998,0.17866000000000001,3.8079999999999998,4.391,5.1260000000000003,6.077,7.3369999999999997,9.0649999999999995,11.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,567,-0.57489999999999997,6.0754999999999999,0.17867,3.8079999999999998,4.3899999999999997,5.125,6.0759999999999996,7.3360000000000003,9.0640000000000001,11.531000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,568,-0.57540000000000002,6.0742000000000003,0.17868000000000001,3.8069999999999999,4.3890000000000002,5.1239999999999997,6.0739999999999998,7.335,9.0619999999999994,11.531000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,569,-0.57579999999999998,6.0730000000000004,0.1787,3.806,4.3879999999999999,5.1230000000000002,6.0730000000000004,7.3330000000000002,9.0609999999999999,11.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,570,-0.57630000000000003,6.0717999999999996,0.17871000000000001,3.806,4.3869999999999996,5.1219999999999999,6.0720000000000001,7.3319999999999999,9.06,11.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,571,-0.57669999999999999,6.0705,0.17873,3.8050000000000002,4.3860000000000001,5.1210000000000004,6.07,7.3310000000000004,9.0589999999999993,11.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,572,-0.57720000000000005,6.0693000000000001,0.17874000000000001,3.8039999999999998,4.3849999999999998,5.12,6.069,7.3289999999999997,9.0579999999999998,11.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,573,-0.5776,6.0681000000000003,0.17874999999999999,3.8029999999999999,4.3840000000000003,5.1189999999999998,6.0679999999999996,7.3280000000000003,9.0559999999999992,11.528 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,574,-0.57809999999999995,6.0669000000000004,0.17877000000000001,3.8029999999999999,4.383,5.1180000000000003,6.0670000000000002,7.327,9.0559999999999992,11.528 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,575,-0.57850000000000001,6.0655999999999999,0.17877999999999999,3.802,4.383,5.117,6.0659999999999998,7.3250000000000002,9.0540000000000003,11.528 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,576,-0.57899999999999996,6.0644,0.17879,3.8010000000000002,4.3819999999999997,5.1159999999999997,6.0640000000000001,7.3239999999999998,9.0530000000000008,11.526999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,577,-0.57940000000000003,6.0632000000000001,0.17881,3.8,4.3810000000000002,5.1150000000000002,6.0629999999999997,7.3230000000000004,9.0519999999999996,11.526999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,578,-0.57989999999999997,6.0620000000000003,0.17882000000000001,3.8,4.38,5.1139999999999999,6.0620000000000003,7.3220000000000001,9.0510000000000002,11.526999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,579,-0.58030000000000004,6.0608000000000004,0.17884,3.7989999999999999,4.3789999999999996,5.1120000000000001,6.0609999999999999,7.32,9.0500000000000007,11.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,580,-0.58069999999999999,6.0597000000000003,0.17885000000000001,3.798,4.3780000000000001,5.1120000000000001,6.06,7.319,9.0489999999999995,11.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,581,-0.58120000000000005,6.0585000000000004,0.17885999999999999,3.798,4.3769999999999998,5.1109999999999998,6.0579999999999998,7.3179999999999996,9.0470000000000006,11.525 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,582,-0.58160000000000001,6.0572999999999997,0.17888000000000001,3.7970000000000002,4.3769999999999998,5.109,6.0570000000000004,7.3170000000000002,9.0459999999999994,11.525 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,583,-0.58209999999999995,6.0560999999999998,0.17888999999999999,3.7959999999999998,4.3760000000000003,5.1079999999999997,6.056,7.3150000000000004,9.0449999999999999,11.525 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,584,-0.58250000000000002,6.0548999999999999,0.17891000000000001,3.7959999999999998,4.375,5.1070000000000002,6.0549999999999997,7.3140000000000001,9.0440000000000005,11.525 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,585,-0.58299999999999996,6.0537999999999998,0.17892,3.7949999999999999,4.3739999999999997,5.1059999999999999,6.0540000000000003,7.3129999999999997,9.0429999999999993,11.523999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,586,-0.58340000000000003,6.0526,0.17893000000000001,3.794,4.3730000000000002,5.1050000000000004,6.0529999999999999,7.3120000000000003,9.0419999999999998,11.523999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,587,-0.58389999999999997,6.0514999999999999,0.17895,3.794,4.3719999999999999,5.1040000000000001,6.0519999999999996,7.3109999999999999,9.0410000000000004,11.523999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,588,-0.58430000000000004,6.0503,0.17896000000000001,3.7930000000000001,4.3710000000000004,5.1029999999999998,6.05,7.3090000000000002,9.0399999999999991,11.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,589,-0.5847,6.0491999999999999,0.17896999999999999,3.7919999999999998,4.3710000000000004,5.1020000000000003,6.0490000000000004,7.3079999999999998,9.0389999999999997,11.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,590,-0.58520000000000005,6.048,0.17899000000000001,3.7919999999999998,4.37,5.101,6.048,7.3070000000000004,9.0380000000000003,11.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,591,-0.58560000000000001,6.0468999999999999,0.17899999999999999,3.7909999999999999,4.3689999999999998,5.0999999999999996,6.0469999999999997,7.306,9.0370000000000008,11.522 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,592,-0.58609999999999995,6.0457000000000001,0.17902000000000001,3.79,4.3680000000000003,5.0990000000000002,6.0460000000000003,7.3040000000000003,9.0359999999999996,11.522 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,593,-0.58650000000000002,6.0446,0.17902999999999999,3.79,4.367,5.0979999999999999,6.0449999999999999,7.3029999999999999,9.0350000000000001,11.522 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,594,-0.58689999999999998,6.0434999999999999,0.17904,3.7890000000000001,4.367,5.0970000000000004,6.0439999999999996,7.3019999999999996,9.0340000000000007,11.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,595,-0.58740000000000003,6.0423999999999998,0.17906,3.7879999999999998,4.3659999999999997,5.0960000000000001,6.0419999999999998,7.3010000000000002,9.0329999999999995,11.522 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,596,-0.58779999999999999,6.0412999999999997,0.17907000000000001,3.7879999999999998,4.3650000000000002,5.0960000000000001,6.0410000000000004,7.3,9.032,11.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,597,-0.58830000000000005,6.0400999999999998,0.17907999999999999,3.7869999999999999,4.3639999999999999,5.0940000000000003,6.04,7.298,9.0310000000000006,11.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,598,-0.5887,6.0389999999999997,0.17910000000000001,3.786,4.3630000000000004,5.093,6.0389999999999997,7.2969999999999997,9.0299999999999994,11.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,599,-0.58909999999999996,6.0378999999999996,0.17910999999999999,3.786,4.3620000000000001,5.093,6.0380000000000003,7.2960000000000003,9.0289999999999999,11.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,600,-0.58960000000000001,6.0368000000000004,0.17913000000000001,3.7850000000000001,4.3620000000000001,5.0919999999999996,6.0369999999999999,7.2949999999999999,9.0280000000000005,11.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,601,-0.59,6.0357000000000003,0.17913999999999999,3.7839999999999998,4.3609999999999998,5.0910000000000002,6.0359999999999996,7.2939999999999996,9.0269999999999992,11.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,602,-0.59050000000000002,6.0347,0.17915,3.7839999999999998,4.3600000000000003,5.09,6.0350000000000001,7.2930000000000001,9.0259999999999998,11.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,603,-0.59089999999999998,6.0335999999999999,0.17917,3.7829999999999999,4.359,5.0890000000000004,6.0339999999999998,7.2919999999999998,9.0250000000000004,11.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,604,-0.59130000000000005,6.0324999999999998,0.17918000000000001,3.7829999999999999,4.359,5.0880000000000001,6.032,7.29,9.0239999999999991,11.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,605,-0.59179999999999999,6.0313999999999997,0.17918999999999999,3.782,4.3579999999999997,5.0869999999999997,6.0309999999999997,7.2889999999999997,9.0229999999999997,11.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,606,-0.59219999999999995,6.0303000000000004,0.17921000000000001,3.7810000000000001,4.3570000000000002,5.0860000000000003,6.03,7.2880000000000003,9.0220000000000002,11.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,607,-0.5927,6.0293000000000001,0.17921999999999999,3.7810000000000001,4.3559999999999999,5.085,6.0289999999999999,7.2869999999999999,9.0210000000000008,11.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,608,-0.59309999999999996,6.0282,0.17924000000000001,3.78,4.3550000000000004,5.0839999999999996,6.0279999999999996,7.2859999999999996,9.02,11.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,609,-0.59350000000000003,6.0271999999999997,0.17924999999999999,3.7789999999999999,4.3550000000000004,5.0830000000000002,6.0270000000000001,7.2850000000000001,9.0190000000000001,11.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,610,-0.59399999999999997,6.0260999999999996,0.17926,3.7789999999999999,4.3540000000000001,5.0819999999999999,6.0259999999999998,7.2839999999999998,9.0180000000000007,11.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,611,-0.59440000000000004,6.0251000000000001,0.17927999999999999,3.778,4.3529999999999998,5.0810000000000004,6.0250000000000004,7.2830000000000004,9.0180000000000007,11.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,612,-0.5948,6.024,0.17929,3.778,4.3520000000000003,5.08,6.024,7.282,9.0169999999999995,11.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,613,-0.59530000000000005,6.0229999999999997,0.17929999999999999,3.7770000000000001,4.3520000000000003,5.08,6.0229999999999997,7.28,9.016,11.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,614,-0.59570000000000001,6.0218999999999996,0.17932000000000001,3.7759999999999998,4.351,5.0789999999999997,6.0220000000000002,7.2789999999999999,9.0150000000000006,11.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,615,-0.59609999999999996,6.0209000000000001,0.17932999999999999,3.7759999999999998,4.3499999999999996,5.0780000000000003,6.0209999999999999,7.2779999999999996,9.0139999999999993,11.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,616,-0.59660000000000002,6.0198999999999998,0.17934,3.7749999999999999,4.3490000000000002,5.077,6.02,7.2770000000000001,9.0129999999999999,11.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,617,-0.59699999999999998,6.0189000000000004,0.17935999999999999,3.7749999999999999,4.3490000000000002,5.0759999999999996,6.0190000000000001,7.2759999999999998,9.0120000000000005,11.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,618,-0.59750000000000003,6.0178000000000003,0.17937,3.774,4.3479999999999999,5.0750000000000002,6.0179999999999998,7.2750000000000004,9.0109999999999992,11.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,619,-0.59789999999999999,6.0167999999999999,0.17938000000000001,3.7730000000000001,4.3470000000000004,5.0739999999999998,6.0170000000000003,7.274,9.01,11.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,620,-0.59830000000000005,6.0157999999999996,0.1794,3.7730000000000001,4.3460000000000001,5.0730000000000004,6.016,7.2729999999999997,9.01,11.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,621,-0.5988,6.0148000000000001,0.17940999999999999,3.7719999999999998,4.3460000000000001,5.0720000000000001,6.0149999999999997,7.2720000000000002,9.0090000000000003,11.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,622,-0.59919999999999995,6.0137999999999998,0.17943000000000001,3.7719999999999998,4.3449999999999998,5.0709999999999997,6.0140000000000002,7.2709999999999999,9.0079999999999991,11.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,623,-0.59960000000000002,6.0128000000000004,0.17943999999999999,3.7709999999999999,4.3440000000000003,5.0709999999999997,6.0129999999999999,7.27,9.0069999999999997,11.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,624,-0.60009999999999997,6.0118,0.17945,3.7709999999999999,4.3440000000000003,5.07,6.0119999999999996,7.2690000000000001,9.0060000000000002,11.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,625,-0.60050000000000003,6.0107999999999997,0.17946999999999999,3.77,4.343,5.069,6.0110000000000001,7.2679999999999998,9.0050000000000008,11.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,626,-0.60089999999999999,6.0098000000000003,0.17948,3.7690000000000001,4.3419999999999996,5.0679999999999996,6.01,7.2670000000000003,9.0039999999999996,11.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,627,-0.60140000000000005,6.0088999999999997,0.17949000000000001,3.7690000000000001,4.3410000000000002,5.0670000000000002,6.0090000000000003,7.266,9.0039999999999996,11.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,628,-0.6018,6.0079000000000002,0.17951,3.7679999999999998,4.3410000000000002,5.0659999999999998,6.008,7.2649999999999997,9.0030000000000001,11.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,629,-0.60219999999999996,6.0068999999999999,0.17952000000000001,3.7679999999999998,4.34,5.0650000000000004,6.0069999999999997,7.2640000000000002,9.0020000000000007,11.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,630,-0.60270000000000001,6.0058999999999996,0.17953,3.7669999999999999,4.3390000000000004,5.0650000000000004,6.0060000000000002,7.2629999999999999,9.0009999999999994,11.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,631,-0.60309999999999997,6.0049999999999999,0.17954999999999999,3.7669999999999999,4.3390000000000004,5.0640000000000001,6.0049999999999999,7.2619999999999996,9.0009999999999994,11.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,632,-0.60350000000000004,6.0039999999999996,0.17956,3.766,4.3380000000000001,5.0629999999999997,6.0039999999999996,7.2610000000000001,9,11.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,633,-0.60389999999999999,6.0030999999999999,0.17957000000000001,3.7650000000000001,4.3369999999999997,5.0620000000000003,6.0030000000000001,7.26,8.9990000000000006,11.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,634,-0.60440000000000005,6.0021000000000004,0.17959,3.7650000000000001,4.3360000000000003,5.0609999999999999,6.0019999999999998,7.2590000000000003,8.9979999999999993,11.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,635,-0.6048,6.0011999999999999,0.17960000000000001,3.7639999999999998,4.3360000000000003,5.0599999999999996,6.0010000000000003,7.258,8.9969999999999999,11.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,636,-0.60519999999999996,6.0002000000000004,0.17960999999999999,3.7639999999999998,4.335,5.0599999999999996,6,7.2569999999999997,8.9969999999999999,11.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,637,-0.60570000000000002,5.9992999999999999,0.17963000000000001,3.7629999999999999,4.3339999999999996,5.0590000000000002,5.9989999999999997,7.2560000000000002,8.9960000000000004,11.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,638,-0.60609999999999997,5.9983000000000004,0.17963999999999999,3.7629999999999999,4.3339999999999996,5.0579999999999998,5.9980000000000002,7.2549999999999999,8.9949999999999992,11.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,639,-0.60650000000000004,5.9973999999999998,0.17965,3.762,4.3330000000000002,5.0570000000000004,5.9969999999999999,7.2539999999999996,8.9939999999999998,11.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,640,-0.60699999999999998,5.9965000000000002,0.17967,3.762,4.3319999999999999,5.056,5.9960000000000004,7.2530000000000001,8.9939999999999998,11.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,641,-0.60740000000000005,5.9954999999999998,0.17968000000000001,3.7610000000000001,4.3319999999999999,5.0549999999999997,5.9960000000000004,7.2519999999999998,8.9930000000000003,11.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,642,-0.60780000000000001,5.9946000000000002,0.17968999999999999,3.7610000000000001,4.3310000000000004,5.0549999999999997,5.9950000000000001,7.2510000000000003,8.9920000000000009,11.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,643,-0.60819999999999996,5.9936999999999996,0.17971000000000001,3.76,4.33,5.0540000000000003,5.9939999999999998,7.25,8.9909999999999997,11.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,644,-0.60870000000000002,5.9927999999999999,0.17971999999999999,3.76,4.33,5.0529999999999999,5.9930000000000003,7.2489999999999997,8.9909999999999997,11.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,645,-0.60909999999999997,5.9919000000000002,0.17973,3.7589999999999999,4.3289999999999997,5.0519999999999996,5.992,7.2480000000000002,8.99,11.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,646,-0.60950000000000004,5.9909999999999997,0.17974999999999999,3.758,4.3280000000000003,5.0519999999999996,5.9909999999999997,7.2469999999999999,8.9890000000000008,11.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,647,-0.61,5.9901,0.17976,3.758,4.3280000000000003,5.0510000000000002,5.99,7.2460000000000004,8.9890000000000008,11.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,648,-0.61040000000000005,5.9892000000000003,0.17977000000000001,3.7570000000000001,4.327,5.05,5.9889999999999999,7.2450000000000001,8.9879999999999995,11.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,649,-0.61080000000000001,5.9882999999999997,0.17979000000000001,3.7570000000000001,4.3259999999999996,5.0490000000000004,5.9880000000000004,7.2450000000000001,8.9870000000000001,11.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,650,-0.61119999999999997,5.9874000000000001,0.17979999999999999,3.7559999999999998,4.3259999999999996,5.048,5.9870000000000001,7.2439999999999998,8.9870000000000001,11.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,651,-0.61170000000000002,5.9865000000000004,0.17981,3.7559999999999998,4.3250000000000002,5.048,5.9859999999999998,7.2430000000000003,8.9860000000000007,11.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,652,-0.61209999999999998,5.9855999999999998,0.17982999999999999,3.7549999999999999,4.3239999999999998,5.0469999999999997,5.9859999999999998,7.242,8.9849999999999994,11.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,653,-0.61250000000000004,5.9847000000000001,0.17984,3.7549999999999999,4.3239999999999998,5.0460000000000003,5.9850000000000003,7.2409999999999997,8.984,11.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,654,-0.61299999999999999,5.9839000000000002,0.17985000000000001,3.754,4.3230000000000004,5.0449999999999999,5.984,7.24,8.984,11.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,655,-0.61339999999999995,5.9829999999999997,0.17987,3.754,4.3230000000000004,5.0449999999999999,5.9829999999999997,7.2389999999999999,8.9830000000000005,11.522 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,656,-0.61380000000000001,5.9821,0.17988000000000001,3.7530000000000001,4.3220000000000001,5.0439999999999996,5.9820000000000002,7.2380000000000004,8.9830000000000005,11.522 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,657,-0.61419999999999997,5.9812000000000003,0.17988999999999999,3.7530000000000001,4.3209999999999997,5.0430000000000001,5.9809999999999999,7.2370000000000001,8.9819999999999993,11.522 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,658,-0.61470000000000002,5.9804000000000004,0.17990999999999999,3.7519999999999998,4.3209999999999997,5.0419999999999998,5.98,7.2370000000000001,8.9809999999999999,11.522 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,659,-0.61509999999999998,5.9794999999999998,0.17992,3.7519999999999998,4.32,5.0410000000000004,5.98,7.2359999999999998,8.9809999999999999,11.522 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,660,-0.61550000000000005,5.9786999999999999,0.17993000000000001,3.7509999999999999,4.32,5.0410000000000004,5.9790000000000001,7.2350000000000003,8.98,11.522 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,661,-0.6159,5.9778000000000002,0.17995,3.7509999999999999,4.319,5.04,5.9779999999999998,7.234,8.9789999999999992,11.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,662,-0.61639999999999995,5.9770000000000003,0.17996000000000001,3.75,4.3179999999999996,5.0389999999999997,5.9770000000000003,7.2329999999999997,8.9789999999999992,11.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,663,-0.61680000000000001,5.9760999999999997,0.17996999999999999,3.75,4.3179999999999996,5.0380000000000003,5.976,7.2320000000000002,8.9779999999999998,11.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,664,-0.61719999999999997,5.9752999999999998,0.17999000000000001,3.7490000000000001,4.3170000000000002,5.0380000000000003,5.9749999999999996,7.2309999999999999,8.9779999999999998,11.523999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,665,-0.61760000000000004,5.9744000000000002,0.18,3.7490000000000001,4.3159999999999998,5.0369999999999999,5.9740000000000002,7.23,8.9770000000000003,11.523999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,666,-0.61809999999999998,5.9736000000000002,0.18001,3.7490000000000001,4.3159999999999998,5.0359999999999996,5.9740000000000002,7.23,8.9760000000000009,11.523999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,667,-0.61850000000000005,5.9728000000000003,0.18003,3.7480000000000002,4.3150000000000004,5.0359999999999996,5.9729999999999999,7.2290000000000001,8.9760000000000009,11.525 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,668,-0.61890000000000001,5.9718999999999998,0.18004000000000001,3.7480000000000002,4.3150000000000004,5.0350000000000001,5.9720000000000004,7.2279999999999998,8.9749999999999996,11.525 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,669,-0.61929999999999996,5.9710999999999999,0.18004999999999999,3.7469999999999999,4.3140000000000001,5.0339999999999998,5.9710000000000001,7.2270000000000003,8.9740000000000002,11.525 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,670,-0.61970000000000003,5.9702999999999999,0.18007000000000001,3.7469999999999999,4.3129999999999997,5.0330000000000004,5.97,7.226,8.9740000000000002,11.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,671,-0.62019999999999997,5.9695,0.18007999999999999,3.746,4.3129999999999997,5.0330000000000004,5.97,7.226,8.9730000000000008,11.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,672,-0.62060000000000004,5.9687000000000001,0.18009,3.746,4.3120000000000003,5.032,5.9690000000000003,7.2249999999999996,8.9730000000000008,11.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,673,-0.621,5.9678000000000004,0.18010999999999999,3.7450000000000001,4.3120000000000003,5.0309999999999997,5.968,7.2240000000000002,8.9719999999999995,11.526999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,674,-0.62139999999999995,5.9669999999999996,0.18012,3.7450000000000001,4.3109999999999999,5.03,5.9669999999999996,7.2229999999999999,8.9719999999999995,11.526999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,675,-0.62190000000000001,5.9661999999999997,0.18013000000000001,3.7440000000000002,4.3099999999999996,5.03,5.9660000000000002,7.2220000000000004,8.9710000000000001,11.526999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,676,-0.62229999999999996,5.9653999999999998,0.18015,3.7440000000000002,4.3099999999999996,5.0289999999999999,5.9649999999999999,7.2210000000000001,8.9710000000000001,11.528 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,677,-0.62270000000000003,5.9645999999999999,0.18015999999999999,3.7429999999999999,4.3090000000000002,5.0279999999999996,5.9649999999999999,7.2210000000000001,8.9700000000000006,11.528 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,678,-0.62309999999999999,5.9638,0.18017,3.7429999999999999,4.3090000000000002,5.0279999999999996,5.9640000000000004,7.22,8.9689999999999994,11.528 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,679,-0.62350000000000005,5.9630000000000001,0.18018000000000001,3.742,4.3079999999999998,5.0270000000000001,5.9630000000000001,7.2190000000000003,8.9689999999999994,11.528 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,680,-0.624,5.9622000000000002,0.1802,3.742,4.3079999999999998,5.0259999999999998,5.9619999999999997,7.218,8.968,11.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,681,-0.62439999999999996,5.9615,0.18021000000000001,3.742,4.3070000000000004,5.0259999999999998,5.9619999999999997,7.2169999999999996,8.968,11.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,682,-0.62480000000000002,5.9607000000000001,0.18021999999999999,3.7410000000000001,4.306,5.0250000000000004,5.9610000000000003,7.2169999999999996,8.9670000000000005,11.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,683,-0.62519999999999998,5.9599000000000002,0.18024000000000001,3.7410000000000001,4.306,5.024,5.96,7.2160000000000002,8.9670000000000005,11.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,684,-0.62560000000000004,5.9591000000000003,0.18024999999999999,3.74,4.3049999999999997,5.024,5.9589999999999996,7.2149999999999999,8.9659999999999993,11.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,685,-0.62609999999999999,5.9583000000000004,0.18026,3.74,4.3049999999999997,5.0229999999999997,5.9580000000000002,7.2140000000000004,8.9659999999999993,11.531000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,686,-0.62649999999999995,5.9576000000000002,0.18028,3.7389999999999999,4.3040000000000003,5.0220000000000002,5.9580000000000002,7.2140000000000004,8.9649999999999999,11.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,687,-0.62690000000000001,5.9568000000000003,0.18029000000000001,3.7389999999999999,4.3040000000000003,5.0209999999999999,5.9569999999999999,7.2130000000000001,8.9649999999999999,11.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,688,-0.62729999999999997,5.9560000000000004,0.18029999999999999,3.738,4.3029999999999999,5.0209999999999999,5.9560000000000004,7.2119999999999997,8.9640000000000004,11.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,689,-0.62770000000000004,5.9553000000000003,0.18032000000000001,3.738,4.3019999999999996,5.0199999999999996,5.9550000000000001,7.2110000000000003,8.9640000000000004,11.532999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,690,-0.62819999999999998,5.9545000000000003,0.18032999999999999,3.738,4.3019999999999996,5.0190000000000001,5.9539999999999997,7.21,8.9629999999999992,11.532999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,691,-0.62860000000000005,5.9537000000000004,0.18034,3.7370000000000001,4.3010000000000002,5.0190000000000001,5.9539999999999997,7.21,8.9619999999999997,11.532999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,692,-0.629,5.9530000000000003,0.18035000000000001,3.7370000000000001,4.3010000000000002,5.0179999999999998,5.9530000000000003,7.2089999999999996,8.9619999999999997,11.534000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,693,-0.62939999999999996,5.9522000000000004,0.18037,3.7360000000000002,4.3,5.0170000000000003,5.952,7.2080000000000002,8.9619999999999997,11.534000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,694,-0.62980000000000003,5.9515000000000002,0.18038000000000001,3.7360000000000002,4.3,5.0170000000000003,5.952,7.2069999999999999,8.9610000000000003,11.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,695,-0.63019999999999998,5.9507000000000003,0.18038999999999999,3.7349999999999999,4.2990000000000004,5.016,5.9509999999999996,7.2069999999999999,8.9600000000000009,11.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,696,-0.63070000000000004,5.95,0.18040999999999999,3.7349999999999999,4.2990000000000004,5.0149999999999997,5.95,7.2060000000000004,8.9600000000000009,11.536 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,697,-0.63109999999999999,5.9492000000000003,0.18042,3.7349999999999999,4.298,5.0149999999999997,5.9489999999999998,7.2050000000000001,8.9600000000000009,11.536 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,698,-0.63149999999999995,5.9485000000000001,0.18043000000000001,3.734,4.298,5.0140000000000002,5.9480000000000004,7.2039999999999997,8.9589999999999996,11.536 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,699,-0.63190000000000002,5.9478,0.18045,3.734,4.2969999999999997,5.0140000000000002,5.9480000000000004,7.2039999999999997,8.9589999999999996,11.537000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,700,-0.63229999999999997,5.9470000000000001,0.18046000000000001,3.7330000000000001,4.2960000000000003,5.0129999999999999,5.9470000000000001,7.2030000000000003,8.9580000000000002,11.537000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,701,-0.63270000000000004,5.9462999999999999,0.18046999999999999,3.7330000000000001,4.2960000000000003,5.0119999999999996,5.9459999999999997,7.202,8.9580000000000002,11.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,702,-0.63319999999999999,5.9455999999999998,0.18048,3.7330000000000001,4.2960000000000003,5.0119999999999996,5.9459999999999997,7.202,8.9570000000000007,11.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,703,-0.63360000000000005,5.9447999999999999,0.18049999999999999,3.7320000000000002,4.2949999999999999,5.0110000000000001,5.9450000000000003,7.2009999999999996,8.9570000000000007,11.539 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,704,-0.63400000000000001,5.9440999999999997,0.18051,3.7320000000000002,4.2939999999999996,5.01,5.944,7.2,8.9559999999999995,11.539 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,705,-0.63439999999999996,5.9433999999999996,0.18052000000000001,3.7309999999999999,4.2939999999999996,5.01,5.9429999999999996,7.1989999999999998,8.9559999999999995,11.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,706,-0.63480000000000003,5.9427000000000003,0.18054000000000001,3.7309999999999999,4.2930000000000001,5.0090000000000003,5.9429999999999996,7.1989999999999998,8.9559999999999995,11.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,707,-0.63519999999999999,5.9420000000000002,0.18054999999999999,3.73,4.2930000000000001,5.008,5.9420000000000002,7.1980000000000004,8.9550000000000001,11.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,708,-0.63570000000000004,5.9412000000000003,0.18056,3.73,4.2919999999999998,5.008,5.9409999999999998,7.1970000000000001,8.9550000000000001,11.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,709,-0.6361,5.9405000000000001,0.18057000000000001,3.73,4.2919999999999998,5.0069999999999997,5.94,7.1970000000000001,8.9540000000000006,11.542 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,710,-0.63649999999999995,5.9398,0.18059,3.7290000000000001,4.2910000000000004,5.0060000000000002,5.94,7.1959999999999997,8.9540000000000006,11.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,711,-0.63690000000000002,5.9390999999999998,0.18060000000000001,3.7290000000000001,4.2910000000000004,5.0060000000000002,5.9390000000000001,7.1950000000000003,8.9529999999999994,11.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,712,-0.63729999999999998,5.9383999999999997,0.18060999999999999,3.7280000000000002,4.29,5.0049999999999999,5.9379999999999997,7.1950000000000003,8.9529999999999994,11.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,713,-0.63770000000000004,5.9377000000000004,0.18063000000000001,3.7280000000000002,4.29,5.0049999999999999,5.9379999999999997,7.194,8.9529999999999994,11.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,714,-0.6381,5.9370000000000003,0.18064,3.7280000000000002,4.2889999999999997,5.0039999999999996,5.9370000000000003,7.1929999999999996,8.952,11.545 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,715,-0.63849999999999996,5.9363000000000001,0.18065000000000001,3.7269999999999999,4.2889999999999997,5.0030000000000001,5.9359999999999999,7.1920000000000002,8.952,11.545 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,716,-0.63900000000000001,5.9356,0.18067,3.7269999999999999,4.2880000000000003,5.0030000000000001,5.9359999999999999,7.1920000000000002,8.9510000000000005,11.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,717,-0.63939999999999997,5.9348999999999998,0.18068000000000001,3.726,4.2880000000000003,5.0019999999999998,5.9349999999999996,7.1909999999999998,8.9510000000000005,11.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,718,-0.63980000000000004,5.9341999999999997,0.18068999999999999,3.726,4.2869999999999999,5.0019999999999998,5.9340000000000002,7.19,8.9499999999999993,11.547000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,719,-0.64019999999999999,5.9336000000000002,0.1807,3.726,4.2869999999999999,5.0010000000000003,5.9340000000000002,7.19,8.9499999999999993,11.547000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,720,-0.64059999999999995,5.9329000000000001,0.18071999999999999,3.7250000000000001,4.2859999999999996,5,5.9329999999999998,7.1890000000000001,8.9499999999999993,11.548 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,721,-0.64100000000000001,5.9321999999999999,0.18073,3.7250000000000001,4.2859999999999996,5,5.9320000000000004,7.1879999999999997,8.9489999999999998,11.548999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,722,-0.64139999999999997,5.9314999999999998,0.18074000000000001,3.7250000000000001,4.2850000000000001,4.9989999999999997,5.9320000000000004,7.1879999999999997,8.9489999999999998,11.548999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,723,-0.64180000000000004,5.9307999999999996,0.18076,3.7240000000000002,4.2850000000000001,4.9989999999999997,5.931,7.1870000000000003,8.9489999999999998,11.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,724,-0.64229999999999998,5.9302000000000001,0.18076999999999999,3.7240000000000002,4.2839999999999998,4.9980000000000002,5.93,7.1870000000000003,8.9480000000000004,11.551 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,725,-0.64270000000000005,5.9295,0.18078,3.7229999999999999,4.2839999999999998,4.9969999999999999,5.93,7.1859999999999999,8.9480000000000004,11.551 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,726,-0.6431,5.9287999999999998,0.18079000000000001,3.7229999999999999,4.2830000000000004,4.9969999999999999,5.9290000000000003,7.1849999999999996,8.9469999999999992,11.551 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,727,-0.64349999999999996,5.9280999999999997,0.18081,3.7229999999999999,4.2830000000000004,4.9960000000000004,5.9279999999999999,7.1849999999999996,8.9469999999999992,11.552 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,728,-0.64390000000000003,5.9275000000000002,0.18082000000000001,3.722,4.282,4.9960000000000004,5.9279999999999999,7.1840000000000002,8.9469999999999992,11.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,729,-0.64429999999999998,5.9268000000000001,0.18082999999999999,3.722,4.282,4.9950000000000001,5.9269999999999996,7.1829999999999998,8.9459999999999997,11.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,730,-0.64470000000000005,5.9260999999999999,0.18084,3.722,4.2809999999999997,4.9939999999999998,5.9260000000000002,7.1820000000000004,8.9459999999999997,11.554 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,731,-0.64510000000000001,5.9255000000000004,0.18085999999999999,3.7210000000000001,4.2809999999999997,4.9939999999999998,5.9260000000000002,7.1820000000000004,8.9459999999999997,11.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,732,-0.64549999999999996,5.9248000000000003,0.18087,3.7210000000000001,4.28,4.9930000000000003,5.9249999999999998,7.181,8.9450000000000003,11.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,733,-0.64600000000000002,5.9241999999999999,0.18088000000000001,3.7210000000000001,4.28,4.9930000000000003,5.9240000000000004,7.181,8.9450000000000003,11.555999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,734,-0.64639999999999997,5.9234999999999998,0.18090000000000001,3.72,4.2789999999999999,4.992,5.9240000000000004,7.18,8.9450000000000003,11.557 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,735,-0.64680000000000004,5.9229000000000003,0.18090999999999999,3.72,4.2789999999999999,4.992,5.923,7.1790000000000003,8.9440000000000008,11.557 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,736,-0.6472,5.9222000000000001,0.18092,3.7189999999999999,4.2779999999999996,4.9909999999999997,5.9219999999999997,7.1790000000000003,8.9440000000000008,11.558 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,737,-0.64759999999999995,5.9215999999999998,0.18093000000000001,3.7189999999999999,4.2779999999999996,4.99,5.9219999999999997,7.1779999999999999,8.9429999999999996,11.558 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,738,-0.64800000000000002,5.9208999999999996,0.18095,3.7189999999999999,4.2779999999999996,4.99,5.9210000000000003,7.1779999999999999,8.9429999999999996,11.558999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,739,-0.64839999999999998,5.9203000000000001,0.18096000000000001,3.718,4.2770000000000001,4.9889999999999999,5.92,7.1769999999999996,8.9429999999999996,11.56 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,740,-0.64880000000000004,5.9196,0.18096999999999999,3.718,4.2770000000000001,4.9889999999999999,5.92,7.1760000000000002,8.9420000000000002,11.56 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,741,-0.6492,5.9189999999999996,0.18099000000000001,3.718,4.2759999999999998,4.9880000000000004,5.9189999999999996,7.1760000000000002,8.9420000000000002,11.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,742,-0.64959999999999996,5.9184000000000001,0.18099999999999999,3.7170000000000001,4.2759999999999998,4.9880000000000004,5.9180000000000001,7.1749999999999998,8.9420000000000002,11.561999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,743,-0.65,5.9177,0.18101,3.7170000000000001,4.2750000000000004,4.9870000000000001,5.9180000000000001,7.1740000000000004,8.9410000000000007,11.561999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,744,-0.65039999999999998,5.9170999999999996,0.18101999999999999,3.7170000000000001,4.2750000000000004,4.9859999999999998,5.9169999999999998,7.1740000000000004,8.9410000000000007,11.563000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,745,-0.65090000000000003,5.9165000000000001,0.18104000000000001,3.7160000000000002,4.274,4.9859999999999998,5.9160000000000004,7.173,8.9410000000000007,11.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,746,-0.65129999999999999,5.9157999999999999,0.18104999999999999,3.7160000000000002,4.274,4.9850000000000003,5.9160000000000004,7.173,8.9410000000000007,11.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,747,-0.65169999999999995,5.9151999999999996,0.18106,3.7149999999999999,4.2729999999999997,4.9850000000000003,5.915,7.1719999999999997,8.94,11.565 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,748,-0.65210000000000001,5.9146000000000001,0.18107000000000001,3.7149999999999999,4.2729999999999997,4.984,5.915,7.1710000000000003,8.94,11.566000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,749,-0.65249999999999997,5.9139999999999997,0.18109,3.7149999999999999,4.2729999999999997,4.984,5.9139999999999997,7.1710000000000003,8.94,11.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,750,-0.65290000000000004,5.9132999999999996,0.18110000000000001,3.714,4.2720000000000002,4.9829999999999997,5.9130000000000003,7.17,8.9390000000000001,11.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,751,-0.65329999999999999,5.9127000000000001,0.18110999999999999,3.714,4.2720000000000002,4.9820000000000002,5.9130000000000003,7.17,8.9390000000000001,11.568 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,752,-0.65369999999999995,5.9120999999999997,0.18112,3.714,4.2709999999999999,4.9820000000000002,5.9119999999999999,7.1689999999999996,8.9390000000000001,11.568 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,753,-0.65410000000000001,5.9115000000000002,0.18114,3.7130000000000001,4.2709999999999999,4.9809999999999999,5.9119999999999999,7.1689999999999996,8.9390000000000001,11.569000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,754,-0.65449999999999997,5.9108999999999998,0.18115000000000001,3.7130000000000001,4.2699999999999996,4.9809999999999999,5.9109999999999996,7.1680000000000001,8.9380000000000006,11.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,755,-0.65490000000000004,5.9103000000000003,0.18115999999999999,3.7130000000000001,4.2699999999999996,4.9800000000000004,5.91,7.1669999999999998,8.9380000000000006,11.571 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,756,-0.65529999999999999,5.9097,0.18118000000000001,3.7120000000000002,4.2690000000000001,4.9800000000000004,5.91,7.1669999999999998,8.9380000000000006,11.571999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,757,-0.65569999999999995,5.9089999999999998,0.18118999999999999,3.7120000000000002,4.2690000000000001,4.9790000000000001,5.9089999999999998,7.1660000000000004,8.9369999999999994,11.571999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,758,-0.65610000000000002,5.9084000000000003,0.1812,3.7120000000000002,4.2679999999999998,4.9790000000000001,5.9080000000000004,7.1660000000000004,8.9369999999999994,11.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,759,-0.65649999999999997,5.9077999999999999,0.18121000000000001,3.7109999999999999,4.2679999999999998,4.9779999999999998,5.9080000000000004,7.165,8.9369999999999994,11.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,760,-0.65690000000000004,5.9071999999999996,0.18123,3.7109999999999999,4.2679999999999998,4.9779999999999998,5.907,7.1639999999999997,8.9369999999999994,11.574 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,761,-0.6573,5.9066000000000001,0.18124000000000001,3.7109999999999999,4.2670000000000003,4.9770000000000003,5.907,7.1639999999999997,8.9359999999999999,11.574999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,762,-0.65780000000000005,5.9059999999999997,0.18124999999999999,3.71,4.2670000000000003,4.9770000000000003,5.9059999999999997,7.1630000000000003,8.9359999999999999,11.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,763,-0.65820000000000001,5.9054000000000002,0.18126,3.71,4.266,4.976,5.9050000000000002,7.1630000000000003,8.9359999999999999,11.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,764,-0.65859999999999996,5.9047999999999998,0.18128,3.71,4.266,4.9749999999999996,5.9050000000000002,7.1619999999999999,8.9350000000000005,11.577999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,765,-0.65900000000000003,5.9042000000000003,0.18129000000000001,3.7090000000000001,4.2649999999999997,4.9749999999999996,5.9039999999999999,7.1619999999999999,8.9350000000000005,11.577999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,766,-0.65939999999999999,5.9036,0.18129999999999999,3.7090000000000001,4.2649999999999997,4.9740000000000002,5.9039999999999999,7.1609999999999996,8.9350000000000005,11.579000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,767,-0.65980000000000005,5.9031000000000002,0.18131,3.7090000000000001,4.2649999999999997,4.9740000000000002,5.9029999999999996,7.1609999999999996,8.9350000000000005,11.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,768,-0.66020000000000001,5.9024999999999999,0.18132999999999999,3.7080000000000002,4.2640000000000002,4.9729999999999999,5.9020000000000001,7.16,8.9350000000000005,11.581 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,769,-0.66059999999999997,5.9019000000000004,0.18134,3.7080000000000002,4.2640000000000002,4.9729999999999999,5.9020000000000001,7.1589999999999998,8.9339999999999993,11.581 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,770,-0.66100000000000003,5.9013,0.18135000000000001,3.7080000000000002,4.2629999999999999,4.9720000000000004,5.9009999999999998,7.1589999999999998,8.9339999999999993,11.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,771,-0.66139999999999999,5.9006999999999996,0.18135999999999999,3.7069999999999999,4.2629999999999999,4.9720000000000004,5.9009999999999998,7.1580000000000004,8.9339999999999993,11.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,772,-0.66180000000000005,5.9001000000000001,0.18138000000000001,3.7069999999999999,4.2619999999999996,4.9710000000000001,5.9,7.1580000000000004,8.9329999999999998,11.584 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,773,-0.66220000000000001,5.8994999999999997,0.18139,3.7069999999999999,4.2619999999999996,4.9710000000000001,5.9,7.157,8.9329999999999998,11.584 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,774,-0.66259999999999997,5.899,0.18140000000000001,3.706,4.2619999999999996,4.97,5.899,7.157,8.9329999999999998,11.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,775,-0.66300000000000003,5.8983999999999996,0.18140999999999999,3.706,4.2610000000000001,4.97,5.8979999999999997,7.1559999999999997,8.9329999999999998,11.586 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,776,-0.66339999999999999,5.8978000000000002,0.18143000000000001,3.706,4.2610000000000001,4.9690000000000003,5.8979999999999997,7.1559999999999997,8.9320000000000004,11.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,777,-0.66379999999999995,5.8971999999999998,0.18143999999999999,3.7050000000000001,4.26,4.9690000000000003,5.8970000000000002,7.1550000000000002,8.9320000000000004,11.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,778,-0.66420000000000001,5.8967000000000001,0.18145,3.7050000000000001,4.26,4.968,5.8970000000000002,7.1550000000000002,8.9320000000000004,11.587999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,779,-0.66459999999999997,5.8960999999999997,0.18146000000000001,3.7050000000000001,4.26,4.968,5.8959999999999999,7.1539999999999999,8.9320000000000004,11.589 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,780,-0.66500000000000004,5.8955000000000002,0.18148,3.7040000000000002,4.2590000000000003,4.9669999999999996,5.8959999999999999,7.1529999999999996,8.9320000000000004,11.59 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,781,-0.66539999999999999,5.8949999999999996,0.18149000000000001,3.7040000000000002,4.2590000000000003,4.9669999999999996,5.8949999999999996,7.1529999999999996,8.9309999999999992,11.590999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,782,-0.66579999999999995,5.8944000000000001,0.18149999999999999,3.7040000000000002,4.258,4.9660000000000002,5.8940000000000001,7.1520000000000001,8.9309999999999992,11.590999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,783,-0.66620000000000001,5.8937999999999997,0.18151,3.7040000000000002,4.258,4.9660000000000002,5.8940000000000001,7.1520000000000001,8.9309999999999992,11.592000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,784,-0.66659999999999997,5.8933,0.18153,3.7029999999999998,4.2569999999999997,4.9649999999999999,5.8929999999999998,7.1509999999999998,8.9309999999999992,11.593 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,785,-0.66700000000000004,5.8926999999999996,0.18154000000000001,3.7029999999999998,4.2569999999999997,4.9649999999999999,5.8929999999999998,7.1509999999999998,8.93,11.593999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,786,-0.66739999999999999,5.8921000000000001,0.18154999999999999,3.7029999999999998,4.2569999999999997,4.9640000000000004,5.8920000000000003,7.15,8.93,11.593999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,787,-0.66779999999999995,5.8916000000000004,0.18156,3.702,4.2560000000000002,4.9640000000000004,5.8920000000000003,7.15,8.93,11.595000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,788,-0.66820000000000002,5.891,0.18157999999999999,3.702,4.2560000000000002,4.9630000000000001,5.891,7.149,8.93,11.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,789,-0.66859999999999997,5.8905000000000003,0.18159,3.702,4.2549999999999999,4.9630000000000001,5.89,7.149,8.93,11.597 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,790,-0.66900000000000004,5.8898999999999999,0.18160000000000001,3.7010000000000001,4.2549999999999999,4.9619999999999997,5.89,7.1479999999999997,8.9290000000000003,11.598000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,791,-0.6694,5.8893000000000004,0.18160999999999999,3.7010000000000001,4.2549999999999999,4.9619999999999997,5.8890000000000002,7.1479999999999997,8.9290000000000003,11.598000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,792,-0.66979999999999995,5.8887999999999998,0.18163000000000001,3.7010000000000001,4.2539999999999996,4.9610000000000003,5.8890000000000002,7.1470000000000002,8.9290000000000003,11.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,793,-0.67020000000000002,5.8882000000000003,0.18164,3.7,4.2539999999999996,4.9610000000000003,5.8879999999999999,7.1470000000000002,8.9290000000000003,11.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,794,-0.67059999999999997,5.8876999999999997,0.18165000000000001,3.7,4.2530000000000001,4.96,5.8879999999999999,7.1459999999999999,8.9280000000000008,11.601000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,795,-0.67100000000000004,5.8871000000000002,0.18165999999999999,3.7,4.2530000000000001,4.96,5.8869999999999996,7.1459999999999999,8.9280000000000008,11.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,796,-0.6714,5.8865999999999996,0.18168000000000001,3.7,4.2530000000000001,4.9589999999999996,5.8869999999999996,7.1449999999999996,8.9280000000000008,11.603 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,797,-0.67179999999999995,5.8860999999999999,0.18168999999999999,3.6989999999999998,4.2519999999999998,4.9589999999999996,5.8860000000000001,7.1449999999999996,8.9280000000000008,11.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,798,-0.67220000000000002,5.8855000000000004,0.1817,3.6989999999999998,4.2519999999999998,4.9580000000000002,5.8860000000000001,7.1440000000000001,8.9280000000000008,11.605 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,799,-0.67259999999999998,5.8849999999999998,0.18171000000000001,3.6989999999999998,4.2519999999999998,4.9580000000000002,5.8849999999999998,7.1440000000000001,8.9269999999999996,11.605 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,800,-0.67300000000000004,5.8844000000000003,0.18173,3.698,4.2510000000000003,4.9569999999999999,5.8840000000000003,7.1429999999999998,8.9269999999999996,11.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,801,-0.6734,5.8838999999999997,0.18174000000000001,3.698,4.2510000000000003,4.9569999999999999,5.8840000000000003,7.1429999999999998,8.9269999999999996,11.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,802,-0.67379999999999995,5.8833000000000002,0.18174999999999999,3.698,4.25,4.9560000000000004,5.883,7.1420000000000003,8.9269999999999996,11.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,803,-0.67420000000000002,5.8827999999999996,0.18176,3.698,4.25,4.9560000000000004,5.883,7.1420000000000003,8.9269999999999996,11.609 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,804,-0.67459999999999998,5.8822999999999999,0.18178,3.6970000000000001,4.25,4.9550000000000001,5.8819999999999997,7.141,8.9269999999999996,11.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,805,-0.67500000000000004,5.8817000000000004,0.18179000000000001,3.6970000000000001,4.2489999999999997,4.9550000000000001,5.8819999999999997,7.141,8.9260000000000002,11.611000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,806,-0.6754,5.8811999999999998,0.18179999999999999,3.6970000000000001,4.2489999999999997,4.9539999999999997,5.8810000000000002,7.14,8.9260000000000002,11.612 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,807,-0.67579999999999996,5.8807,0.18181,3.6960000000000002,4.2480000000000002,4.9539999999999997,5.8810000000000002,7.14,8.9260000000000002,11.612 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,808,-0.67610000000000003,5.8800999999999997,0.18182000000000001,3.6960000000000002,4.2480000000000002,4.9530000000000003,5.88,7.1390000000000002,8.9260000000000002,11.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,809,-0.67649999999999999,5.8795999999999999,0.18184,3.6960000000000002,4.2480000000000002,4.9530000000000003,5.88,7.1390000000000002,8.9260000000000002,11.614000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,810,-0.67689999999999995,5.8791000000000002,0.18185000000000001,3.6949999999999998,4.2469999999999999,4.9530000000000003,5.8789999999999996,7.1379999999999999,8.9260000000000002,11.615 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,811,-0.67730000000000001,5.8784999999999998,0.18185999999999999,3.6949999999999998,4.2469999999999999,4.952,5.8780000000000001,7.1379999999999999,8.9250000000000007,11.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,812,-0.67769999999999997,5.8780000000000001,0.18187,3.6949999999999998,4.2460000000000004,4.952,5.8780000000000001,7.1369999999999996,8.9250000000000007,11.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,813,-0.67810000000000004,5.8775000000000004,0.18189,3.6949999999999998,4.2460000000000004,4.9509999999999996,5.8780000000000001,7.1369999999999996,8.9250000000000007,11.618 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,814,-0.67849999999999999,5.8769,0.18190000000000001,3.694,4.2460000000000004,4.9509999999999996,5.8769999999999998,7.1360000000000001,8.9250000000000007,11.618 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,815,-0.67889999999999995,5.8764000000000003,0.18190999999999999,3.694,4.2450000000000001,4.95,5.8760000000000003,7.1360000000000001,8.9250000000000007,11.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,816,-0.67930000000000001,5.8758999999999997,0.18192,3.694,4.2450000000000001,4.95,5.8760000000000003,7.1349999999999998,8.9239999999999995,11.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,817,-0.67969999999999997,5.8754,0.18193999999999999,3.6930000000000001,4.2439999999999998,4.9489999999999998,5.875,7.1349999999999998,8.9239999999999995,11.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,818,-0.68010000000000004,5.8749000000000002,0.18195,3.6930000000000001,4.2439999999999998,4.9489999999999998,5.875,7.1340000000000003,8.9239999999999995,11.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,819,-0.68049999999999999,5.8742999999999999,0.18196000000000001,3.6930000000000001,4.2439999999999998,4.9480000000000004,5.8739999999999997,7.1340000000000003,8.9239999999999995,11.622999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,820,-0.68089999999999995,5.8738000000000001,0.18196999999999999,3.6930000000000001,4.2430000000000003,4.9480000000000004,5.8739999999999997,7.133,8.9239999999999995,11.624000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,821,-0.68130000000000002,5.8733000000000004,0.18198,3.6920000000000002,4.2430000000000003,4.9470000000000001,5.8730000000000002,7.133,8.9239999999999995,11.625 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,822,-0.68169999999999997,5.8727999999999998,0.182,3.6920000000000002,4.2430000000000003,4.9470000000000001,5.8730000000000002,7.1319999999999997,8.9239999999999995,11.625999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,823,-0.68210000000000004,5.8723000000000001,0.18201000000000001,3.6920000000000002,4.242,4.9459999999999997,5.8719999999999999,7.1319999999999997,8.923,11.627000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,824,-0.6825,5.8716999999999997,0.18201999999999999,3.6909999999999998,4.242,4.9459999999999997,5.8719999999999999,7.1310000000000002,8.923,11.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,825,-0.68289999999999995,5.8712,0.18203,3.6909999999999998,4.242,4.9459999999999997,5.8710000000000004,7.1310000000000002,8.923,11.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,826,-0.68320000000000003,5.8707000000000003,0.18204999999999999,3.6909999999999998,4.2409999999999997,4.9450000000000003,5.8710000000000004,7.13,8.923,11.629 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,827,-0.68359999999999999,5.8701999999999996,0.18206,3.6909999999999998,4.2409999999999997,4.9450000000000003,5.87,7.13,8.923,11.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,828,-0.68400000000000005,5.8696999999999999,0.18207000000000001,3.69,4.24,4.944,5.87,7.13,8.923,11.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,829,-0.68440000000000001,5.8692000000000002,0.18207999999999999,3.69,4.24,4.944,5.8689999999999998,7.1289999999999996,8.9220000000000006,11.632 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,830,-0.68479999999999996,5.8686999999999996,0.18210000000000001,3.69,4.24,4.9429999999999996,5.8689999999999998,7.1289999999999996,8.9220000000000006,11.632999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,831,-0.68520000000000003,5.8681999999999999,0.18210999999999999,3.6890000000000001,4.2389999999999999,4.9429999999999996,5.8680000000000003,7.1280000000000001,8.9220000000000006,11.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,832,-0.68559999999999999,5.8677000000000001,0.18212,3.6890000000000001,4.2389999999999999,4.9420000000000002,5.8680000000000003,7.1280000000000001,8.9220000000000006,11.635 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,833,-0.68600000000000005,5.8672000000000004,0.18212999999999999,3.6890000000000001,4.2389999999999999,4.9420000000000002,5.867,7.1269999999999998,8.9220000000000006,11.635999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,834,-0.68640000000000001,5.8666,0.18214,3.6890000000000001,4.2380000000000004,4.9409999999999998,5.867,7.1269999999999998,8.9220000000000006,11.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,835,-0.68679999999999997,5.8661000000000003,0.18215999999999999,3.6880000000000002,4.2380000000000004,4.9409999999999998,5.8659999999999997,7.1260000000000003,8.9220000000000006,11.638 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,836,-0.68720000000000003,5.8655999999999997,0.18217,3.6880000000000002,4.2370000000000001,4.9409999999999998,5.8659999999999997,7.1260000000000003,8.9209999999999994,11.638999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,837,-0.68759999999999999,5.8651,0.18218000000000001,3.6880000000000002,4.2370000000000001,4.9400000000000004,5.8650000000000002,7.125,8.9209999999999994,11.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,838,-0.68789999999999996,5.8646000000000003,0.18218999999999999,3.6880000000000002,4.2370000000000001,4.9400000000000004,5.8650000000000002,7.125,8.9209999999999994,11.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,839,-0.68830000000000002,5.8640999999999996,0.1822,3.6869999999999998,4.2359999999999998,4.9390000000000001,5.8639999999999999,7.1239999999999997,8.9209999999999994,11.641 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,840,-0.68869999999999998,5.8635999999999999,0.18221999999999999,3.6869999999999998,4.2359999999999998,4.9390000000000001,5.8639999999999999,7.1239999999999997,8.9209999999999994,11.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,841,-0.68910000000000005,5.8631000000000002,0.18223,3.6869999999999998,4.2359999999999998,4.9379999999999997,5.8630000000000004,7.1239999999999997,8.9209999999999994,11.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,842,-0.6895,5.8625999999999996,0.18224000000000001,3.6859999999999999,4.2350000000000003,4.9379999999999997,5.8630000000000004,7.1230000000000002,8.9209999999999994,11.644 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,843,-0.68989999999999996,5.8620999999999999,0.18225,3.6859999999999999,4.2350000000000003,4.9370000000000003,5.8620000000000001,7.1230000000000002,8.92,11.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,844,-0.69030000000000002,5.8616999999999999,0.18226999999999999,3.6859999999999999,4.2350000000000003,4.9370000000000003,5.8620000000000001,7.1219999999999999,8.9209999999999994,11.647 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,845,-0.69069999999999998,5.8612000000000002,0.18228,3.6859999999999999,4.234,4.9370000000000003,5.8609999999999998,7.1219999999999999,8.92,11.648 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,846,-0.69110000000000005,5.8606999999999996,0.18229000000000001,3.6850000000000001,4.234,4.9359999999999999,5.8609999999999998,7.1210000000000004,8.92,11.648 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,847,-0.6915,5.8601999999999999,0.18229999999999999,3.6850000000000001,4.234,4.9359999999999999,5.86,7.1210000000000004,8.92,11.648999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,848,-0.69179999999999997,5.8597000000000001,0.18231,3.6850000000000001,4.2329999999999997,4.9349999999999996,5.86,7.12,8.92,11.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,849,-0.69220000000000004,5.8592000000000004,0.18232999999999999,3.6850000000000001,4.2329999999999997,4.9349999999999996,5.859,7.12,8.92,11.651 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,850,-0.69259999999999999,5.8586999999999998,0.18234,3.6840000000000002,4.2320000000000002,4.9340000000000002,5.859,7.12,8.92,11.651999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,851,-0.69299999999999995,5.8582000000000001,0.18235000000000001,3.6840000000000002,4.2320000000000002,4.9340000000000002,5.8579999999999997,7.1189999999999998,8.92,11.653 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,852,-0.69340000000000002,5.8577000000000004,0.18235999999999999,3.6840000000000002,4.2320000000000002,4.9329999999999998,5.8579999999999997,7.1189999999999998,8.9190000000000005,11.654 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,853,-0.69379999999999997,5.8571999999999997,0.18237999999999999,3.6829999999999998,4.2309999999999999,4.9329999999999998,5.8570000000000002,7.1180000000000003,8.9190000000000005,11.654999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,854,-0.69420000000000004,5.8567,0.18239,3.6829999999999998,4.2309999999999999,4.9329999999999998,5.8570000000000002,7.1180000000000003,8.9190000000000005,11.656000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,855,-0.6946,5.8563000000000001,0.18240000000000001,3.6829999999999998,4.2309999999999999,4.9320000000000004,5.8559999999999999,7.117,8.9190000000000005,11.657 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,856,-0.69499999999999995,5.8558000000000003,0.18240999999999999,3.6829999999999998,4.2300000000000004,4.9320000000000004,5.8559999999999999,7.117,8.9190000000000005,11.657999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,857,-0.69530000000000003,5.8552999999999997,0.18242,3.6819999999999999,4.2300000000000004,4.931,5.8550000000000004,7.117,8.9190000000000005,11.659000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,858,-0.69569999999999999,5.8548,0.18243999999999999,3.6819999999999999,4.2300000000000004,4.931,5.8550000000000004,7.1159999999999997,8.9190000000000005,11.66 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,859,-0.69610000000000005,5.8543000000000003,0.18245,3.6819999999999999,4.2290000000000001,4.93,5.8540000000000001,7.1159999999999997,8.9190000000000005,11.661 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,860,-0.69650000000000001,5.8537999999999997,0.18246000000000001,3.6819999999999999,4.2290000000000001,4.93,5.8540000000000001,7.1150000000000002,8.9190000000000005,11.662000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,861,-0.69689999999999996,5.8533999999999997,0.18246999999999999,3.681,4.2290000000000001,4.93,5.8529999999999998,7.1150000000000002,8.9179999999999993,11.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,862,-0.69730000000000003,5.8529,0.18248,3.681,4.2279999999999998,4.9290000000000003,5.8529999999999998,7.1139999999999999,8.9179999999999993,11.664 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,863,-0.69769999999999999,5.8524000000000003,0.1825,3.681,4.2279999999999998,4.9290000000000003,5.8520000000000003,7.1139999999999999,8.9179999999999993,11.664999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,864,-0.69810000000000005,5.8518999999999997,0.18251000000000001,3.681,4.2270000000000003,4.9279999999999999,5.8520000000000003,7.1139999999999999,8.9179999999999993,11.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,865,-0.69840000000000002,5.8513999999999999,0.18251999999999999,3.68,4.2270000000000003,4.9279999999999999,5.851,7.1130000000000004,8.9179999999999993,11.667 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,866,-0.69879999999999998,5.851,0.18253,3.68,4.2270000000000003,4.9269999999999996,5.851,7.1130000000000004,8.9179999999999993,11.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,867,-0.69920000000000004,5.8505000000000003,0.18254000000000001,3.68,4.2270000000000003,4.9269999999999996,5.85,7.1120000000000001,8.9179999999999993,11.669 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,868,-0.6996,5.85,0.18256,3.68,4.226,4.9269999999999996,5.85,7.1120000000000001,8.9179999999999993,11.67 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,869,-0.7,5.8494999999999999,0.18257000000000001,3.6789999999999998,4.226,4.9260000000000002,5.85,7.1109999999999998,8.9179999999999993,11.670999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,870,-0.70040000000000002,5.8490000000000002,0.18257999999999999,3.6789999999999998,4.2249999999999996,4.9260000000000002,5.8490000000000002,7.1109999999999998,8.9169999999999998,11.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,871,-0.70079999999999998,5.8486000000000002,0.18259,3.6789999999999998,4.2249999999999996,4.9249999999999998,5.8490000000000002,7.1109999999999998,8.9169999999999998,11.673 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,872,-0.70109999999999995,5.8480999999999996,0.18260000000000001,3.6789999999999998,4.2249999999999996,4.9249999999999998,5.8479999999999999,7.11,8.9169999999999998,11.673999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,873,-0.70150000000000001,5.8475999999999999,0.18262,3.6779999999999999,4.2240000000000002,4.9240000000000004,5.8479999999999999,7.11,8.9169999999999998,11.675000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,874,-0.70189999999999997,5.8472,0.18262999999999999,3.6779999999999999,4.2240000000000002,4.9240000000000004,5.8470000000000004,7.109,8.9169999999999998,11.676 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,875,-0.70230000000000004,5.8467000000000002,0.18264,3.6779999999999999,4.2240000000000002,4.9240000000000004,5.8470000000000004,7.109,8.9169999999999998,11.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,876,-0.70269999999999999,5.8461999999999996,0.18265000000000001,3.6779999999999999,4.2229999999999999,4.923,5.8460000000000001,7.1079999999999997,8.9169999999999998,11.678000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,877,-0.70309999999999995,5.8456999999999999,0.18265999999999999,3.677,4.2229999999999999,4.923,5.8460000000000001,7.1079999999999997,8.9169999999999998,11.679 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,878,-0.70350000000000001,5.8452999999999999,0.18268000000000001,3.677,4.2229999999999999,4.9219999999999997,5.8449999999999998,7.1079999999999997,8.9169999999999998,11.680999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,879,-0.70379999999999998,5.8448000000000002,0.18268999999999999,3.677,4.2220000000000004,4.9219999999999997,5.8449999999999998,7.1070000000000002,8.9169999999999998,11.680999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,880,-0.70420000000000005,5.8442999999999996,0.1827,3.6760000000000002,4.2220000000000004,4.9210000000000003,5.8440000000000003,7.1070000000000002,8.9169999999999998,11.682 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,881,-0.7046,5.8438999999999997,0.18271000000000001,3.6760000000000002,4.2220000000000004,4.9210000000000003,5.8440000000000003,7.1059999999999999,8.9169999999999998,11.683 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,882,-0.70499999999999996,5.8433999999999999,0.18271999999999999,3.6760000000000002,4.2210000000000001,4.9210000000000003,5.843,7.1059999999999999,8.9160000000000004,11.683999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,883,-0.70540000000000003,5.8429000000000002,0.18274000000000001,3.6760000000000002,4.2210000000000001,4.92,5.843,7.1050000000000004,8.9160000000000004,11.685 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,884,-0.70579999999999998,5.8423999999999996,0.18275,3.6749999999999998,4.2210000000000001,4.92,5.8419999999999996,7.1050000000000004,8.9160000000000004,11.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,885,-0.70609999999999995,5.8419999999999996,0.18276000000000001,3.6749999999999998,4.22,4.9189999999999996,5.8419999999999996,7.1050000000000004,8.9160000000000004,11.686999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,886,-0.70650000000000002,5.8414999999999999,0.18276999999999999,3.6749999999999998,4.22,4.9189999999999996,5.8419999999999996,7.1040000000000001,8.9160000000000004,11.688000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,887,-0.70689999999999997,5.8410000000000002,0.18278,3.6749999999999998,4.22,4.9180000000000001,5.8410000000000002,7.1040000000000001,8.9160000000000004,11.689 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,888,-0.70730000000000004,5.8406000000000002,0.18279999999999999,3.6739999999999999,4.2190000000000003,4.9180000000000001,5.8410000000000002,7.1029999999999998,8.9160000000000004,11.691000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,889,-0.7077,5.8400999999999996,0.18281,3.6739999999999999,4.2190000000000003,4.9180000000000001,5.84,7.1029999999999998,8.9160000000000004,11.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,890,-0.70809999999999995,5.8395999999999999,0.18282000000000001,3.6739999999999999,4.2190000000000003,4.9169999999999998,5.84,7.1029999999999998,8.9160000000000004,11.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,891,-0.70840000000000003,5.8391999999999999,0.18282999999999999,3.6739999999999999,4.218,4.9169999999999998,5.8390000000000004,7.1020000000000003,8.9160000000000004,11.693 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,892,-0.70879999999999999,5.8387000000000002,0.18284,3.673,4.218,4.9160000000000004,5.8390000000000004,7.1020000000000003,8.9149999999999991,11.694000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,893,-0.70920000000000005,5.8381999999999996,0.18285999999999999,3.673,4.218,4.9160000000000004,5.8380000000000001,7.101,8.9149999999999991,11.696 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,894,-0.70960000000000001,5.8377999999999997,0.18287,3.673,4.2169999999999996,4.9160000000000004,5.8380000000000001,7.101,8.9149999999999991,11.696999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,895,-0.71,5.8372999999999999,0.18287999999999999,3.673,4.2169999999999996,4.915,5.8369999999999997,7.1,8.9149999999999991,11.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,896,-0.71040000000000003,5.8369,0.18289,3.673,4.2169999999999996,4.915,5.8369999999999997,7.1,8.9149999999999991,11.699 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,897,-0.7107,5.8364000000000003,0.18290000000000001,3.6720000000000002,4.2160000000000002,4.9139999999999997,5.8360000000000003,7.1,8.9149999999999991,11.699 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,898,-0.71109999999999995,5.8358999999999996,0.18292,3.6720000000000002,4.2160000000000002,4.9139999999999997,5.8360000000000003,7.0990000000000002,8.9149999999999991,11.701000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,899,-0.71150000000000002,5.8354999999999997,0.18293000000000001,3.6720000000000002,4.2160000000000002,4.9139999999999997,5.8360000000000003,7.0990000000000002,8.9149999999999991,11.702 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,900,-0.71189999999999998,5.835,0.18293999999999999,3.6709999999999998,4.2149999999999999,4.9130000000000003,5.835,7.0979999999999999,8.9149999999999991,11.702999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,901,-0.71230000000000004,5.8345000000000002,0.18295,3.6709999999999998,4.2149999999999999,4.9130000000000003,5.8339999999999996,7.0979999999999999,8.9149999999999991,11.704000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,902,-0.71260000000000001,5.8341000000000003,0.18296000000000001,3.6709999999999998,4.2149999999999999,4.9119999999999999,5.8339999999999996,7.0979999999999999,8.9149999999999991,11.705 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,903,-0.71299999999999997,5.8335999999999997,0.18296999999999999,3.6709999999999998,4.2140000000000004,4.9119999999999999,5.8339999999999996,7.0970000000000004,8.9139999999999997,11.705 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,904,-0.71340000000000003,5.8331999999999997,0.18299000000000001,3.67,4.2140000000000004,4.9109999999999996,5.8330000000000002,7.0970000000000004,8.9149999999999991,11.707000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,905,-0.71379999999999999,5.8327,0.183,3.67,4.2140000000000004,4.9109999999999996,5.8330000000000002,7.0960000000000001,8.9149999999999991,11.708 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,906,-0.71419999999999995,5.8322000000000003,0.18301000000000001,3.67,4.2130000000000001,4.9109999999999996,5.8319999999999999,7.0960000000000001,8.9139999999999997,11.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,907,-0.71450000000000002,5.8318000000000003,0.18301999999999999,3.67,4.2130000000000001,4.91,5.8319999999999999,7.0960000000000001,8.9139999999999997,11.71 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,908,-0.71489999999999998,5.8312999999999997,0.18303,3.669,4.2130000000000001,4.91,5.8310000000000004,7.0949999999999998,8.9139999999999997,11.711 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,909,-0.71530000000000005,5.8308999999999997,0.18304999999999999,3.669,4.2119999999999997,4.9089999999999998,5.8310000000000004,7.0949999999999998,8.9139999999999997,11.712 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,910,-0.7157,5.8304,0.18306,3.669,4.2119999999999997,4.9089999999999998,5.83,7.0940000000000003,8.9139999999999997,11.712999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,911,-0.71609999999999996,5.8299000000000003,0.18307000000000001,3.669,4.2119999999999997,4.9089999999999998,5.83,7.0940000000000003,8.9139999999999997,11.714 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,912,-0.71640000000000004,5.8295000000000003,0.18307999999999999,3.6680000000000001,4.2110000000000003,4.9080000000000004,5.83,7.0940000000000003,8.9139999999999997,11.715 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,913,-0.71679999999999999,5.8289999999999997,0.18309,3.6680000000000001,4.2110000000000003,4.9080000000000004,5.8289999999999997,7.093,8.9139999999999997,11.715999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,914,-0.71719999999999995,5.8285999999999998,0.18310000000000001,3.6680000000000001,4.2110000000000003,4.907,5.8289999999999997,7.093,8.9139999999999997,11.717000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,915,-0.71760000000000002,5.8281000000000001,0.18312,3.6680000000000001,4.21,4.907,5.8280000000000003,7.0919999999999996,8.9139999999999997,11.718999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,916,-0.71799999999999997,5.8276000000000003,0.18312999999999999,3.6669999999999998,4.21,4.9059999999999997,5.8280000000000003,7.0919999999999996,8.9139999999999997,11.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,917,-0.71830000000000005,5.8272000000000004,0.18314,3.6669999999999998,4.21,4.9059999999999997,5.827,7.0910000000000002,8.9139999999999997,11.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,918,-0.71870000000000001,5.8266999999999998,0.18315000000000001,3.6669999999999998,4.2089999999999996,4.9059999999999997,5.827,7.0910000000000002,8.9130000000000003,11.721 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,919,-0.71909999999999996,5.8262999999999998,0.18315999999999999,3.6669999999999998,4.2089999999999996,4.9050000000000002,5.8259999999999996,7.0910000000000002,8.9130000000000003,11.723000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,920,-0.71950000000000003,5.8258000000000001,0.18318000000000001,3.6659999999999999,4.2089999999999996,4.9050000000000002,5.8259999999999996,7.09,8.9130000000000003,11.724 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,921,-0.71989999999999998,5.8253000000000004,0.18318999999999999,3.6659999999999999,4.2080000000000002,4.9039999999999999,5.8250000000000002,7.09,8.9130000000000003,11.725 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,922,-0.72019999999999995,5.8249000000000004,0.1832,3.6659999999999999,4.2080000000000002,4.9039999999999999,5.8250000000000002,7.0890000000000004,8.9130000000000003,11.726000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,923,-0.72060000000000002,5.8243999999999998,0.18321000000000001,3.6659999999999999,4.2080000000000002,4.9039999999999999,5.8239999999999998,7.0890000000000004,8.9130000000000003,11.727 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,924,-0.72099999999999997,5.8239999999999998,0.18321999999999999,3.6659999999999999,4.2069999999999999,4.9029999999999996,5.8239999999999998,7.0890000000000004,8.9130000000000003,11.728 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,925,-0.72140000000000004,5.8235000000000001,0.18323,3.665,4.2069999999999999,4.9029999999999996,5.8239999999999998,7.0880000000000001,8.9130000000000003,11.728999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,926,-0.72170000000000001,5.8231000000000002,0.18325,3.665,4.2069999999999999,4.9020000000000001,5.8230000000000004,7.0880000000000001,8.9130000000000003,11.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,927,-0.72209999999999996,5.8226000000000004,0.18326000000000001,3.665,4.2060000000000004,4.9020000000000001,5.8230000000000004,7.0869999999999997,8.9130000000000003,11.731 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,928,-0.72250000000000003,5.8220999999999998,0.18326999999999999,3.6640000000000001,4.2060000000000004,4.9020000000000001,5.8220000000000001,7.0869999999999997,8.9130000000000003,11.731999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,929,-0.72289999999999999,5.8216999999999999,0.18328,3.6640000000000001,4.2060000000000004,4.9009999999999998,5.8220000000000001,7.0869999999999997,8.9130000000000003,11.733000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,930,-0.72319999999999995,5.8212000000000002,0.18329000000000001,3.6640000000000001,4.2050000000000001,4.9009999999999998,5.8209999999999997,7.0860000000000003,8.9120000000000008,11.734 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,931,-0.72360000000000002,5.8208000000000002,0.18331,3.6640000000000001,4.2050000000000001,4.9000000000000004,5.8209999999999997,7.0860000000000003,8.9130000000000003,11.736000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,932,-0.72399999999999998,5.8202999999999996,0.18332000000000001,3.6629999999999998,4.2050000000000001,4.9000000000000004,5.82,7.085,8.9120000000000008,11.737 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,933,-0.72440000000000004,5.8198999999999996,0.18332999999999999,3.6629999999999998,4.2039999999999997,4.9000000000000004,5.82,7.085,8.9120000000000008,11.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,934,-0.7248,5.8193999999999999,0.18334,3.6629999999999998,4.2039999999999997,4.899,5.819,7.085,8.9120000000000008,11.739000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,935,-0.72509999999999997,5.8189000000000002,0.18335000000000001,3.6629999999999998,4.2039999999999997,4.899,5.819,7.0839999999999996,8.9120000000000008,11.739000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,936,-0.72550000000000003,5.8185000000000002,0.18336,3.6629999999999998,4.2030000000000003,4.8979999999999997,5.8179999999999996,7.0839999999999996,8.9120000000000008,11.74 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,937,-0.72589999999999999,5.8179999999999996,0.18337999999999999,3.6619999999999999,4.2030000000000003,4.8979999999999997,5.8179999999999996,7.0830000000000002,8.9120000000000008,11.742000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,938,-0.72629999999999995,5.8175999999999997,0.18339,3.6619999999999999,4.2030000000000003,4.8970000000000002,5.8179999999999996,7.0830000000000002,8.9120000000000008,11.743 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,939,-0.72660000000000002,5.8170999999999999,0.18340000000000001,3.6619999999999999,4.202,4.8970000000000002,5.8170000000000002,7.0830000000000002,8.9120000000000008,11.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,940,-0.72699999999999998,5.8167,0.18340999999999999,3.6619999999999999,4.202,4.8970000000000002,5.8170000000000002,7.0819999999999999,8.9120000000000008,11.744999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,941,-0.72740000000000005,5.8162000000000003,0.18342,3.661,4.202,4.8959999999999999,5.8159999999999998,7.0819999999999999,8.9120000000000008,11.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,942,-0.7278,5.8156999999999996,0.18343000000000001,3.661,4.2009999999999996,4.8959999999999999,5.8159999999999998,7.0810000000000004,8.9109999999999996,11.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,943,-0.72809999999999997,5.8152999999999997,0.18345,3.661,4.2009999999999996,4.8949999999999996,5.8150000000000004,7.0810000000000004,8.9120000000000008,11.747999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,944,-0.72850000000000004,5.8148,0.18346000000000001,3.661,4.2009999999999996,4.8949999999999996,5.8150000000000004,7.08,8.9109999999999996,11.749000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,945,-0.72889999999999999,5.8144,0.18346999999999999,3.66,4.2,4.8949999999999996,5.8140000000000001,7.08,8.9109999999999996,11.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,946,-0.72929999999999995,5.8139000000000003,0.18348,3.66,4.2,4.8940000000000001,5.8140000000000001,7.08,8.9109999999999996,11.750999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,947,-0.72960000000000003,5.8135000000000003,0.18348999999999999,3.66,4.2,4.8940000000000001,5.8140000000000001,7.0789999999999997,8.9109999999999996,11.752000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,948,-0.73,5.8129999999999997,0.1835,3.66,4.1989999999999998,4.8929999999999998,5.8129999999999997,7.0789999999999997,8.9109999999999996,11.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,949,-0.73040000000000005,5.8125,0.18351999999999999,3.6589999999999998,4.1989999999999998,4.8929999999999998,5.8120000000000003,7.0780000000000003,8.9109999999999996,11.755000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,950,-0.73080000000000001,5.8121,0.18353,3.6589999999999998,4.1989999999999998,4.8929999999999998,5.8120000000000003,7.0780000000000003,8.9109999999999996,11.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,951,-0.73109999999999997,5.8116000000000003,0.18354000000000001,3.6589999999999998,4.1980000000000004,4.8920000000000003,5.8120000000000003,7.0780000000000003,8.9109999999999996,11.757 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,952,-0.73150000000000004,5.8112000000000004,0.18354999999999999,3.6589999999999998,4.1980000000000004,4.8920000000000003,5.8109999999999999,7.077,8.9109999999999996,11.757999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,953,-0.7319,5.8106999999999998,0.18356,3.6579999999999999,4.1980000000000004,4.891,5.8109999999999999,7.077,8.9109999999999996,11.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,954,-0.73229999999999995,5.8102999999999998,0.18357000000000001,3.6579999999999999,4.1970000000000001,4.891,5.81,7.0759999999999996,8.9109999999999996,11.76 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,955,-0.73260000000000003,5.8098000000000001,0.18359,3.6579999999999999,4.1970000000000001,4.891,5.81,7.0759999999999996,8.9109999999999996,11.760999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,956,-0.73299999999999998,5.8093000000000004,0.18360000000000001,3.6579999999999999,4.1970000000000001,4.8899999999999997,5.8090000000000002,7.0759999999999996,8.9109999999999996,11.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,957,-0.73340000000000005,5.8089000000000004,0.18361,3.657,4.1959999999999997,4.8899999999999997,5.8090000000000002,7.0750000000000002,8.9109999999999996,11.763 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,958,-0.73370000000000002,5.8083999999999998,0.18362000000000001,3.657,4.1959999999999997,4.8890000000000002,5.8079999999999998,7.0750000000000002,8.91,11.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,959,-0.73409999999999997,5.8079999999999998,0.18362999999999999,3.657,4.1959999999999997,4.8890000000000002,5.8079999999999998,7.0739999999999998,8.91,11.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,960,-0.73450000000000004,5.8075000000000001,0.18364,3.657,4.1950000000000003,4.8879999999999999,5.8079999999999998,7.0739999999999998,8.91,11.766 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,961,-0.7349,5.8071000000000002,0.18365999999999999,3.6560000000000001,4.1950000000000003,4.8879999999999999,5.8070000000000004,7.0739999999999998,8.91,11.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,962,-0.73519999999999996,5.8066000000000004,0.18367,3.6560000000000001,4.1950000000000003,4.8879999999999999,5.8070000000000004,7.0730000000000004,8.91,11.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,963,-0.73560000000000003,5.8060999999999998,0.18368000000000001,3.6560000000000001,4.194,4.8869999999999996,5.806,7.0730000000000004,8.91,11.769 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,964,-0.73599999999999999,5.8056999999999999,0.18368999999999999,3.6560000000000001,4.194,4.8869999999999996,5.806,7.0720000000000001,8.91,11.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,965,-0.73640000000000005,5.8052000000000001,0.1837,3.6549999999999998,4.194,4.8860000000000001,5.8049999999999997,7.0720000000000001,8.91,11.772 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,966,-0.73670000000000002,5.8048000000000002,0.18371000000000001,3.6549999999999998,4.1929999999999996,4.8860000000000001,5.8049999999999997,7.0720000000000001,8.91,11.772 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,967,-0.73709999999999998,5.8042999999999996,0.18373,3.6549999999999998,4.1929999999999996,4.8860000000000001,5.8040000000000003,7.0709999999999997,8.91,11.773999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,968,-0.73750000000000004,5.8037999999999998,0.18373999999999999,3.6549999999999998,4.1929999999999996,4.8849999999999998,5.8040000000000003,7.0709999999999997,8.91,11.775 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,969,-0.73780000000000001,5.8033999999999999,0.18375,3.6539999999999999,4.1920000000000002,4.8849999999999998,5.8029999999999999,7.07,8.9090000000000007,11.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,970,-0.73819999999999997,5.8029000000000002,0.18376000000000001,3.6539999999999999,4.1920000000000002,4.8840000000000003,5.8029999999999999,7.07,8.9090000000000007,11.776999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,971,-0.73860000000000003,5.8025000000000002,0.18376999999999999,3.6539999999999999,4.1920000000000002,4.8840000000000003,5.8019999999999996,7.069,8.9090000000000007,11.778 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,972,-0.73899999999999999,5.8019999999999996,0.18378,3.6539999999999999,4.1909999999999998,4.8840000000000003,5.8019999999999996,7.069,8.9090000000000007,11.779 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,973,-0.73929999999999996,5.8014999999999999,0.18379000000000001,3.653,4.1909999999999998,4.883,5.8019999999999996,7.069,8.9090000000000007,11.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,974,-0.73970000000000002,5.8010999999999999,0.18381,3.653,4.1909999999999998,4.883,5.8010000000000002,7.0679999999999996,8.9090000000000007,11.782 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,975,-0.74009999999999998,5.8006000000000002,0.18382000000000001,3.653,4.1900000000000004,4.8819999999999997,5.8010000000000002,7.0679999999999996,8.9090000000000007,11.782999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,976,-0.74039999999999995,5.8002000000000002,0.18382999999999999,3.653,4.1900000000000004,4.8819999999999997,5.8,7.0670000000000002,8.9090000000000007,11.782999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,977,-0.74080000000000001,5.7996999999999996,0.18384,3.6520000000000001,4.1900000000000004,4.8819999999999997,5.8,7.0670000000000002,8.9090000000000007,11.784000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,978,-0.74119999999999997,5.7992999999999997,0.18385000000000001,3.6520000000000001,4.1890000000000001,4.8810000000000002,5.7990000000000004,7.0670000000000002,8.9090000000000007,11.786 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,979,-0.74150000000000005,5.7988,0.18386,3.6520000000000001,4.1890000000000001,4.8810000000000002,5.7990000000000004,7.0659999999999998,8.9090000000000007,11.786 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,980,-0.7419,5.7983000000000002,0.18387999999999999,3.6520000000000001,4.1890000000000001,4.88,5.798,7.0659999999999998,8.9090000000000007,11.788 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,981,-0.74229999999999996,5.7979000000000003,0.18389,3.6509999999999998,4.1879999999999997,4.88,5.798,7.0650000000000004,8.9090000000000007,11.789 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,982,-0.74270000000000003,5.7973999999999997,0.18390000000000001,3.6509999999999998,4.1879999999999997,4.8789999999999996,5.7969999999999997,7.0650000000000004,8.9079999999999995,11.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,983,-0.74299999999999999,5.7969999999999997,0.18390999999999999,3.6509999999999998,4.1879999999999997,4.8789999999999996,5.7969999999999997,7.0650000000000004,8.9079999999999995,11.791 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,984,-0.74339999999999995,5.7965,0.18392,3.6509999999999998,4.1870000000000003,4.8789999999999996,5.7960000000000003,7.0640000000000001,8.9079999999999995,11.792 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,985,-0.74380000000000002,5.7960000000000003,0.18393000000000001,3.65,4.1870000000000003,4.8780000000000001,5.7960000000000003,7.0640000000000001,8.9079999999999995,11.792999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,986,-0.74409999999999998,5.7956000000000003,0.18393999999999999,3.65,4.1870000000000003,4.8780000000000001,5.7960000000000003,7.0629999999999997,8.9079999999999995,11.794 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,987,-0.74450000000000005,5.7950999999999997,0.18396000000000001,3.65,4.1859999999999999,4.8769999999999998,5.7949999999999999,7.0629999999999997,8.9079999999999995,11.795 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,988,-0.74490000000000001,5.7946,0.18396999999999999,3.65,4.1859999999999999,4.8769999999999998,5.7949999999999999,7.0620000000000003,8.9079999999999995,11.795999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,989,-0.74519999999999997,5.7942,0.18398,3.649,4.1859999999999999,4.8769999999999998,5.7939999999999996,7.0620000000000003,8.9079999999999995,11.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,990,-0.74560000000000004,5.7937000000000003,0.18398999999999999,3.649,4.1849999999999996,4.8760000000000003,5.7939999999999996,7.0620000000000003,8.9079999999999995,11.798 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,991,-0.746,5.7933000000000003,0.184,3.649,4.1849999999999996,4.8760000000000003,5.7930000000000001,7.0609999999999999,8.9079999999999995,11.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,992,-0.74629999999999996,5.7927999999999997,0.18401000000000001,3.649,4.1849999999999996,4.875,5.7930000000000001,7.0609999999999999,8.907,11.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,993,-0.74670000000000003,5.7923,0.18403,3.6480000000000001,4.1840000000000002,4.875,5.7919999999999998,7.06,8.907,11.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,994,-0.74709999999999999,5.7919,0.18404000000000001,3.6480000000000001,4.1840000000000002,4.875,5.7919999999999998,7.06,8.907,11.803000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,995,-0.74750000000000005,5.7914000000000003,0.18404999999999999,3.6480000000000001,4.1840000000000002,4.8739999999999997,5.7910000000000004,7.06,8.907,11.804 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,996,-0.74780000000000002,5.7908999999999997,0.18406,3.6480000000000001,4.1829999999999998,4.8739999999999997,5.7910000000000004,7.0590000000000002,8.907,11.805 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,997,-0.74819999999999998,5.7904999999999998,0.18407000000000001,3.6469999999999998,4.1829999999999998,4.8730000000000002,5.79,7.0590000000000002,8.907,11.805999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,998,-0.74860000000000004,5.79,0.18407999999999999,3.6469999999999998,4.1829999999999998,4.8730000000000002,5.79,7.0579999999999998,8.907,11.807 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,999,-0.74890000000000001,5.7896000000000001,0.18409,3.6469999999999998,4.1820000000000004,4.8719999999999999,5.79,7.0579999999999998,8.907,11.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1000,-0.74929999999999997,5.7891000000000004,0.18411,3.6469999999999998,4.1820000000000004,4.8719999999999999,5.7889999999999997,7.0570000000000004,8.907,11.81 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1001,-0.74970000000000003,5.7885999999999997,0.18412000000000001,3.6459999999999999,4.1820000000000004,4.8719999999999999,5.7889999999999997,7.0570000000000004,8.907,11.811 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1002,-0.75,5.7881999999999998,0.18412999999999999,3.6459999999999999,4.181,4.8710000000000004,5.7880000000000003,7.0570000000000004,8.907,11.811 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1003,-0.75039999999999996,5.7877000000000001,0.18414,3.6459999999999999,4.181,4.8710000000000004,5.7880000000000003,7.056,8.907,11.811999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1004,-0.75080000000000002,5.7872000000000003,0.18415000000000001,3.6459999999999999,4.181,4.87,5.7869999999999999,7.056,8.9060000000000006,11.813000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1005,-0.75109999999999999,5.7868000000000004,0.18415999999999999,3.645,4.18,4.87,5.7869999999999999,7.0549999999999997,8.9060000000000006,11.814 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1006,-0.75149999999999995,5.7862999999999998,0.18417,3.645,4.18,4.87,5.7859999999999996,7.0549999999999997,8.9060000000000006,11.815 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1007,-0.75190000000000001,5.7858000000000001,0.18418999999999999,3.645,4.18,4.8689999999999998,5.7859999999999996,7.0549999999999997,8.9060000000000006,11.817 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1008,-0.75219999999999998,5.7854000000000001,0.1842,3.645,4.1790000000000003,4.8689999999999998,5.7850000000000001,7.0540000000000003,8.9060000000000006,11.818 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1009,-0.75260000000000005,5.7849000000000004,0.18421000000000001,3.6440000000000001,4.1790000000000003,4.8680000000000003,5.7850000000000001,7.0540000000000003,8.9060000000000006,11.819000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1010,-0.753,5.7843999999999998,0.18421999999999999,3.6440000000000001,4.1790000000000003,4.8680000000000003,5.7839999999999998,7.0529999999999999,8.9060000000000006,11.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1011,-0.75329999999999997,5.7839999999999998,0.18423,3.6440000000000001,4.1779999999999999,4.867,5.7839999999999998,7.0529999999999999,8.9060000000000006,11.821 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1012,-0.75370000000000004,5.7835000000000001,0.18423999999999999,3.6440000000000001,4.1779999999999999,4.867,5.7839999999999998,7.0519999999999996,8.9060000000000006,11.821999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1013,-0.75409999999999999,5.7830000000000004,0.18425,3.6429999999999998,4.1779999999999999,4.867,5.7830000000000004,7.0519999999999996,8.9049999999999994,11.823 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1014,-0.75439999999999996,5.7824999999999998,0.18426999999999999,3.6429999999999998,4.1769999999999996,4.8659999999999997,5.782,7.0519999999999996,8.9049999999999994,11.824 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1015,-0.75480000000000003,5.7820999999999998,0.18428,3.6429999999999998,4.1769999999999996,4.8659999999999997,5.782,7.0510000000000002,8.9049999999999994,11.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1016,-0.75519999999999998,5.7816000000000001,0.18429000000000001,3.6419999999999999,4.1769999999999996,4.8650000000000002,5.782,7.0510000000000002,8.9049999999999994,11.827 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1017,-0.75549999999999995,5.7811000000000003,0.18429999999999999,3.6419999999999999,4.1760000000000002,4.8650000000000002,5.7809999999999997,7.05,8.9049999999999994,11.827 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1018,-0.75590000000000002,5.7807000000000004,0.18431,3.6419999999999999,4.1760000000000002,4.8650000000000002,5.7809999999999997,7.05,8.9049999999999994,11.829000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1019,-0.75619999999999998,5.7801999999999998,0.18432000000000001,3.6419999999999999,4.1760000000000002,4.8639999999999999,5.78,7.0490000000000004,8.9049999999999994,11.829000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1020,-0.75660000000000005,5.7797000000000001,0.18432999999999999,3.641,4.1749999999999998,4.8639999999999999,5.78,7.0490000000000004,8.9049999999999994,11.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1021,-0.75700000000000001,5.7793000000000001,0.18435000000000001,3.641,4.1749999999999998,4.8630000000000004,5.7789999999999999,7.0490000000000004,8.9049999999999994,11.832000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1022,-0.75729999999999997,5.7788000000000004,0.18436,3.641,4.1749999999999998,4.8630000000000004,5.7789999999999999,7.048,8.9049999999999994,11.833 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1023,-0.75770000000000004,5.7782999999999998,0.18437000000000001,3.641,4.1740000000000004,4.8620000000000001,5.7779999999999996,7.048,8.9039999999999999,11.834 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1024,-0.7581,5.7778,0.18437999999999999,3.64,4.1740000000000004,4.8620000000000001,5.7779999999999996,7.0469999999999997,8.9039999999999999,11.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1025,-0.75839999999999996,5.7774000000000001,0.18439,3.64,4.1740000000000004,4.8620000000000001,5.7770000000000001,7.0469999999999997,8.9039999999999999,11.836 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1026,-0.75880000000000003,5.7769000000000004,0.18440000000000001,3.64,4.173,4.8609999999999998,5.7770000000000001,7.0460000000000003,8.9039999999999999,11.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1027,-0.75919999999999999,5.7763999999999998,0.18440999999999999,3.64,4.173,4.8609999999999998,5.7759999999999998,7.0460000000000003,8.9039999999999999,11.837999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1028,-0.75949999999999995,5.7759,0.18443000000000001,3.6389999999999998,4.1719999999999997,4.8600000000000003,5.7759999999999998,7.0460000000000003,8.9039999999999999,11.839 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1029,-0.75990000000000002,5.7755000000000001,0.18443999999999999,3.6389999999999998,4.1719999999999997,4.8600000000000003,5.7759999999999998,7.0449999999999999,8.9039999999999999,11.840999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1030,-0.76029999999999998,5.7750000000000004,0.18445,3.6389999999999998,4.1719999999999997,4.859,5.7750000000000004,7.0449999999999999,8.9039999999999999,11.842000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1031,-0.76060000000000005,5.7744999999999997,0.18446000000000001,3.6389999999999998,4.1710000000000003,4.859,5.774,7.0439999999999996,8.9039999999999999,11.842000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1032,-0.76100000000000001,5.774,0.18447,3.6379999999999999,4.1710000000000003,4.859,5.774,7.0439999999999996,8.9030000000000005,11.843 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1033,-0.76129999999999998,5.7736000000000001,0.18448000000000001,3.6379999999999999,4.1710000000000003,4.8579999999999997,5.774,7.0430000000000001,8.9030000000000005,11.843999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1034,-0.76170000000000004,5.7731000000000003,0.18448999999999999,3.6379999999999999,4.1710000000000003,4.8579999999999997,5.7729999999999997,7.0430000000000001,8.9030000000000005,11.845000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1035,-0.7621,5.7725999999999997,0.1845,3.6379999999999999,4.17,4.8570000000000002,5.7729999999999997,7.0419999999999998,8.9030000000000005,11.846 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1036,-0.76239999999999997,5.7721,0.18451999999999999,3.637,4.17,4.8570000000000002,5.7720000000000002,7.0419999999999998,8.9030000000000005,11.848000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1037,-0.76280000000000003,5.7717000000000001,0.18453,3.637,4.1689999999999996,4.8570000000000002,5.7720000000000002,7.0419999999999998,8.9030000000000005,11.849 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1038,-0.76319999999999999,5.7712000000000003,0.18454000000000001,3.637,4.1689999999999996,4.8559999999999999,5.7709999999999999,7.0410000000000004,8.9030000000000005,11.85 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1039,-0.76349999999999996,5.7706999999999997,0.18454999999999999,3.6360000000000001,4.1689999999999996,4.8559999999999999,5.7709999999999999,7.0410000000000004,8.9030000000000005,11.851000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1040,-0.76390000000000002,5.7702,0.18456,3.6360000000000001,4.1680000000000001,4.8550000000000004,5.77,7.04,8.9019999999999992,11.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1041,-0.76419999999999999,5.7697000000000003,0.18457000000000001,3.6360000000000001,4.1680000000000001,4.8550000000000004,5.77,7.04,8.9019999999999992,11.853 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1042,-0.76459999999999995,5.7693000000000003,0.18457999999999999,3.6360000000000001,4.1680000000000001,4.8540000000000001,5.7690000000000001,7.0389999999999997,8.9019999999999992,11.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1043,-0.76500000000000001,5.7687999999999997,0.18459,3.6360000000000001,4.1669999999999998,4.8540000000000001,5.7690000000000001,7.0389999999999997,8.9019999999999992,11.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1044,-0.76529999999999998,5.7683,0.18461,3.6349999999999998,4.1669999999999998,4.8529999999999998,5.7679999999999998,7.0389999999999997,8.9019999999999992,11.856 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1045,-0.76570000000000005,5.7678000000000003,0.18462000000000001,3.6349999999999998,4.1669999999999998,4.8529999999999998,5.7679999999999998,7.0380000000000003,8.9019999999999992,11.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1046,-0.7661,5.7672999999999996,0.18462999999999999,3.6349999999999998,4.1660000000000004,4.8529999999999998,5.7670000000000003,7.0380000000000003,8.9019999999999992,11.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1047,-0.76639999999999997,5.7668999999999997,0.18464,3.6339999999999999,4.1660000000000004,4.8520000000000003,5.7670000000000003,7.0369999999999999,8.9019999999999992,11.859 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1048,-0.76680000000000004,5.7664,0.18465000000000001,3.6339999999999999,4.1660000000000004,4.8520000000000003,5.766,7.0369999999999999,8.9019999999999992,11.86 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1049,-0.7671,5.7659000000000002,0.18465999999999999,3.6339999999999999,4.165,4.851,5.766,7.0359999999999996,8.9009999999999998,11.861000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1050,-0.76749999999999996,5.7653999999999996,0.18467,3.6339999999999999,4.165,4.851,5.7649999999999997,7.0359999999999996,8.9009999999999998,11.862 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1051,-0.76790000000000003,5.7648999999999999,0.18468999999999999,3.633,4.165,4.8499999999999996,5.7649999999999997,7.0350000000000001,8.9009999999999998,11.864000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1052,-0.76819999999999999,5.7644000000000002,0.1847,3.633,4.1639999999999997,4.8499999999999996,5.7640000000000002,7.0350000000000001,8.9009999999999998,11.865 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1053,-0.76859999999999995,5.7640000000000002,0.18471000000000001,3.633,4.1639999999999997,4.8499999999999996,5.7640000000000002,7.0350000000000001,8.9009999999999998,11.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1054,-0.76890000000000003,5.7634999999999996,0.18472,3.633,4.1639999999999997,4.8490000000000002,5.7640000000000002,7.0339999999999998,8.9009999999999998,11.867000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1055,-0.76929999999999998,5.7629999999999999,0.18473000000000001,3.6320000000000001,4.1630000000000003,4.8490000000000002,5.7629999999999999,7.0339999999999998,8.9009999999999998,11.868 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1056,-0.76970000000000005,5.7625000000000002,0.18473999999999999,3.6320000000000001,4.1630000000000003,4.8479999999999999,5.7619999999999996,7.0330000000000004,8.9009999999999998,11.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1057,-0.77,5.7619999999999996,0.18475,3.6320000000000001,4.1619999999999999,4.8479999999999999,5.7619999999999996,7.0330000000000004,8.9,11.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1058,-0.77039999999999997,5.7614999999999998,0.18476000000000001,3.6309999999999998,4.1619999999999999,4.8470000000000004,5.7619999999999996,7.032,8.9,11.871 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1059,-0.77080000000000004,5.7610000000000001,0.18476999999999999,3.6309999999999998,4.1619999999999999,4.8470000000000004,5.7610000000000001,7.032,8.9,11.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1060,-0.77110000000000001,5.7606000000000002,0.18479000000000001,3.6309999999999998,4.1609999999999996,4.8470000000000004,5.7610000000000001,7.0309999999999997,8.9,11.872999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1061,-0.77149999999999996,5.7601000000000004,0.18479999999999999,3.6309999999999998,4.1609999999999996,4.8460000000000001,5.76,7.0309999999999997,8.9,11.874000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1062,-0.77180000000000004,5.7595999999999998,0.18481,3.63,4.1609999999999996,4.8460000000000001,5.76,7.0309999999999997,8.9,11.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1063,-0.7722,5.7591000000000001,0.18482000000000001,3.63,4.16,4.8449999999999998,5.7590000000000003,7.03,8.9,11.875999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1064,-0.77259999999999995,5.7586000000000004,0.18482999999999999,3.63,4.16,4.8449999999999998,5.7590000000000003,7.03,8.8989999999999991,11.877000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1065,-0.77290000000000003,5.7580999999999998,0.18484,3.63,4.16,4.8440000000000003,5.758,7.0289999999999999,8.8989999999999991,11.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1066,-0.77329999999999999,5.7576000000000001,0.18484999999999999,3.629,4.1589999999999998,4.8440000000000003,5.758,7.0289999999999999,8.8989999999999991,11.879 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1067,-0.77359999999999995,5.7572000000000001,0.18486,3.629,4.1589999999999998,4.8440000000000003,5.7569999999999997,7.0279999999999996,8.8989999999999991,11.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1068,-0.77400000000000002,5.7567000000000004,0.18487999999999999,3.629,4.1589999999999998,4.843,5.7569999999999997,7.0279999999999996,8.8989999999999991,11.882 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1069,-0.77429999999999999,5.7561999999999998,0.18489,3.6280000000000001,4.1580000000000004,4.843,5.7560000000000002,7.0270000000000001,8.8989999999999991,11.882999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1070,-0.77470000000000006,5.7557,0.18490000000000001,3.6280000000000001,4.1580000000000004,4.8419999999999996,5.7560000000000002,7.0270000000000001,8.8989999999999991,11.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1071,-0.77510000000000001,5.7552000000000003,0.18490999999999999,3.6280000000000001,4.1580000000000004,4.8419999999999996,5.7549999999999999,7.0259999999999998,8.8989999999999991,11.885 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1072,-0.77539999999999998,5.7546999999999997,0.18492,3.6280000000000001,4.157,4.8410000000000002,5.7549999999999999,7.0259999999999998,8.8979999999999997,11.885999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1073,-0.77580000000000005,5.7542,0.18493000000000001,3.6269999999999998,4.157,4.8410000000000002,5.7539999999999996,7.0259999999999998,8.8979999999999997,11.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1074,-0.77610000000000001,5.7537000000000003,0.18493999999999999,3.6269999999999998,4.157,4.8410000000000002,5.7539999999999996,7.0250000000000004,8.8979999999999997,11.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1075,-0.77649999999999997,5.7531999999999996,0.18495,3.6269999999999998,4.1559999999999997,4.84,5.7530000000000001,7.0250000000000004,8.8979999999999997,11.888 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1076,-0.77690000000000003,5.7526999999999999,0.18497,3.6269999999999998,4.1559999999999997,4.84,5.7530000000000001,7.024,8.8979999999999997,11.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1077,-0.7772,5.7523,0.18498000000000001,3.6259999999999999,4.1550000000000002,4.8390000000000004,5.7519999999999998,7.024,8.8979999999999997,11.891 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1078,-0.77759999999999996,5.7518000000000002,0.18498999999999999,3.6259999999999999,4.1550000000000002,4.8390000000000004,5.7519999999999998,7.0229999999999997,8.8979999999999997,11.891999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1079,-0.77790000000000004,5.7512999999999996,0.185,3.6259999999999999,4.1550000000000002,4.8380000000000001,5.7510000000000003,7.0229999999999997,8.8970000000000002,11.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1080,-0.77829999999999999,5.7507999999999999,0.18501000000000001,3.6259999999999999,4.1539999999999999,4.8380000000000001,5.7510000000000003,7.0220000000000002,8.8970000000000002,11.894 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1081,-0.77859999999999996,5.7503000000000002,0.18501999999999999,3.625,4.1539999999999999,4.8380000000000001,5.75,7.0220000000000002,8.8970000000000002,11.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1082,-0.77900000000000003,5.7497999999999996,0.18503,3.625,4.1539999999999999,4.8369999999999997,5.75,7.0209999999999999,8.8970000000000002,11.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1083,-0.77939999999999998,5.7492999999999999,0.18504000000000001,3.625,4.1529999999999996,4.8369999999999997,5.7489999999999997,7.0209999999999999,8.8970000000000002,11.897 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1084,-0.77969999999999995,5.7488000000000001,0.18504999999999999,3.6240000000000001,4.1529999999999996,4.8360000000000003,5.7489999999999997,7.02,8.8970000000000002,11.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1085,-0.78010000000000002,5.7483000000000004,0.18507000000000001,3.6240000000000001,4.1529999999999996,4.8360000000000003,5.7480000000000002,7.02,8.8970000000000002,11.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1086,-0.78039999999999998,5.7477999999999998,0.18507999999999999,3.6240000000000001,4.1520000000000001,4.835,5.7480000000000002,7.02,8.8960000000000008,11.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1087,-0.78080000000000005,5.7473000000000001,0.18509,3.6240000000000001,4.1520000000000001,4.835,5.7469999999999999,7.0190000000000001,8.8960000000000008,11.901999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1088,-0.78110000000000002,5.7468000000000004,0.18509999999999999,3.6230000000000002,4.1509999999999998,4.8339999999999996,5.7469999999999999,7.0190000000000001,8.8960000000000008,11.901999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1089,-0.78149999999999997,5.7462999999999997,0.18511,3.6230000000000002,4.1509999999999998,4.8339999999999996,5.7460000000000004,7.0179999999999998,8.8960000000000008,11.903 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1090,-0.78190000000000004,5.7458,0.18512000000000001,3.6230000000000002,4.1509999999999998,4.8339999999999996,5.7460000000000004,7.0179999999999998,8.8960000000000008,11.904999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1091,-0.78220000000000001,5.7453000000000003,0.18512999999999999,3.6219999999999999,4.1500000000000004,4.8330000000000002,5.7450000000000001,7.0170000000000003,8.8960000000000008,11.904999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1092,-0.78259999999999996,5.7449000000000003,0.18514,3.6219999999999999,4.1500000000000004,4.8330000000000002,5.7450000000000001,7.0170000000000003,8.8960000000000008,11.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1093,-0.78290000000000004,5.7443999999999997,0.18515000000000001,3.6219999999999999,4.1500000000000004,4.8319999999999999,5.7439999999999998,7.016,8.8949999999999996,11.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1094,-0.7833,5.7439,0.18517,3.6219999999999999,4.149,4.8319999999999999,5.7439999999999998,7.016,8.8949999999999996,11.909000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1095,-0.78359999999999996,5.7434000000000003,0.18518000000000001,3.621,4.149,4.8310000000000004,5.7430000000000003,7.016,8.8949999999999996,11.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1096,-0.78400000000000003,5.7428999999999997,0.18518999999999999,3.621,4.149,4.8310000000000004,5.7430000000000003,7.0149999999999997,8.8949999999999996,11.911 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1097,-0.78439999999999999,5.7423999999999999,0.1852,3.621,4.1479999999999997,4.8310000000000004,5.742,7.0149999999999997,8.8949999999999996,11.912000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1098,-0.78469999999999995,5.7419000000000002,0.18521000000000001,3.621,4.1479999999999997,4.83,5.742,7.0140000000000002,8.8949999999999996,11.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1099,-0.78510000000000002,5.7413999999999996,0.18522,3.62,4.1479999999999997,4.83,5.7409999999999997,7.0140000000000002,8.8949999999999996,11.914 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1100,-0.78539999999999999,5.7408999999999999,0.18523000000000001,3.62,4.1470000000000002,4.8289999999999997,5.7409999999999997,7.0129999999999999,8.8940000000000001,11.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1101,-0.78580000000000005,5.7404000000000002,0.18523999999999999,3.62,4.1470000000000002,4.8289999999999997,5.74,7.0129999999999999,8.8940000000000001,11.916 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1102,-0.78610000000000002,5.7398999999999996,0.18525,3.62,4.1470000000000002,4.8280000000000003,5.74,7.0119999999999996,8.8940000000000001,11.917 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1103,-0.78649999999999998,5.7393999999999998,0.18526999999999999,3.6190000000000002,4.1459999999999999,4.8280000000000003,5.7389999999999999,7.0119999999999996,8.8940000000000001,11.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1104,-0.78680000000000005,5.7389000000000001,0.18528,3.6190000000000002,4.1459999999999999,4.827,5.7389999999999999,7.0110000000000001,8.8940000000000001,11.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1105,-0.78720000000000001,5.7384000000000004,0.18529000000000001,3.6190000000000002,4.1449999999999996,4.827,5.7380000000000004,7.0110000000000001,8.8940000000000001,11.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1106,-0.78749999999999998,5.7378999999999998,0.18529999999999999,3.6179999999999999,4.1449999999999996,4.827,5.7380000000000004,7.01,8.8930000000000007,11.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1107,-0.78790000000000004,5.7374000000000001,0.18531,3.6179999999999999,4.1449999999999996,4.8259999999999996,5.7370000000000001,7.01,8.8930000000000007,11.922000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1108,-0.7883,5.7369000000000003,0.18532000000000001,3.6179999999999999,4.1440000000000001,4.8259999999999996,5.7370000000000001,7.0090000000000003,8.8930000000000007,11.923999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1109,-0.78859999999999997,5.7363999999999997,0.18532999999999999,3.6179999999999999,4.1440000000000001,4.8250000000000002,5.7359999999999998,7.0090000000000003,8.8930000000000007,11.923999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1110,-0.78900000000000003,5.7359,0.18534,3.617,4.1440000000000001,4.8250000000000002,5.7359999999999998,7.008,8.8930000000000007,11.926 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1111,-0.7893,5.7354000000000003,0.18534999999999999,3.617,4.1429999999999998,4.8239999999999998,5.7350000000000003,7.008,8.8930000000000007,11.926 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1112,-0.78969999999999996,5.7348999999999997,0.18537000000000001,3.617,4.1429999999999998,4.8239999999999998,5.7350000000000003,7.008,8.8930000000000007,11.928000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1113,-0.79,5.7343999999999999,0.18537999999999999,3.6160000000000001,4.1429999999999998,4.8230000000000004,5.734,7.0069999999999997,8.8919999999999995,11.929 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1114,-0.79039999999999999,5.7339000000000002,0.18539,3.6160000000000001,4.1420000000000003,4.8230000000000004,5.734,7.0069999999999997,8.8919999999999995,11.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1115,-0.79069999999999996,5.7333999999999996,0.18540000000000001,3.6160000000000001,4.1420000000000003,4.8230000000000004,5.7329999999999997,7.0060000000000002,8.8919999999999995,11.930999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1116,-0.79110000000000003,5.7328999999999999,0.18540999999999999,3.6160000000000001,4.141,4.8220000000000001,5.7329999999999997,7.0060000000000002,8.8919999999999995,11.932 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1117,-0.79139999999999999,5.7324000000000002,0.18542,3.6150000000000002,4.141,4.8220000000000001,5.7320000000000002,7.0049999999999999,8.8919999999999995,11.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1118,-0.79179999999999995,5.7319000000000004,0.18543000000000001,3.6150000000000002,4.141,4.8209999999999997,5.7320000000000002,7.0049999999999999,8.8919999999999995,11.933999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1119,-0.79210000000000003,5.7313999999999998,0.18543999999999999,3.6150000000000002,4.1399999999999997,4.8209999999999997,5.7309999999999999,7.0039999999999996,8.891,11.935 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1120,-0.79249999999999998,5.7309000000000001,0.18545,3.6150000000000002,4.1399999999999997,4.82,5.7309999999999999,7.0039999999999996,8.891,11.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1121,-0.79290000000000005,5.7304000000000004,0.18546000000000001,3.6139999999999999,4.1399999999999997,4.82,5.73,7.0030000000000001,8.891,11.936999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1122,-0.79320000000000002,5.7298999999999998,0.18548000000000001,3.6139999999999999,4.1390000000000002,4.819,5.73,7.0030000000000001,8.891,11.939 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1123,-0.79359999999999997,5.7294,0.18548999999999999,3.6139999999999999,4.1390000000000002,4.819,5.7290000000000001,7.0019999999999998,8.891,11.94 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1124,-0.79390000000000005,5.7289000000000003,0.1855,3.613,4.1390000000000002,4.819,5.7290000000000001,7.0019999999999998,8.891,11.94 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1125,-0.79430000000000001,5.7283999999999997,0.18551000000000001,3.613,4.1379999999999999,4.8179999999999996,5.7279999999999998,7.0019999999999998,8.891,11.942 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1126,-0.79459999999999997,5.7279,0.18551999999999999,3.613,4.1379999999999999,4.8179999999999996,5.7279999999999998,7.0010000000000003,8.89,11.942 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1127,-0.79500000000000004,5.7274000000000003,0.18553,3.613,4.1379999999999999,4.8170000000000002,5.7270000000000003,7.0010000000000003,8.89,11.944000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1128,-0.79530000000000001,5.7268999999999997,0.18554000000000001,3.6120000000000001,4.1369999999999996,4.8170000000000002,5.7270000000000003,7,8.89,11.944000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1129,-0.79569999999999996,5.7263999999999999,0.18554999999999999,3.6120000000000001,4.1369999999999996,4.8159999999999998,5.726,7,8.89,11.946 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1130,-0.79600000000000004,5.7259000000000002,0.18556,3.6120000000000001,4.1360000000000001,4.8159999999999998,5.726,6.9989999999999997,8.89,11.946 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1131,-0.7964,5.7253999999999996,0.18557000000000001,3.6110000000000002,4.1360000000000001,4.8150000000000004,5.7249999999999996,6.9989999999999997,8.8889999999999993,11.948 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1132,-0.79669999999999996,5.7248999999999999,0.18559,3.6110000000000002,4.1360000000000001,4.8150000000000004,5.7249999999999996,6.9980000000000002,8.8889999999999993,11.949 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1133,-0.79710000000000003,5.7244000000000002,0.18559999999999999,3.6110000000000002,4.1349999999999998,4.8150000000000004,5.7240000000000002,6.9980000000000002,8.8889999999999993,11.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1134,-0.7974,5.7239000000000004,0.18561,3.6110000000000002,4.1349999999999998,4.8140000000000001,5.7240000000000002,6.9969999999999999,8.8889999999999993,11.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1135,-0.79779999999999995,5.7233999999999998,0.18562000000000001,3.61,4.1349999999999998,4.8140000000000001,5.7229999999999999,6.9969999999999999,8.8889999999999993,11.952 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1136,-0.79810000000000003,5.7229000000000001,0.18562999999999999,3.61,4.1340000000000003,4.8129999999999997,5.7229999999999999,6.9960000000000004,8.8889999999999993,11.952999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1137,-0.79849999999999999,5.7224000000000004,0.18564,3.61,4.1340000000000003,4.8129999999999997,5.7220000000000004,6.9960000000000004,8.8889999999999993,11.954000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1138,-0.79879999999999995,5.7218999999999998,0.18565000000000001,3.609,4.1340000000000003,4.8120000000000003,5.7220000000000004,6.9950000000000001,8.8879999999999999,11.955 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1139,-0.79920000000000002,5.7214,0.18565999999999999,3.609,4.133,4.8120000000000003,5.7210000000000001,6.9950000000000001,8.8879999999999999,11.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1140,-0.79949999999999999,5.7209000000000003,0.18567,3.609,4.133,4.8109999999999999,5.7210000000000001,6.9939999999999998,8.8879999999999999,11.957000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1141,-0.79990000000000006,5.7203999999999997,0.18568000000000001,3.609,4.1319999999999997,4.8109999999999999,5.72,6.9939999999999998,8.8879999999999999,11.958 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1142,-0.80020000000000002,5.7199,0.18568999999999999,3.6080000000000001,4.1319999999999997,4.8109999999999999,5.72,6.9930000000000003,8.8879999999999999,11.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1143,-0.80059999999999998,5.7194000000000003,0.18570999999999999,3.6080000000000001,4.1319999999999997,4.8099999999999996,5.7190000000000003,6.9930000000000003,8.8879999999999999,11.961 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1144,-0.80089999999999995,5.7188999999999997,0.18572,3.6080000000000001,4.1310000000000002,4.8099999999999996,5.7190000000000003,6.9930000000000003,8.8870000000000005,11.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1145,-0.80130000000000001,5.7183999999999999,0.18573000000000001,3.6080000000000001,4.1310000000000002,4.8090000000000002,5.718,6.992,8.8870000000000005,11.962999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1146,-0.80159999999999998,5.7179000000000002,0.18573999999999999,3.6070000000000002,4.1310000000000002,4.8090000000000002,5.718,6.992,8.8870000000000005,11.964 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1147,-0.80200000000000005,5.7173999999999996,0.18575,3.6070000000000002,4.13,4.8079999999999998,5.7169999999999996,6.9909999999999997,8.8870000000000005,11.965 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1148,-0.80230000000000001,5.7168999999999999,0.18576000000000001,3.6070000000000002,4.13,4.8079999999999998,5.7169999999999996,6.9909999999999997,8.8870000000000005,11.965999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1149,-0.80269999999999997,5.7163000000000004,0.18576999999999999,3.6059999999999999,4.13,4.8070000000000004,5.7160000000000002,6.99,8.8859999999999992,11.967000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1150,-0.80300000000000005,5.7157999999999998,0.18578,3.6059999999999999,4.1289999999999996,4.8070000000000004,5.7160000000000002,6.99,8.8859999999999992,11.967000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1151,-0.8034,5.7153,0.18579000000000001,3.6059999999999999,4.1289999999999996,4.8070000000000004,5.7149999999999999,6.9889999999999999,8.8859999999999992,11.968999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1152,-0.80369999999999997,5.7148000000000003,0.18579999999999999,3.6059999999999999,4.1280000000000001,4.806,5.7149999999999999,6.9889999999999999,8.8859999999999992,11.968999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1153,-0.80410000000000004,5.7142999999999997,0.18581,3.605,4.1280000000000001,4.806,5.7140000000000004,6.9880000000000004,8.8859999999999992,11.971 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1154,-0.8044,5.7138,0.18583,3.605,4.1280000000000001,4.8049999999999997,5.7140000000000004,6.9880000000000004,8.8859999999999992,11.972 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1155,-0.80479999999999996,5.7133000000000003,0.18584000000000001,3.605,4.1269999999999998,4.8049999999999997,5.7130000000000001,6.9870000000000001,8.8859999999999992,11.973000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1156,-0.80510000000000004,5.7127999999999997,0.18584999999999999,3.6040000000000001,4.1269999999999998,4.8040000000000003,5.7130000000000001,6.9870000000000001,8.8849999999999998,11.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1157,-0.80549999999999999,5.7122999999999999,0.18586,3.6040000000000001,4.1269999999999998,4.8040000000000003,5.7119999999999997,6.9859999999999998,8.8849999999999998,11.975 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1158,-0.80579999999999996,5.7118000000000002,0.18587000000000001,3.6040000000000001,4.1260000000000003,4.8029999999999999,5.7119999999999997,6.9859999999999998,8.8849999999999998,11.976000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1159,-0.80620000000000003,5.7112999999999996,0.18587999999999999,3.6040000000000001,4.1260000000000003,4.8029999999999999,5.7110000000000003,6.9850000000000003,8.8849999999999998,11.977 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1160,-0.80649999999999999,5.7107999999999999,0.18589,3.6030000000000002,4.1260000000000003,4.8029999999999999,5.7110000000000003,6.9850000000000003,8.8849999999999998,11.978 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1161,-0.80689999999999995,5.7103000000000002,0.18590000000000001,3.6030000000000002,4.125,4.8019999999999996,5.71,6.984,8.8849999999999998,11.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1162,-0.80720000000000003,5.7098000000000004,0.18590999999999999,3.6030000000000002,4.125,4.8019999999999996,5.71,6.984,8.8840000000000003,11.98 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1163,-0.80759999999999998,5.7092999999999998,0.18592,3.6030000000000002,4.1239999999999997,4.8010000000000002,5.7089999999999996,6.984,8.8840000000000003,11.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1164,-0.80789999999999995,5.7088000000000001,0.18593000000000001,3.6019999999999999,4.1239999999999997,4.8010000000000002,5.7089999999999996,6.9829999999999997,8.8840000000000003,11.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1165,-0.80830000000000002,5.7083000000000004,0.18595,3.6019999999999999,4.1239999999999997,4.8,5.7080000000000002,6.9829999999999997,8.8840000000000003,11.984 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1166,-0.80859999999999999,5.7077999999999998,0.18595999999999999,3.6019999999999999,4.1230000000000002,4.8,5.7080000000000002,6.9820000000000002,8.8840000000000003,11.984999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1167,-0.80900000000000005,5.7073,0.18597,3.601,4.1230000000000002,4.7990000000000004,5.7069999999999999,6.9820000000000002,8.8840000000000003,11.986000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1168,-0.80930000000000002,5.7068000000000003,0.18598000000000001,3.601,4.1230000000000002,4.7990000000000004,5.7069999999999999,6.9809999999999999,8.8829999999999991,11.987 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1169,-0.80969999999999998,5.7062999999999997,0.18598999999999999,3.601,4.1219999999999999,4.7990000000000004,5.7060000000000004,6.9809999999999999,8.8829999999999991,11.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1170,-0.81,5.7057000000000002,0.186,3.6,4.1219999999999999,4.798,5.7060000000000004,6.98,8.8829999999999991,11.989000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1171,-0.81040000000000001,5.7051999999999996,0.18601000000000001,3.6,4.1219999999999999,4.798,5.7050000000000001,6.98,8.8829999999999991,11.99 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1172,-0.81069999999999998,5.7046999999999999,0.18601999999999999,3.6,4.1210000000000004,4.7969999999999997,5.7050000000000001,6.9790000000000001,8.8829999999999991,11.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1173,-0.81110000000000004,5.7042000000000002,0.18603,3.6,4.1210000000000004,4.7969999999999997,5.7039999999999997,6.9790000000000001,8.8819999999999997,11.992000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1174,-0.81140000000000001,5.7037000000000004,0.18604000000000001,3.5990000000000002,4.12,4.7960000000000003,5.7039999999999997,6.9779999999999998,8.8819999999999997,11.993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1175,-0.81179999999999997,5.7031999999999998,0.18604999999999999,3.5990000000000002,4.12,4.7960000000000003,5.7030000000000003,6.9779999999999998,8.8819999999999997,11.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1176,-0.81210000000000004,5.7027000000000001,0.18606,3.5990000000000002,4.12,4.7949999999999999,5.7030000000000003,6.9770000000000003,8.8819999999999997,11.994999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1177,-0.8125,5.7022000000000004,0.18608,3.5979999999999999,4.1189999999999998,4.7949999999999999,5.702,6.9770000000000003,8.8819999999999997,11.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1178,-0.81279999999999997,5.7016999999999998,0.18609000000000001,3.5979999999999999,4.1189999999999998,4.7949999999999999,5.702,6.976,8.8819999999999997,11.997999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1179,-0.81320000000000003,5.7012,0.18609999999999999,3.5979999999999999,4.1189999999999998,4.7939999999999996,5.7009999999999996,6.976,8.8819999999999997,11.999000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1180,-0.8135,5.7007000000000003,0.18611,3.5979999999999999,4.1180000000000003,4.7939999999999996,5.7009999999999996,6.9749999999999996,8.8810000000000002,12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1181,-0.81379999999999997,5.7001999999999997,0.18612000000000001,3.597,4.1180000000000003,4.7930000000000001,5.7,6.9749999999999996,8.8810000000000002,12.000999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1182,-0.81420000000000003,5.6997,0.18612999999999999,3.597,4.1180000000000003,4.7930000000000001,5.7,6.9740000000000002,8.8810000000000002,12.002000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1183,-0.8145,5.6990999999999996,0.18614,3.597,4.117,4.7919999999999998,5.6989999999999998,6.9740000000000002,8.8810000000000002,12.003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1184,-0.81489999999999996,5.6985999999999999,0.18615000000000001,3.597,4.117,4.7919999999999998,5.6989999999999998,6.9729999999999999,8.8810000000000002,12.004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1185,-0.81520000000000004,5.6981000000000002,0.18615999999999999,3.5960000000000001,4.1159999999999997,4.7910000000000004,5.6980000000000004,6.9729999999999999,8.8800000000000008,12.005000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1186,-0.81559999999999999,5.6976000000000004,0.18617,3.5960000000000001,4.1159999999999997,4.7910000000000004,5.6980000000000004,6.9720000000000004,8.8800000000000008,12.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1187,-0.81589999999999996,5.6970999999999998,0.18618000000000001,3.5960000000000001,4.1159999999999997,4.79,5.6970000000000001,6.9720000000000004,8.8800000000000008,12.007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1188,-0.81630000000000003,5.6966000000000001,0.18618999999999999,3.5950000000000002,4.1150000000000002,4.79,5.6970000000000001,6.9710000000000001,8.8800000000000008,12.007999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1189,-0.81659999999999999,5.6961000000000004,0.18620999999999999,3.5950000000000002,4.1150000000000002,4.79,5.6959999999999997,6.9710000000000001,8.8800000000000008,12.01 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1190,-0.81699999999999995,5.6955999999999998,0.18622,3.5950000000000002,4.1150000000000002,4.7889999999999997,5.6959999999999997,6.9710000000000001,8.8800000000000008,12.010999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1191,-0.81730000000000003,5.6951000000000001,0.18623000000000001,3.5950000000000002,4.1139999999999999,4.7889999999999997,5.6950000000000003,6.97,8.8800000000000008,12.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1192,-0.81769999999999998,5.6946000000000003,0.18623999999999999,3.5939999999999999,4.1139999999999999,4.7880000000000003,5.6950000000000003,6.97,8.8789999999999996,12.013 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1193,-0.81799999999999995,5.6940999999999997,0.18625,3.5939999999999999,4.1139999999999999,4.7880000000000003,5.694,6.9690000000000003,8.8789999999999996,12.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1194,-0.81830000000000003,5.6935000000000002,0.18626000000000001,3.5939999999999999,4.1130000000000004,4.7869999999999999,5.694,6.9690000000000003,8.8789999999999996,12.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1195,-0.81869999999999998,5.6929999999999996,0.18626999999999999,3.593,4.1130000000000004,4.7869999999999999,5.6929999999999996,6.968,8.8789999999999996,12.016 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1196,-0.81899999999999995,5.6924999999999999,0.18628,3.593,4.1120000000000001,4.7859999999999996,5.6920000000000002,6.968,8.8780000000000001,12.016999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1197,-0.81940000000000002,5.6920000000000002,0.18629000000000001,3.593,4.1120000000000001,4.7859999999999996,5.6920000000000002,6.9669999999999996,8.8780000000000001,12.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1198,-0.81969999999999998,5.6914999999999996,0.18629999999999999,3.593,4.1120000000000001,4.7859999999999996,5.6920000000000002,6.9669999999999996,8.8780000000000001,12.019 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1199,-0.82010000000000005,5.6909999999999998,0.18631,3.5920000000000001,4.1109999999999998,4.7850000000000001,5.6909999999999998,6.9660000000000002,8.8780000000000001,12.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1200,-0.82040000000000002,5.6905000000000001,0.18632000000000001,3.5920000000000001,4.1109999999999998,4.7850000000000001,5.69,6.9660000000000002,8.8780000000000001,12.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1201,-0.82079999999999997,5.69,0.18633,3.5920000000000001,4.1109999999999998,4.7839999999999998,5.69,6.9649999999999999,8.8780000000000001,12.022 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1202,-0.82110000000000005,5.6894999999999998,0.18634999999999999,3.5910000000000002,4.1100000000000003,4.7839999999999998,5.69,6.9649999999999999,8.8780000000000001,12.023999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1203,-0.82140000000000002,5.6890000000000001,0.18636,3.5910000000000002,4.1100000000000003,4.7830000000000004,5.6890000000000001,6.9640000000000004,8.8770000000000007,12.025 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1204,-0.82179999999999997,5.6883999999999997,0.18637000000000001,3.5910000000000002,4.109,4.7830000000000004,5.6879999999999997,6.9640000000000004,8.8770000000000007,12.026 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1205,-0.82210000000000005,5.6879,0.18637999999999999,3.59,4.109,4.782,5.6879999999999997,6.9630000000000001,8.8770000000000007,12.026999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1206,-0.82250000000000001,5.6874000000000002,0.18639,3.59,4.109,4.782,5.6870000000000003,6.9630000000000001,8.8770000000000007,12.028 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1207,-0.82279999999999998,5.6868999999999996,0.18640000000000001,3.59,4.1079999999999997,4.7809999999999997,5.6870000000000003,6.9619999999999997,8.8770000000000007,12.029 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1208,-0.82320000000000004,5.6863999999999999,0.18640999999999999,3.59,4.1079999999999997,4.7809999999999997,5.6859999999999999,6.9619999999999997,8.8759999999999994,12.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1209,-0.82350000000000001,5.6859000000000002,0.18642,3.589,4.1079999999999997,4.7809999999999997,5.6859999999999999,6.9610000000000003,8.8759999999999994,12.031000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1210,-0.82389999999999997,5.6853999999999996,0.18643000000000001,3.589,4.1070000000000002,4.78,5.6849999999999996,6.9610000000000003,8.8759999999999994,12.032 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1211,-0.82420000000000004,5.6848999999999998,0.18643999999999999,3.589,4.1070000000000002,4.78,5.6849999999999996,6.96,8.8759999999999994,12.032999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1212,-0.82450000000000001,5.6843000000000004,0.18645,3.589,4.1059999999999999,4.7789999999999999,5.6840000000000002,6.96,8.875,12.034000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1213,-0.82489999999999997,5.6837999999999997,0.18645999999999999,3.5880000000000001,4.1059999999999999,4.7789999999999999,5.6840000000000002,6.9589999999999996,8.875,12.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1214,-0.82520000000000004,5.6833,0.18647,3.5880000000000001,4.1059999999999999,4.7779999999999996,5.6829999999999998,6.9589999999999996,8.875,12.036 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1215,-0.8256,5.6828000000000003,0.18648000000000001,3.5880000000000001,4.1050000000000004,4.7779999999999996,5.6829999999999998,6.9580000000000002,8.875,12.037000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1216,-0.82589999999999997,5.6822999999999997,0.1865,3.5870000000000002,4.1050000000000004,4.7770000000000001,5.6820000000000004,6.9580000000000002,8.875,12.039 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1217,-0.82630000000000003,5.6818,0.18651000000000001,3.5870000000000002,4.1050000000000004,4.7770000000000001,5.6820000000000004,6.9580000000000002,8.875,12.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1218,-0.8266,5.6813000000000002,0.18651999999999999,3.5870000000000002,4.1040000000000001,4.7770000000000001,5.681,6.9569999999999999,8.875,12.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1219,-0.82689999999999997,5.6807999999999996,0.18653,3.5870000000000002,4.1040000000000001,4.7759999999999998,5.681,6.9569999999999999,8.8740000000000006,12.042 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1220,-0.82730000000000004,5.6802000000000001,0.18654000000000001,3.5859999999999999,4.1029999999999998,4.7759999999999998,5.68,6.9560000000000004,8.8740000000000006,12.042999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1221,-0.8276,5.6797000000000004,0.18654999999999999,3.5859999999999999,4.1029999999999998,4.7750000000000004,5.68,6.9550000000000001,8.8740000000000006,12.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1222,-0.82799999999999996,5.6791999999999998,0.18656,3.5859999999999999,4.1029999999999998,4.7750000000000004,5.6790000000000003,6.9550000000000001,8.8740000000000006,12.045 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1223,-0.82830000000000004,5.6787000000000001,0.18657000000000001,3.585,4.1020000000000003,4.774,5.6790000000000003,6.9550000000000001,8.8740000000000006,12.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1224,-0.82869999999999999,5.6782000000000004,0.18658,3.585,4.1020000000000003,4.774,5.6779999999999999,6.9539999999999997,8.8729999999999993,12.047000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1225,-0.82899999999999996,5.6776999999999997,0.18659000000000001,3.585,4.1020000000000003,4.7729999999999997,5.6779999999999999,6.9539999999999997,8.8729999999999993,12.048 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1226,-0.82930000000000004,5.6772,0.18659999999999999,3.585,4.101,4.7729999999999997,5.6769999999999996,6.9530000000000003,8.8729999999999993,12.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1227,-0.82969999999999999,5.6765999999999996,0.18661,3.5840000000000001,4.101,4.7720000000000002,5.6769999999999996,6.952,8.8729999999999993,12.05 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1228,-0.83,5.6760999999999999,0.18662000000000001,3.5840000000000001,4.101,4.7720000000000002,5.6760000000000002,6.952,8.8729999999999993,12.051 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1229,-0.83040000000000003,5.6756000000000002,0.18662999999999999,3.5840000000000001,4.0999999999999996,4.7720000000000002,5.6760000000000002,6.952,8.8719999999999999,12.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1230,-0.83069999999999999,5.6750999999999996,0.18664,3.5830000000000002,4.0999999999999996,4.7709999999999999,5.6749999999999998,6.9509999999999996,8.8719999999999999,12.053000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1231,-0.83109999999999995,5.6745999999999999,0.18665999999999999,3.5830000000000002,4.0990000000000002,4.7709999999999999,5.6749999999999998,6.9509999999999996,8.8719999999999999,12.055 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1232,-0.83140000000000003,5.6741000000000001,0.18667,3.5830000000000002,4.0990000000000002,4.7699999999999996,5.6740000000000004,6.95,8.8719999999999999,12.055999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1233,-0.83169999999999999,5.6736000000000004,0.18668000000000001,3.5819999999999999,4.0990000000000002,4.7699999999999996,5.6740000000000004,6.95,8.8719999999999999,12.057 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1234,-0.83209999999999995,5.673,0.18668999999999999,3.5819999999999999,4.0979999999999999,4.7690000000000001,5.673,6.9489999999999998,8.8719999999999999,12.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1235,-0.83240000000000003,5.6725000000000003,0.1867,3.5819999999999999,4.0979999999999999,4.7690000000000001,5.6719999999999997,6.9489999999999998,8.8710000000000004,12.058999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1236,-0.83279999999999998,5.6719999999999997,0.18670999999999999,3.5819999999999999,4.0979999999999999,4.7679999999999998,5.6719999999999997,6.9480000000000004,8.8710000000000004,12.06 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1237,-0.83309999999999995,5.6715,0.18672,3.581,4.0970000000000004,4.7679999999999998,5.6719999999999997,6.9480000000000004,8.8710000000000004,12.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1238,-0.83340000000000003,5.6710000000000003,0.18673000000000001,3.581,4.0970000000000004,4.7670000000000003,5.6710000000000003,6.9470000000000001,8.8710000000000004,12.061999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1239,-0.83379999999999999,5.6704999999999997,0.18673999999999999,3.581,4.0970000000000004,4.7670000000000003,5.67,6.9470000000000001,8.8710000000000004,12.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1240,-0.83409999999999995,5.67,0.18675,3.58,4.0960000000000001,4.7670000000000003,5.67,6.9459999999999997,8.8699999999999992,12.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1241,-0.83450000000000002,5.6694000000000004,0.18676000000000001,3.58,4.0960000000000001,4.766,5.6689999999999996,6.9459999999999997,8.8699999999999992,12.066000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1242,-0.83479999999999999,5.6688999999999998,0.18676999999999999,3.58,4.0949999999999998,4.766,5.6689999999999996,6.9450000000000003,8.8699999999999992,12.066000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1243,-0.83509999999999995,5.6684000000000001,0.18678,3.58,4.0949999999999998,4.7649999999999997,5.6680000000000001,6.9450000000000003,8.8699999999999992,12.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1244,-0.83550000000000002,5.6679000000000004,0.18679000000000001,3.5790000000000002,4.0949999999999998,4.7649999999999997,5.6680000000000001,6.944,8.8699999999999992,12.069000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1245,-0.83579999999999999,5.6673999999999998,0.18679999999999999,3.5790000000000002,4.0940000000000003,4.7640000000000002,5.6669999999999998,6.944,8.8689999999999998,12.07 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1246,-0.83620000000000005,5.6668000000000003,0.18682000000000001,3.5790000000000002,4.0940000000000003,4.7640000000000002,5.6669999999999998,6.9429999999999996,8.8689999999999998,12.071 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1247,-0.83650000000000002,5.6662999999999997,0.18683,3.5779999999999998,4.093,4.7629999999999999,5.6660000000000004,6.9429999999999996,8.8689999999999998,12.071999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1248,-0.83679999999999999,5.6657999999999999,0.18684000000000001,3.5779999999999998,4.093,4.7629999999999999,5.6660000000000004,6.9420000000000002,8.8689999999999998,12.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1249,-0.83720000000000006,5.6653000000000002,0.18684999999999999,3.5779999999999998,4.093,4.7619999999999996,5.665,6.9420000000000002,8.8689999999999998,12.074999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1250,-0.83750000000000002,5.6647999999999996,0.18686,3.5779999999999998,4.0919999999999996,4.7619999999999996,5.665,6.9409999999999998,8.8689999999999998,12.074999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1251,-0.83789999999999998,5.6642999999999999,0.18687000000000001,3.577,4.0919999999999996,4.7619999999999996,5.6639999999999997,6.9409999999999998,8.8680000000000003,12.077 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1252,-0.83819999999999995,5.6637000000000004,0.18687999999999999,3.577,4.0919999999999996,4.7610000000000001,5.6639999999999997,6.94,8.8680000000000003,12.077999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1253,-0.83850000000000002,5.6631999999999998,0.18689,3.577,4.0910000000000002,4.7610000000000001,5.6630000000000003,6.94,8.8680000000000003,12.077999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1254,-0.83889999999999998,5.6627000000000001,0.18690000000000001,3.5760000000000001,4.0910000000000002,4.76,5.6630000000000003,6.9390000000000001,8.8680000000000003,12.08 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1255,-0.83919999999999995,5.6622000000000003,0.18690999999999999,3.5760000000000001,4.0910000000000002,4.76,5.6619999999999999,6.9390000000000001,8.8680000000000003,12.081 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1256,-0.83960000000000001,5.6616999999999997,0.18692,3.5760000000000001,4.09,4.7590000000000003,5.6619999999999999,6.9379999999999997,8.8670000000000009,12.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1257,-0.83989999999999998,5.6611000000000002,0.18693000000000001,3.5750000000000002,4.09,4.7590000000000003,5.6609999999999996,6.9379999999999997,8.8670000000000009,12.083 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1258,-0.84019999999999995,5.6605999999999996,0.18694,3.5750000000000002,4.0890000000000004,4.758,5.6609999999999996,6.9370000000000003,8.8670000000000009,12.084 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1259,-0.84060000000000001,5.6600999999999999,0.18695000000000001,3.5750000000000002,4.0890000000000004,4.758,5.66,6.9370000000000003,8.8670000000000009,12.085000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1260,-0.84089999999999998,5.6596000000000002,0.18695999999999999,3.5750000000000002,4.0890000000000004,4.7569999999999997,5.66,6.9359999999999999,8.8670000000000009,12.086 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1261,-0.84130000000000005,5.6590999999999996,0.18697,3.5739999999999998,4.0880000000000001,4.7569999999999997,5.6589999999999998,6.9359999999999999,8.8659999999999997,12.087 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1262,-0.84160000000000001,5.6585000000000001,0.18698000000000001,3.5739999999999998,4.0880000000000001,4.7560000000000002,5.6580000000000004,6.9349999999999996,8.8659999999999997,12.087999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1263,-0.84189999999999998,5.6580000000000004,0.18698999999999999,3.5739999999999998,4.0880000000000001,4.7560000000000002,5.6580000000000004,6.9349999999999996,8.8659999999999997,12.089 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1264,-0.84230000000000005,5.6574999999999998,0.18701000000000001,3.573,4.0869999999999997,4.7560000000000002,5.6580000000000004,6.9340000000000002,8.8659999999999997,12.090999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1265,-0.84260000000000002,5.657,0.18701999999999999,3.573,4.0869999999999997,4.7549999999999999,5.657,6.9340000000000002,8.8659999999999997,12.092000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1266,-0.84289999999999998,5.6565000000000003,0.18703,3.573,4.0860000000000003,4.7549999999999999,5.6559999999999997,6.9329999999999998,8.8659999999999997,12.093 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1267,-0.84330000000000005,5.6558999999999999,0.18704000000000001,3.573,4.0860000000000003,4.7539999999999996,5.6559999999999997,6.9329999999999998,8.8650000000000002,12.093999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1268,-0.84360000000000002,5.6554000000000002,0.18704999999999999,3.5720000000000001,4.0860000000000003,4.7539999999999996,5.6550000000000002,6.9320000000000004,8.8650000000000002,12.095000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1269,-0.84399999999999997,5.6548999999999996,0.18706,3.5720000000000001,4.085,4.7530000000000001,5.6550000000000002,6.9320000000000004,8.8650000000000002,12.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1270,-0.84430000000000005,5.6543999999999999,0.18706999999999999,3.5720000000000001,4.085,4.7530000000000001,5.6539999999999999,6.931,8.8650000000000002,12.097 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1271,-0.84460000000000002,5.6538000000000004,0.18708,3.5710000000000002,4.0839999999999996,4.7519999999999998,5.6539999999999999,6.931,8.8640000000000008,12.098000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1272,-0.84499999999999997,5.6532999999999998,0.18709000000000001,3.5710000000000002,4.0839999999999996,4.7519999999999998,5.6529999999999996,6.93,8.8640000000000008,12.099 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1273,-0.84530000000000005,5.6528,0.18709999999999999,3.5710000000000002,4.0839999999999996,4.7510000000000003,5.6529999999999996,6.93,8.8640000000000008,12.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1274,-0.84570000000000001,5.6523000000000003,0.18711,3.5710000000000002,4.0830000000000002,4.7510000000000003,5.6520000000000001,6.9290000000000003,8.8640000000000008,12.102 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1275,-0.84599999999999997,5.6517999999999997,0.18712000000000001,3.57,4.0830000000000002,4.7510000000000003,5.6520000000000001,6.9290000000000003,8.8640000000000008,12.103 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1276,-0.84630000000000005,5.6512000000000002,0.18712999999999999,3.57,4.0830000000000002,4.75,5.6509999999999998,6.9279999999999999,8.8629999999999995,12.103 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1277,-0.84670000000000001,5.6506999999999996,0.18714,3.57,4.0819999999999999,4.75,5.6509999999999998,6.9279999999999999,8.8629999999999995,12.105 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1278,-0.84699999999999998,5.6501999999999999,0.18715000000000001,3.569,4.0819999999999999,4.7489999999999997,5.65,6.9269999999999996,8.8629999999999995,12.106 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1279,-0.84730000000000005,5.6497000000000002,0.18715999999999999,3.569,4.0819999999999999,4.7489999999999997,5.65,6.9269999999999996,8.8629999999999995,12.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1280,-0.84770000000000001,5.6490999999999998,0.18717,3.569,4.0810000000000004,4.7480000000000002,5.649,6.9260000000000002,8.8620000000000001,12.108000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1281,-0.84799999999999998,5.6486000000000001,0.18718000000000001,3.5680000000000001,4.0810000000000004,4.7480000000000002,5.649,6.9260000000000002,8.8620000000000001,12.109 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1282,-0.84840000000000004,5.6481000000000003,0.18720000000000001,3.5680000000000001,4.08,4.7469999999999999,5.6479999999999997,6.9249999999999998,8.8620000000000001,12.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1283,-0.84870000000000001,5.6475,0.18720999999999999,3.5680000000000001,4.08,4.7469999999999999,5.6479999999999997,6.9249999999999998,8.8620000000000001,12.112 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1284,-0.84899999999999998,5.6470000000000002,0.18722,3.5680000000000001,4.08,4.7460000000000004,5.6470000000000002,6.9240000000000004,8.8620000000000001,12.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1285,-0.84940000000000004,5.6464999999999996,0.18723000000000001,3.5670000000000002,4.0789999999999997,4.7460000000000004,5.6459999999999999,6.9240000000000004,8.8620000000000001,12.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1286,-0.84970000000000001,5.6459999999999999,0.18723999999999999,3.5670000000000002,4.0789999999999997,4.7450000000000001,5.6459999999999999,6.923,8.8610000000000007,12.115 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1287,-0.85,5.6454000000000004,0.18725,3.5670000000000002,4.0780000000000003,4.7450000000000001,5.6449999999999996,6.923,8.8610000000000007,12.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1288,-0.85040000000000004,5.6448999999999998,0.18726000000000001,3.5659999999999998,4.0780000000000003,4.7450000000000001,5.6449999999999996,6.9219999999999997,8.8610000000000007,12.117000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1289,-0.85070000000000001,5.6444000000000001,0.18726999999999999,3.5659999999999998,4.0780000000000003,4.7439999999999998,5.6440000000000001,6.9219999999999997,8.8610000000000007,12.118 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1290,-0.85099999999999998,5.6439000000000004,0.18728,3.5659999999999998,4.077,4.7439999999999998,5.6440000000000001,6.9210000000000003,8.8610000000000007,12.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1291,-0.85140000000000005,5.6433,0.18729000000000001,3.5649999999999999,4.077,4.7430000000000003,5.6429999999999998,6.9210000000000003,8.86,12.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1292,-0.85170000000000001,5.6428000000000003,0.18729999999999999,3.5649999999999999,4.077,4.7430000000000003,5.6429999999999998,6.92,8.86,12.121 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1293,-0.85209999999999997,5.6422999999999996,0.18731,3.5649999999999999,4.0759999999999996,4.742,5.6420000000000003,6.92,8.86,12.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1294,-0.85240000000000005,5.6417000000000002,0.18731999999999999,3.5649999999999999,4.0759999999999996,4.742,5.6420000000000003,6.9189999999999996,8.86,12.122999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1295,-0.85270000000000001,5.6412000000000004,0.18733,3.5640000000000001,4.0750000000000002,4.7409999999999997,5.641,6.9189999999999996,8.859,12.124000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1296,-0.85309999999999997,5.6406999999999998,0.18734000000000001,3.5640000000000001,4.0750000000000002,4.7409999999999997,5.641,6.9180000000000001,8.859,12.125999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1297,-0.85340000000000005,5.6402000000000001,0.18734999999999999,3.5640000000000001,4.0750000000000002,4.74,5.64,6.9180000000000001,8.859,12.127000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1298,-0.85370000000000001,5.6395999999999997,0.18736,3.5630000000000002,4.0739999999999998,4.74,5.64,6.9169999999999998,8.859,12.127000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1299,-0.85409999999999997,5.6391,0.18737000000000001,3.5630000000000002,4.0739999999999998,4.7389999999999999,5.6390000000000002,6.9160000000000004,8.859,12.129 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1300,-0.85440000000000005,5.6386000000000003,0.18737999999999999,3.5630000000000002,4.0739999999999998,4.7389999999999999,5.6390000000000002,6.9160000000000004,8.8580000000000005,12.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1301,-0.85470000000000002,5.6379999999999999,0.18739,3.5619999999999998,4.0730000000000004,4.7380000000000004,5.6379999999999999,6.915,8.8580000000000005,12.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1302,-0.85509999999999997,5.6375000000000002,0.18740000000000001,3.5619999999999998,4.0730000000000004,4.7380000000000004,5.6379999999999999,6.915,8.8580000000000005,12.132 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1303,-0.85540000000000005,5.6369999999999996,0.18742,3.5619999999999998,4.0720000000000001,4.7380000000000004,5.6369999999999996,6.915,8.8580000000000005,12.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1304,-0.85570000000000002,5.6364000000000001,0.18743000000000001,3.5619999999999998,4.0720000000000001,4.7370000000000001,5.6360000000000001,6.9139999999999997,8.8569999999999993,12.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1305,-0.85609999999999997,5.6359000000000004,0.18744,3.5609999999999999,4.0720000000000001,4.7370000000000001,5.6360000000000001,6.9130000000000003,8.8569999999999993,12.135999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1306,-0.85640000000000005,5.6353999999999997,0.18745000000000001,3.5609999999999999,4.0709999999999997,4.7359999999999998,5.6349999999999998,6.9130000000000003,8.8569999999999993,12.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1307,-0.85670000000000002,5.6348000000000003,0.18745999999999999,3.5609999999999999,4.0709999999999997,4.7359999999999998,5.6349999999999998,6.9119999999999999,8.8569999999999993,12.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1308,-0.85709999999999997,5.6342999999999996,0.18747,3.56,4.07,4.7350000000000003,5.6340000000000003,6.9119999999999999,8.8569999999999993,12.138999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1309,-0.85740000000000005,5.6337999999999999,0.18748000000000001,3.56,4.07,4.7350000000000003,5.6340000000000003,6.9109999999999996,8.8559999999999999,12.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1310,-0.85770000000000002,5.6332000000000004,0.18748999999999999,3.56,4.07,4.734,5.633,6.9109999999999996,8.8559999999999999,12.141 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1311,-0.85809999999999997,5.6326999999999998,0.1875,3.5590000000000002,4.069,4.734,5.633,6.91,8.8559999999999999,12.141999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1312,-0.85840000000000005,5.6322000000000001,0.18751000000000001,3.5590000000000002,4.069,4.7329999999999997,5.6319999999999997,6.91,8.8559999999999999,12.143000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1313,-0.85880000000000001,5.6315999999999997,0.18751999999999999,3.5590000000000002,4.069,4.7329999999999997,5.6319999999999997,6.9089999999999998,8.8559999999999999,12.144 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1314,-0.85909999999999997,5.6311,0.18753,3.5590000000000002,4.0679999999999996,4.7320000000000002,5.6310000000000002,6.9089999999999998,8.8550000000000004,12.145 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1315,-0.85940000000000005,5.6304999999999996,0.18754000000000001,3.5579999999999998,4.0679999999999996,4.7320000000000002,5.63,6.9080000000000004,8.8550000000000004,12.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1316,-0.85980000000000001,5.63,0.18754999999999999,3.5579999999999998,4.0670000000000002,4.7309999999999999,5.63,6.9080000000000004,8.8550000000000004,12.147 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1317,-0.86009999999999998,5.6295000000000002,0.18756,3.5579999999999998,4.0670000000000002,4.7309999999999999,5.63,6.907,8.8550000000000004,12.148 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1318,-0.86040000000000005,5.6288999999999998,0.18756999999999999,3.5569999999999999,4.0670000000000002,4.7300000000000004,5.6289999999999996,6.907,8.8539999999999992,12.148999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1319,-0.86080000000000001,5.6284000000000001,0.18758,3.5569999999999999,4.0659999999999998,4.7300000000000004,5.6280000000000001,6.9059999999999997,8.8539999999999992,12.151 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1320,-0.86109999999999998,5.6279000000000003,0.18759000000000001,3.5569999999999999,4.0659999999999998,4.7300000000000004,5.6280000000000001,6.9059999999999997,8.8539999999999992,12.151999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1321,-0.86140000000000005,5.6273,0.18759999999999999,3.556,4.0650000000000004,4.7290000000000001,5.6269999999999998,6.9050000000000002,8.8539999999999992,12.151999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1322,-0.86180000000000001,5.6268000000000002,0.18761,3.556,4.0650000000000004,4.7290000000000001,5.6269999999999998,6.9050000000000002,8.8529999999999998,12.154 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1323,-0.86209999999999998,5.6261999999999999,0.18762000000000001,3.556,4.0650000000000004,4.7279999999999998,5.6260000000000003,6.9039999999999999,8.8529999999999998,12.154999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1324,-0.86240000000000006,5.6257000000000001,0.18762999999999999,3.556,4.0640000000000001,4.7279999999999998,5.6260000000000003,6.9029999999999996,8.8529999999999998,12.156000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1325,-0.86280000000000001,5.6252000000000004,0.18764,3.5550000000000002,4.0640000000000001,4.7270000000000003,5.625,6.9029999999999996,8.8529999999999998,12.157 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1326,-0.86309999999999998,5.6246,0.18765000000000001,3.5550000000000002,4.0640000000000001,4.7270000000000003,5.625,6.9020000000000001,8.8520000000000003,12.157999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1327,-0.86339999999999995,5.6241000000000003,0.18765999999999999,3.5550000000000002,4.0629999999999997,4.726,5.6239999999999997,6.9020000000000001,8.8520000000000003,12.159000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1328,-0.86380000000000001,5.6234999999999999,0.18768000000000001,3.5539999999999998,4.0629999999999997,4.726,5.6239999999999997,6.9009999999999998,8.8520000000000003,12.161 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1329,-0.86409999999999998,5.6230000000000002,0.18769,3.5539999999999998,4.0620000000000003,4.7249999999999996,5.6230000000000002,6.9009999999999998,8.8520000000000003,12.162000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1330,-0.86439999999999995,5.6223999999999998,0.18770000000000001,3.5539999999999998,4.0620000000000003,4.7249999999999996,5.6219999999999999,6.9,8.8520000000000003,12.163 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1331,-0.86470000000000002,5.6219000000000001,0.18770999999999999,3.5529999999999999,4.0609999999999999,4.7240000000000002,5.6219999999999999,6.9,8.8510000000000009,12.164 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1332,-0.86509999999999998,5.6214000000000004,0.18772,3.5529999999999999,4.0609999999999999,4.7240000000000002,5.6210000000000004,6.899,8.8510000000000009,12.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1333,-0.86539999999999995,5.6208,0.18773000000000001,3.5529999999999999,4.0609999999999999,4.7229999999999999,5.6210000000000004,6.899,8.8510000000000009,12.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1334,-0.86570000000000003,5.6203000000000003,0.18773999999999999,3.552,4.0599999999999996,4.7229999999999999,5.62,6.8979999999999997,8.8510000000000009,12.167 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1335,-0.86609999999999998,5.6196999999999999,0.18775,3.552,4.0599999999999996,4.7220000000000004,5.62,6.8979999999999997,8.85,12.167999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1336,-0.86639999999999995,5.6192000000000002,0.18776000000000001,3.552,4.0599999999999996,4.7220000000000004,5.6189999999999998,6.8970000000000002,8.85,12.169 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1337,-0.86670000000000003,5.6185999999999998,0.18776999999999999,3.5510000000000002,4.0590000000000002,4.7210000000000001,5.6189999999999998,6.8970000000000002,8.85,12.17 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1338,-0.86709999999999998,5.6181000000000001,0.18778,3.5510000000000002,4.0590000000000002,4.7210000000000001,5.6180000000000003,6.8959999999999999,8.85,12.170999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1339,-0.86739999999999995,5.6174999999999997,0.18779000000000001,3.5510000000000002,4.0579999999999998,4.72,5.6180000000000003,6.8949999999999996,8.8490000000000002,12.172000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1340,-0.86770000000000003,5.617,0.18779999999999999,3.5510000000000002,4.0579999999999998,4.72,5.617,6.8949999999999996,8.8490000000000002,12.173 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1341,-0.86809999999999998,5.6163999999999996,0.18781,3.55,4.0579999999999998,4.72,5.6159999999999997,6.8940000000000001,8.8490000000000002,12.175000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1342,-0.86839999999999995,5.6158999999999999,0.18781999999999999,3.55,4.0570000000000004,4.7190000000000003,5.6159999999999997,6.8940000000000001,8.8490000000000002,12.176 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1343,-0.86870000000000003,5.6153000000000004,0.18783,3.55,4.0570000000000004,4.7190000000000003,5.6150000000000002,6.8929999999999998,8.8480000000000008,12.176 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1344,-0.86909999999999998,5.6147999999999998,0.18784000000000001,3.5489999999999999,4.056,4.718,5.6150000000000002,6.8929999999999998,8.8480000000000008,12.178000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1345,-0.86939999999999995,5.6143000000000001,0.18784999999999999,3.5489999999999999,4.056,4.718,5.6139999999999999,6.8920000000000003,8.8480000000000008,12.179 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1346,-0.86970000000000003,5.6136999999999997,0.18786,3.5489999999999999,4.056,4.7169999999999996,5.6139999999999999,6.8920000000000003,8.8480000000000008,12.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1347,-0.87009999999999998,5.6132,0.18787000000000001,3.548,4.0549999999999997,4.7169999999999996,5.6130000000000004,6.891,8.8480000000000008,12.180999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1348,-0.87039999999999995,5.6125999999999996,0.18787999999999999,3.548,4.0549999999999997,4.7160000000000002,5.6130000000000004,6.891,8.8469999999999995,12.182 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1349,-0.87070000000000003,5.6120999999999999,0.18789,3.548,4.0540000000000003,4.7160000000000002,5.6120000000000001,6.89,8.8469999999999995,12.183 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1350,-0.87109999999999999,5.6115000000000004,0.18790000000000001,3.5470000000000002,4.0540000000000003,4.7149999999999999,5.6120000000000001,6.89,8.8469999999999995,12.183999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1351,-0.87139999999999995,5.6109999999999998,0.18790999999999999,3.5470000000000002,4.0540000000000003,4.7149999999999999,5.6109999999999998,6.8890000000000002,8.8460000000000001,12.185 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1352,-0.87170000000000003,5.6104000000000003,0.18792,3.5470000000000002,4.0529999999999999,4.7140000000000004,5.61,6.8879999999999999,8.8460000000000001,12.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1353,-0.872,5.6097999999999999,0.18793000000000001,3.5459999999999998,4.0529999999999999,4.7140000000000004,5.61,6.8879999999999999,8.8460000000000001,12.186999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1354,-0.87239999999999995,5.6093000000000002,0.18794,3.5459999999999998,4.0519999999999996,4.7130000000000001,5.609,6.8869999999999996,8.8460000000000001,12.188000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1355,-0.87270000000000003,5.6086999999999998,0.18795000000000001,3.5459999999999998,4.0519999999999996,4.7130000000000001,5.609,6.8869999999999996,8.8450000000000006,12.189 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1356,-0.873,5.6082000000000001,0.18795999999999999,3.5459999999999998,4.0519999999999996,4.7119999999999997,5.6079999999999997,6.8860000000000001,8.8450000000000006,12.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1357,-0.87339999999999995,5.6075999999999997,0.18798000000000001,3.5449999999999999,4.0510000000000002,4.7119999999999997,5.6079999999999997,6.8860000000000001,8.8450000000000006,12.192 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1358,-0.87370000000000003,5.6071,0.18798999999999999,3.5449999999999999,4.0510000000000002,4.7110000000000003,5.6070000000000002,6.8849999999999998,8.8450000000000006,12.193 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1359,-0.874,5.6064999999999996,0.188,3.5449999999999999,4.05,4.7110000000000003,5.6059999999999999,6.8849999999999998,8.8439999999999994,12.194000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1360,-0.87439999999999996,5.6059999999999999,0.18801000000000001,3.544,4.05,4.71,5.6059999999999999,6.8840000000000003,8.8439999999999994,12.196 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1361,-0.87470000000000003,5.6054000000000004,0.18801999999999999,3.544,4.05,4.71,5.6050000000000004,6.8840000000000003,8.8439999999999994,12.196 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1362,-0.875,5.6048999999999998,0.18803,3.544,4.0490000000000004,4.7089999999999996,5.6050000000000004,6.883,8.8439999999999994,12.196999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1363,-0.87529999999999997,5.6043000000000003,0.18804000000000001,3.5430000000000001,4.0490000000000004,4.7089999999999996,5.6040000000000001,6.883,8.843,12.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1364,-0.87570000000000003,5.6036999999999999,0.18804999999999999,3.5430000000000001,4.048,4.7080000000000002,5.6040000000000001,6.8819999999999997,8.843,12.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1365,-0.876,5.6032000000000002,0.18806,3.5430000000000001,4.048,4.7080000000000002,5.6029999999999998,6.8810000000000002,8.843,12.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1366,-0.87629999999999997,5.6025999999999998,0.18806999999999999,3.5419999999999998,4.048,4.7069999999999999,5.6029999999999998,6.8810000000000002,8.843,12.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1367,-0.87670000000000003,5.6021000000000001,0.18808,3.5419999999999998,4.0469999999999997,4.7069999999999999,5.6020000000000003,6.88,8.8420000000000005,12.202999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1368,-0.877,5.6014999999999997,0.18809000000000001,3.5419999999999998,4.0469999999999997,4.7060000000000004,5.6020000000000003,6.88,8.8420000000000005,12.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1369,-0.87729999999999997,5.601,0.18809999999999999,3.5409999999999999,4.0460000000000003,4.7060000000000004,5.601,6.8789999999999996,8.8420000000000005,12.205 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1370,-0.87760000000000005,5.6003999999999996,0.18811,3.5409999999999999,4.0460000000000003,4.7060000000000004,5.6,6.8789999999999996,8.8420000000000005,12.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1371,-0.878,5.5998000000000001,0.18812000000000001,3.5409999999999999,4.0460000000000003,4.7050000000000001,5.6,6.8780000000000001,8.8409999999999993,12.207000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1372,-0.87829999999999997,5.5993000000000004,0.18812999999999999,3.54,4.0449999999999999,4.7050000000000001,5.5990000000000002,6.8780000000000001,8.8409999999999993,12.208 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1373,-0.87860000000000005,5.5987,0.18814,3.54,4.0449999999999999,4.7039999999999997,5.5990000000000002,6.8769999999999998,8.8409999999999993,12.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1374,-0.879,5.5982000000000003,0.18815000000000001,3.54,4.0439999999999996,4.7039999999999997,5.5979999999999999,6.8769999999999998,8.8409999999999993,12.21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1375,-0.87929999999999997,5.5975999999999999,0.18815999999999999,3.54,4.0439999999999996,4.7030000000000003,5.5979999999999999,6.8760000000000003,8.84,12.211 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1376,-0.87960000000000005,5.5970000000000004,0.18817,3.5390000000000001,4.0439999999999996,4.7030000000000003,5.5970000000000004,6.875,8.84,12.212 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1377,-0.88,5.5964999999999998,0.18817999999999999,3.5390000000000001,4.0430000000000001,4.702,5.5960000000000001,6.875,8.84,12.214 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1378,-0.88029999999999997,5.5959000000000003,0.18819,3.5390000000000001,4.0430000000000001,4.702,5.5960000000000001,6.8739999999999997,8.8390000000000004,12.214 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1379,-0.88060000000000005,5.5953999999999997,0.18820000000000001,3.5379999999999998,4.0419999999999998,4.7009999999999996,5.5949999999999998,6.8739999999999997,8.8390000000000004,12.215 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1380,-0.88090000000000002,5.5948000000000002,0.18820999999999999,3.5379999999999998,4.0419999999999998,4.7009999999999996,5.5949999999999998,6.8730000000000002,8.8390000000000004,12.215999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1381,-0.88129999999999997,5.5941999999999998,0.18822,3.5379999999999998,4.0419999999999998,4.7,5.5940000000000003,6.8730000000000002,8.8390000000000004,12.218 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1382,-0.88160000000000005,5.5937000000000001,0.18823000000000001,3.5369999999999999,4.0410000000000004,4.7,5.5940000000000003,6.8719999999999999,8.8379999999999992,12.218999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1383,-0.88190000000000002,5.5930999999999997,0.18823999999999999,3.5369999999999999,4.0410000000000004,4.6989999999999998,5.593,6.8710000000000004,8.8379999999999992,12.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1384,-0.88219999999999998,5.5925000000000002,0.18825,3.5369999999999999,4.04,4.6989999999999998,5.5919999999999996,6.8710000000000004,8.8379999999999992,12.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1385,-0.88260000000000005,5.5919999999999996,0.18826000000000001,3.536,4.04,4.6980000000000004,5.5919999999999996,6.87,8.8379999999999992,12.222 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1386,-0.88290000000000002,5.5914000000000001,0.18826999999999999,3.536,4.04,4.6980000000000004,5.5910000000000002,6.87,8.8369999999999997,12.223000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1387,-0.88319999999999999,5.5907999999999998,0.18828,3.536,4.0389999999999997,4.6970000000000001,5.5910000000000002,6.8689999999999998,8.8369999999999997,12.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1388,-0.88360000000000005,5.5903,0.18829000000000001,3.5350000000000001,4.0389999999999997,4.6970000000000001,5.59,6.8689999999999998,8.8369999999999997,12.225 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1389,-0.88390000000000002,5.5896999999999997,0.1883,3.5350000000000001,4.0380000000000003,4.6959999999999997,5.59,6.8680000000000003,8.8360000000000003,12.226000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1390,-0.88419999999999999,5.5891000000000002,0.18831000000000001,3.5350000000000001,4.0380000000000003,4.6959999999999997,5.5890000000000004,6.867,8.8360000000000003,12.227 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1391,-0.88449999999999995,5.5885999999999996,0.18831999999999999,3.5339999999999998,4.0380000000000003,4.6950000000000003,5.5890000000000004,6.867,8.8360000000000003,12.228 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1392,-0.88490000000000002,5.5880000000000001,0.18833,3.5339999999999998,4.0369999999999999,4.6950000000000003,5.5880000000000001,6.8659999999999997,8.8360000000000003,12.228999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1393,-0.88519999999999999,5.5873999999999997,0.18834000000000001,3.5339999999999998,4.0369999999999999,4.694,5.5869999999999997,6.8659999999999997,8.8350000000000009,12.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1394,-0.88549999999999995,5.5869,0.18834999999999999,3.5329999999999999,4.0359999999999996,4.694,5.5869999999999997,6.8650000000000002,8.8350000000000009,12.231 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1395,-0.88590000000000002,5.5862999999999996,0.18836,3.5329999999999999,4.0359999999999996,4.6929999999999996,5.5860000000000003,6.8650000000000002,8.8350000000000009,12.233000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1396,-0.88619999999999999,5.5857000000000001,0.18837000000000001,3.5329999999999999,4.0359999999999996,4.6929999999999996,5.5860000000000003,6.8639999999999999,8.8339999999999996,12.233000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1397,-0.88649999999999995,5.5852000000000004,0.18837999999999999,3.532,4.0350000000000001,4.6920000000000002,5.585,6.8639999999999999,8.8339999999999996,12.234999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1398,-0.88680000000000003,5.5846,0.18840000000000001,3.532,4.0350000000000001,4.6920000000000002,5.585,6.8630000000000004,8.8339999999999996,12.236000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1399,-0.88719999999999999,5.5839999999999996,0.18840999999999999,3.532,4.0339999999999998,4.6909999999999998,5.5839999999999996,6.8620000000000001,8.8339999999999996,12.237 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1400,-0.88749999999999996,5.5834999999999999,0.18842,3.5310000000000001,4.0339999999999998,4.6909999999999998,5.5839999999999996,6.8620000000000001,8.8339999999999996,12.239000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1401,-0.88780000000000003,5.5829000000000004,0.18842999999999999,3.5310000000000001,4.0330000000000004,4.6900000000000004,5.5830000000000002,6.8609999999999998,8.8330000000000002,12.239000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1402,-0.8881,5.5823,0.18844,3.5310000000000001,4.0330000000000004,4.6900000000000004,5.5819999999999999,6.8609999999999998,8.8330000000000002,12.24 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1403,-0.88849999999999996,5.5818000000000003,0.18845000000000001,3.53,4.0330000000000004,4.6890000000000001,5.5819999999999999,6.86,8.8330000000000002,12.242000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1404,-0.88880000000000003,5.5811999999999999,0.18845999999999999,3.53,4.032,4.6890000000000001,5.5810000000000004,6.86,8.8320000000000007,12.243 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1405,-0.8891,5.5805999999999996,0.18847,3.53,4.032,4.6879999999999997,5.5810000000000004,6.859,8.8320000000000007,12.244 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1406,-0.88939999999999997,5.58,0.18848000000000001,3.5289999999999999,4.0309999999999997,4.6879999999999997,5.58,6.8579999999999997,8.8320000000000007,12.244 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1407,-0.88980000000000004,5.5795000000000003,0.18848999999999999,3.5289999999999999,4.0309999999999997,4.6870000000000003,5.58,6.8579999999999997,8.8320000000000007,12.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1408,-0.8901,5.5789,0.1885,3.5289999999999999,4.0309999999999997,4.6870000000000003,5.5789999999999997,6.8570000000000002,8.8309999999999995,12.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1409,-0.89039999999999997,5.5782999999999996,0.18851000000000001,3.528,4.03,4.6859999999999999,5.5780000000000003,6.8570000000000002,8.8309999999999995,12.247999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1410,-0.89070000000000005,5.5777000000000001,0.18851999999999999,3.528,4.03,4.6859999999999999,5.5780000000000003,6.8559999999999999,8.83,12.249000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1411,-0.8911,5.5772000000000004,0.18853,3.528,4.0289999999999999,4.6849999999999996,5.577,6.8559999999999999,8.83,12.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1412,-0.89139999999999997,5.5766,0.18854000000000001,3.5270000000000001,4.0289999999999999,4.6849999999999996,5.577,6.8550000000000004,8.83,12.250999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1413,-0.89170000000000005,5.5759999999999996,0.18855,3.5270000000000001,4.0279999999999996,4.6840000000000002,5.5759999999999996,6.8550000000000004,8.83,12.252000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1414,-0.8921,5.5754999999999999,0.18856000000000001,3.5270000000000001,4.0279999999999996,4.6840000000000002,5.5759999999999996,6.8540000000000001,8.83,12.254 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1415,-0.89239999999999997,5.5749000000000004,0.18856999999999999,3.5270000000000001,4.0279999999999996,4.6829999999999998,5.5750000000000002,6.8529999999999998,8.8290000000000006,12.255000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1416,-0.89270000000000005,5.5743,0.18858,3.5259999999999998,4.0270000000000001,4.6829999999999998,5.5739999999999998,6.8529999999999998,8.8290000000000006,12.255000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1417,-0.89300000000000002,5.5736999999999997,0.18859000000000001,3.5259999999999998,4.0270000000000001,4.6820000000000004,5.5739999999999998,6.8520000000000003,8.8279999999999994,12.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1418,-0.89339999999999997,5.5731999999999999,0.18859999999999999,3.5259999999999998,4.0259999999999998,4.6820000000000004,5.5730000000000004,6.8520000000000003,8.8279999999999994,12.257999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1419,-0.89370000000000005,5.5726000000000004,0.18861,3.5249999999999999,4.0259999999999998,4.681,5.5730000000000004,6.851,8.8279999999999994,12.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1420,-0.89400000000000002,5.5720000000000001,0.18862000000000001,3.5249999999999999,4.0259999999999998,4.681,5.5720000000000001,6.851,8.8279999999999994,12.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1421,-0.89429999999999998,5.5713999999999997,0.18862999999999999,3.524,4.0250000000000004,4.68,5.5709999999999997,6.85,8.827,12.260999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1422,-0.89470000000000005,5.5709,0.18864,3.524,4.0250000000000004,4.68,5.5709999999999997,6.8490000000000002,8.827,12.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1423,-0.89500000000000002,5.5702999999999996,0.18865000000000001,3.524,4.024,4.6790000000000003,5.57,6.8490000000000002,8.827,12.263 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1424,-0.89529999999999998,5.5697000000000001,0.18865999999999999,3.524,4.024,4.6790000000000003,5.57,6.8479999999999999,8.8260000000000005,12.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1425,-0.89559999999999995,5.5690999999999997,0.18867,3.5230000000000001,4.024,4.6779999999999999,5.569,6.8479999999999999,8.8260000000000005,12.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1426,-0.89600000000000002,5.5685000000000002,0.18867999999999999,3.5230000000000001,4.0229999999999997,4.6779999999999999,5.5679999999999996,6.8470000000000004,8.8260000000000005,12.266 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1427,-0.89629999999999999,5.5679999999999996,0.18869,3.5230000000000001,4.0229999999999997,4.6769999999999996,5.5679999999999996,6.8470000000000004,8.8260000000000005,12.266999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1428,-0.89659999999999995,5.5674000000000001,0.18870000000000001,3.5219999999999998,4.0220000000000002,4.6769999999999996,5.5670000000000002,6.8460000000000001,8.8249999999999993,12.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1429,-0.89690000000000003,5.5667999999999997,0.18870999999999999,3.5219999999999998,4.0220000000000002,4.6760000000000002,5.5670000000000002,6.8449999999999998,8.8249999999999993,12.269 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1430,-0.8972,5.5662000000000003,0.18872,3.5219999999999998,4.0209999999999999,4.6760000000000002,5.5659999999999998,6.8449999999999998,8.8249999999999993,12.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1431,-0.89759999999999995,5.5656999999999996,0.18873000000000001,3.5209999999999999,4.0209999999999999,4.6749999999999998,5.5659999999999998,6.8440000000000003,8.8239999999999998,12.272 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1432,-0.89790000000000003,5.5651000000000002,0.18873999999999999,3.5209999999999999,4.0209999999999999,4.6749999999999998,5.5650000000000004,6.8440000000000003,8.8239999999999998,12.273 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1433,-0.8982,5.5644999999999998,0.18875,3.5209999999999999,4.0199999999999996,4.6740000000000004,5.5640000000000001,6.843,8.8239999999999998,12.273999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1434,-0.89849999999999997,5.5639000000000003,0.18876000000000001,3.52,4.0199999999999996,4.6740000000000004,5.5640000000000001,6.8419999999999996,8.8230000000000004,12.273999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1435,-0.89890000000000003,5.5632999999999999,0.18876999999999999,3.52,4.0190000000000001,4.673,5.5629999999999997,6.8419999999999996,8.8230000000000004,12.276 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1436,-0.8992,5.5628000000000002,0.18878,3.52,4.0190000000000001,4.673,5.5629999999999997,6.8410000000000002,8.8230000000000004,12.276999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1437,-0.89949999999999997,5.5621999999999998,0.18879000000000001,3.5190000000000001,4.0190000000000001,4.6719999999999997,5.5620000000000003,6.8410000000000002,8.8230000000000004,12.278 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1438,-0.89980000000000004,5.5616000000000003,0.1888,3.5190000000000001,4.0179999999999998,4.6719999999999997,5.5620000000000003,6.84,8.8219999999999992,12.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1439,-0.9002,5.5609999999999999,0.18881000000000001,3.5190000000000001,4.0179999999999998,4.6710000000000003,5.5609999999999999,6.84,8.8219999999999992,12.28 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1440,-0.90049999999999997,5.5603999999999996,0.18881999999999999,3.5179999999999998,4.0170000000000003,4.6710000000000003,5.56,6.8390000000000004,8.8219999999999992,12.281000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1441,-0.90080000000000005,5.5598999999999998,0.18883,3.5179999999999998,4.0170000000000003,4.67,5.56,6.8380000000000001,8.8209999999999997,12.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1442,-0.90110000000000001,5.5593000000000004,0.18884000000000001,3.5179999999999998,4.016,4.67,5.5590000000000002,6.8380000000000001,8.8209999999999997,12.282999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1443,-0.90149999999999997,5.5587,0.18884999999999999,3.5169999999999999,4.016,4.6689999999999996,5.5590000000000002,6.8369999999999997,8.8209999999999997,12.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1444,-0.90180000000000005,5.5580999999999996,0.18886,3.5169999999999999,4.016,4.6689999999999996,5.5579999999999998,6.8369999999999997,8.82,12.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1445,-0.90210000000000001,5.5575000000000001,0.18887000000000001,3.5169999999999999,4.0149999999999997,4.6680000000000001,5.5579999999999998,6.8360000000000003,8.82,12.286 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1446,-0.90239999999999998,5.5568999999999997,0.18887999999999999,3.516,4.0149999999999997,4.6680000000000001,5.5570000000000004,6.835,8.82,12.287000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1447,-0.90280000000000005,5.5564,0.18889,3.516,4.0140000000000002,4.6669999999999998,5.556,6.835,8.82,12.289 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1448,-0.90310000000000001,5.5557999999999996,0.18890000000000001,3.516,4.0140000000000002,4.6669999999999998,5.556,6.8339999999999996,8.8190000000000008,12.29 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1449,-0.90339999999999998,5.5552000000000001,0.18890999999999999,3.5150000000000001,4.0140000000000002,4.6660000000000004,5.5549999999999997,6.8339999999999996,8.8190000000000008,12.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1450,-0.90369999999999995,5.5545999999999998,0.18892,3.5150000000000001,4.0129999999999999,4.6660000000000004,5.5549999999999997,6.8330000000000002,8.8190000000000008,12.292 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1451,-0.90400000000000003,5.5540000000000003,0.18892999999999999,3.5150000000000001,4.0129999999999999,4.665,5.5540000000000003,6.8330000000000002,8.8179999999999996,12.292999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1452,-0.90439999999999998,5.5533999999999999,0.18894,3.5139999999999998,4.0119999999999996,4.665,5.5529999999999999,6.8319999999999999,8.8179999999999996,12.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1453,-0.90469999999999995,5.5529000000000002,0.18895000000000001,3.5139999999999998,4.0119999999999996,4.6639999999999997,5.5529999999999999,6.8310000000000004,8.8179999999999996,12.295 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1454,-0.90500000000000003,5.5522999999999998,0.18895999999999999,3.5139999999999998,4.0110000000000001,4.6639999999999997,5.5519999999999996,6.8310000000000004,8.8170000000000002,12.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1455,-0.90529999999999999,5.5517000000000003,0.18897,3.5129999999999999,4.0110000000000001,4.6630000000000003,5.5519999999999996,6.83,8.8170000000000002,12.297000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1456,-0.90569999999999995,5.5510999999999999,0.18898000000000001,3.5129999999999999,4.0110000000000001,4.6630000000000003,5.5510000000000002,6.83,8.8170000000000002,12.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1457,-0.90600000000000003,5.5505000000000004,0.18898999999999999,3.5129999999999999,4.01,4.6619999999999999,5.55,6.8289999999999997,8.8160000000000007,12.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1458,-0.90629999999999999,5.5499000000000001,0.189,3.512,4.01,4.6609999999999996,5.55,6.8280000000000003,8.8160000000000007,12.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1459,-0.90659999999999996,5.5494000000000003,0.18901000000000001,3.512,4.0090000000000003,4.6609999999999996,5.5490000000000004,6.8280000000000003,8.8160000000000007,12.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1460,-0.90690000000000004,5.5488,0.18901999999999999,3.512,4.0090000000000003,4.66,5.5490000000000004,6.827,8.8160000000000007,12.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1461,-0.9073,5.5481999999999996,0.18903,3.5110000000000001,4.0090000000000003,4.66,5.548,6.827,8.8149999999999995,12.304 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1462,-0.90759999999999996,5.5476000000000001,0.18904000000000001,3.5110000000000001,4.008,4.6589999999999998,5.548,6.8259999999999996,8.8149999999999995,12.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1463,-0.90790000000000004,5.5469999999999997,0.18905,3.5110000000000001,4.008,4.6589999999999998,5.5469999999999997,6.8250000000000002,8.8149999999999995,12.305999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1464,-0.90820000000000001,5.5464000000000002,0.18906000000000001,3.51,4.0069999999999997,4.6580000000000004,5.5460000000000003,6.8250000000000002,8.8140000000000001,12.307 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1465,-0.90849999999999997,5.5457999999999998,0.18906999999999999,3.51,4.0069999999999997,4.6580000000000004,5.5460000000000003,6.8239999999999998,8.8140000000000001,12.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1466,-0.90890000000000004,5.5453000000000001,0.18908,3.51,4.0060000000000002,4.657,5.5449999999999999,6.8239999999999998,8.8140000000000001,12.308999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1467,-0.90920000000000001,5.5446999999999997,0.18909000000000001,3.5089999999999999,4.0060000000000002,4.657,5.5449999999999999,6.8230000000000004,8.8130000000000006,12.31 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1468,-0.90949999999999998,5.5441000000000003,0.18909999999999999,3.5089999999999999,4.0060000000000002,4.6559999999999997,5.5439999999999996,6.8230000000000004,8.8130000000000006,12.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1469,-0.90980000000000005,5.5434999999999999,0.18911,3.508,4.0049999999999999,4.6559999999999997,5.5439999999999996,6.8220000000000001,8.8130000000000006,12.311999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1470,-0.91020000000000001,5.5429000000000004,0.18912000000000001,3.508,4.0049999999999999,4.6550000000000002,5.5430000000000001,6.8209999999999997,8.8119999999999994,12.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1471,-0.91049999999999998,5.5423,0.18912999999999999,3.508,4.0039999999999996,4.6550000000000002,5.5419999999999998,6.8209999999999997,8.8119999999999994,12.315 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1472,-0.91080000000000005,5.5416999999999996,0.18914,3.5070000000000001,4.0039999999999996,4.6539999999999999,5.5419999999999998,6.82,8.8119999999999994,12.316000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1473,-0.91110000000000002,5.5411999999999999,0.18915000000000001,3.5070000000000001,4.0030000000000001,4.6539999999999999,5.5410000000000004,6.82,8.8119999999999994,12.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1474,-0.91139999999999999,5.5406000000000004,0.18915999999999999,3.5070000000000001,4.0030000000000001,4.6529999999999996,5.5410000000000004,6.819,8.8109999999999999,12.318 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1475,-0.91180000000000005,5.54,0.18917,3.5070000000000001,4.0030000000000001,4.6529999999999996,5.54,6.8179999999999996,8.8109999999999999,12.319000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1476,-0.91210000000000002,5.5393999999999997,0.18917999999999999,3.5059999999999998,4.0019999999999998,4.6520000000000001,5.5389999999999997,6.8179999999999996,8.8109999999999999,12.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1477,-0.91239999999999999,5.5388000000000002,0.18919,3.5059999999999998,4.0019999999999998,4.6520000000000001,5.5389999999999997,6.8170000000000002,8.81,12.321 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1478,-0.91269999999999996,5.5381999999999998,0.18920000000000001,3.5049999999999999,4.0010000000000003,4.6509999999999998,5.5380000000000003,6.8170000000000002,8.81,12.321999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1479,-0.91300000000000003,5.5376000000000003,0.18920999999999999,3.5049999999999999,4.0010000000000003,4.6509999999999998,5.5380000000000003,6.8159999999999998,8.81,12.323 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1480,-0.91339999999999999,5.5369999999999999,0.18922,3.5049999999999999,4,4.6500000000000004,5.5369999999999999,6.8150000000000004,8.8089999999999993,12.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1481,-0.91369999999999996,5.5365000000000002,0.18923000000000001,3.504,4,4.6500000000000004,5.5359999999999996,6.8150000000000004,8.8089999999999993,12.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1482,-0.91400000000000003,5.5358999999999998,0.18923999999999999,3.504,4,4.649,5.5359999999999996,6.8140000000000001,8.8089999999999993,12.327 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1483,-0.9143,5.5353000000000003,0.18925,3.504,3.9990000000000001,4.649,5.5350000000000001,6.8140000000000001,8.8079999999999998,12.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1484,-0.91459999999999997,5.5347,0.18926000000000001,3.5030000000000001,3.9990000000000001,4.6479999999999997,5.5350000000000001,6.8129999999999997,8.8079999999999998,12.329000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1485,-0.91500000000000004,5.5340999999999996,0.18926999999999999,3.5030000000000001,3.9980000000000002,4.6479999999999997,5.5339999999999998,6.8129999999999997,8.8079999999999998,12.33 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1486,-0.9153,5.5335000000000001,0.18928,3.5030000000000001,3.9980000000000002,4.6470000000000002,5.5339999999999998,6.8120000000000003,8.8070000000000004,12.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1487,-0.91559999999999997,5.5328999999999997,0.18929000000000001,3.5019999999999998,3.9980000000000002,4.6470000000000002,5.5330000000000004,6.8109999999999999,8.8070000000000004,12.332000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1488,-0.91590000000000005,5.5323000000000002,0.1893,3.5019999999999998,3.9969999999999999,4.6459999999999999,5.532,6.8109999999999999,8.8070000000000004,12.333 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1489,-0.91620000000000001,5.5317999999999996,0.18931000000000001,3.5019999999999998,3.9969999999999999,4.6459999999999999,5.532,6.81,8.8070000000000004,12.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1490,-0.91659999999999997,5.5312000000000001,0.18931999999999999,3.5009999999999999,3.996,4.6449999999999996,5.5309999999999997,6.81,8.8059999999999992,12.336 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1491,-0.91690000000000005,5.5305999999999997,0.18933,3.5009999999999999,3.996,4.6449999999999996,5.5309999999999997,6.8090000000000002,8.8059999999999992,12.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1492,-0.91720000000000002,5.53,0.18934000000000001,3.5009999999999999,3.9950000000000001,4.6440000000000001,5.53,6.8079999999999998,8.8059999999999992,12.337999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1493,-0.91749999999999998,5.5293999999999999,0.18934999999999999,3.5,3.9950000000000001,4.6440000000000001,5.5289999999999999,6.8079999999999998,8.8049999999999997,12.339 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1494,-0.91779999999999995,5.5288000000000004,0.18936,3.5,3.9950000000000001,4.6429999999999998,5.5289999999999999,6.8070000000000004,8.8049999999999997,12.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1495,-0.91820000000000002,5.5282,0.18937000000000001,3.5,3.9940000000000002,4.6429999999999998,5.5279999999999996,6.8070000000000004,8.8049999999999997,12.340999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1496,-0.91849999999999998,5.5275999999999996,0.18937999999999999,3.4990000000000001,3.9940000000000002,4.6420000000000003,5.5279999999999996,6.806,8.8040000000000003,12.342000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1497,-0.91879999999999995,5.5270999999999999,0.18939,3.4990000000000001,3.9929999999999999,4.6420000000000003,5.5270000000000001,6.806,8.8040000000000003,12.343 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1498,-0.91910000000000003,5.5265000000000004,0.18940000000000001,3.4990000000000001,3.9929999999999999,4.641,5.5259999999999998,6.8049999999999997,8.8040000000000003,12.343999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1499,-0.9194,5.5259,0.18941,3.4980000000000002,3.992,4.641,5.5259999999999998,6.8040000000000003,8.8030000000000008,12.345000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1500,-0.91979999999999995,5.5252999999999997,0.18942000000000001,3.4980000000000002,3.992,4.6399999999999997,5.5250000000000004,6.8040000000000003,8.8030000000000008,12.347 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1501,-0.92010000000000003,5.5247000000000002,0.18942999999999999,3.4980000000000002,3.992,4.6399999999999997,5.5250000000000004,6.8029999999999999,8.8030000000000008,12.348000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1502,-0.9204,5.5240999999999998,0.18944,3.4969999999999999,3.9910000000000001,4.6390000000000002,5.524,6.8019999999999996,8.8019999999999996,12.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1503,-0.92069999999999996,5.5235000000000003,0.18945000000000001,3.4969999999999999,3.9910000000000001,4.6379999999999999,5.524,6.8019999999999996,8.8019999999999996,12.35 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1504,-0.92100000000000004,5.5228999999999999,0.18945999999999999,3.4969999999999999,3.99,4.6379999999999999,5.5229999999999997,6.8010000000000002,8.8019999999999996,12.351000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1505,-0.92130000000000001,5.5224000000000002,0.18947,3.496,3.99,4.6379999999999999,5.5220000000000002,6.8010000000000002,8.8010000000000002,12.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1506,-0.92169999999999996,5.5217999999999998,0.18948000000000001,3.496,3.99,4.6369999999999996,5.5220000000000002,6.8,8.8010000000000002,12.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1507,-0.92200000000000004,5.5212000000000003,0.18948999999999999,3.496,3.9889999999999999,4.6360000000000001,5.5209999999999999,6.8,8.8010000000000002,12.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1508,-0.92230000000000001,5.5206,0.1895,3.4950000000000001,3.9889999999999999,4.6360000000000001,5.5209999999999999,6.7990000000000004,8.8010000000000002,12.356 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1509,-0.92259999999999998,5.52,0.18951000000000001,3.4950000000000001,3.988,4.6349999999999998,5.52,6.798,8.8000000000000007,12.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1510,-0.92290000000000005,5.5194000000000001,0.18951999999999999,3.4950000000000001,3.988,4.6349999999999998,5.5190000000000001,6.798,8.8000000000000007,12.358000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1511,-0.92330000000000001,5.5187999999999997,0.18953,3.4940000000000002,3.9870000000000001,4.6340000000000003,5.5190000000000001,6.7969999999999997,8.8000000000000007,12.359 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1512,-0.92359999999999998,5.5183,0.18953999999999999,3.4940000000000002,3.9870000000000001,4.6340000000000003,5.5179999999999998,6.7969999999999997,8.7989999999999995,12.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1513,-0.92390000000000005,5.5176999999999996,0.18955,3.4940000000000002,3.9870000000000001,4.633,5.5179999999999998,6.7960000000000003,8.7989999999999995,12.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1514,-0.92420000000000002,5.5171000000000001,0.18956000000000001,3.4929999999999999,3.9860000000000002,4.633,5.5170000000000003,6.7949999999999999,8.7989999999999995,12.362 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1515,-0.92449999999999999,5.5164999999999997,0.18956999999999999,3.4929999999999999,3.9860000000000002,4.6319999999999997,5.516,6.7949999999999999,8.798,12.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1516,-0.92479999999999996,5.5159000000000002,0.18958,3.4929999999999999,3.9849999999999999,4.6319999999999997,5.516,6.7939999999999996,8.798,12.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1517,-0.92520000000000002,5.5152999999999999,0.18959000000000001,3.492,3.9849999999999999,4.6310000000000002,5.5149999999999997,6.7939999999999996,8.798,12.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1518,-0.92549999999999999,5.5147000000000004,0.18959999999999999,3.492,3.984,4.6310000000000002,5.5149999999999997,6.7930000000000001,8.7970000000000006,12.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1519,-0.92579999999999996,5.5141999999999998,0.18961,3.492,3.984,4.63,5.5140000000000002,6.7930000000000001,8.7970000000000006,12.368 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1520,-0.92610000000000003,5.5136000000000003,0.18962000000000001,3.4910000000000001,3.984,4.63,5.5140000000000002,6.7919999999999998,8.7970000000000006,12.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1521,-0.9264,5.5129999999999999,0.18962999999999999,3.4910000000000001,3.9830000000000001,4.6289999999999996,5.5129999999999999,6.7910000000000004,8.7970000000000006,12.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1522,-0.92679999999999996,5.5124000000000004,0.18964,3.4910000000000001,3.9830000000000001,4.6289999999999996,5.5119999999999996,6.7910000000000004,8.7959999999999994,12.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1523,-0.92710000000000004,5.5118,0.18965000000000001,3.49,3.9820000000000002,4.6280000000000001,5.5119999999999996,6.79,8.7959999999999994,12.372999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1524,-0.9274,5.5111999999999997,0.18966,3.49,3.9820000000000002,4.6280000000000001,5.5110000000000001,6.79,8.7959999999999994,12.374000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1525,-0.92769999999999997,5.5106000000000002,0.18967000000000001,3.49,3.9809999999999999,4.6269999999999998,5.5110000000000001,6.7889999999999997,8.7949999999999999,12.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1526,-0.92800000000000005,5.5101000000000004,0.18967999999999999,3.4889999999999999,3.9809999999999999,4.6269999999999998,5.51,6.7880000000000003,8.7949999999999999,12.375999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1527,-0.92830000000000001,5.5095000000000001,0.18969,3.4889999999999999,3.9809999999999999,4.6260000000000003,5.51,6.7880000000000003,8.7949999999999999,12.377000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1528,-0.92869999999999997,5.5088999999999997,0.18970000000000001,3.4889999999999999,3.98,4.6260000000000003,5.5090000000000003,6.7869999999999999,8.7940000000000005,12.379 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1529,-0.92900000000000005,5.5083000000000002,0.18970999999999999,3.488,3.98,4.625,5.508,6.7869999999999999,8.7940000000000005,12.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1530,-0.92930000000000001,5.5076999999999998,0.18972,3.488,3.9790000000000001,4.625,5.508,6.7859999999999996,8.7940000000000005,12.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1531,-0.92959999999999998,5.5071000000000003,0.18973000000000001,3.4870000000000001,3.9790000000000001,4.6239999999999997,5.5069999999999997,6.7850000000000001,8.7929999999999993,12.382 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1532,-0.92989999999999995,5.5065999999999997,0.18973999999999999,3.4870000000000001,3.9790000000000001,4.6239999999999997,5.5069999999999997,6.7850000000000001,8.7929999999999993,12.382999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1533,-0.93020000000000003,5.5060000000000002,0.18975,3.4870000000000001,3.9780000000000002,4.6230000000000002,5.5060000000000002,6.7839999999999998,8.7929999999999993,12.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1534,-0.93059999999999998,5.5053999999999998,0.18976000000000001,3.4870000000000001,3.9780000000000002,4.6230000000000002,5.5049999999999999,6.7839999999999998,8.7929999999999993,12.385999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1535,-0.93089999999999995,5.5048000000000004,0.18976999999999999,3.4860000000000002,3.9769999999999999,4.6219999999999999,5.5049999999999999,6.7830000000000004,8.7919999999999998,12.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1536,-0.93120000000000003,5.5042,0.18978,3.4860000000000002,3.9769999999999999,4.6219999999999999,5.5039999999999996,6.782,8.7919999999999998,12.388 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1537,-0.93149999999999999,5.5035999999999996,0.18978999999999999,3.4849999999999999,3.976,4.6210000000000004,5.5039999999999996,6.782,8.7919999999999998,12.388999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1538,-0.93179999999999996,5.5030999999999999,0.1898,3.4849999999999999,3.976,4.6210000000000004,5.5030000000000001,6.7809999999999997,8.7910000000000004,12.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1539,-0.93210000000000004,5.5025000000000004,0.18981000000000001,3.4849999999999999,3.976,4.62,5.5019999999999998,6.7809999999999997,8.7910000000000004,12.391 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1540,-0.9325,5.5019,0.18981999999999999,3.4849999999999999,3.9750000000000001,4.62,5.5019999999999998,6.78,8.7910000000000004,12.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1541,-0.93279999999999996,5.5012999999999996,0.18983,3.484,3.9750000000000001,4.6189999999999998,5.5010000000000003,6.78,8.7899999999999991,12.394 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1542,-0.93310000000000004,5.5007000000000001,0.18984000000000001,3.484,3.9740000000000002,4.6189999999999998,5.5010000000000003,6.7789999999999999,8.7899999999999991,12.395 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1543,-0.93340000000000001,5.5002000000000004,0.18984999999999999,3.484,3.9740000000000002,4.6180000000000003,5.5,6.7779999999999996,8.7899999999999991,12.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1544,-0.93369999999999997,5.4996,0.18986,3.4830000000000001,3.9740000000000002,4.6180000000000003,5.5,6.7779999999999996,8.7899999999999991,12.397 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1545,-0.93400000000000005,5.4989999999999997,0.18987000000000001,3.4830000000000001,3.9729999999999999,4.617,5.4989999999999997,6.7770000000000001,8.7889999999999997,12.398 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1546,-0.93430000000000002,5.4984000000000002,0.18987999999999999,3.4820000000000002,3.9729999999999999,4.617,5.4980000000000002,6.7770000000000001,8.7889999999999997,12.398999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1547,-0.93469999999999998,5.4977999999999998,0.18989,3.4820000000000002,3.972,4.6159999999999997,5.4980000000000002,6.7759999999999998,8.7889999999999997,12.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1548,-0.93500000000000005,5.4973000000000001,0.18990000000000001,3.4820000000000002,3.972,4.6159999999999997,5.4969999999999999,6.7759999999999998,8.7880000000000003,12.401999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1549,-0.93530000000000002,5.4966999999999997,0.18991,3.4809999999999999,3.9710000000000001,4.6150000000000002,5.4969999999999999,6.7750000000000004,8.7880000000000003,12.403 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1550,-0.93559999999999999,5.4961000000000002,0.18992000000000001,3.4809999999999999,3.9710000000000001,4.6150000000000002,5.4960000000000004,6.774,8.7880000000000003,12.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1551,-0.93589999999999995,5.4954999999999998,0.18992999999999999,3.4809999999999999,3.9710000000000001,4.6139999999999999,5.4960000000000004,6.774,8.7870000000000008,12.404999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1552,-0.93620000000000003,5.4950000000000001,0.18994,3.48,3.97,4.6139999999999999,5.4950000000000001,6.7729999999999997,8.7870000000000008,12.406000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1553,-0.93659999999999999,5.4943999999999997,0.18995000000000001,3.48,3.97,4.6130000000000004,5.4939999999999998,6.7729999999999997,8.7870000000000008,12.407999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1554,-0.93689999999999996,5.4938000000000002,0.18995999999999999,3.48,3.9689999999999999,4.6130000000000004,5.4939999999999998,6.7720000000000002,8.7870000000000008,12.409000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1555,-0.93720000000000003,5.4931999999999999,0.18997,3.4790000000000001,3.9689999999999999,4.6120000000000001,5.4930000000000003,6.7709999999999999,8.7859999999999996,12.41 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1556,-0.9375,5.4926000000000004,0.18998000000000001,3.4790000000000001,3.9689999999999999,4.6120000000000001,5.4930000000000003,6.7709999999999999,8.7859999999999996,12.411 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1557,-0.93779999999999997,5.4920999999999998,0.18998000000000001,3.4790000000000001,3.968,4.6109999999999998,5.492,6.77,8.7850000000000001,12.412000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1558,-0.93810000000000004,5.4915000000000003,0.18998999999999999,3.4790000000000001,3.968,4.6109999999999998,5.492,6.77,8.7850000000000001,12.413 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1559,-0.93840000000000001,5.4908999999999999,0.19,3.4780000000000002,3.9670000000000001,4.6100000000000003,5.4909999999999997,6.7690000000000001,8.7850000000000001,12.414 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1560,-0.93879999999999997,5.4904000000000002,0.19001000000000001,3.4780000000000002,3.9670000000000001,4.6100000000000003,5.49,6.7690000000000001,8.7850000000000001,12.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1561,-0.93910000000000005,5.4897999999999998,0.19001999999999999,3.4780000000000002,3.9670000000000001,4.609,5.49,6.7679999999999998,8.7840000000000007,12.417 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1562,-0.93940000000000001,5.4892000000000003,0.19003,3.4769999999999999,3.9660000000000002,4.609,5.4889999999999999,6.7670000000000003,8.7840000000000007,12.417999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1563,-0.93969999999999998,5.4885999999999999,0.19003999999999999,3.4769999999999999,3.9660000000000002,4.6079999999999997,5.4889999999999999,6.7670000000000003,8.7840000000000007,12.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1564,-0.94,5.4881000000000002,0.19005,3.4769999999999999,3.9649999999999999,4.6079999999999997,5.4880000000000004,6.766,8.7829999999999995,12.42 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1565,-0.94030000000000002,5.4874999999999998,0.19006000000000001,3.476,3.9649999999999999,4.6070000000000002,5.4880000000000004,6.766,8.7829999999999995,12.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1566,-0.94059999999999999,5.4869000000000003,0.19006999999999999,3.476,3.964,4.6070000000000002,5.4870000000000001,6.7649999999999997,8.7829999999999995,12.422000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1567,-0.94099999999999995,5.4863,0.19008,3.476,3.964,4.6059999999999999,5.4859999999999998,6.7640000000000002,8.7829999999999995,12.423999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1568,-0.94130000000000003,5.4858000000000002,0.19009000000000001,3.4750000000000001,3.964,4.6059999999999999,5.4859999999999998,6.7640000000000002,8.782,12.425000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1569,-0.94159999999999999,5.4851999999999999,0.19009999999999999,3.4750000000000001,3.9630000000000001,4.6050000000000004,5.4850000000000003,6.7629999999999999,8.782,12.426 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1570,-0.94189999999999996,5.4846000000000004,0.19011,3.4750000000000001,3.9630000000000001,4.6050000000000004,5.4850000000000003,6.7629999999999999,8.782,12.428000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1571,-0.94220000000000004,5.4840999999999998,0.19012000000000001,3.4740000000000002,3.9620000000000002,4.6040000000000001,5.484,6.7619999999999996,8.7810000000000006,12.429 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1572,-0.9425,5.4835000000000003,0.19012999999999999,3.4740000000000002,3.9620000000000002,4.6040000000000001,5.484,6.7619999999999996,8.7810000000000006,12.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1573,-0.94279999999999997,5.4828999999999999,0.19014,3.4740000000000002,3.9620000000000002,4.6029999999999998,5.4829999999999997,6.7610000000000001,8.7810000000000006,12.430999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1574,-0.94320000000000004,5.4824000000000002,0.19015000000000001,3.4729999999999999,3.9609999999999999,4.6029999999999998,5.4820000000000002,6.7610000000000001,8.7810000000000006,12.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1575,-0.94350000000000001,5.4817999999999998,0.19016,3.4729999999999999,3.9609999999999999,4.6020000000000003,5.4820000000000002,6.76,8.7799999999999994,12.433999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1576,-0.94379999999999997,5.4812000000000003,0.19017000000000001,3.4729999999999999,3.96,4.6020000000000003,5.4809999999999999,6.7590000000000003,8.7799999999999994,12.435 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1577,-0.94410000000000005,5.4806999999999997,0.19017999999999999,3.472,3.96,4.601,5.4809999999999999,6.7590000000000003,8.7799999999999994,12.436 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1578,-0.94440000000000002,5.4801000000000002,0.19019,3.472,3.96,4.601,5.48,6.758,8.7789999999999999,12.438000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1579,-0.94469999999999998,5.4794999999999998,0.19020000000000001,3.472,3.9590000000000001,4.5999999999999996,5.48,6.758,8.7789999999999999,12.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1580,-0.94499999999999995,5.4790000000000001,0.19020999999999999,3.4710000000000001,3.9590000000000001,4.5999999999999996,5.4790000000000001,6.7569999999999997,8.7789999999999999,12.44 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1581,-0.94530000000000003,5.4783999999999997,0.19022,3.4710000000000001,3.9580000000000002,4.5990000000000002,5.4779999999999998,6.7569999999999997,8.7789999999999999,12.441000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1582,-0.94569999999999999,5.4778000000000002,0.19023000000000001,3.4710000000000001,3.9580000000000002,4.5990000000000002,5.4779999999999998,6.7560000000000002,8.7780000000000005,12.443 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1583,-0.94599999999999995,5.4772999999999996,0.19023999999999999,3.47,3.9580000000000002,4.5979999999999999,5.4770000000000003,6.7549999999999999,8.7780000000000005,12.444000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1584,-0.94630000000000003,5.4767000000000001,0.19025,3.47,3.9569999999999999,4.5979999999999999,5.4770000000000003,6.7549999999999999,8.7780000000000005,12.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1585,-0.9466,5.4762000000000004,0.19026000000000001,3.47,3.9569999999999999,4.5970000000000004,5.476,6.7539999999999996,8.7780000000000005,12.446 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1586,-0.94689999999999996,5.4756,0.19026999999999999,3.4689999999999999,3.956,4.5970000000000004,5.476,6.7539999999999996,8.7769999999999992,12.448 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1587,-0.94720000000000004,5.4749999999999996,0.19028,3.4689999999999999,3.956,4.5960000000000001,5.4749999999999996,6.7530000000000001,8.7769999999999992,12.449 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1588,-0.94750000000000001,5.4744999999999999,0.19028999999999999,3.4689999999999999,3.956,4.5960000000000001,5.4740000000000002,6.7530000000000001,8.7769999999999992,12.45 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1589,-0.94789999999999996,5.4739000000000004,0.1903,3.468,3.9550000000000001,4.5949999999999998,5.4740000000000002,6.7519999999999998,8.7769999999999992,12.452 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1590,-0.94820000000000004,5.4733999999999998,0.19031000000000001,3.468,3.9550000000000001,4.5949999999999998,5.4729999999999999,6.7519999999999998,8.7759999999999998,12.452999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1591,-0.94850000000000001,5.4728000000000003,0.19031999999999999,3.468,3.9540000000000002,4.5940000000000003,5.4729999999999999,6.7510000000000003,8.7759999999999998,12.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1592,-0.94879999999999998,5.4722,0.19033,3.4670000000000001,3.9540000000000002,4.5940000000000003,5.4720000000000004,6.75,8.7759999999999998,12.455 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1593,-0.94910000000000005,5.4717000000000002,0.19034000000000001,3.4670000000000001,3.9540000000000002,4.593,5.4720000000000004,6.75,8.7750000000000004,12.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1594,-0.94940000000000002,5.4710999999999999,0.19034999999999999,3.4670000000000001,3.9529999999999998,4.593,5.4710000000000001,6.7489999999999997,8.7750000000000004,12.458 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1595,-0.94969999999999999,5.4706000000000001,0.19036,3.4660000000000002,3.9529999999999998,4.5919999999999996,5.4710000000000001,6.7489999999999997,8.7750000000000004,12.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1596,-0.95,5.47,0.19037000000000001,3.4660000000000002,3.952,4.5919999999999996,5.47,6.7480000000000002,8.7750000000000004,12.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1597,-0.95030000000000003,5.4695,0.19037999999999999,3.4660000000000002,3.952,4.5910000000000002,5.47,6.7480000000000002,8.7739999999999991,12.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1598,-0.95069999999999999,5.4688999999999997,0.19039,3.4649999999999999,3.952,4.5910000000000002,5.4690000000000003,6.7469999999999999,8.7739999999999991,12.462999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1599,-0.95099999999999996,5.4683000000000002,0.19040000000000001,3.4649999999999999,3.9510000000000001,4.59,5.468,6.7460000000000004,8.7739999999999991,12.464 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1600,-0.95130000000000003,5.4678000000000004,0.19041,3.4649999999999999,3.9510000000000001,4.59,5.468,6.7460000000000004,8.7739999999999991,12.465999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1601,-0.9516,5.4672000000000001,0.19041,3.4649999999999999,3.95,4.5890000000000004,5.4669999999999996,6.7450000000000001,8.7729999999999997,12.465999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1602,-0.95189999999999997,5.4667000000000003,0.19042000000000001,3.464,3.95,4.5890000000000004,5.4669999999999996,6.7450000000000001,8.7729999999999997,12.467000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1603,-0.95220000000000005,5.4661,0.19042999999999999,3.464,3.95,4.5890000000000004,5.4660000000000002,6.7439999999999998,8.7720000000000002,12.468999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1604,-0.95250000000000001,5.4656000000000002,0.19044,3.464,3.9489999999999998,4.5880000000000001,5.4660000000000002,6.7439999999999998,8.7720000000000002,12.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1605,-0.95279999999999998,5.4649999999999999,0.19045000000000001,3.4630000000000001,3.9489999999999998,4.5880000000000001,5.4649999999999999,6.7430000000000003,8.7720000000000002,12.471 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1606,-0.95320000000000005,5.4645000000000001,0.19045999999999999,3.4630000000000001,3.948,4.5869999999999997,5.4640000000000004,6.7430000000000003,8.7720000000000002,12.473000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1607,-0.95350000000000001,5.4638999999999998,0.19047,3.4630000000000001,3.948,4.5869999999999997,5.4640000000000004,6.742,8.7720000000000002,12.474 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1608,-0.95379999999999998,5.4634,0.19048000000000001,3.4620000000000002,3.948,4.5860000000000003,5.4630000000000001,6.742,8.7710000000000008,12.475 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1609,-0.95409999999999995,5.4627999999999997,0.19048999999999999,3.4620000000000002,3.9470000000000001,4.5860000000000003,5.4630000000000001,6.7409999999999997,8.7710000000000008,12.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1610,-0.95440000000000003,5.4622999999999999,0.1905,3.4620000000000002,3.9470000000000001,4.585,5.4619999999999997,6.74,8.7710000000000008,12.478 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1611,-0.95469999999999999,5.4618000000000002,0.19051000000000001,3.4609999999999999,3.9460000000000002,4.585,5.4619999999999997,6.74,8.7710000000000008,12.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1612,-0.95499999999999996,5.4611999999999998,0.19051999999999999,3.4609999999999999,3.9460000000000002,4.5839999999999996,5.4610000000000003,6.7389999999999999,8.77,12.48 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1613,-0.95530000000000004,5.4607000000000001,0.19053,3.4609999999999999,3.9460000000000002,4.5839999999999996,5.4610000000000003,6.7389999999999999,8.77,12.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1614,-0.9556,5.4600999999999997,0.19053999999999999,3.46,3.9449999999999998,4.5830000000000002,5.46,6.7380000000000004,8.77,12.483000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1615,-0.95599999999999996,5.4596,0.19055,3.46,3.9449999999999998,4.5830000000000002,5.46,6.7380000000000004,8.77,12.484999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1616,-0.95630000000000004,5.4589999999999996,0.19056000000000001,3.46,3.944,4.5819999999999999,5.4589999999999996,6.7370000000000001,8.7690000000000001,12.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1617,-0.95660000000000001,5.4584999999999999,0.19056999999999999,3.46,3.944,4.5819999999999999,5.4580000000000002,6.7370000000000001,8.7690000000000001,12.487 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1618,-0.95689999999999997,5.4579000000000004,0.19058,3.4590000000000001,3.944,4.5810000000000004,5.4580000000000002,6.7359999999999998,8.7690000000000001,12.489000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1619,-0.95720000000000005,5.4573999999999998,0.19059000000000001,3.4590000000000001,3.9430000000000001,4.5810000000000004,5.4569999999999999,6.7359999999999998,8.7690000000000001,12.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1620,-0.95750000000000002,5.4569000000000001,0.19059999999999999,3.4590000000000001,3.9430000000000001,4.5810000000000004,5.4569999999999999,6.7350000000000003,8.7690000000000001,12.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1621,-0.95779999999999998,5.4562999999999997,0.19061,3.4580000000000002,3.9420000000000002,4.58,5.4560000000000004,6.734,8.7680000000000007,12.493 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1622,-0.95809999999999995,5.4558,0.19062000000000001,3.4580000000000002,3.9420000000000002,4.58,5.4560000000000004,6.734,8.7680000000000007,12.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1623,-0.95840000000000003,5.4553000000000003,0.19062999999999999,3.4580000000000002,3.9420000000000002,4.5789999999999997,5.4550000000000001,6.7329999999999997,8.7680000000000007,12.494999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1624,-0.9587,5.4546999999999999,0.19064,3.4569999999999999,3.9409999999999998,4.5789999999999997,5.4550000000000001,6.7329999999999997,8.7669999999999995,12.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1625,-0.95909999999999995,5.4542000000000002,0.19064999999999999,3.4569999999999999,3.9409999999999998,4.5780000000000003,5.4539999999999997,6.7320000000000002,8.7669999999999995,12.497999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1626,-0.95940000000000003,5.4535999999999998,0.19066,3.4569999999999999,3.9409999999999998,4.5780000000000003,5.4539999999999997,6.7320000000000002,8.7669999999999995,12.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1627,-0.9597,5.4531000000000001,0.19067000000000001,3.456,3.94,4.577,5.4530000000000003,6.7309999999999999,8.7669999999999995,12.500999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1628,-0.96,5.4526000000000003,0.19067999999999999,3.456,3.94,4.577,5.4530000000000003,6.7309999999999999,8.7669999999999995,12.502000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1629,-0.96030000000000004,5.452,0.19069,3.456,3.9390000000000001,4.5759999999999996,5.452,6.73,8.766,12.504 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1630,-0.96060000000000001,5.4515000000000002,0.19070000000000001,3.4550000000000001,3.9390000000000001,4.5759999999999996,5.452,6.73,8.766,12.505000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1631,-0.96089999999999998,5.4509999999999996,0.19070999999999999,3.4550000000000001,3.9390000000000001,4.5750000000000002,5.4509999999999996,6.7290000000000001,8.766,12.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1632,-0.96120000000000005,5.4504000000000001,0.19072,3.4550000000000001,3.9380000000000002,4.5750000000000002,5.45,6.7290000000000001,8.766,12.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1633,-0.96150000000000002,5.4499000000000004,0.19072,3.4550000000000001,3.9380000000000002,4.5739999999999998,5.45,6.7279999999999998,8.7650000000000006,12.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1634,-0.96179999999999999,5.4493999999999998,0.19073000000000001,3.4540000000000002,3.9380000000000002,4.5739999999999998,5.4489999999999998,6.7279999999999998,8.7650000000000006,12.51 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1635,-0.96220000000000006,5.4489000000000001,0.19073999999999999,3.4540000000000002,3.9369999999999998,4.5739999999999998,5.4489999999999998,6.7270000000000003,8.7650000000000006,12.512 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1636,-0.96250000000000002,5.4482999999999997,0.19075,3.4540000000000002,3.9369999999999998,4.5730000000000004,5.4480000000000004,6.726,8.7650000000000006,12.513 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1637,-0.96279999999999999,5.4478,0.19076000000000001,3.4529999999999998,3.9359999999999999,4.5730000000000004,5.4480000000000004,6.726,8.7639999999999993,12.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1638,-0.96309999999999996,5.4473000000000003,0.19077,3.4529999999999998,3.9359999999999999,4.5720000000000001,5.4470000000000001,6.726,8.7639999999999993,12.516 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1639,-0.96340000000000003,5.4466999999999999,0.19078000000000001,3.4529999999999998,3.9359999999999999,4.5720000000000001,5.4470000000000001,6.7249999999999996,8.7639999999999993,12.516999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1640,-0.9637,5.4462000000000002,0.19078999999999999,3.452,3.9350000000000001,4.5709999999999997,5.4459999999999997,6.7240000000000002,8.7639999999999993,12.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1641,-0.96399999999999997,5.4457000000000004,0.1908,3.452,3.9350000000000001,4.5709999999999997,5.4459999999999997,6.7240000000000002,8.7639999999999993,12.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1642,-0.96430000000000005,5.4451999999999998,0.19081000000000001,3.452,3.9350000000000001,4.57,5.4450000000000003,6.7229999999999999,8.7629999999999999,12.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1643,-0.96460000000000001,5.4446000000000003,0.19081999999999999,3.452,3.9340000000000002,4.57,5.4450000000000003,6.7229999999999999,8.7629999999999999,12.522 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1644,-0.96489999999999998,5.4440999999999997,0.19083,3.4510000000000001,3.9340000000000002,4.569,5.444,6.7220000000000004,8.7629999999999999,12.523999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1645,-0.96519999999999995,5.4436,0.19084000000000001,3.4510000000000001,3.9329999999999998,4.569,5.444,6.7220000000000004,8.7629999999999999,12.525 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1646,-0.96560000000000001,5.4431000000000003,0.19084999999999999,3.4510000000000001,3.9329999999999998,4.5679999999999996,5.4429999999999996,6.7210000000000001,8.7629999999999999,12.526999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1647,-0.96589999999999998,5.4425999999999997,0.19086,3.45,3.9329999999999998,4.5679999999999996,5.4429999999999996,6.7210000000000001,8.7620000000000005,12.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1648,-0.96619999999999995,5.4420000000000002,0.19087000000000001,3.45,3.9319999999999999,4.5679999999999996,5.4420000000000002,6.72,8.7620000000000005,12.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1649,-0.96650000000000003,5.4414999999999996,0.19087999999999999,3.45,3.9319999999999999,4.5670000000000002,5.4420000000000002,6.72,8.7620000000000005,12.531000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1650,-0.96679999999999999,5.4409999999999998,0.19089,3.4489999999999998,3.931,4.5670000000000002,5.4409999999999998,6.7190000000000003,8.7620000000000005,12.532999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1651,-0.96709999999999996,5.4405000000000001,0.19089999999999999,3.4489999999999998,3.931,4.5659999999999998,5.44,6.7190000000000003,8.7620000000000005,12.534000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1652,-0.96740000000000004,5.44,0.19091,3.4489999999999998,3.931,4.5659999999999998,5.44,6.718,8.7609999999999992,12.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1653,-0.9677,5.4394999999999998,0.19092000000000001,3.4489999999999998,3.93,4.5650000000000004,5.44,6.718,8.7609999999999992,12.537000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1654,-0.96799999999999997,5.4389000000000003,0.19092999999999999,3.448,3.93,4.5650000000000004,5.4390000000000001,6.7169999999999996,8.7609999999999992,12.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1655,-0.96830000000000005,5.4383999999999997,0.19094,3.448,3.93,4.5640000000000001,5.4379999999999997,6.7169999999999996,8.7609999999999992,12.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1656,-0.96860000000000002,5.4379,0.19095000000000001,3.448,3.9289999999999998,4.5640000000000001,5.4379999999999997,6.7160000000000002,8.7609999999999992,12.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1657,-0.96889999999999998,5.4374000000000002,0.19095999999999999,3.4470000000000001,3.9289999999999998,4.5640000000000001,5.4370000000000003,6.7160000000000002,8.76,12.542 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1658,-0.96930000000000005,5.4368999999999996,0.19097,3.4470000000000001,3.9289999999999998,4.5629999999999997,5.4370000000000003,6.7149999999999999,8.76,12.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1659,-0.96960000000000002,5.4363999999999999,0.19098000000000001,3.4470000000000001,3.9279999999999999,4.5629999999999997,5.4359999999999999,6.7149999999999999,8.76,12.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1660,-0.96989999999999998,5.4359000000000002,0.19098000000000001,3.4470000000000001,3.9279999999999999,4.5620000000000003,5.4359999999999999,6.7140000000000004,8.76,12.547000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1661,-0.97019999999999995,5.4353999999999996,0.19098999999999999,3.4460000000000002,3.9279999999999999,4.5620000000000003,5.4349999999999996,6.7140000000000004,8.7590000000000003,12.548 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1662,-0.97050000000000003,5.4348999999999998,0.191,3.4460000000000002,3.927,4.5609999999999999,5.4349999999999996,6.7130000000000001,8.7590000000000003,12.548999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1663,-0.9708,5.4343000000000004,0.19101000000000001,3.4460000000000002,3.927,4.5609999999999999,5.4340000000000002,6.7130000000000001,8.7590000000000003,12.551 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1664,-0.97109999999999996,5.4337999999999997,0.19102,3.4449999999999998,3.9260000000000002,4.5599999999999996,5.4340000000000002,6.7119999999999997,8.7590000000000003,12.552 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1665,-0.97140000000000004,5.4333,0.19103000000000001,3.4449999999999998,3.9260000000000002,4.5599999999999996,5.4329999999999998,6.7119999999999997,8.7590000000000003,12.554 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1666,-0.97170000000000001,5.4328000000000003,0.19103999999999999,3.4449999999999998,3.9260000000000002,4.5599999999999996,5.4329999999999998,6.7110000000000003,8.7579999999999991,12.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1667,-0.97199999999999998,5.4322999999999997,0.19105,3.4449999999999998,3.9249999999999998,4.5590000000000002,5.4320000000000004,6.7110000000000003,8.7579999999999991,12.557 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1668,-0.97230000000000005,5.4318,0.19106000000000001,3.444,3.9249999999999998,4.5590000000000002,5.4320000000000004,6.71,8.7579999999999991,12.558 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1669,-0.97260000000000002,5.4313000000000002,0.19106999999999999,3.444,3.9249999999999998,4.5579999999999998,5.431,6.71,8.7579999999999991,12.558999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1670,-0.97289999999999999,5.4307999999999996,0.19108,3.444,3.9239999999999999,4.5579999999999998,5.431,6.7089999999999996,8.7579999999999991,12.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1671,-0.97330000000000005,5.4302999999999999,0.19109000000000001,3.4430000000000001,3.9239999999999999,4.5570000000000004,5.43,6.7089999999999996,8.7579999999999991,12.563000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1672,-0.97360000000000002,5.4298000000000002,0.19109999999999999,3.4430000000000001,3.923,4.5570000000000004,5.43,6.7080000000000002,8.7579999999999991,12.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1673,-0.97389999999999999,5.4292999999999996,0.19111,3.4430000000000001,3.923,4.556,5.4290000000000003,6.7080000000000002,8.7569999999999997,12.566000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1674,-0.97419999999999995,5.4287999999999998,0.19112000000000001,3.4430000000000001,3.923,4.556,5.4290000000000003,6.7069999999999999,8.7569999999999997,12.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1675,-0.97450000000000003,5.4283000000000001,0.19112999999999999,3.4420000000000002,3.9220000000000002,4.556,5.4279999999999999,6.7069999999999999,8.7569999999999997,12.569000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1676,-0.9748,5.4278000000000004,0.19114,3.4420000000000002,3.9220000000000002,4.5549999999999997,5.4279999999999999,6.7060000000000004,8.7569999999999997,12.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1677,-0.97509999999999997,5.4272999999999998,0.19114999999999999,3.4420000000000002,3.9220000000000002,4.5549999999999997,5.4269999999999996,6.7060000000000004,8.7569999999999997,12.571999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1678,-0.97540000000000004,5.4268000000000001,0.19116,3.4409999999999998,3.9209999999999998,4.5540000000000003,5.4269999999999996,6.7050000000000001,8.7560000000000002,12.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1679,-0.97570000000000001,5.4263000000000003,0.19117000000000001,3.4409999999999998,3.9209999999999998,4.5540000000000003,5.4260000000000002,6.7050000000000001,8.7560000000000002,12.574999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1680,-0.97599999999999998,5.4257999999999997,0.19117999999999999,3.4409999999999998,3.9209999999999998,4.5529999999999999,5.4260000000000002,6.7039999999999997,8.7560000000000002,12.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1681,-0.97629999999999995,5.4253,0.19119,3.44,3.92,4.5529999999999999,5.4249999999999998,6.7039999999999997,8.7560000000000002,12.577999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1682,-0.97660000000000002,5.4249000000000001,0.19120000000000001,3.44,3.92,4.5529999999999999,5.4249999999999998,6.7039999999999997,8.7560000000000002,12.579000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1683,-0.97689999999999999,5.4244000000000003,0.19120000000000001,3.44,3.92,4.5519999999999996,5.4240000000000004,6.7030000000000003,8.7550000000000008,12.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1684,-0.97719999999999996,5.4238999999999997,0.19120999999999999,3.44,3.919,4.5519999999999996,5.4240000000000004,6.7030000000000003,8.7550000000000008,12.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1685,-0.97750000000000004,5.4234,0.19122,3.4390000000000001,3.919,4.5510000000000002,5.423,6.702,8.7550000000000008,12.583 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1686,-0.97789999999999999,5.4229000000000003,0.19123000000000001,3.4390000000000001,3.919,4.5510000000000002,5.423,6.702,8.7550000000000008,12.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1687,-0.97819999999999996,5.4223999999999997,0.19123999999999999,3.4390000000000001,3.9180000000000001,4.55,5.4219999999999997,6.7009999999999996,8.7550000000000008,12.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1688,-0.97850000000000004,5.4218999999999999,0.19125,3.4390000000000001,3.9180000000000001,4.55,5.4219999999999997,6.7009999999999996,8.7550000000000008,12.587999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1689,-0.9788,5.4214000000000002,0.19126000000000001,3.4380000000000002,3.9169999999999998,4.55,5.4210000000000003,6.7,8.7550000000000008,12.59 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1690,-0.97909999999999997,5.4208999999999996,0.19127,3.4380000000000002,3.9169999999999998,4.5490000000000004,5.4210000000000003,6.7,8.7539999999999996,12.590999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1691,-0.97940000000000005,5.4204999999999997,0.19128000000000001,3.4380000000000002,3.9169999999999998,4.5490000000000004,5.42,6.6989999999999998,8.7539999999999996,12.593 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1692,-0.97970000000000002,5.42,0.19128999999999999,3.4369999999999998,3.9159999999999999,4.548,5.42,6.6989999999999998,8.7539999999999996,12.593999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1693,-0.98,5.4195000000000002,0.1913,3.4369999999999998,3.9159999999999999,4.548,5.42,6.6980000000000004,8.7539999999999996,12.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1694,-0.98029999999999995,5.4189999999999996,0.19131000000000001,3.4369999999999998,3.9159999999999999,4.5469999999999997,5.4189999999999996,6.6980000000000004,8.7539999999999996,12.597 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1695,-0.98060000000000003,5.4184999999999999,0.19131999999999999,3.4369999999999998,3.915,4.5469999999999997,5.4180000000000001,6.6970000000000001,8.7539999999999996,12.599 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1696,-0.98089999999999999,5.4180999999999999,0.19133,3.4359999999999999,3.915,4.5469999999999997,5.4180000000000001,6.6970000000000001,8.7539999999999996,12.601000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1697,-0.98119999999999996,5.4176000000000002,0.19134000000000001,3.4359999999999999,3.915,4.5460000000000003,5.4180000000000001,6.6959999999999997,8.7539999999999996,12.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1698,-0.98150000000000004,5.4170999999999996,0.19134999999999999,3.4359999999999999,3.9140000000000001,4.5460000000000003,5.4169999999999998,6.6959999999999997,8.7530000000000001,12.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1699,-0.98180000000000001,5.4165999999999999,0.19136,3.4359999999999999,3.9140000000000001,4.5449999999999999,5.4169999999999998,6.6950000000000003,8.7530000000000001,12.605 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1700,-0.98209999999999997,5.4161000000000001,0.19137000000000001,3.4350000000000001,3.9140000000000001,4.5449999999999999,5.4160000000000004,6.6950000000000003,8.7530000000000001,12.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1701,-0.98240000000000005,5.4157000000000002,0.19137999999999999,3.4350000000000001,3.9129999999999998,4.5449999999999999,5.4160000000000004,6.6950000000000003,8.7530000000000001,12.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1702,-0.98270000000000002,5.4151999999999996,0.19139,3.4350000000000001,3.9129999999999998,4.5439999999999996,5.415,6.694,8.7530000000000001,12.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1703,-0.98299999999999998,5.4146999999999998,0.19139999999999999,3.4340000000000002,3.9129999999999998,4.5439999999999996,5.415,6.694,8.7530000000000001,12.612 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1704,-0.98340000000000005,5.4142000000000001,0.19139999999999999,3.4340000000000002,3.9119999999999999,4.5430000000000001,5.4139999999999997,6.6929999999999996,8.7520000000000007,12.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1705,-0.98370000000000002,5.4138000000000002,0.19141,3.4340000000000002,3.9119999999999999,4.5430000000000001,5.4139999999999997,6.6929999999999996,8.7520000000000007,12.615 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1706,-0.98399999999999999,5.4132999999999996,0.19142000000000001,3.4340000000000002,3.9119999999999999,4.5430000000000001,5.4130000000000003,6.6920000000000002,8.7520000000000007,12.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1707,-0.98429999999999995,5.4127999999999998,0.19142999999999999,3.4329999999999998,3.911,4.5419999999999998,5.4130000000000003,6.6920000000000002,8.7520000000000007,12.618 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1708,-0.98460000000000003,5.4123999999999999,0.19144,3.4329999999999998,3.911,4.5419999999999998,5.4119999999999999,6.6909999999999998,8.7520000000000007,12.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1709,-0.9849,5.4119000000000002,0.19145000000000001,3.4329999999999998,3.911,4.5410000000000004,5.4119999999999999,6.6909999999999998,8.7520000000000007,12.621 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1710,-0.98519999999999996,5.4114000000000004,0.19145999999999999,3.4329999999999998,3.91,4.5410000000000004,5.4109999999999996,6.69,8.7520000000000007,12.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1711,-0.98550000000000004,5.4109999999999996,0.19147,3.4319999999999999,3.91,4.54,5.4109999999999996,6.69,8.7520000000000007,12.624000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1712,-0.98580000000000001,5.4104999999999999,0.19148000000000001,3.4319999999999999,3.91,4.54,5.41,6.69,8.7509999999999994,12.625999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1713,-0.98609999999999998,5.41,0.19148999999999999,3.4319999999999999,3.9089999999999998,4.54,5.41,6.6890000000000001,8.7509999999999994,12.627000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1714,-0.98640000000000005,5.4096000000000002,0.1915,3.4319999999999999,3.9089999999999998,4.5389999999999997,5.41,6.6890000000000001,8.7509999999999994,12.629 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1715,-0.98670000000000002,5.4090999999999996,0.19151000000000001,3.431,3.9089999999999998,4.5389999999999997,5.4089999999999998,6.6879999999999997,8.7509999999999994,12.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1716,-0.98699999999999999,5.4085999999999999,0.19152,3.431,3.9079999999999999,4.5380000000000003,5.4089999999999998,6.6879999999999997,8.7509999999999994,12.632 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1717,-0.98729999999999996,5.4081999999999999,0.19153000000000001,3.431,3.9079999999999999,4.5380000000000003,5.4080000000000004,6.6870000000000003,8.7509999999999994,12.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1718,-0.98760000000000003,5.4077000000000002,0.19153999999999999,3.43,3.9079999999999999,4.5380000000000003,5.4080000000000004,6.6870000000000003,8.7509999999999994,12.635 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1719,-0.9879,5.4071999999999996,0.19155,3.43,3.907,4.5369999999999999,5.407,6.6859999999999999,8.7509999999999994,12.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1720,-0.98819999999999997,5.4067999999999996,0.19156000000000001,3.43,3.907,4.5369999999999999,5.407,6.6859999999999999,8.7509999999999994,12.638999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1721,-0.98850000000000005,5.4062999999999999,0.19156999999999999,3.43,3.907,4.5359999999999996,5.4059999999999997,6.6859999999999999,8.75,12.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1722,-0.98880000000000001,5.4058999999999999,0.19158,3.4289999999999998,3.9060000000000001,4.5359999999999996,5.4059999999999997,6.6849999999999996,8.75,12.641999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1723,-0.98909999999999998,5.4054000000000002,0.19159000000000001,3.4289999999999998,3.9060000000000001,4.5359999999999996,5.4050000000000002,6.6849999999999996,8.75,12.644 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1724,-0.98939999999999995,5.4050000000000002,0.19159000000000001,3.4289999999999998,3.9060000000000001,4.5350000000000001,5.4050000000000002,6.6840000000000002,8.75,12.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1725,-0.98970000000000002,5.4044999999999996,0.19159999999999999,3.4289999999999998,3.9049999999999998,4.5350000000000001,5.4039999999999999,6.6840000000000002,8.75,12.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1726,-0.99,5.4039999999999999,0.19161,3.4279999999999999,3.9049999999999998,4.5339999999999998,5.4039999999999999,6.6829999999999998,8.75,12.648 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1727,-0.99029999999999996,5.4036,0.19162000000000001,3.4279999999999999,3.9049999999999998,4.5339999999999998,5.4039999999999999,6.6829999999999998,8.75,12.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1728,-0.99070000000000003,5.4031000000000002,0.19162999999999999,3.4279999999999999,3.9039999999999999,4.5339999999999998,5.4029999999999996,6.6820000000000004,8.75,12.651999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1729,-0.99099999999999999,5.4027000000000003,0.19164,3.4279999999999999,3.9039999999999999,4.5330000000000004,5.4029999999999996,6.6820000000000004,8.75,12.654 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1730,-0.99129999999999996,5.4021999999999997,0.19164999999999999,3.427,3.9039999999999999,4.5330000000000004,5.4020000000000001,6.6820000000000004,8.7490000000000006,12.654999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1731,-0.99160000000000004,5.4017999999999997,0.19166,3.427,3.903,4.532,5.4020000000000001,6.681,8.7490000000000006,12.657 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1732,-0.9919,5.4013,0.19167000000000001,3.427,3.903,4.532,5.4009999999999998,6.681,8.7490000000000006,12.657999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1733,-0.99219999999999997,5.4009,0.19167999999999999,3.427,3.903,4.532,5.4009999999999998,6.68,8.7490000000000006,12.66 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1734,-0.99250000000000005,5.4004000000000003,0.19169,3.4260000000000002,3.9020000000000001,4.5309999999999997,5.4,6.68,8.7490000000000006,12.662000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1735,-0.99280000000000002,5.4,0.19170000000000001,3.4260000000000002,3.9020000000000001,4.5309999999999997,5.4,6.68,8.7490000000000006,12.664 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1736,-0.99309999999999998,5.3994999999999997,0.19170999999999999,3.4260000000000002,3.9020000000000001,4.53,5.4,6.6790000000000003,8.7490000000000006,12.664999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1737,-0.99339999999999995,5.3990999999999998,0.19172,3.4260000000000002,3.9009999999999998,4.53,5.399,6.6790000000000003,8.7490000000000006,12.667 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1738,-0.99370000000000003,5.3986999999999998,0.19173000000000001,3.4249999999999998,3.9009999999999998,4.53,5.399,6.6779999999999999,8.7490000000000006,12.669 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1739,-0.99399999999999999,5.3982000000000001,0.19173999999999999,3.4249999999999998,3.9009999999999998,4.5289999999999999,5.3979999999999997,6.6779999999999999,8.7490000000000006,12.670999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1740,-0.99429999999999996,5.3978000000000002,0.19175,3.4249999999999998,3.9,4.5289999999999999,5.3979999999999997,6.6769999999999996,8.7490000000000006,12.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1741,-0.99460000000000004,5.3973000000000004,0.19176000000000001,3.4249999999999998,3.9,4.5279999999999996,5.3970000000000002,6.6769999999999996,8.7490000000000006,12.673999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1742,-0.99490000000000001,5.3968999999999996,0.19176000000000001,3.4239999999999999,3.9,4.5279999999999996,5.3970000000000002,6.6769999999999996,8.7479999999999993,12.675000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1743,-0.99519999999999997,5.3963999999999999,0.19177,3.4239999999999999,3.9,4.5279999999999996,5.3959999999999999,6.6760000000000002,8.7479999999999993,12.676 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1744,-0.99550000000000005,5.3959999999999999,0.19178000000000001,3.4239999999999999,3.899,4.5270000000000001,5.3959999999999999,6.6760000000000002,8.7479999999999993,12.678000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1745,-0.99580000000000002,5.3956,0.19178999999999999,3.4239999999999999,3.899,4.5270000000000001,5.3959999999999999,6.6749999999999998,8.7479999999999993,12.68 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1746,-0.99609999999999999,5.3951000000000002,0.1918,3.423,3.899,4.5270000000000001,5.3949999999999996,6.6749999999999998,8.7479999999999993,12.682 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1747,-0.99639999999999995,5.3947000000000003,0.19181000000000001,3.423,3.8980000000000001,4.5259999999999998,5.3949999999999996,6.6740000000000004,8.7479999999999993,12.683999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1748,-0.99670000000000003,5.3943000000000003,0.19181999999999999,3.423,3.8980000000000001,4.5259999999999998,5.3940000000000001,6.6740000000000004,8.7479999999999993,12.685 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1749,-0.997,5.3937999999999997,0.19183,3.423,3.8980000000000001,4.5250000000000004,5.3940000000000001,6.6740000000000004,8.7479999999999993,12.686999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1750,-0.99729999999999996,5.3933999999999997,0.19184000000000001,3.4220000000000002,3.8969999999999998,4.5250000000000004,5.3929999999999998,6.673,8.7479999999999993,12.689 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1751,-0.99760000000000004,5.3929999999999998,0.19184999999999999,3.4220000000000002,3.8969999999999998,4.5250000000000004,5.3929999999999998,6.673,8.7479999999999993,12.691000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1752,-0.99790000000000001,5.3925000000000001,0.19186,3.4220000000000002,3.8969999999999998,4.524,5.3920000000000003,6.6719999999999997,8.7479999999999993,12.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1753,-0.99819999999999998,5.3921000000000001,0.19187000000000001,3.4220000000000002,3.8959999999999999,4.524,5.3920000000000003,6.6719999999999997,8.7479999999999993,12.694000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1754,-0.99850000000000005,5.3917000000000002,0.19188,3.4209999999999998,3.8959999999999999,4.524,5.3920000000000003,6.6719999999999997,8.7479999999999993,12.696 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1755,-0.99880000000000002,5.3912000000000004,0.19189000000000001,3.4209999999999998,3.8959999999999999,4.5229999999999997,5.391,6.6710000000000003,8.7469999999999999,12.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1756,-0.99909999999999999,5.3907999999999996,0.19189999999999999,3.4209999999999998,3.895,4.5229999999999997,5.391,6.6710000000000003,8.7469999999999999,12.699 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1757,-0.99939999999999996,5.3903999999999996,0.19191,3.4209999999999998,3.895,4.5220000000000002,5.39,6.67,8.7469999999999999,12.701000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1758,-0.99970000000000003,5.39,0.19192000000000001,3.42,3.895,4.5220000000000002,5.39,6.67,8.7469999999999999,12.702999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1759,-1,5.3895,0.19192999999999999,3.42,3.895,4.5220000000000002,5.39,6.67,8.7469999999999999,12.705 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1760,-1.0003,5.3891,0.19192999999999999,3.42,3.8940000000000001,4.5209999999999999,5.3890000000000002,6.6689999999999996,8.7469999999999999,12.706 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1761,-1.0005999999999999,5.3887,0.19194,3.42,3.8940000000000001,4.5209999999999999,5.3890000000000002,6.6689999999999996,8.7469999999999999,12.708 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1762,-1.0008999999999999,5.3883000000000001,0.19195000000000001,3.42,3.8940000000000001,4.5209999999999999,5.3879999999999999,6.6680000000000001,8.7469999999999999,12.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1763,-1.0012000000000001,5.3878000000000004,0.19195999999999999,3.419,3.8929999999999998,4.5199999999999996,5.3879999999999999,6.6680000000000001,8.7469999999999999,12.711 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1764,-1.0015000000000001,5.3874000000000004,0.19197,3.419,3.8929999999999998,4.5199999999999996,5.3869999999999996,6.6680000000000001,8.7469999999999999,12.712999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1765,-1.0018,5.3869999999999996,0.19198000000000001,3.419,3.8929999999999998,4.5190000000000001,5.3869999999999996,6.6669999999999998,8.7469999999999999,12.715 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1766,-1.0021,5.3865999999999996,0.19198999999999999,3.419,3.8919999999999999,4.5190000000000001,5.3869999999999996,6.6669999999999998,8.7469999999999999,12.717000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1767,-1.0024,5.3861999999999997,0.192,3.4180000000000001,3.8919999999999999,4.5190000000000001,5.3860000000000001,6.6660000000000004,8.7469999999999999,12.718999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1768,-1.0026999999999999,5.3856999999999999,0.19200999999999999,3.4180000000000001,3.8919999999999999,4.5179999999999998,5.3860000000000001,6.6660000000000004,8.7469999999999999,12.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1769,-1.0029999999999999,5.3853,0.19202,3.4180000000000001,3.8919999999999999,4.5179999999999998,5.3849999999999998,6.6660000000000004,8.7469999999999999,12.722 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1770,-1.0033000000000001,5.3849,0.19203000000000001,3.4180000000000001,3.891,4.5179999999999998,5.3849999999999998,6.665,8.7469999999999999,12.724 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1771,-1.0036,5.3845000000000001,0.19203999999999999,3.4169999999999998,3.891,4.5170000000000003,5.3840000000000003,6.665,8.7469999999999999,12.726000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1772,-1.0039,5.3841000000000001,0.19205,3.4169999999999998,3.891,4.5170000000000003,5.3840000000000003,6.665,8.7469999999999999,12.728 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1773,-1.0042,5.3837000000000002,0.19206000000000001,3.4169999999999998,3.89,4.5170000000000003,5.3840000000000003,6.6639999999999997,8.7469999999999999,12.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1774,-1.0044999999999999,5.3832000000000004,0.19206999999999999,3.4169999999999998,3.89,4.516,5.383,6.6639999999999997,8.7460000000000004,12.731 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1775,-1.0048999999999999,5.3827999999999996,0.19208,3.4159999999999999,3.89,4.516,5.383,6.6630000000000003,8.7469999999999999,12.734 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1776,-1.0052000000000001,5.3823999999999996,0.19208,3.4159999999999999,3.89,4.5149999999999997,5.3819999999999997,6.6630000000000003,8.7460000000000004,12.734999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1777,-1.0055000000000001,5.3819999999999997,0.19209000000000001,3.4159999999999999,3.8889999999999998,4.5149999999999997,5.3819999999999997,6.6630000000000003,8.7460000000000004,12.737 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1778,-1.0058,5.3815999999999997,0.19209999999999999,3.4159999999999999,3.8889999999999998,4.5149999999999997,5.3819999999999997,6.6619999999999999,8.7460000000000004,12.739000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1779,-1.0061,5.3811999999999998,0.19211,3.4159999999999999,3.8889999999999998,4.5140000000000002,5.3810000000000002,6.6619999999999999,8.7460000000000004,12.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1780,-1.0064,5.3807999999999998,0.19212000000000001,3.415,3.8879999999999999,4.5140000000000002,5.3810000000000002,6.6609999999999996,8.7460000000000004,12.742000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1781,-1.0066999999999999,5.3803999999999998,0.19213,3.415,3.8879999999999999,4.5140000000000002,5.38,6.6609999999999996,8.7460000000000004,12.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1782,-1.0069999999999999,5.38,0.19214000000000001,3.415,3.8879999999999999,4.5129999999999999,5.38,6.6609999999999996,8.7460000000000004,12.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1783,-1.0073000000000001,5.3795999999999999,0.19214999999999999,3.415,3.8879999999999999,4.5129999999999999,5.38,6.66,8.7460000000000004,12.747999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1784,-1.0076000000000001,5.3792,0.19216,3.4140000000000001,3.887,4.5129999999999999,5.3789999999999996,6.66,8.7460000000000004,12.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1785,-1.0079,5.3788,0.19217000000000001,3.4140000000000001,3.887,4.5119999999999996,5.3789999999999996,6.66,8.7460000000000004,12.752000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1786,-1.0082,5.3784000000000001,0.19217999999999999,3.4140000000000001,3.887,4.5119999999999996,5.3780000000000001,6.6589999999999998,8.7460000000000004,12.754 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1787,-1.0085,5.3780000000000001,0.19219,3.4140000000000001,3.8860000000000001,4.5119999999999996,5.3780000000000001,6.6589999999999998,8.7460000000000004,12.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1788,-1.0087999999999999,5.3775000000000004,0.19220000000000001,3.4140000000000001,3.8860000000000001,4.5110000000000001,5.3780000000000001,6.6580000000000004,8.7460000000000004,12.757 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1789,-1.0091000000000001,5.3771000000000004,0.19220999999999999,3.4129999999999998,3.8860000000000001,4.5110000000000001,5.3769999999999998,6.6580000000000004,8.7460000000000004,12.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1790,-1.0094000000000001,5.3766999999999996,0.19222,3.4129999999999998,3.8849999999999998,4.51,5.3769999999999998,6.6580000000000004,8.7460000000000004,12.760999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1791,-1.0097,5.3764000000000003,0.19223000000000001,3.4129999999999998,3.8849999999999998,4.51,5.3760000000000003,6.657,8.7460000000000004,12.763 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1792,-1.01,5.3760000000000003,0.19223000000000001,3.4129999999999998,3.8849999999999998,4.51,5.3760000000000003,6.657,8.7460000000000004,12.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1793,-1.0103,5.3756000000000004,0.19223999999999999,3.4119999999999999,3.8849999999999998,4.51,5.3760000000000003,6.657,8.7460000000000004,12.766 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1794,-1.0105999999999999,5.3752000000000004,0.19225,3.4119999999999999,3.8839999999999999,4.5090000000000003,5.375,6.6559999999999997,8.7460000000000004,12.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1795,-1.0108999999999999,5.3747999999999996,0.19225999999999999,3.4119999999999999,3.8839999999999999,4.5090000000000003,5.375,6.6559999999999997,8.7460000000000004,12.77 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1796,-1.0112000000000001,5.3743999999999996,0.19227,3.4119999999999999,3.8839999999999999,4.508,5.3739999999999997,6.6559999999999997,8.7460000000000004,12.772 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1797,-1.0115000000000001,5.3739999999999997,0.19228000000000001,3.4119999999999999,3.883,4.508,5.3739999999999997,6.6550000000000002,8.7460000000000004,12.773999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1798,-1.0118,5.3735999999999997,0.19228999999999999,3.411,3.883,4.508,5.3739999999999997,6.6550000000000002,8.7460000000000004,12.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1799,-1.012,5.3731999999999998,0.1923,3.411,3.883,4.5069999999999997,5.3730000000000002,6.6539999999999999,8.7460000000000004,12.776999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1800,-1.0123,5.3727999999999998,0.19231000000000001,3.411,3.883,4.5069999999999997,5.3730000000000002,6.6539999999999999,8.7460000000000004,12.779 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1801,-1.0125999999999999,5.3723999999999998,0.19231999999999999,3.411,3.8820000000000001,4.5069999999999997,5.3719999999999999,6.6539999999999999,8.7460000000000004,12.781000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1802,-1.0128999999999999,5.3719999999999999,0.19233,3.41,3.8820000000000001,4.5060000000000002,5.3719999999999999,6.6529999999999996,8.7460000000000004,12.782999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1803,-1.0132000000000001,5.3715999999999999,0.19234000000000001,3.41,3.8820000000000001,4.5060000000000002,5.3719999999999999,6.6529999999999996,8.7460000000000004,12.785 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1804,-1.0135000000000001,5.3712,0.19234999999999999,3.41,3.8809999999999998,4.5060000000000002,5.3710000000000004,6.6529999999999996,8.7460000000000004,12.787000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1805,-1.0138,5.3708,0.19236,3.41,3.8809999999999998,4.5049999999999999,5.3710000000000004,6.6520000000000001,8.7460000000000004,12.789 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1806,-1.0141,5.3704999999999998,0.19237000000000001,3.41,3.8809999999999998,4.5049999999999999,5.37,6.6520000000000001,8.7460000000000004,12.791 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1807,-1.0144,5.3700999999999999,0.19237000000000001,3.4089999999999998,3.8809999999999998,4.5049999999999999,5.37,6.6520000000000001,8.7460000000000004,12.792 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1808,-1.0146999999999999,5.3696999999999999,0.19238,3.4089999999999998,3.88,4.5039999999999996,5.37,6.6509999999999998,8.7460000000000004,12.794 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1809,-1.0149999999999999,5.3693,0.19239000000000001,3.4089999999999998,3.88,4.5039999999999996,5.3689999999999998,6.6509999999999998,8.7460000000000004,12.795999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1810,-1.0153000000000001,5.3689,0.19239999999999999,3.4089999999999998,3.88,4.5039999999999996,5.3689999999999998,6.65,8.7460000000000004,12.798 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1811,-1.0156000000000001,5.3685,0.19241,3.4079999999999999,3.88,4.5030000000000001,5.3680000000000003,6.65,8.7460000000000004,12.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1812,-1.0159,5.3681999999999999,0.19242000000000001,3.4079999999999999,3.879,4.5030000000000001,5.3680000000000003,6.65,8.7460000000000004,12.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1813,-1.0162,5.3677999999999999,0.19242999999999999,3.4079999999999999,3.879,4.5030000000000001,5.3680000000000003,6.65,8.7460000000000004,12.804 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1814,-1.0165,5.3673999999999999,0.19244,3.4079999999999999,3.879,4.5019999999999998,5.367,6.649,8.7460000000000004,12.805999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1815,-1.0167999999999999,5.367,0.19245000000000001,3.4079999999999999,3.8780000000000001,4.5019999999999998,5.367,6.649,8.7460000000000004,12.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1816,-1.0170999999999999,5.3666,0.19245999999999999,3.407,3.8780000000000001,4.5019999999999998,5.367,6.6479999999999997,8.7460000000000004,12.81 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1817,-1.0174000000000001,5.3662000000000001,0.19247,3.407,3.8780000000000001,4.5010000000000003,5.3659999999999997,6.6479999999999997,8.7460000000000004,12.811999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1818,-1.0177,5.3658999999999999,0.19248000000000001,3.407,3.8780000000000001,4.5010000000000003,5.3659999999999997,6.6479999999999997,8.7460000000000004,12.814 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1819,-1.018,5.3654999999999999,0.19248999999999999,3.407,3.8769999999999998,4.5010000000000003,5.3659999999999997,6.6470000000000002,8.7460000000000004,12.816000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1820,-1.0183,5.3651,0.1925,3.407,3.8769999999999998,4.5,5.3650000000000002,6.6470000000000002,8.7460000000000004,12.818 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1821,-1.0185999999999999,5.3647,0.1925,3.4060000000000001,3.8769999999999998,4.5,5.3650000000000002,6.6470000000000002,8.7460000000000004,12.819000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1822,-1.0188999999999999,5.3643999999999998,0.19250999999999999,3.4060000000000001,3.8769999999999998,4.5,5.3639999999999999,6.6459999999999999,8.7460000000000004,12.821999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1823,-1.0192000000000001,5.3639999999999999,0.19252,3.4060000000000001,3.8759999999999999,4.4989999999999997,5.3639999999999999,6.6459999999999999,8.7460000000000004,12.824 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1824,-1.0195000000000001,5.3635999999999999,0.19253000000000001,3.4060000000000001,3.8759999999999999,4.4989999999999997,5.3639999999999999,6.6459999999999999,8.7460000000000004,12.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1825,-1.0198,5.3632,0.19253999999999999,3.4060000000000001,3.8759999999999999,4.4989999999999997,5.3630000000000004,6.6449999999999996,8.7460000000000004,12.827999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1826,-1.0201,5.3628999999999998,0.19255,3.4049999999999998,3.8759999999999999,4.4980000000000002,5.3630000000000004,6.6449999999999996,8.7460000000000004,12.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1827,-1.0204,5.3624999999999998,0.19256000000000001,3.4049999999999998,3.875,4.4980000000000002,5.3620000000000001,6.6449999999999996,8.7460000000000004,12.832000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1828,-1.0206999999999999,5.3620999999999999,0.19256999999999999,3.4049999999999998,3.875,4.4980000000000002,5.3620000000000001,6.6440000000000001,8.7460000000000004,12.834 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1829,-1.0209999999999999,5.3617999999999997,0.19258,3.4049999999999998,3.875,4.4969999999999999,5.3620000000000001,6.6440000000000001,8.7469999999999999,12.836 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1830,-1.0213000000000001,5.3613999999999997,0.19259000000000001,3.4049999999999998,3.8740000000000001,4.4969999999999999,5.3609999999999998,6.6440000000000001,8.7469999999999999,12.837999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1831,-1.0216000000000001,5.3609999999999998,0.19259999999999999,3.4039999999999999,3.8740000000000001,4.4969999999999999,5.3609999999999998,6.6429999999999998,8.7469999999999999,12.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1832,-1.0219,5.3605999999999998,0.19261,3.4039999999999999,3.8740000000000001,4.4960000000000004,5.3609999999999998,6.6429999999999998,8.7469999999999999,12.842000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1833,-1.0222,5.3602999999999996,0.19262000000000001,3.4039999999999999,3.8740000000000001,4.4960000000000004,5.36,6.6429999999999998,8.7469999999999999,12.843999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1834,-1.0225,5.3598999999999997,0.19263,3.4039999999999999,3.8730000000000002,4.4960000000000004,5.36,6.6420000000000003,8.7469999999999999,12.846 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1835,-1.0227999999999999,5.3594999999999997,0.19263,3.4039999999999999,3.8730000000000002,4.4950000000000001,5.36,6.6420000000000003,8.7460000000000004,12.847 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1836,-1.0230999999999999,5.3592000000000004,0.19264000000000001,3.403,3.8730000000000002,4.4950000000000001,5.359,6.6420000000000003,8.7469999999999999,12.85 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1837,-1.0234000000000001,5.3587999999999996,0.19264999999999999,3.403,3.8730000000000002,4.4950000000000001,5.359,6.641,8.7469999999999999,12.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1838,-1.0237000000000001,5.3585000000000003,0.19266,3.403,3.8719999999999999,4.4939999999999998,5.3579999999999997,6.641,8.7469999999999999,12.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1839,-1.024,5.3581000000000003,0.19267000000000001,3.403,3.8719999999999999,4.4939999999999998,5.3579999999999997,6.641,8.7469999999999999,12.856 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1840,-1.0243,5.3577000000000004,0.19267999999999999,3.403,3.8719999999999999,4.4939999999999998,5.3579999999999997,6.64,8.7469999999999999,12.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1841,-1.0246,5.3574000000000002,0.19269,3.4020000000000001,3.8719999999999999,4.4930000000000003,5.3570000000000002,6.64,8.7469999999999999,12.86 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1842,-1.0248999999999999,5.3570000000000002,0.19270000000000001,3.4020000000000001,3.871,4.4930000000000003,5.3570000000000002,6.64,8.7469999999999999,12.862 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1843,-1.0251999999999999,5.3566000000000003,0.19270999999999999,3.4020000000000001,3.871,4.4930000000000003,5.3570000000000002,6.6390000000000002,8.7469999999999999,12.864000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1844,-1.0255000000000001,5.3563000000000001,0.19272,3.4020000000000001,3.871,4.4930000000000003,5.3559999999999999,6.6390000000000002,8.7469999999999999,12.867000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1845,-1.0258,5.3559000000000001,0.19273000000000001,3.4020000000000001,3.871,4.492,5.3559999999999999,6.6390000000000002,8.7469999999999999,12.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1846,-1.0261,5.3555999999999999,0.19273999999999999,3.4009999999999998,3.87,4.492,5.3559999999999999,6.6390000000000002,8.7469999999999999,12.871 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1847,-1.0263,5.3552,0.19275,3.4009999999999998,3.87,4.492,5.3550000000000004,6.6379999999999999,8.7469999999999999,12.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1848,-1.0266,5.3548999999999998,0.19275,3.4009999999999998,3.87,4.4909999999999997,5.3550000000000004,6.6379999999999999,8.7469999999999999,12.874000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1849,-1.0268999999999999,5.3544999999999998,0.19275999999999999,3.4009999999999998,3.87,4.4909999999999997,5.3540000000000001,6.6379999999999999,8.7469999999999999,12.875999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1850,-1.0271999999999999,5.3540999999999999,0.19277,3.4009999999999998,3.8690000000000002,4.4909999999999997,5.3540000000000001,6.6369999999999996,8.7469999999999999,12.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1851,-1.0275000000000001,5.3537999999999997,0.19278000000000001,3.4,3.8690000000000002,4.49,5.3540000000000001,6.6369999999999996,8.7469999999999999,12.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1852,-1.0278,5.3533999999999997,0.19278999999999999,3.4,3.8690000000000002,4.49,5.3529999999999998,6.6369999999999996,8.7469999999999999,12.882 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1853,-1.0281,5.3531000000000004,0.1928,3.4,3.8690000000000002,4.49,5.3529999999999998,6.6360000000000001,8.7479999999999993,12.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1854,-1.0284,5.3526999999999996,0.19281000000000001,3.4,3.8679999999999999,4.4889999999999999,5.3529999999999998,6.6360000000000001,8.7479999999999993,12.885999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1855,-1.0286999999999999,5.3524000000000003,0.19281999999999999,3.4,3.8679999999999999,4.4889999999999999,5.3520000000000003,6.6360000000000001,8.7479999999999993,12.888999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/subscapular-skinfold-for-age/expanded-tables/ssfa-boys-zscore-expanded-table.xlsx,expanded,male,day,1856,-1.0289999999999999,5.3520000000000003,0.19283,3.399,3.8679999999999999,4.4889999999999999,5.3520000000000003,6.6349999999999998,8.7479999999999993,12.891 diff --git a/priv/growth/indicators/triceps_skinfold_for_age.csv b/priv/growth/indicators/triceps_skinfold_for_age.csv new file mode 100644 index 0000000..151f9af --- /dev/null +++ b/priv/growth/indicators/triceps_skinfold_for_age.csv @@ -0,0 +1,3649 @@ +source,category,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-girls-3-5-zscores.xlsx,age,female,month,3,0.1875,9.7515999999999998,0.17535000000000001,5.6,6.8,8.1999999999999993,9.8000000000000007,11.6,13.7,16.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,4,0.12559999999999999,9.5866000000000007,0.18337000000000001,5.4,6.6,8,9.6,11.5,13.7,16.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,5,0.076100000000000001,9.3716000000000008,0.19006999999999999,5.2,6.4,7.7,9.4,11.3,13.6,16.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,6,0.0349,9.1194000000000006,0.19539999999999999,5,6.2,7.5,9.1,11.1,13.4,16.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,7,-0.00029999999999999997,8.8620999999999999,0.19933999999999999,4.9000000000000004,5.9,7.3,8.9,10.8,13.2,16.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,8,-0.030700000000000002,8.6227999999999998,0.20191999999999999,4.7,5.8,7.1,8.6,10.6,12.9,15.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,9,-0.057200000000000001,8.4163999999999994,0.20338999999999999,4.5999999999999996,5.6,6.9,8.4,10.3,12.7,15.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,age,female,month,10,-0.079899999999999999,8.2468000000000004,0.20413000000000001,4.5,5.5,6.7,8.1999999999999993,10.1,12.5,15.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,age,female,month,11,-0.099500000000000005,8.1113999999999997,0.20441999999999999,4.5,5.4,6.6,8.1,10,12.3,15.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,12,-0.11609999999999999,8.0042000000000009,0.20444999999999999,4.4000000000000004,5.4,6.5,8,9.8000000000000007,12.2,15.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,13,-0.1303,7.9196999999999997,0.20432,4.4000000000000004,5.3,6.5,7.9,9.6999999999999993,12.1,15 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,14,-0.1424,7.8537999999999997,0.20408999999999999,4.4000000000000004,5.3,6.4,7.9,9.6999999999999993,12,14.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,15,-0.1527,7.8041,0.20383999999999999,4.3,5.3,6.4,7.8,9.6,11.9,14.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,16,-0.1615,7.7680999999999996,0.20363000000000001,4.3,5.2,6.4,7.8,9.6,11.8,14.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,17,-0.16900000000000001,7.7443,0.20349999999999999,4.3,5.2,6.3,7.7,9.5,11.8,14.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,18,-0.17549999999999999,7.7314999999999996,0.20349999999999999,4.3,5.2,6.3,7.7,9.5,11.8,14.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,age,female,month,19,-0.18110000000000001,7.7286999999999999,0.20363999999999999,4.3,5.2,6.3,7.7,9.5,11.8,14.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,20,-0.18590000000000001,7.7347000000000001,0.20393,4.3,5.2,6.3,7.7,9.5,11.8,14.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,21,-0.19009999999999999,7.7484000000000002,0.20437,4.3,5.2,6.3,7.7,9.5,11.9,14.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,22,-0.19389999999999999,7.7691999999999997,0.20496,4.3,5.2,6.4,7.8,9.6,11.9,15 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,23,-0.1973,7.7957999999999998,0.20568,4.4000000000000004,5.2,6.4,7.8,9.6,12,15.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,24,-0.20039999999999999,7.8273000000000001,0.20652000000000001,4.4000000000000004,5.3,6.4,7.8,9.6999999999999993,12,15.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,25,-0.20319999999999999,7.8628,0.20748,4.4000000000000004,5.3,6.4,7.9,9.6999999999999993,12.1,15.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,26,-0.20580000000000001,7.9005999999999998,0.20855000000000001,4.4000000000000004,5.3,6.4,7.9,9.8000000000000007,12.2,15.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,27,-0.20810000000000001,7.9396000000000004,0.20971000000000001,4.4000000000000004,5.3,6.5,7.9,9.8000000000000007,12.3,15.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,28,-0.21029999999999999,7.9786000000000001,0.21096000000000001,4.4000000000000004,5.3,6.5,8,9.9,12.4,15.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,age,female,month,29,-0.2122,8.0167000000000002,0.21228,4.4000000000000004,5.3,6.5,8,10,12.5,15.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,30,-0.214,8.0534999999999997,0.21365999999999999,4.4000000000000004,5.4,6.5,8.1,10,12.6,16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,31,-0.2155,8.0886999999999993,0.21509,4.4000000000000004,5.4,6.6,8.1,10.1,12.7,16.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,32,-0.217,8.1224000000000007,0.21657000000000001,4.4000000000000004,5.4,6.6,8.1,10.1,12.8,16.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,33,-0.21829999999999999,8.1545000000000005,0.21809000000000001,4.4000000000000004,5.4,6.6,8.1999999999999993,10.199999999999999,12.9,16.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,age,female,month,34,-0.2195,8.1854999999999993,0.21964,4.4000000000000004,5.4,6.6,8.1999999999999993,10.3,13,16.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,age,female,month,35,-0.22070000000000001,8.2156000000000002,0.22122,4.4000000000000004,5.4,6.6,8.1999999999999993,10.3,13.1,16.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,36,-0.22170000000000001,8.2449999999999992,0.22281999999999999,4.4000000000000004,5.4,6.6,8.1999999999999993,10.4,13.2,17 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,37,-0.22270000000000001,8.2737999999999996,0.22444,4.4000000000000004,5.4,6.6,8.3000000000000007,10.4,13.3,17.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,38,-0.22370000000000001,8.3018999999999998,0.22608,4.4000000000000004,5.4,6.7,8.3000000000000007,10.5,13.4,17.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,39,-0.22459999999999999,8.3293999999999997,0.22772000000000001,4.4000000000000004,5.4,6.7,8.3000000000000007,10.5,13.5,17.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,age,female,month,40,-0.22539999999999999,8.3559999999999999,0.22936999999999999,4.4000000000000004,5.4,6.7,8.4,10.6,13.6,17.600000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,41,-0.22620000000000001,8.3818000000000001,0.23100999999999999,4.4000000000000004,5.4,6.7,8.4,10.6,13.7,17.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,42,-0.22700000000000001,8.4068000000000005,0.23264000000000001,4.4000000000000004,5.4,6.7,8.4,10.7,13.7,18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,43,-0.2278,8.4311000000000007,0.23427000000000001,4.4000000000000004,5.4,6.7,8.4,10.7,13.8,18.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,44,-0.22850000000000001,8.4550000000000001,0.23587,4.4000000000000004,5.4,6.7,8.5,10.8,13.9,18.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,45,-0.22919999999999999,8.4786000000000001,0.23746999999999999,4.4000000000000004,5.4,6.7,8.5,10.8,14,18.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,age,female,month,46,-0.2298,8.5018999999999991,0.23904,4.4000000000000004,5.4,6.7,8.5,10.9,14.1,18.600000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,47,-0.23039999999999999,8.5250000000000004,0.24060000000000001,4.4000000000000004,5.4,6.7,8.5,10.9,14.2,18.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,48,-0.23100000000000001,8.5480999999999998,0.24215,4.4000000000000004,5.4,6.8,8.5,11,14.3,18.899999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,49,-0.2316,8.5710999999999995,0.24367,4.4000000000000004,5.4,6.8,8.6,11,14.4,19.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,50,-0.2321,8.5942000000000007,0.24517,4.4000000000000004,5.4,6.8,8.6,11.1,14.5,19.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,51,-0.2326,8.6173999999999999,0.24665000000000001,4.4000000000000004,5.4,6.8,8.6,11.1,14.6,19.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,52,-0.2331,8.6405999999999992,0.24811,4.3,5.4,6.8,8.6,11.2,14.6,19.600000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,53,-0.2336,8.6640999999999995,0.24954000000000001,4.3,5.4,6.8,8.6999999999999993,11.2,14.7,19.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,age,female,month,54,-0.2341,8.6875999999999998,0.25095000000000001,4.3,5.4,6.8,8.6999999999999993,11.3,14.8,19.899999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,55,-0.2346,8.7111999999999998,0.25233,4.3,5.4,6.8,8.6999999999999993,11.3,14.9,20 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,56,-0.23499999999999999,8.7348999999999997,0.25369000000000003,4.3,5.4,6.8,8.6999999999999993,11.3,15,20.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,female,month,57,-0.23549999999999999,8.7585999999999995,0.25502000000000002,4.3,5.4,6.8,8.8000000000000007,11.4,15.1,20.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-girls-3-5-zscores.xlsx,age,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,age,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,age,female,month,60,-0.23680000000000001,8.8298000000000005,0.25886999999999999,4.3,5.4,6.9,8.8000000000000007,11.5,15.3,20.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,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,age,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,age,male,month,5,-0.032599999999999997,9.3885000000000005,0.17824000000000001,5.5,6.6,7.9,9.4,11.2,13.4,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,age,male,month,6,-0.046600000000000003,9.1729000000000003,0.18304000000000001,5.3,6.4,7.6,9.1999999999999993,11,13.3,16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,7,-0.058999999999999997,8.9535,0.18684999999999999,5.2,6.2,7.4,9,10.8,13.1,15.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,8,-0.070300000000000001,8.7434999999999992,0.18967999999999999,5,6,7.2,8.6999999999999993,10.6,12.8,15.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,9,-0.080600000000000005,8.5518000000000001,0.19166,4.9000000000000004,5.9,7.1,8.6,10.4,12.6,15.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,10,-0.0901,8.3811999999999998,0.193,4.8,5.7,6.9,8.4,10.199999999999999,12.4,15.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,11,-0.099000000000000005,8.2323000000000004,0.19389000000000001,4.7,5.6,6.8,8.1999999999999993,10,12.2,15 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,12,-0.10730000000000001,8.1041000000000007,0.19453000000000001,4.5999999999999996,5.5,6.7,8.1,9.9,12.1,14.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,13,-0.1152,7.9958,0.19506000000000001,4.5,5.5,6.6,8,9.6999999999999993,11.9,14.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,14,-0.1227,7.9063999999999997,0.19558,4.5,5.4,6.5,7.9,9.6,11.8,14.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,15,-0.12970000000000001,7.8345000000000002,0.19611999999999999,4.4000000000000004,5.3,6.5,7.8,9.6,11.7,14.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,16,-0.13650000000000001,7.7781000000000002,0.19667999999999999,4.4000000000000004,5.3,6.4,7.8,9.5,11.7,14.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,17,-0.14299999999999999,7.7351000000000001,0.19728000000000001,4.4000000000000004,5.3,6.4,7.7,9.4,11.6,14.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,18,-0.1492,7.7035999999999998,0.19792999999999999,4.4000000000000004,5.2,6.3,7.7,9.4,11.6,14.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,19,-0.1552,7.6821000000000002,0.19861999999999999,4.3,5.2,6.3,7.7,9.4,11.6,14.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,20,-0.16089999999999999,7.6696999999999997,0.19936999999999999,4.3,5.2,6.3,7.7,9.4,11.6,14.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,21,-0.16650000000000001,7.6651999999999996,0.20018,4.3,5.2,6.3,7.7,9.4,11.6,14.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,22,-0.1719,7.6675000000000004,0.20105000000000001,4.3,5.2,6.3,7.7,9.4,11.6,14.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,23,-0.17710000000000001,7.6749999999999998,0.20196,4.3,5.2,6.3,7.7,9.4,11.7,14.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,24,-0.18210000000000001,7.6863000000000001,0.20293,4.3,5.2,6.3,7.7,9.5,11.7,14.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,25,-0.187,7.7003000000000004,0.20394000000000001,4.3,5.2,6.3,7.7,9.5,11.8,14.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,26,-0.1918,7.7156000000000002,0.20497000000000001,4.3,5.2,6.3,7.7,9.5,11.8,14.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,27,-0.19650000000000001,7.7312000000000003,0.20602999999999999,4.3,5.2,6.3,7.7,9.5,11.9,14.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,28,-0.20100000000000001,7.7462999999999997,0.20710000000000001,4.3,5.2,6.3,7.7,9.6,11.9,15 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,29,-0.2054,7.7602000000000002,0.20818,4.3,5.2,6.3,7.8,9.6,12,15.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,30,-0.2097,7.7725999999999997,0.20927999999999999,4.3,5.2,6.3,7.8,9.6,12,15.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,31,-0.21390000000000001,7.7831999999999999,0.21038999999999999,4.3,5.2,6.3,7.8,9.6999999999999993,12.1,15.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,32,-0.218,7.7919999999999998,0.21153,4.3,5.2,6.3,7.8,9.6999999999999993,12.1,15.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,33,-0.22209999999999999,7.7988999999999997,0.21268999999999999,4.3,5.2,6.3,7.8,9.6999999999999993,12.2,15.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,34,-0.22600000000000001,7.8040000000000003,0.21389,4.3,5.2,6.3,7.8,9.6999999999999993,12.2,15.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,35,-0.22989999999999999,7.8074000000000003,0.21512999999999999,4.3,5.2,6.3,7.8,9.6999999999999993,12.3,15.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,36,-0.2336,7.8094000000000001,0.21640999999999999,4.3,5.2,6.3,7.8,9.8000000000000007,12.3,15.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,37,-0.2374,7.8101000000000003,0.21773000000000001,4.3,5.2,6.3,7.8,9.8000000000000007,12.4,15.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,38,-0.24099999999999999,7.8095999999999997,0.21909000000000001,4.2,5.0999999999999996,6.3,7.8,9.8000000000000007,12.4,16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,39,-0.24460000000000001,7.8079999999999998,0.22048999999999999,4.2,5.0999999999999996,6.3,7.8,9.8000000000000007,12.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,age,male,month,40,-0.24809999999999999,7.8051000000000004,0.22194,4.2,5.0999999999999996,6.3,7.8,9.8000000000000007,12.5,16.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,41,-0.2515,7.8009000000000004,0.22342999999999999,4.2,5.0999999999999996,6.3,7.8,9.8000000000000007,12.5,16.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,42,-0.25490000000000002,7.7953999999999999,0.22495999999999999,4.2,5.0999999999999996,6.3,7.8,9.8000000000000007,12.6,16.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,43,-0.25829999999999997,7.7885,0.22653000000000001,4.2,5.0999999999999996,6.2,7.8,9.8000000000000007,12.6,16.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,44,-0.2616,7.7804000000000002,0.22813,4.0999999999999996,5.0999999999999996,6.2,7.8,9.8000000000000007,12.6,16.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,45,-0.26479999999999998,7.7709999999999999,0.22975000000000001,4.0999999999999996,5,6.2,7.8,9.8000000000000007,12.7,16.600000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,46,-0.26800000000000002,7.7605000000000004,0.23139999999999999,4.0999999999999996,5,6.2,7.8,9.9,12.7,16.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,47,-0.27110000000000001,7.7488999999999999,0.23305999999999999,4.0999999999999996,5,6.2,7.7,9.9,12.8,16.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,48,-0.2742,7.7363999999999997,0.23472999999999999,4.0999999999999996,5,6.2,7.7,9.9,12.8,16.899999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,49,-0.2772,7.7233000000000001,0.23641999999999999,4,5,6.1,7.7,9.9,12.8,17 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,50,-0.2802,7.7096,0.23810999999999999,4,4.9000000000000004,6.1,7.7,9.9,12.9,17.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,age,male,month,51,-0.28320000000000001,7.6955,0.23981,4,4.9000000000000004,6.1,7.7,9.9,12.9,17.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,52,-0.28610000000000002,7.6811999999999996,0.24151,4,4.9000000000000004,6.1,7.7,9.9,12.9,17.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,53,-0.28899999999999998,7.6669,0.24321999999999999,4,4.9000000000000004,6.1,7.7,9.9,13,17.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,54,-0.2918,7.6524999999999999,0.24493999999999999,3.9,4.8,6,7.7,9.9,13,17.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,55,-0.29459999999999997,7.6383000000000001,0.24665999999999999,3.9,4.8,6,7.6,9.9,13,17.600000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,56,-0.2974,7.6242000000000001,0.24839,3.9,4.8,6,7.6,9.9,13.1,17.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,57,-0.30009999999999998,7.6104000000000003,0.25013000000000002,3.9,4.8,6,7.6,9.9,13.1,17.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,58,-0.30280000000000001,7.5968,0.25185999999999997,3.8,4.8,6,7.6,9.9,13.1,17.899999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,59,-0.30549999999999999,7.5834999999999999,0.25359999999999999,3.8,4.7,5.9,7.6,9.9,13.2,18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/tsfa-boys-3-5-zscores.xlsx,age,male,month,60,-0.30809999999999998,7.5705999999999998,0.25533,3.8,4.7,5.9,7.6,9.9,13.2,18.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,91,0.18820000000000001,9.7532999999999994,0.17524999999999999,5.6070000000000002,6.7869999999999999,8.1609999999999996,9.7530000000000001,11.589,13.695,16.102 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,92,0.18590000000000001,9.7479999999999993,0.17555000000000001,5.6,6.78,8.1549999999999994,9.7479999999999993,11.586,13.696999999999999,16.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,93,0.18360000000000001,9.7426999999999992,0.17582999999999999,5.5940000000000003,6.7729999999999997,8.1479999999999997,9.7430000000000003,11.583,13.699,16.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,94,0.18129999999999999,9.7375000000000007,0.17612,5.5880000000000001,6.7670000000000003,8.1419999999999995,9.7379999999999995,11.581,13.701000000000001,16.128 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,95,0.17910000000000001,9.7323000000000004,0.1764,5.5819999999999999,6.76,8.1349999999999998,9.7319999999999993,11.577999999999999,13.702,16.135999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,96,0.1769,9.7271999999999998,0.17669000000000001,5.5750000000000002,6.7530000000000001,8.1289999999999996,9.7270000000000003,11.576000000000001,13.704000000000001,16.145 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,97,0.17469999999999999,9.7219999999999995,0.17696999999999999,5.569,6.7469999999999999,8.1219999999999999,9.7219999999999995,11.573,13.706,16.152999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,98,0.17249999999999999,9.7169000000000008,0.17724999999999999,5.5629999999999997,6.74,8.1159999999999997,9.7170000000000005,11.571,13.708,16.161000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,99,0.17030000000000001,9.7118000000000002,0.17752000000000001,5.5570000000000004,6.734,8.11,9.7119999999999997,11.568,13.709,16.169 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,100,0.16819999999999999,9.7066999999999997,0.17780000000000001,5.5510000000000002,6.7270000000000003,8.1039999999999992,9.7070000000000007,11.565,13.711,16.178000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,101,0.1661,9.7014999999999993,0.17807000000000001,5.5449999999999999,6.7210000000000001,8.0969999999999995,9.702,11.563000000000001,13.712,16.184999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,102,0.16400000000000001,9.6964000000000006,0.17834,5.5389999999999997,6.7140000000000004,8.0909999999999993,9.6959999999999997,11.56,13.714,16.193000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,103,0.16189999999999999,9.6913,0.17860999999999999,5.5330000000000004,6.7080000000000002,8.0850000000000009,9.6910000000000007,11.557,13.715,16.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,104,0.1598,9.6860999999999997,0.17888000000000001,5.5270000000000001,6.7009999999999996,8.0779999999999994,9.6859999999999999,11.554,13.715999999999999,16.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,105,0.1578,9.6808999999999994,0.17913999999999999,5.5209999999999999,6.6950000000000003,8.0719999999999992,9.6809999999999992,11.551,13.718,16.216000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,106,0.15570000000000001,9.6755999999999993,0.17940999999999999,5.5149999999999997,6.6879999999999997,8.0660000000000007,9.6760000000000002,11.548999999999999,13.718999999999999,16.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,107,0.1537,9.6704000000000008,0.17967,5.5090000000000003,6.6820000000000004,8.06,9.67,11.545999999999999,13.72,16.231000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,108,0.1517,9.6651000000000007,0.17993000000000001,5.5030000000000001,6.6760000000000002,8.0530000000000008,9.6649999999999991,11.542999999999999,13.721,16.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,109,0.1497,9.6597000000000008,0.18018999999999999,5.4969999999999999,6.6689999999999996,8.0470000000000006,9.66,11.539,13.721,16.245000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,110,0.1477,9.6542999999999992,0.18045,5.4909999999999997,6.6630000000000003,8.0410000000000004,9.6539999999999999,11.536,13.722,16.251999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,111,0.14580000000000001,9.6488999999999994,0.1807,5.4859999999999998,6.6559999999999997,8.0340000000000007,9.6489999999999991,11.532999999999999,13.723000000000001,16.257999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,112,0.14380000000000001,9.6433999999999997,0.18096000000000001,5.48,6.65,8.0280000000000005,9.6430000000000007,11.53,13.723000000000001,16.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,113,0.1419,9.6379000000000001,0.18121000000000001,5.4740000000000002,6.6429999999999998,8.0210000000000008,9.6379999999999999,11.526,13.724,16.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,114,0.14000000000000001,9.6323000000000008,0.18146000000000001,5.468,6.6369999999999996,8.0150000000000006,9.6319999999999997,11.523,13.724,16.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,115,0.1381,9.6265999999999998,0.18171999999999999,5.4619999999999997,6.63,8.0079999999999991,9.6270000000000007,11.519,13.724,16.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,116,0.13619999999999999,9.6209000000000007,0.18196000000000001,5.4560000000000004,6.6239999999999997,8.0020000000000007,9.6210000000000004,11.515000000000001,13.724,16.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,117,0.1343,9.6151,0.18221000000000001,5.45,6.617,7.9950000000000001,9.6150000000000002,11.512,13.724,16.295000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,118,0.13250000000000001,9.6091999999999995,0.18246000000000001,5.444,6.6109999999999998,7.9889999999999999,9.609,11.507999999999999,13.723000000000001,16.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,119,0.13059999999999999,9.6033000000000008,0.18271000000000001,5.4379999999999997,6.6040000000000001,7.9820000000000002,9.6029999999999998,11.504,13.723000000000001,16.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,120,0.1288,9.5973000000000006,0.18295,5.4320000000000004,6.5970000000000004,7.9749999999999996,9.5969999999999995,11.5,13.722,16.309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,121,0.127,9.5912000000000006,0.18318999999999999,5.4260000000000002,6.5910000000000002,7.968,9.5909999999999993,11.494999999999999,13.721,16.315000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,122,0.12520000000000001,9.5851000000000006,0.18343000000000001,5.42,6.5839999999999996,7.9619999999999997,9.5850000000000009,11.491,13.721,16.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,123,0.1234,9.5789000000000009,0.18367,5.4139999999999997,6.577,7.9550000000000001,9.5790000000000006,11.487,13.72,16.324000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,124,0.1216,9.5725999999999996,0.18390999999999999,5.4080000000000004,6.5709999999999997,7.9480000000000004,9.5730000000000004,11.481999999999999,13.718,16.329000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,125,0.1198,9.5662000000000003,0.18415000000000001,5.4009999999999998,6.5640000000000001,7.9409999999999998,9.5660000000000007,11.477,13.717000000000001,16.332999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,126,0.1181,9.5597999999999992,0.18439,5.3949999999999996,6.5570000000000004,7.9340000000000002,9.56,11.473000000000001,13.715999999999999,16.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,127,0.1164,9.5533000000000001,0.18462000000000001,5.3890000000000002,6.55,7.9269999999999996,9.5530000000000008,11.468,13.714,16.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,128,0.11459999999999999,9.5467999999999993,0.18486,5.383,6.5430000000000001,7.92,9.5470000000000006,11.462999999999999,13.712999999999999,16.344000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,129,0.1129,9.5402000000000005,0.18509,5.3769999999999998,6.5359999999999996,7.9130000000000003,9.5399999999999991,11.458,13.711,16.347000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,130,0.11119999999999999,9.5335000000000001,0.18532000000000001,5.3710000000000004,6.5289999999999999,7.9050000000000002,9.5340000000000007,11.452999999999999,13.709,16.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,131,0.1095,9.5267999999999997,0.18554999999999999,5.3639999999999999,6.5229999999999997,7.8979999999999997,9.5269999999999992,11.448,13.706,16.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,132,0.10780000000000001,9.52,0.18578,5.3579999999999997,6.516,7.891,9.52,11.443,13.704000000000001,16.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,133,0.1062,9.5131999999999994,0.186,5.3520000000000003,6.5090000000000003,7.8840000000000003,9.5129999999999999,11.436999999999999,13.702,16.359000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,134,0.1045,9.5062999999999995,0.18623000000000001,5.3460000000000001,6.5019999999999998,7.8769999999999998,9.5060000000000002,11.432,13.699,16.361999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,135,0.1028,9.4992999999999999,0.18645,5.34,6.4950000000000001,7.8689999999999998,9.4990000000000006,11.426,13.696999999999999,16.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,136,0.1012,9.4923000000000002,0.18667,5.3330000000000002,6.4880000000000004,7.8620000000000001,9.4920000000000009,11.42,13.694000000000001,16.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,137,0.099599999999999994,9.4853000000000005,0.18690000000000001,5.327,6.4809999999999999,7.8540000000000001,9.4849999999999994,11.414999999999999,13.691000000000001,16.367999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,138,0.098000000000000004,9.4781999999999993,0.18712000000000001,5.3209999999999997,6.4740000000000002,7.8470000000000004,9.4779999999999998,11.409000000000001,13.688000000000001,16.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,139,0.0964,9.4710000000000001,0.18733,5.3150000000000004,6.4669999999999996,7.84,9.4710000000000001,11.403,13.685,16.370999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,140,0.094799999999999995,9.4638000000000009,0.18754999999999999,5.3079999999999998,6.4589999999999996,7.8319999999999999,9.4640000000000004,11.397,13.682,16.373000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,141,0.093200000000000005,9.4565000000000001,0.18776000000000001,5.3019999999999996,6.452,7.8250000000000002,9.4559999999999995,11.391,13.678000000000001,16.373999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,142,0.091600000000000001,9.4491999999999994,0.18798000000000001,5.2960000000000003,6.4450000000000003,7.8170000000000002,9.4489999999999998,11.385,13.675000000000001,16.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,143,0.09,9.4418000000000006,0.18819,5.29,6.4379999999999997,7.81,9.4420000000000002,11.379,13.670999999999999,16.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,144,0.088499999999999995,9.4344000000000001,0.18840000000000001,5.2830000000000004,6.431,7.8019999999999996,9.4339999999999993,11.372999999999999,13.667,16.376999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,145,0.086900000000000005,9.4268999999999998,0.18861,5.2770000000000001,6.4240000000000004,7.7939999999999996,9.4269999999999996,11.366,13.664,16.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,146,0.085400000000000004,9.4192999999999998,0.18881999999999999,5.2709999999999999,6.4169999999999998,7.7869999999999999,9.4190000000000005,11.36,13.66,16.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,147,0.083900000000000002,9.4117999999999995,0.18901999999999999,5.2640000000000002,6.41,7.7789999999999999,9.4120000000000008,11.353,13.654999999999999,16.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,148,0.082400000000000001,9.4040999999999997,0.18923000000000001,5.258,6.4020000000000001,7.7709999999999999,9.4039999999999999,11.347,13.651,16.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,149,0.080799999999999997,9.3963999999999999,0.18942999999999999,5.2519999999999998,6.3949999999999996,7.7629999999999999,9.3960000000000008,11.34,13.647,16.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,150,0.079399999999999998,9.3887,0.18962999999999999,5.2450000000000001,6.3879999999999999,7.7560000000000002,9.3889999999999993,11.333,13.641999999999999,16.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,151,0.077899999999999997,9.3809000000000005,0.18983,5.2389999999999999,6.3810000000000002,7.7480000000000002,9.3810000000000002,11.326000000000001,13.638,16.376999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,152,0.076399999999999996,9.3729999999999993,0.19003,5.2329999999999997,6.3730000000000002,7.74,9.3729999999999993,11.319000000000001,13.632999999999999,16.376999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,153,0.074899999999999994,9.3651999999999997,0.19023000000000001,5.2270000000000003,6.3659999999999997,7.7320000000000002,9.3650000000000002,11.311999999999999,13.628,16.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,154,0.073400000000000007,9.3572000000000006,0.19042000000000001,5.22,6.359,7.7240000000000002,9.3569999999999993,11.305,13.622999999999999,16.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,155,0.071999999999999995,9.3492999999999995,0.19062000000000001,5.2140000000000004,6.3520000000000003,7.7169999999999996,9.3490000000000002,11.298,13.618,16.373999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,156,0.070599999999999996,9.3413000000000004,0.19081000000000001,5.2080000000000002,6.3449999999999998,7.7089999999999996,9.3409999999999993,11.291,13.613,16.373000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,157,0.069099999999999995,9.3331999999999997,0.191,5.2009999999999996,6.3369999999999997,7.7009999999999996,9.3330000000000002,11.282999999999999,13.608000000000001,16.370999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,158,0.067699999999999996,9.3252000000000006,0.19119,5.1950000000000003,6.33,7.6929999999999996,9.3249999999999993,11.276,13.602,16.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,159,0.066299999999999998,9.3170999999999999,0.19137999999999999,5.1890000000000001,6.3230000000000004,7.6849999999999996,9.3170000000000002,11.269,13.597,16.367999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,160,0.064899999999999999,9.3088999999999995,0.19156999999999999,5.1820000000000004,6.3150000000000004,7.6769999999999996,9.3089999999999993,11.260999999999999,13.590999999999999,16.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,161,0.063500000000000001,9.3008000000000006,0.19175,5.1760000000000002,6.3079999999999998,7.6689999999999996,9.3010000000000002,11.254,13.586,16.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,162,0.062100000000000002,9.2926000000000002,0.19194,5.17,6.3010000000000002,7.6609999999999996,9.2929999999999993,11.246,13.58,16.361999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,163,0.060699999999999997,9.2843999999999998,0.19212000000000001,5.1639999999999997,6.2939999999999996,7.6529999999999996,9.2840000000000007,11.238,13.574,16.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,164,0.059299999999999999,9.2760999999999996,0.1923,5.157,6.2859999999999996,7.6449999999999996,9.2759999999999998,11.231,13.568,16.358000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,165,0.0579,9.2678999999999991,0.19248000000000001,5.1509999999999998,6.2789999999999999,7.6369999999999996,9.2680000000000007,11.223000000000001,13.561999999999999,16.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,166,0.056599999999999998,9.2596000000000007,0.19266,5.1449999999999996,6.2720000000000002,7.6289999999999996,9.26,11.215,13.555999999999999,16.353000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,167,0.055199999999999999,9.2513000000000005,0.19283,5.1390000000000002,6.2649999999999997,7.6210000000000004,9.2509999999999994,11.207000000000001,13.55,16.350000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,168,0.053900000000000003,9.2429000000000006,0.19300999999999999,5.133,6.2569999999999997,7.6130000000000004,9.2430000000000003,11.199,13.544,16.347000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,169,0.052499999999999998,9.2346000000000004,0.19317999999999999,5.1260000000000003,6.25,7.6050000000000004,9.2349999999999994,11.192,13.537000000000001,16.344000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,170,0.051200000000000002,9.2262000000000004,0.19334999999999999,5.12,6.2430000000000003,7.5970000000000004,9.2260000000000009,11.183999999999999,13.531000000000001,16.341000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,171,0.049799999999999997,9.2178000000000004,0.19352,5.1139999999999999,6.2359999999999998,7.5890000000000004,9.218,11.176,13.523999999999999,16.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,172,0.048500000000000001,9.2094000000000005,0.19369,5.1079999999999997,6.2290000000000001,7.5810000000000004,9.2089999999999996,11.167999999999999,13.518000000000001,16.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,173,0.047199999999999999,9.2010000000000005,0.19386,5.1020000000000003,6.2210000000000001,7.5730000000000004,9.2010000000000005,11.159000000000001,13.510999999999999,16.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,174,0.045900000000000003,9.1926000000000005,0.19403000000000001,5.0960000000000001,6.2140000000000004,7.5650000000000004,9.1929999999999996,11.151,13.505000000000001,16.327000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,175,0.044600000000000001,9.1842000000000006,0.19419,5.09,6.2069999999999999,7.5570000000000004,9.1839999999999993,11.143000000000001,13.497999999999999,16.324000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,176,0.043299999999999998,9.1757000000000009,0.19434999999999999,5.0839999999999996,6.2,7.5490000000000004,9.1760000000000002,11.135,13.491,16.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,177,0.042000000000000003,9.1671999999999993,0.19452,5.077,6.1929999999999996,7.5410000000000004,9.1669999999999998,11.127000000000001,13.484,16.315999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,178,0.040800000000000003,9.1587999999999994,0.19467999999999999,5.0709999999999997,6.1859999999999999,7.5330000000000004,9.1590000000000007,11.119,13.477,16.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,179,0.0395,9.1502999999999997,0.19483,5.0650000000000004,6.1790000000000003,7.5250000000000004,9.15,11.11,13.47,16.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,180,0.038199999999999998,9.1417999999999999,0.19499,5.0590000000000002,6.1719999999999997,7.5170000000000003,9.1419999999999995,11.102,13.462999999999999,16.303999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,181,0.036999999999999998,9.1333000000000002,0.19514999999999999,5.0529999999999999,6.1639999999999997,7.5090000000000003,9.1329999999999991,11.093999999999999,13.456,16.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,182,0.035700000000000003,9.1247000000000007,0.1953,5.0469999999999997,6.157,7.5010000000000003,9.125,11.085000000000001,13.449,16.295000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,183,0.034500000000000003,9.1161999999999992,0.19545000000000001,5.0410000000000004,6.15,7.4930000000000003,9.1159999999999997,11.077,13.441000000000001,16.29 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,184,0.0332,9.1076999999999995,0.19561000000000001,5.0350000000000001,6.1429999999999998,7.4850000000000003,9.1080000000000005,11.068,13.433999999999999,16.286000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,185,0.032000000000000001,9.0991999999999997,0.19575999999999999,5.0289999999999999,6.1360000000000001,7.4770000000000003,9.0990000000000002,11.06,13.427,16.280999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,186,0.030800000000000001,9.0906000000000002,0.19589999999999999,5.024,6.1289999999999996,7.4690000000000003,9.0909999999999993,11.051,13.419,16.276 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,187,0.029499999999999998,9.0821000000000005,0.19605,5.0179999999999998,6.1219999999999999,7.4610000000000003,9.0820000000000007,11.042999999999999,13.412000000000001,16.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,188,0.028299999999999999,9.0736000000000008,0.19619,5.0119999999999996,6.1150000000000002,7.4530000000000003,9.0739999999999998,11.034000000000001,13.404,16.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,189,0.027099999999999999,9.0649999999999995,0.19633999999999999,5.0060000000000002,6.1079999999999997,7.4450000000000003,9.0649999999999995,11.026,13.397,16.260999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,190,0.025899999999999999,9.0564999999999998,0.19647999999999999,5,6.101,7.4370000000000003,9.0559999999999992,11.016999999999999,13.388999999999999,16.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,191,0.0247,9.048,0.19661999999999999,4.9950000000000001,6.0940000000000003,7.4290000000000003,9.048,11.009,13.382,16.251000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,192,0.0235,9.0395000000000003,0.19675999999999999,4.9889999999999999,6.0880000000000001,7.4219999999999997,9.0399999999999991,11,13.374000000000001,16.245999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,193,0.0223,9.0309000000000008,0.19689999999999999,4.9829999999999997,6.0810000000000004,7.4139999999999997,9.0310000000000006,10.991,13.366,16.239999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,194,0.021100000000000001,9.0223999999999993,0.19703000000000001,4.9770000000000003,6.0739999999999998,7.4059999999999997,9.0220000000000002,10.983000000000001,13.358000000000001,16.234999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,195,0.02,9.0138999999999996,0.19717000000000001,4.9720000000000004,6.0670000000000002,7.3979999999999997,9.0139999999999993,10.974,13.351000000000001,16.228999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,196,0.018800000000000001,9.0053999999999998,0.1973,4.9660000000000002,6.06,7.39,9.0050000000000008,10.965999999999999,13.343,16.222999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,197,0.017600000000000001,8.9969000000000001,0.19742999999999999,4.96,6.0540000000000003,7.3819999999999997,8.9969999999999999,10.957000000000001,13.335000000000001,16.218 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,198,0.016500000000000001,8.9884000000000004,0.19756000000000001,4.9550000000000001,6.0469999999999997,7.375,8.9879999999999995,10.948,13.327,16.212 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,199,0.015299999999999999,8.98,0.19769,4.9489999999999998,6.04,7.367,8.98,10.94,13.319000000000001,16.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,200,0.014200000000000001,8.9715000000000007,0.19782,4.944,6.0330000000000004,7.359,8.9719999999999995,10.930999999999999,13.311,16.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,201,0.012999999999999999,8.9631000000000007,0.19794,4.9379999999999997,6.0270000000000001,7.3520000000000003,8.9629999999999992,10.922000000000001,13.303000000000001,16.193999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,202,0.011900000000000001,8.9545999999999992,0.19807,4.9329999999999998,6.02,7.3440000000000003,8.9550000000000001,10.914,13.295,16.187999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,203,0.010800000000000001,8.9461999999999993,0.19819000000000001,4.9269999999999996,6.0129999999999999,7.3360000000000003,8.9459999999999997,10.904999999999999,13.287000000000001,16.181999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,204,0.0097000000000000003,8.9377999999999993,0.19830999999999999,4.9219999999999997,6.0069999999999997,7.3289999999999997,8.9380000000000006,10.896000000000001,13.279,16.175999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,205,0.0085000000000000006,8.9292999999999996,0.19843,4.9160000000000004,6,7.3209999999999997,8.9290000000000003,10.887,13.27,16.170000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,206,0.0074000000000000003,8.9209999999999994,0.19855,4.9109999999999996,5.9939999999999998,7.3129999999999997,8.9209999999999994,10.879,13.262,16.163 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,207,0.0063,8.9125999999999994,0.19866,4.9059999999999997,5.9870000000000001,7.306,8.9130000000000003,10.87,13.254,16.157 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,208,0.0051999999999999998,8.9041999999999994,0.19878000000000001,4.9000000000000004,5.9809999999999999,7.298,8.9039999999999999,10.861000000000001,13.246,16.149999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,209,0.0041000000000000003,8.8958999999999993,0.19889000000000001,4.8949999999999996,5.9740000000000002,7.2910000000000004,8.8960000000000008,10.853,13.237,16.143999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,210,0.0030000000000000001,8.8874999999999993,0.19900000000000001,4.8899999999999997,5.968,7.2830000000000004,8.8879999999999999,10.843999999999999,13.228999999999999,16.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,211,0.0019,8.8792000000000009,0.19911000000000001,4.8840000000000003,5.9619999999999997,7.2759999999999998,8.8789999999999996,10.835000000000001,13.221,16.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,212,0.00089999999999999998,8.8709000000000007,0.19922000000000001,4.8789999999999996,5.9550000000000001,7.2679999999999998,8.8710000000000004,10.826000000000001,13.212,16.123000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,213,-0.00020000000000000001,8.8626000000000005,0.19933000000000001,4.8739999999999997,5.9489999999999998,7.2610000000000001,8.8629999999999995,10.818,13.204000000000001,16.117000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,214,-0.0012999999999999999,8.8543000000000003,0.19944000000000001,4.8689999999999998,5.9420000000000002,7.2539999999999996,8.8539999999999992,10.808999999999999,13.196,16.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,215,-0.0023999999999999998,8.8460999999999999,0.19954,4.8639999999999999,5.9359999999999999,7.2460000000000004,8.8460000000000001,10.8,13.186999999999999,16.103000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,216,-0.0033999999999999998,8.8378999999999994,0.19964000000000001,4.859,5.93,7.2389999999999999,8.8379999999999992,10.791,13.179,16.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,217,-0.0044999999999999997,8.8297000000000008,0.19974,4.8540000000000001,5.9240000000000004,7.2320000000000002,8.83,10.782999999999999,13.17,16.088999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,218,-0.0054999999999999997,8.8215000000000003,0.19983999999999999,4.8479999999999999,5.9180000000000001,7.2240000000000002,8.8219999999999992,10.773999999999999,13.162000000000001,16.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,219,-0.0066,8.8133999999999997,0.19994000000000001,4.843,5.9119999999999999,7.2169999999999996,8.8130000000000006,10.765000000000001,13.153,16.074999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,220,-0.0076,8.8051999999999992,0.20004,4.8380000000000001,5.9050000000000002,7.21,8.8049999999999997,10.757,13.145,16.068000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,221,-0.0086999999999999994,8.7971000000000004,0.20013,4.8339999999999996,5.899,7.2030000000000003,8.7970000000000006,10.747999999999999,13.135999999999999,16.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,222,-0.0097000000000000003,8.7890999999999995,0.20022999999999999,4.8289999999999997,5.8929999999999998,7.1959999999999997,8.7889999999999997,10.74,13.128,16.053999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,223,-0.010699999999999999,8.7810000000000006,0.20032,4.8239999999999998,5.8869999999999996,7.1890000000000001,8.7810000000000006,10.731,13.119,16.047000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,224,-0.0117,8.7729999999999997,0.20041,4.819,5.8810000000000002,7.181,8.7729999999999997,10.722,13.111000000000001,16.039000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,225,-0.012800000000000001,8.7650000000000006,0.20050000000000001,4.8140000000000001,5.8760000000000003,7.1740000000000004,8.7650000000000006,10.714,13.102,16.032 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,226,-0.0138,8.7569999999999997,0.20058999999999999,4.8090000000000002,5.87,7.1669999999999998,8.7569999999999997,10.705,13.093999999999999,16.024999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,227,-0.014800000000000001,8.7491000000000003,0.20068,4.8049999999999997,5.8639999999999999,7.16,8.7490000000000006,10.696999999999999,13.086,16.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,228,-0.015800000000000002,8.7411999999999992,0.20075999999999999,4.8,5.8579999999999997,7.1539999999999999,8.7409999999999997,10.688000000000001,13.077,16.010000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,229,-0.016799999999999999,8.7332999999999998,0.20083999999999999,4.7949999999999999,5.8520000000000003,7.1470000000000002,8.7330000000000005,10.679,13.068,16.001999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,230,-0.0178,8.7255000000000003,0.20093,4.7910000000000004,5.8460000000000001,7.14,8.7260000000000009,10.670999999999999,13.06,15.994999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,231,-0.018800000000000001,8.7177000000000007,0.20100999999999999,4.7859999999999996,5.8410000000000002,7.133,8.718,10.663,13.051,15.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,232,-0.019699999999999999,8.7098999999999993,0.20108999999999999,4.7809999999999997,5.835,7.1260000000000003,8.7100000000000009,10.654,13.042999999999999,15.98 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,233,-0.0207,8.7021999999999995,0.20116999999999999,4.7770000000000001,5.8289999999999997,7.1189999999999998,8.702,10.646000000000001,13.035,15.973000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,234,-0.021700000000000001,8.6943999999999999,0.20124,4.7729999999999997,5.8239999999999998,7.1130000000000004,8.6940000000000008,10.637,13.026,15.965 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,235,-0.022700000000000001,8.6867999999999999,0.20132,4.7679999999999998,5.8179999999999996,7.1059999999999999,8.6869999999999994,10.629,13.018000000000001,15.958 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,236,-0.023599999999999999,8.6791,0.2014,4.7640000000000002,5.8129999999999997,7.0990000000000002,8.6790000000000003,10.621,13.009,15.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,237,-0.0246,8.6715,0.20147000000000001,4.7590000000000003,5.8070000000000004,7.093,8.6720000000000006,10.612,13.000999999999999,15.943 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,238,-0.025600000000000001,8.6638999999999999,0.20154,4.7549999999999999,5.8019999999999996,7.0860000000000003,8.6639999999999997,10.603999999999999,12.992000000000001,15.935 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,239,-0.026499999999999999,8.6563999999999997,0.20161000000000001,4.7510000000000003,5.7960000000000003,7.08,8.6560000000000006,10.596,12.984,15.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,240,-0.0275,8.6488999999999994,0.20168,4.7460000000000004,5.7910000000000004,7.0730000000000004,8.6489999999999991,10.587,12.975,15.92 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,241,-0.028400000000000002,8.6414000000000009,0.20175000000000001,4.742,5.7859999999999996,7.0670000000000002,8.641,10.579000000000001,12.967000000000001,15.912000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,242,-0.0293,8.6339000000000006,0.20182,4.7380000000000004,5.78,7.06,8.6340000000000003,10.571,12.958,15.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,243,-0.030300000000000001,8.6265000000000001,0.20188,4.734,5.7750000000000004,7.0540000000000003,8.6259999999999994,10.563000000000001,12.95,15.897 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,244,-0.031199999999999999,8.6191999999999993,0.20194999999999999,4.7290000000000001,5.77,7.048,8.6189999999999998,10.555,12.942,15.888999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,245,-0.032099999999999997,8.6118000000000006,0.20201,4.7249999999999996,5.7640000000000002,7.0410000000000004,8.6120000000000001,10.547000000000001,12.933,15.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,246,-0.033099999999999997,8.6044999999999998,0.20207,4.7210000000000001,5.7590000000000003,7.0350000000000001,8.6039999999999992,10.538,12.925000000000001,15.874000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,247,-0.034000000000000002,8.5973000000000006,0.20213,4.7169999999999996,5.7539999999999996,7.0289999999999999,8.5969999999999995,10.531000000000001,12.917,15.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,248,-0.0349,8.5900999999999996,0.20219000000000001,4.7130000000000001,5.7489999999999997,7.0229999999999997,8.59,10.523,12.907999999999999,15.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,249,-0.035799999999999998,8.5829000000000004,0.20225000000000001,4.7089999999999996,5.7439999999999998,7.016,8.5830000000000002,10.515000000000001,12.9,15.851000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,250,-0.036700000000000003,8.5756999999999994,0.20230999999999999,4.7050000000000001,5.7389999999999999,7.01,8.5760000000000005,10.507,12.891999999999999,15.843 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,251,-0.037600000000000001,8.5686,0.20236999999999999,4.7009999999999996,5.734,7.0039999999999996,8.5690000000000008,10.499000000000001,12.884,15.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,252,-0.0385,8.5616000000000003,0.20241999999999999,4.6970000000000001,5.7290000000000001,6.9980000000000002,8.5619999999999994,10.491,12.875,15.827999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,253,-0.039399999999999998,8.5545000000000009,0.20247999999999999,4.6929999999999996,5.7240000000000002,6.992,8.5540000000000003,10.483000000000001,12.867000000000001,15.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,254,-0.040300000000000002,8.5474999999999994,0.20252999999999999,4.6900000000000004,5.7190000000000003,6.9859999999999998,8.548,10.475,12.859,15.811999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,255,-0.041200000000000001,8.5405999999999995,0.20258000000000001,4.6859999999999999,5.7149999999999999,6.98,8.5410000000000004,10.467000000000001,12.851000000000001,15.805 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,256,-0.042099999999999999,8.5336999999999996,0.20263,4.6820000000000004,5.71,6.9740000000000002,8.5340000000000007,10.46,12.843,15.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,257,-0.042900000000000001,8.5267999999999997,0.20268,4.6779999999999999,5.7050000000000001,6.9690000000000003,8.5269999999999992,10.452,12.835000000000001,15.789 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,258,-0.043799999999999999,8.52,0.20272999999999999,4.6749999999999998,5.7,6.9630000000000001,8.52,10.444000000000001,12.827,15.782 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,259,-0.044699999999999997,8.5131999999999994,0.20277999999999999,4.6710000000000003,5.6959999999999997,6.9569999999999999,8.5129999999999999,10.436999999999999,12.819000000000001,15.773999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,260,-0.045499999999999999,8.5063999999999993,0.20283000000000001,4.6669999999999998,5.6909999999999998,6.9509999999999996,8.5060000000000002,10.429,12.811,15.766999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,261,-0.046399999999999997,8.4997000000000007,0.20286999999999999,4.6639999999999997,5.6859999999999999,6.9459999999999997,8.5,10.420999999999999,12.802,15.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,262,-0.047300000000000002,8.4930000000000003,0.20291999999999999,4.66,5.6820000000000004,6.94,8.4930000000000003,10.414,12.795,15.752000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,263,-0.048099999999999997,8.4863999999999997,0.20296,4.657,5.6769999999999996,6.9340000000000002,8.4860000000000007,10.406000000000001,12.787000000000001,15.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,264,-0.049000000000000002,8.4797999999999991,0.20301,4.6529999999999996,5.673,6.9290000000000003,8.48,10.398999999999999,12.779,15.737 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,265,-0.049799999999999997,8.4732000000000003,0.20305000000000001,4.6500000000000004,5.6680000000000001,6.923,8.4730000000000008,10.391999999999999,12.771000000000001,15.728999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,266,-0.050599999999999999,8.4666999999999994,0.20308999999999999,4.6459999999999999,5.6639999999999997,6.9180000000000001,8.4670000000000005,10.384,12.763,15.721 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,267,-0.051499999999999997,8.4602000000000004,0.20313000000000001,4.6429999999999998,5.6589999999999998,6.9119999999999999,8.4600000000000009,10.377000000000001,12.755000000000001,15.714 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,268,-0.052299999999999999,8.4537999999999993,0.20316999999999999,4.6399999999999997,5.6550000000000002,6.907,8.4540000000000006,10.37,12.747999999999999,15.706 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,269,-0.053100000000000001,8.4474,0.20321,4.6360000000000001,5.6509999999999998,6.9009999999999998,8.4469999999999992,10.362,12.74,15.699 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,270,-0.053999999999999999,8.4410000000000007,0.20324999999999999,4.633,5.6459999999999999,6.8959999999999999,8.4410000000000007,10.355,12.731999999999999,15.691000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,271,-0.054800000000000001,8.4346999999999994,0.20327999999999999,4.63,5.6420000000000003,6.891,8.4350000000000005,10.348000000000001,12.724,15.683999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,272,-0.055599999999999997,8.4284999999999997,0.20332,4.6260000000000003,5.6379999999999999,6.8860000000000001,8.4280000000000008,10.340999999999999,12.717000000000001,15.676 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,273,-0.056399999999999999,8.4222000000000001,0.20336000000000001,4.6230000000000002,5.6340000000000003,6.88,8.4220000000000006,10.334,12.709,15.669 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,274,-0.057200000000000001,8.4160000000000004,0.20338999999999999,4.62,5.6289999999999996,6.875,8.4160000000000004,10.327,12.702,15.662000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,275,-0.058000000000000003,8.4099000000000004,0.20341999999999999,4.617,5.625,6.87,8.41,10.32,12.694000000000001,15.654 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,276,-0.058799999999999998,8.4037000000000006,0.20346,4.6139999999999999,5.6210000000000004,6.8650000000000002,8.4039999999999999,10.313000000000001,12.686999999999999,15.647 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,277,-0.0596,8.3977000000000004,0.20349,4.6100000000000003,5.617,6.86,8.3979999999999997,10.305999999999999,12.679,15.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,278,-0.060400000000000002,8.3916000000000004,0.20352000000000001,4.6070000000000002,5.6130000000000004,6.8550000000000004,8.3919999999999995,10.298999999999999,12.672000000000001,15.632 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,279,-0.061199999999999997,8.3856000000000002,0.20355000000000001,4.6040000000000001,5.609,6.85,8.3859999999999992,10.292,12.664,15.625 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,280,-0.062,8.3796999999999997,0.20358000000000001,4.601,5.6050000000000004,6.8449999999999998,8.3800000000000008,10.285,12.657,15.618 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,281,-0.062799999999999995,8.3737999999999992,0.20361000000000001,4.5979999999999999,5.601,6.84,8.3740000000000006,10.278,12.65,15.611000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,282,-0.063500000000000001,8.3679000000000006,0.20363999999999999,4.5949999999999998,5.5970000000000004,6.835,8.3680000000000003,10.271000000000001,12.641999999999999,15.603 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,283,-0.064299999999999996,8.3620999999999999,0.20366999999999999,4.5919999999999996,5.5940000000000003,6.83,8.3620000000000001,10.265000000000001,12.635,15.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,284,-0.065100000000000005,8.3562999999999992,0.20369999999999999,4.5890000000000004,5.59,6.8250000000000002,8.3559999999999999,10.257999999999999,12.628,15.59 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,285,-0.065799999999999997,8.3505000000000003,0.20372000000000001,4.5869999999999997,5.5860000000000003,6.8209999999999997,8.35,10.250999999999999,12.621,15.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,286,-0.066600000000000006,8.3447999999999993,0.20374999999999999,4.5839999999999996,5.5819999999999999,6.8159999999999998,8.3450000000000006,10.244999999999999,12.614000000000001,15.574999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,287,-0.067400000000000002,8.3391000000000002,0.20377000000000001,4.5810000000000004,5.5780000000000003,6.8109999999999999,8.3390000000000004,10.238,12.606,15.568 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,288,-0.068099999999999994,8.3335000000000008,0.20380000000000001,4.5780000000000003,5.5750000000000002,6.8070000000000004,8.3339999999999996,10.231999999999999,12.599,15.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,289,-0.068900000000000003,8.3278999999999996,0.20382,4.5750000000000002,5.5709999999999997,6.8019999999999996,8.3279999999999994,10.225,12.592000000000001,15.554 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,290,-0.069599999999999995,8.3224,0.20385,4.5720000000000001,5.5670000000000002,6.7969999999999997,8.3219999999999992,10.218999999999999,12.586,15.547000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,291,-0.070400000000000004,8.3168000000000006,0.20387,4.57,5.5640000000000001,6.7930000000000001,8.3170000000000002,10.212999999999999,12.577999999999999,15.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,292,-0.071099999999999997,8.3114000000000008,0.20388999999999999,4.5670000000000002,5.56,6.7880000000000003,8.3109999999999999,10.206,12.571999999999999,15.532999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,293,-0.071800000000000003,8.3058999999999994,0.20391000000000001,4.5640000000000001,5.5570000000000004,6.7839999999999998,8.3059999999999992,10.199999999999999,12.565,15.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,294,-0.072599999999999998,8.3004999999999995,0.20394000000000001,4.5620000000000003,5.5529999999999999,6.7789999999999999,8.3000000000000007,10.194000000000001,12.558,15.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,295,-0.073300000000000004,8.2951999999999995,0.20396,4.5590000000000002,5.55,6.7750000000000004,8.2949999999999999,10.188000000000001,12.551,15.513 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,296,-0.073999999999999996,8.2898999999999994,0.20397999999999999,4.556,5.5460000000000003,6.7709999999999999,8.2899999999999991,10.182,12.545,15.507 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,297,-0.074700000000000003,8.2845999999999993,0.20399999999999999,4.5540000000000003,5.5430000000000001,6.766,8.2850000000000001,10.175000000000001,12.538,15.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,298,-0.075399999999999995,8.2794000000000008,0.20402000000000001,4.5510000000000002,5.5389999999999997,6.7619999999999996,8.2789999999999999,10.169,12.531000000000001,15.493 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,299,-0.076200000000000004,8.2742000000000004,0.20402999999999999,4.5490000000000004,5.5359999999999996,6.758,8.2739999999999991,10.163,12.523999999999999,15.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,300,-0.076899999999999996,8.2690000000000001,0.20405000000000001,4.5460000000000003,5.5330000000000004,6.7530000000000001,8.2690000000000001,10.157,12.518000000000001,15.48 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,301,-0.077600000000000002,8.2638999999999996,0.20407,4.5439999999999996,5.5289999999999999,6.7489999999999997,8.2639999999999993,10.151,12.510999999999999,15.473000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,302,-0.078299999999999995,8.2588000000000008,0.20408999999999999,4.5410000000000004,5.5259999999999998,6.7450000000000001,8.2590000000000003,10.145,12.505000000000001,15.467000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,303,-0.079000000000000001,8.2537000000000003,0.2041,4.5389999999999997,5.5229999999999997,6.7409999999999997,8.2539999999999996,10.138999999999999,12.497999999999999,15.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,304,-0.079699999999999993,8.2486999999999995,0.20412,4.5369999999999999,5.52,6.7370000000000001,8.2490000000000006,10.134,12.492000000000001,15.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,305,-0.080399999999999999,8.2437000000000005,0.20413999999999999,4.5339999999999998,5.516,6.7329999999999997,8.2439999999999998,10.128,12.486000000000001,15.448 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,306,-0.081100000000000005,8.2387999999999995,0.20415,4.532,5.5129999999999999,6.7290000000000001,8.2390000000000008,10.122,12.478999999999999,15.441000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,307,-0.081699999999999995,8.2339000000000002,0.20416999999999999,4.5289999999999999,5.51,6.7249999999999996,8.234,10.116,12.473000000000001,15.435 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,308,-0.082400000000000001,8.2289999999999992,0.20418,4.5270000000000001,5.5069999999999997,6.7210000000000001,8.2289999999999992,10.111000000000001,12.467000000000001,15.428000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,309,-0.083099999999999993,8.2241999999999997,0.20419000000000001,4.5250000000000004,5.5039999999999996,6.7169999999999996,8.2240000000000002,10.105,12.46,15.422000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,310,-0.083799999999999999,8.2194000000000003,0.20421,4.5229999999999997,5.5010000000000003,6.7130000000000001,8.2189999999999994,10.099,12.454000000000001,15.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,311,-0.084400000000000003,8.2147000000000006,0.20422000000000001,4.5199999999999996,5.4980000000000002,6.7089999999999996,8.2149999999999999,10.093999999999999,12.448,15.41 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,312,-0.085099999999999995,8.2100000000000009,0.20422999999999999,4.5179999999999998,5.4950000000000001,6.7050000000000001,8.2100000000000009,10.087999999999999,12.442,15.403 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,313,-0.085800000000000001,8.2052999999999994,0.20424999999999999,4.516,5.492,6.7009999999999996,8.2050000000000001,10.083,12.436,15.398 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,314,-0.086400000000000005,8.2005999999999997,0.20426,4.5140000000000002,5.4889999999999999,6.6970000000000001,8.2010000000000005,10.077,12.43,15.391 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,315,-0.087099999999999997,8.1959999999999997,0.20427000000000001,4.5119999999999996,5.4859999999999998,6.694,8.1959999999999997,10.071999999999999,12.423999999999999,15.385 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,316,-0.087800000000000003,8.1913999999999998,0.20427999999999999,4.5090000000000003,5.4829999999999997,6.69,8.1910000000000007,10.067,12.417999999999999,15.379 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,317,-0.088400000000000006,8.1868999999999996,0.20429,4.5069999999999997,5.48,6.6859999999999999,8.1869999999999994,10.061,12.412000000000001,15.372999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,318,-0.088999999999999996,8.1823999999999995,0.20430000000000001,4.5049999999999999,5.4770000000000003,6.6829999999999998,8.1820000000000004,10.055999999999999,12.406000000000001,15.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,319,-0.089700000000000002,8.1778999999999993,0.20430999999999999,4.5030000000000001,5.4749999999999996,6.6790000000000003,8.1780000000000008,10.051,12.4,15.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,320,-0.090300000000000005,8.1734000000000009,0.20432,4.5010000000000003,5.4720000000000004,6.6749999999999998,8.173,10.045,12.395,15.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,321,-0.090999999999999998,8.1690000000000005,0.20433000000000001,4.4989999999999997,5.4690000000000003,6.6719999999999997,8.1690000000000005,10.039999999999999,12.388999999999999,15.35 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,322,-0.091600000000000001,8.1646999999999998,0.20433999999999999,4.4969999999999999,5.4660000000000002,6.6680000000000001,8.1649999999999991,10.035,12.382999999999999,15.343999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,323,-0.092200000000000004,8.1602999999999994,0.20435,4.4950000000000001,5.4640000000000004,6.665,8.16,10.029999999999999,12.378,15.337999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,324,-0.092899999999999996,8.1560000000000006,0.20436000000000001,4.4930000000000003,5.4610000000000003,6.6609999999999996,8.1560000000000006,10.025,12.372,15.333 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,325,-0.0935,8.1516999999999999,0.20436000000000001,4.4909999999999997,5.4580000000000002,6.6580000000000004,8.1519999999999992,10.02,12.366,15.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,326,-0.094100000000000003,8.1475000000000009,0.20437,4.4889999999999999,5.4560000000000004,6.6539999999999999,8.1479999999999997,10.015000000000001,12.361000000000001,15.321 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,327,-0.094700000000000006,8.1433,0.20438000000000001,4.4870000000000001,5.4530000000000003,6.6509999999999998,8.1430000000000007,10.01,12.355,15.315 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,328,-0.095299999999999996,8.1390999999999991,0.20438999999999999,4.4850000000000003,5.45,6.6479999999999997,8.1389999999999993,10.005000000000001,12.35,15.31 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,329,-0.096000000000000002,8.1349,0.20438999999999999,4.4829999999999997,5.4480000000000004,6.6440000000000001,8.1349999999999998,10,12.343999999999999,15.304 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,330,-0.096600000000000005,8.1308000000000007,0.2044,4.4809999999999999,5.4450000000000003,6.641,8.1310000000000002,9.9949999999999992,12.339,15.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,331,-0.097199999999999995,8.1266999999999996,0.20441000000000001,4.4790000000000001,5.4429999999999996,6.6379999999999999,8.1270000000000007,9.99,12.334,15.292999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,332,-0.097799999999999998,8.1226000000000003,0.20441000000000001,4.4779999999999998,5.44,6.6340000000000003,8.1229999999999993,9.9849999999999994,12.327999999999999,15.288 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,333,-0.098400000000000001,8.1186000000000007,0.20441999999999999,4.476,5.4379999999999997,6.6310000000000002,8.1189999999999998,9.9809999999999999,12.323,15.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,334,-0.099000000000000005,8.1145999999999994,0.20441999999999999,4.4740000000000002,5.4349999999999996,6.6280000000000001,8.1150000000000002,9.9760000000000009,12.317,15.276999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,335,-0.099599999999999994,8.1105999999999998,0.20443,4.4720000000000004,5.4329999999999998,6.625,8.1110000000000007,9.9710000000000001,12.311999999999999,15.272 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,336,-0.1002,8.1067,0.20443,4.4710000000000001,5.43,6.6219999999999999,8.1069999999999993,9.9670000000000005,12.307,15.266 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,337,-0.1007,8.1028000000000002,0.20443,4.4690000000000003,5.4279999999999999,6.6180000000000003,8.1029999999999998,9.9619999999999997,12.302,15.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,338,-0.1013,8.0989000000000004,0.20444000000000001,4.4669999999999996,5.4249999999999998,6.6150000000000002,8.0990000000000002,9.9570000000000007,12.297000000000001,15.255000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,339,-0.1019,8.0951000000000004,0.20444000000000001,4.4649999999999999,5.423,6.6120000000000001,8.0950000000000006,9.9529999999999994,12.291,15.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,340,-0.10249999999999999,8.0913000000000004,0.20444000000000001,4.4640000000000004,5.4210000000000003,6.609,8.0909999999999993,9.9480000000000004,12.286,15.244999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,341,-0.1031,8.0875000000000004,0.20444999999999999,4.4619999999999997,5.4180000000000001,6.6059999999999999,8.0879999999999992,9.9440000000000008,12.281000000000001,15.24 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,342,-0.1036,8.0837000000000003,0.20444999999999999,4.46,5.4160000000000004,6.6029999999999998,8.0839999999999996,9.9390000000000001,12.276,15.234 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,343,-0.1042,8.08,0.20444999999999999,4.4589999999999996,5.4139999999999997,6.6,8.08,9.9350000000000005,12.271000000000001,15.228999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,344,-0.1048,8.0762999999999998,0.20444999999999999,4.4569999999999999,5.4119999999999999,6.5970000000000004,8.0760000000000005,9.93,12.266,15.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,345,-0.1053,8.0726999999999993,0.20446,4.4550000000000001,5.4089999999999998,6.5940000000000003,8.0730000000000004,9.9260000000000002,12.262,15.218999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,346,-0.10589999999999999,8.0690000000000008,0.20446,4.4539999999999997,5.407,6.5910000000000002,8.0690000000000008,9.9220000000000006,12.257,15.214 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,347,-0.1065,8.0654000000000003,0.20446,4.452,5.4050000000000002,6.5880000000000001,8.0649999999999995,9.9179999999999993,12.252000000000001,15.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,348,-0.107,8.0617999999999999,0.20446,4.4509999999999996,5.4029999999999996,6.5860000000000003,8.0619999999999994,9.9130000000000003,12.247,15.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,349,-0.1076,8.0582999999999991,0.20446,4.4489999999999998,5.4009999999999998,6.5830000000000002,8.0579999999999998,9.9090000000000007,12.242000000000001,15.199 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,350,-0.1081,8.0547000000000004,0.20446,4.4480000000000004,5.3979999999999997,6.58,8.0549999999999997,9.9049999999999994,12.237,15.194000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,351,-0.1087,8.0511999999999997,0.20446,4.4459999999999997,5.3959999999999999,6.577,8.0510000000000002,9.9009999999999998,12.233000000000001,15.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,352,-0.10920000000000001,8.0478000000000005,0.20446,4.4450000000000003,5.3940000000000001,6.5739999999999998,8.048,9.8960000000000008,12.228,15.185 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,353,-0.10970000000000001,8.0442999999999998,0.20446,4.4429999999999996,5.3920000000000003,6.5720000000000001,8.0440000000000005,9.8919999999999995,12.223000000000001,15.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,354,-0.1103,8.0409000000000006,0.20446,4.4420000000000002,5.39,6.569,8.0410000000000004,9.8879999999999999,12.218999999999999,15.175000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,355,-0.1108,8.0374999999999996,0.20446,4.4400000000000004,5.3879999999999999,6.5659999999999998,8.0380000000000003,9.8840000000000003,12.214,15.17 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,356,-0.1113,8.0341000000000005,0.20446,4.4390000000000001,5.3860000000000001,6.5640000000000001,8.0340000000000007,9.8800000000000008,12.209,15.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,357,-0.1119,8.0307999999999993,0.20446,4.4370000000000003,5.3840000000000003,6.5609999999999999,8.0310000000000006,9.8759999999999994,12.205,15.161 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,358,-0.1124,8.0274999999999999,0.20446,4.4359999999999999,5.3819999999999997,6.5579999999999998,8.0280000000000005,9.8719999999999999,12.201000000000001,15.156000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,359,-0.1129,8.0242000000000004,0.20446,4.4340000000000002,5.38,6.556,8.0239999999999991,9.8680000000000003,12.196,15.151999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,360,-0.1134,8.0208999999999993,0.20446,4.4329999999999998,5.3780000000000001,6.5529999999999999,8.0210000000000008,9.8640000000000008,12.192,15.147 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,361,-0.114,8.0176999999999996,0.20446,4.4320000000000004,5.3760000000000003,6.55,8.0180000000000007,9.86,12.186999999999999,15.143000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,362,-0.1145,8.0145,0.20446,4.43,5.3739999999999997,6.548,8.0139999999999993,9.8569999999999993,12.183,15.138 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,363,-0.115,8.0113000000000003,0.20446,4.4290000000000003,5.3719999999999999,6.5449999999999999,8.0109999999999992,9.8529999999999998,12.179,15.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,364,-0.11550000000000001,8.0081000000000007,0.20444999999999999,4.4279999999999999,5.37,6.5430000000000001,8.0079999999999991,9.8490000000000002,12.173999999999999,15.129 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,365,-0.11600000000000001,8.0050000000000008,0.20444999999999999,4.4260000000000002,5.3689999999999998,6.54,8.0050000000000008,9.8450000000000006,12.17,15.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,366,-0.11650000000000001,8.0018999999999991,0.20444999999999999,4.4249999999999998,5.367,6.5380000000000003,8.0020000000000007,9.8409999999999993,12.166,15.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,367,-0.11700000000000001,7.9988000000000001,0.20444999999999999,4.4240000000000004,5.3650000000000002,6.5350000000000001,7.9989999999999997,9.8379999999999992,12.162000000000001,15.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,368,-0.11749999999999999,7.9957000000000003,0.20444000000000001,4.4219999999999997,5.3630000000000004,6.5330000000000004,7.9960000000000004,9.8339999999999996,12.157,15.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,369,-0.11799999999999999,7.9927000000000001,0.20444000000000001,4.4210000000000003,5.3609999999999998,6.5309999999999997,7.9930000000000003,9.83,12.153,15.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,370,-0.11849999999999999,7.9896000000000003,0.20444000000000001,4.42,5.359,6.5279999999999996,7.99,9.827,12.148999999999999,15.103 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,371,-0.11899999999999999,7.9866999999999999,0.20444000000000001,4.4189999999999996,5.3579999999999997,6.5259999999999998,7.9870000000000001,9.8230000000000004,12.145,15.099 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,372,-0.1195,7.9836999999999998,0.20443,4.4169999999999998,5.3559999999999999,6.524,7.984,9.82,12.141,15.093999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,373,-0.12,7.9806999999999997,0.20443,4.4160000000000004,5.3540000000000001,6.5209999999999999,7.9809999999999999,9.8160000000000007,12.137,15.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,374,-0.1205,7.9778000000000002,0.20443,4.415,5.3520000000000003,6.5190000000000001,7.9779999999999998,9.8119999999999994,12.132999999999999,15.086 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,375,-0.12089999999999999,7.9748999999999999,0.20441999999999999,4.4139999999999997,5.351,6.5170000000000003,7.9749999999999996,9.8089999999999993,12.129,15.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,376,-0.12139999999999999,7.9720000000000004,0.20441999999999999,4.4119999999999999,5.3490000000000002,6.5140000000000002,7.9720000000000004,9.8049999999999997,12.125,15.077999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,377,-0.12189999999999999,7.9691000000000001,0.20441000000000001,4.4109999999999996,5.3470000000000004,6.5119999999999996,7.9690000000000003,9.8019999999999996,12.121,15.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,378,-0.12239999999999999,7.9663000000000004,0.20441000000000001,4.41,5.3460000000000001,6.51,7.9660000000000002,9.7989999999999995,12.117000000000001,15.07 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,379,-0.12280000000000001,7.9634999999999998,0.20441000000000001,4.4089999999999998,5.3440000000000003,6.508,7.9640000000000004,9.7949999999999999,12.113,15.066000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,380,-0.12330000000000001,7.9607000000000001,0.2044,4.4080000000000004,5.3419999999999996,6.5060000000000002,7.9610000000000003,9.7919999999999998,12.109,15.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,381,-0.12379999999999999,7.9579000000000004,0.2044,4.407,5.3410000000000002,6.5030000000000001,7.9580000000000002,9.7880000000000003,12.106,15.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,382,-0.1242,7.9551999999999996,0.20438999999999999,4.4059999999999997,5.3390000000000004,6.5010000000000003,7.9550000000000001,9.7850000000000001,12.102,15.053000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,383,-0.12470000000000001,7.9523999999999999,0.20438999999999999,4.4039999999999999,5.3380000000000001,6.4989999999999997,7.952,9.782,12.098000000000001,15.05 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,384,-0.12509999999999999,7.9497,0.20438000000000001,4.4029999999999996,5.3360000000000003,6.4969999999999999,7.95,9.7780000000000005,12.093999999999999,15.045 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,385,-0.12559999999999999,7.9470000000000001,0.20438000000000001,4.4020000000000001,5.3339999999999996,6.4950000000000001,7.9470000000000001,9.7750000000000004,12.090999999999999,15.042 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,386,-0.12609999999999999,7.9443999999999999,0.20437,4.4009999999999998,5.3330000000000002,6.4930000000000003,7.944,9.7720000000000002,12.087,15.038 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,387,-0.1265,7.9417,0.20437,4.4000000000000004,5.3310000000000004,6.4909999999999997,7.9420000000000002,9.7690000000000001,12.083,15.034000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,388,-0.127,7.9390999999999998,0.20436000000000001,4.399,5.33,6.4889999999999999,7.9390000000000001,9.766,12.079000000000001,15.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,389,-0.12740000000000001,7.9364999999999997,0.20436000000000001,4.3979999999999997,5.3280000000000003,6.4870000000000001,7.9359999999999999,9.7620000000000005,12.076000000000001,15.026999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,390,-0.1278,7.9339000000000004,0.20435,4.3970000000000002,5.327,6.4850000000000003,7.9340000000000002,9.7590000000000003,12.071999999999999,15.022 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,391,-0.1283,7.9314,0.20435,4.3959999999999999,5.3250000000000002,6.4829999999999997,7.931,9.7560000000000002,12.069000000000001,15.019 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,392,-0.12870000000000001,7.9287999999999998,0.20433999999999999,4.3949999999999996,5.3239999999999998,6.4809999999999999,7.9290000000000003,9.7530000000000001,12.065,15.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,393,-0.12920000000000001,7.9263000000000003,0.20433000000000001,4.3940000000000001,5.3230000000000004,6.4790000000000001,7.9260000000000002,9.75,12.061999999999999,15.010999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,394,-0.12959999999999999,7.9238,0.20433000000000001,4.3929999999999998,5.3209999999999997,6.4770000000000003,7.9240000000000004,9.7469999999999999,12.058,15.007999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,395,-0.13,7.9212999999999996,0.20432,4.3920000000000003,5.32,6.4749999999999996,7.9210000000000003,9.7439999999999998,12.055,15.004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,396,-0.1305,7.9188999999999998,0.20432,4.391,5.3179999999999996,6.4729999999999999,7.9189999999999996,9.7409999999999997,12.052,15.000999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,397,-0.13089999999999999,7.9164000000000003,0.20430999999999999,4.3899999999999997,5.3170000000000002,6.4710000000000001,7.9160000000000004,9.7379999999999995,12.048,14.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,398,-0.1313,7.9139999999999997,0.20430000000000001,4.3890000000000002,5.3150000000000004,6.4690000000000003,7.9139999999999997,9.7349999999999994,12.044,14.993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,399,-0.13170000000000001,7.9116,0.20430000000000001,4.3879999999999999,5.3140000000000001,6.4669999999999996,7.9119999999999999,9.7319999999999993,12.041,14.99 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,400,-0.13220000000000001,7.9093,0.20429,4.3869999999999996,5.3129999999999997,6.4649999999999999,7.9089999999999998,9.7289999999999992,12.038,14.987 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,401,-0.1326,7.9069000000000003,0.20427999999999999,4.3860000000000001,5.3109999999999999,6.4640000000000004,7.907,9.7260000000000009,12.035,14.983000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,402,-0.13300000000000001,7.9046000000000003,0.20427999999999999,4.3849999999999998,5.31,6.4619999999999997,7.9050000000000002,9.7240000000000002,12.031000000000001,14.98 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,403,-0.13339999999999999,7.9021999999999997,0.20427000000000001,4.3849999999999998,5.3090000000000002,6.46,7.9020000000000001,9.7210000000000001,12.028,14.976000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,404,-0.1338,7.8998999999999997,0.20426,4.3840000000000003,5.3070000000000004,6.4580000000000002,7.9,9.718,12.025,14.972 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,405,-0.13420000000000001,7.8977000000000004,0.20426,4.383,5.306,6.4560000000000004,7.8979999999999997,9.7149999999999999,12.022,14.97 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,406,-0.1346,7.8954000000000004,0.20424999999999999,4.3819999999999997,5.3049999999999997,6.4550000000000001,7.8949999999999996,9.7119999999999997,12.018000000000001,14.965999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,407,-0.13500000000000001,7.8932000000000002,0.20424,4.3810000000000002,5.3040000000000003,6.4530000000000003,7.8929999999999998,9.7100000000000009,12.015000000000001,14.962999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,408,-0.13550000000000001,7.8909000000000002,0.20424,4.38,5.3019999999999996,6.4509999999999996,7.891,9.7070000000000007,12.012,14.96 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,409,-0.13589999999999999,7.8887,0.20422999999999999,4.3789999999999996,5.3010000000000002,6.4489999999999998,7.8890000000000002,9.7040000000000006,12.009,14.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,410,-0.1363,7.8865999999999996,0.20422000000000001,4.3789999999999996,5.3,6.4480000000000004,7.8869999999999996,9.702,12.006,14.952999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,411,-0.13669999999999999,7.8844000000000003,0.20421,4.3780000000000001,5.2990000000000004,6.4459999999999997,7.8840000000000003,9.6989999999999998,12.003,14.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,412,-0.13700000000000001,7.8822000000000001,0.20421,4.3769999999999998,5.2969999999999997,6.444,7.8819999999999997,9.6959999999999997,12,14.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,413,-0.13739999999999999,7.8800999999999997,0.20419999999999999,4.3760000000000003,5.2960000000000003,6.4429999999999996,7.88,9.6940000000000008,11.997,14.943 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,414,-0.13780000000000001,7.8780000000000001,0.20419000000000001,4.375,5.2949999999999999,6.4409999999999998,7.8780000000000001,9.6910000000000007,11.994,14.94 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,415,-0.13819999999999999,7.8758999999999997,0.20418,4.375,5.2939999999999996,6.44,7.8760000000000003,9.6880000000000006,11.991,14.936999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,416,-0.1386,7.8738000000000001,0.20418,4.3739999999999997,5.2930000000000001,6.4379999999999997,7.8739999999999997,9.6859999999999999,11.988,14.933999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,417,-0.13900000000000001,7.8718000000000004,0.20416999999999999,4.3730000000000002,5.2919999999999998,6.4359999999999999,7.8719999999999999,9.6829999999999998,11.984999999999999,14.930999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,418,-0.1394,7.8696999999999999,0.20416000000000001,4.3719999999999999,5.29,6.4349999999999996,7.87,9.6809999999999992,11.981999999999999,14.928000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,419,-0.13980000000000001,7.8677000000000001,0.20415,4.3719999999999999,5.2889999999999997,6.4329999999999998,7.8680000000000003,9.6780000000000008,11.978999999999999,14.925000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,420,-0.1401,7.8657000000000004,0.20413999999999999,4.3710000000000004,5.2880000000000003,6.4320000000000004,7.8659999999999997,9.6760000000000002,11.976000000000001,14.922000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,421,-0.14050000000000001,7.8636999999999997,0.20413999999999999,4.37,5.2869999999999999,6.43,7.8639999999999999,9.673,11.974,14.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,422,-0.1409,7.8617999999999997,0.20413000000000001,4.3689999999999998,5.2859999999999996,6.4290000000000003,7.8620000000000001,9.6709999999999994,11.971,14.916 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,423,-0.14130000000000001,7.8597999999999999,0.20412,4.3689999999999998,5.2850000000000001,6.4269999999999996,7.86,9.6690000000000005,11.968,14.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,424,-0.1416,7.8578999999999999,0.20411000000000001,4.3680000000000003,5.2839999999999998,6.4260000000000002,7.8579999999999997,9.6660000000000004,11.965,14.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,425,-0.14199999999999999,7.8559999999999999,0.2041,4.367,5.2830000000000004,6.4240000000000004,7.8559999999999999,9.6639999999999997,11.962999999999999,14.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,426,-0.1424,7.8540999999999999,0.2041,4.367,5.282,6.423,7.8540000000000001,9.6620000000000008,11.96,14.904999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,427,-0.14269999999999999,7.8521999999999998,0.20408999999999999,4.3659999999999997,5.2809999999999997,6.4210000000000003,7.8520000000000003,9.6590000000000007,11.957000000000001,14.901999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,428,-0.1431,7.8502999999999998,0.20408000000000001,4.3650000000000002,5.28,6.42,7.85,9.657,11.955,14.898999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,429,-0.14349999999999999,7.8484999999999996,0.20407,4.3650000000000002,5.2789999999999999,6.4180000000000001,7.8479999999999999,9.6549999999999994,11.952,14.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,430,-0.14380000000000001,7.8467000000000002,0.20405999999999999,4.3639999999999999,5.2779999999999996,6.4169999999999998,7.8470000000000004,9.6519999999999992,11.949,14.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,431,-0.14419999999999999,7.8449,0.20405000000000001,4.3630000000000004,5.2770000000000001,6.4160000000000004,7.8449999999999998,9.65,11.946999999999999,14.891 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,432,-0.14449999999999999,7.8430999999999997,0.20405000000000001,4.3630000000000004,5.2759999999999998,6.4139999999999997,7.843,9.6479999999999997,11.944000000000001,14.888 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,433,-0.1449,7.8413000000000004,0.20404,4.3620000000000001,5.2750000000000004,6.4130000000000003,7.8410000000000002,9.6460000000000008,11.942,14.885999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,434,-0.1452,7.8395000000000001,0.20402999999999999,4.3609999999999998,5.274,6.4119999999999999,7.84,9.6440000000000001,11.939,14.882999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,435,-0.14560000000000001,7.8377999999999997,0.20402000000000001,4.3609999999999998,5.2729999999999997,6.41,7.8380000000000001,9.641,11.936999999999999,14.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,436,-0.1459,7.8361000000000001,0.20401,4.3600000000000003,5.2720000000000002,6.4089999999999998,7.8360000000000003,9.6389999999999993,11.933999999999999,14.877000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,437,-0.14630000000000001,7.8343999999999996,0.20399999999999999,4.3600000000000003,5.2709999999999999,6.4080000000000004,7.8339999999999996,9.6370000000000005,11.932,14.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,438,-0.14660000000000001,7.8327,0.20399999999999999,4.359,5.27,6.4059999999999997,7.8330000000000002,9.6349999999999998,11.93,14.872999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,439,-0.14699999999999999,7.8310000000000004,0.20399,4.3579999999999997,5.2690000000000001,6.4050000000000002,7.8310000000000004,9.6329999999999991,11.927,14.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,440,-0.14729999999999999,7.8292999999999999,0.20397999999999999,4.3579999999999997,5.2679999999999998,6.4039999999999999,7.8289999999999997,9.6310000000000002,11.925000000000001,14.867000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,441,-0.1477,7.8277000000000001,0.20397000000000001,4.3570000000000002,5.2670000000000003,6.4029999999999996,7.8280000000000003,9.6289999999999996,11.922000000000001,14.865 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,442,-0.14799999999999999,7.8259999999999996,0.20396,4.3570000000000002,5.2670000000000003,6.4009999999999998,7.8259999999999996,9.6270000000000007,11.92,14.862 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,443,-0.14829999999999999,7.8243999999999998,0.20394999999999999,4.3559999999999999,5.266,6.4,7.8239999999999998,9.625,11.917,14.86 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,444,-0.1487,7.8228,0.20394999999999999,4.3559999999999999,5.2649999999999997,6.399,7.8230000000000004,9.6229999999999993,11.914999999999999,14.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,445,-0.14899999999999999,7.8212999999999999,0.20394000000000001,4.3550000000000004,5.2640000000000002,6.3979999999999997,7.8209999999999997,9.6210000000000004,11.913,14.856 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,446,-0.14929999999999999,7.8197000000000001,0.20393,4.3540000000000001,5.2629999999999999,6.3970000000000002,7.82,9.6189999999999998,11.911,14.853 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,447,-0.1497,7.8181000000000003,0.20391999999999999,4.3540000000000001,5.2619999999999996,6.3949999999999996,7.8179999999999996,9.6170000000000009,11.909000000000001,14.851000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,448,-0.15,7.8166000000000002,0.20391000000000001,4.3529999999999998,5.2619999999999996,6.3940000000000001,7.8170000000000002,9.6150000000000002,11.906000000000001,14.848000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,449,-0.15029999999999999,7.8151000000000002,0.2039,4.3529999999999998,5.2610000000000001,6.3929999999999998,7.8150000000000004,9.6129999999999995,11.904,14.846 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,450,-0.15060000000000001,7.8136000000000001,0.20388999999999999,4.3520000000000003,5.26,6.3920000000000003,7.8140000000000001,9.6110000000000007,11.901999999999999,14.843999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,451,-0.151,7.8121,0.20388999999999999,4.3520000000000003,5.2590000000000003,6.391,7.8120000000000003,9.61,11.9,14.842000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,452,-0.15129999999999999,7.8106,0.20388000000000001,4.351,5.258,6.39,7.8109999999999999,9.6080000000000005,11.898,14.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,453,-0.15160000000000001,7.8091999999999997,0.20387,4.351,5.258,6.3890000000000002,7.8090000000000002,9.6059999999999999,11.896000000000001,14.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,454,-0.15190000000000001,7.8076999999999996,0.20386000000000001,4.351,5.2569999999999997,6.3879999999999999,7.8079999999999998,9.6039999999999992,11.894,14.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,455,-0.1522,7.8063000000000002,0.20385,4.3499999999999996,5.2560000000000002,6.3860000000000001,7.806,9.6020000000000003,11.891999999999999,14.833 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,456,-0.1525,7.8048999999999999,0.20385,4.3499999999999996,5.2549999999999999,6.3849999999999998,7.8049999999999997,9.6010000000000009,11.89,14.831 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,457,-0.15290000000000001,7.8034999999999997,0.20383999999999999,4.3490000000000002,5.2549999999999999,6.3840000000000003,7.8040000000000003,9.5990000000000002,11.888,14.829000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,458,-0.1532,7.8021000000000003,0.20383000000000001,4.3490000000000002,5.2539999999999996,6.383,7.8019999999999996,9.5969999999999995,11.885999999999999,14.827 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,459,-0.1535,7.8007,0.20382,4.3479999999999999,5.2530000000000001,6.3819999999999997,7.8010000000000002,9.5950000000000006,11.884,14.824999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,460,-0.15379999999999999,7.7994000000000003,0.20380999999999999,4.3479999999999999,5.2519999999999998,6.3810000000000002,7.7990000000000004,9.5939999999999994,11.882,14.823 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,461,-0.15409999999999999,7.798,0.20380999999999999,4.3470000000000004,5.2519999999999998,6.38,7.798,9.5920000000000005,11.88,14.821 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,462,-0.15440000000000001,7.7967000000000004,0.20380000000000001,4.3470000000000004,5.2510000000000003,6.3789999999999996,7.7969999999999997,9.5909999999999993,11.878,14.819000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,463,-0.1547,7.7953999999999999,0.20379,4.3470000000000004,5.25,6.3780000000000001,7.7949999999999999,9.5890000000000004,11.875999999999999,14.817 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,464,-0.155,7.7941000000000003,0.20377999999999999,4.3460000000000001,5.25,6.3769999999999998,7.7939999999999996,9.5869999999999997,11.874000000000001,14.815 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,465,-0.15529999999999999,7.7927999999999997,0.20377999999999999,4.3460000000000001,5.2489999999999997,6.3760000000000003,7.7930000000000001,9.5860000000000003,11.872999999999999,14.814 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,466,-0.15559999999999999,7.7915999999999999,0.20377000000000001,4.3449999999999998,5.2480000000000002,6.375,7.7919999999999998,9.5839999999999996,11.871,14.811999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,467,-0.15590000000000001,7.7903000000000002,0.20376,4.3449999999999998,5.2480000000000002,6.3739999999999997,7.79,9.5830000000000002,11.869,14.81 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,468,-0.15620000000000001,7.7891000000000004,0.20374999999999999,4.3449999999999998,5.2469999999999999,6.3739999999999997,7.7889999999999997,9.5809999999999995,11.867000000000001,14.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,469,-0.1565,7.7877999999999998,0.20374999999999999,4.3440000000000003,5.2460000000000004,6.3719999999999999,7.7880000000000003,9.58,11.865,14.805999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,470,-0.15679999999999999,7.7866,0.20374,4.3440000000000003,5.2460000000000004,6.3719999999999999,7.7869999999999999,9.5779999999999994,11.864000000000001,14.804 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,471,-0.15709999999999999,7.7854000000000001,0.20372999999999999,4.343,5.2450000000000001,6.3710000000000004,7.7850000000000001,9.5760000000000005,11.862,14.803000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,472,-0.15740000000000001,7.7842000000000002,0.20372000000000001,4.343,5.2450000000000001,6.37,7.7839999999999998,9.5749999999999993,11.86,14.801 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,473,-0.15759999999999999,7.7831000000000001,0.20372000000000001,4.343,5.2439999999999998,6.3689999999999998,7.7830000000000004,9.5739999999999998,11.859,14.798999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,474,-0.15790000000000001,7.7819000000000003,0.20371,4.3419999999999996,5.2430000000000003,6.3680000000000003,7.782,9.5719999999999992,11.856999999999999,14.798 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,475,-0.15820000000000001,7.7808000000000002,0.20369999999999999,4.3419999999999996,5.2430000000000003,6.367,7.7809999999999997,9.5709999999999997,11.855,14.795999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,476,-0.1585,7.7796000000000003,0.20369999999999999,4.3410000000000002,5.242,6.3659999999999997,7.78,9.5690000000000008,11.853999999999999,14.795 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,477,-0.1588,7.7785000000000002,0.20369000000000001,4.3410000000000002,5.242,6.3659999999999997,7.7779999999999996,9.5679999999999996,11.852,14.792999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,478,-0.15909999999999999,7.7774000000000001,0.20368,4.3410000000000002,5.2409999999999997,6.3650000000000002,7.7770000000000001,9.5670000000000002,11.851000000000001,14.791 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,479,-0.1593,7.7763,0.20368,4.34,5.24,6.3639999999999999,7.7759999999999998,9.5649999999999995,11.849,14.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,480,-0.15959999999999999,7.7752999999999997,0.20366999999999999,4.34,5.24,6.3630000000000004,7.7750000000000004,9.5640000000000001,11.848000000000001,14.788 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,481,-0.15989999999999999,7.7742000000000004,0.20366000000000001,4.34,5.2389999999999999,6.3620000000000001,7.774,9.5630000000000006,11.846,14.787000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,482,-0.16020000000000001,7.7732000000000001,0.20366000000000001,4.34,5.2389999999999999,6.3620000000000001,7.7729999999999997,9.5609999999999999,11.845000000000001,14.786 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,483,-0.16039999999999999,7.7721,0.20365,4.3390000000000004,5.2380000000000004,6.3609999999999998,7.7720000000000002,9.56,11.843,14.784000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,484,-0.16070000000000001,7.7710999999999997,0.20365,4.3390000000000004,5.2380000000000004,6.36,7.7709999999999999,9.5589999999999993,11.842000000000001,14.782999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,485,-0.161,7.7701000000000002,0.20363999999999999,4.3390000000000004,5.2370000000000001,6.359,7.77,9.5579999999999998,11.840999999999999,14.781000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,486,-0.1613,7.7690999999999999,0.20363000000000001,4.3380000000000001,5.2370000000000001,6.359,7.7690000000000001,9.5559999999999992,11.839,14.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,487,-0.1615,7.7680999999999996,0.20363000000000001,4.3380000000000001,5.2359999999999998,6.3579999999999997,7.7679999999999998,9.5549999999999997,11.837999999999999,14.779 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,488,-0.1618,7.7671000000000001,0.20362,4.3380000000000001,5.2359999999999998,6.3570000000000002,7.7670000000000003,9.5540000000000003,11.836,14.776999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,489,-0.16209999999999999,7.7662000000000004,0.20362,4.3380000000000001,5.2350000000000003,6.3559999999999999,7.766,9.5530000000000008,11.835000000000001,14.776999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,490,-0.1623,7.7652999999999999,0.20361000000000001,4.3369999999999997,5.2350000000000003,6.3559999999999999,7.7649999999999997,9.5519999999999996,11.834,14.775 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,491,-0.16259999999999999,7.7643000000000004,0.2036,4.3369999999999997,5.234,6.3550000000000004,7.7640000000000002,9.5500000000000007,11.832000000000001,14.773999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,492,-0.1628,7.7633999999999999,0.2036,4.3369999999999997,5.234,6.3540000000000001,7.7629999999999999,9.5489999999999995,11.831,14.772 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,493,-0.16309999999999999,7.7625000000000002,0.20358999999999999,4.3369999999999997,5.2329999999999997,6.3540000000000001,7.7619999999999996,9.548,11.83,14.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,494,-0.16339999999999999,7.7615999999999996,0.20358999999999999,4.3360000000000003,5.2329999999999997,6.3529999999999998,7.7619999999999996,9.5470000000000006,11.829000000000001,14.77 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,495,-0.1636,7.7606999999999999,0.20358000000000001,4.3360000000000003,5.2329999999999997,6.3520000000000003,7.7610000000000001,9.5459999999999994,11.827,14.769 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,496,-0.16389999999999999,7.7599,0.20358000000000001,4.3360000000000003,5.2320000000000002,6.3520000000000003,7.76,9.5449999999999999,11.827,14.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,497,-0.1641,7.7590000000000003,0.20357,4.3360000000000003,5.2320000000000002,6.351,7.7590000000000003,9.5440000000000005,11.824999999999999,14.766999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,498,-0.16439999999999999,7.7582000000000004,0.20357,4.335,5.2309999999999999,6.35,7.758,9.5429999999999993,11.824,14.766 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,499,-0.1646,7.7573999999999996,0.20357,4.335,5.2309999999999999,6.35,7.7569999999999997,9.5419999999999998,11.823,14.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,500,-0.16489999999999999,7.7565,0.20355999999999999,4.335,5.23,6.3490000000000002,7.7560000000000002,9.5410000000000004,11.821999999999999,14.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,501,-0.1651,7.7557,0.20355999999999999,4.335,5.23,6.3479999999999999,7.7560000000000002,9.5399999999999991,11.821,14.763 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,502,-0.16539999999999999,7.7549999999999999,0.20355000000000001,4.3339999999999996,5.23,6.3479999999999999,7.7549999999999999,9.5389999999999997,11.82,14.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,503,-0.1656,7.7542,0.20355000000000001,4.3339999999999996,5.2290000000000001,6.3470000000000004,7.7539999999999996,9.5380000000000003,11.819000000000001,14.760999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,504,-0.16589999999999999,7.7534000000000001,0.20354,4.3339999999999996,5.2290000000000001,6.3470000000000004,7.7530000000000001,9.5370000000000008,11.818,14.76 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,505,-0.1661,7.7526999999999999,0.20354,4.3339999999999996,5.2290000000000001,6.3460000000000001,7.7530000000000001,9.5359999999999996,11.817,14.76 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,506,-0.16639999999999999,7.7519,0.20354,4.3339999999999996,5.2279999999999998,6.3460000000000001,7.7519999999999998,9.5350000000000001,11.816000000000001,14.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,507,-0.1666,7.7511999999999999,0.20352999999999999,4.3330000000000002,5.2279999999999998,6.3449999999999998,7.7510000000000003,9.5340000000000007,11.815,14.757999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,508,-0.1668,7.7504999999999997,0.20352999999999999,4.3330000000000002,5.2270000000000003,6.3449999999999998,7.75,9.5340000000000007,11.814,14.757 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,509,-0.1671,7.7497999999999996,0.20352999999999999,4.3330000000000002,5.2270000000000003,6.3440000000000003,7.75,9.5329999999999995,11.813000000000001,14.757 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,510,-0.1673,7.7491000000000003,0.20352000000000001,4.3330000000000002,5.2270000000000003,6.3440000000000003,7.7489999999999997,9.532,11.811999999999999,14.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,511,-0.1676,7.7484000000000002,0.20352000000000001,4.3330000000000002,5.226,6.343,7.7480000000000002,9.5310000000000006,11.811999999999999,14.755000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,512,-0.1678,7.7477999999999998,0.20352000000000001,4.3319999999999999,5.226,6.343,7.7480000000000002,9.5299999999999994,11.811,14.755000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,513,-0.16800000000000001,7.7470999999999997,0.20351,4.3319999999999999,5.226,6.3419999999999996,7.7469999999999999,9.5289999999999999,11.81,14.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,514,-0.16830000000000001,7.7465000000000002,0.20351,4.3319999999999999,5.226,6.3419999999999996,7.7460000000000004,9.5289999999999999,11.808999999999999,14.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,515,-0.16850000000000001,7.7458,0.20351,4.3319999999999999,5.2249999999999996,6.3410000000000002,7.7460000000000004,9.5280000000000005,11.808,14.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,516,-0.16869999999999999,7.7451999999999996,0.20351,4.3319999999999999,5.2249999999999996,6.3410000000000002,7.7450000000000001,9.5269999999999992,11.808,14.752000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,517,-0.16889999999999999,7.7446000000000002,0.20349999999999999,4.3319999999999999,5.2249999999999996,6.34,7.7450000000000001,9.5259999999999998,11.807,14.750999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,518,-0.16919999999999999,7.7439999999999998,0.20349999999999999,4.3319999999999999,5.2240000000000002,6.34,7.7439999999999998,9.5259999999999998,11.805999999999999,14.750999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,519,-0.1694,7.7434000000000003,0.20349999999999999,4.3310000000000004,5.2240000000000002,6.3390000000000004,7.7430000000000003,9.5250000000000004,11.805,14.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,520,-0.1696,7.7428999999999997,0.20349999999999999,4.3310000000000004,5.2240000000000002,6.3390000000000004,7.7430000000000003,9.5250000000000004,11.805,14.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,521,-0.1699,7.7423000000000002,0.20349999999999999,4.3310000000000004,5.2229999999999999,6.3380000000000001,7.742,9.5239999999999991,11.804,14.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,522,-0.1701,7.7417999999999996,0.20349,4.3310000000000004,5.2229999999999999,6.3380000000000001,7.742,9.5229999999999997,11.803000000000001,14.749000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,523,-0.17030000000000001,7.7412000000000001,0.20349,4.3310000000000004,5.2229999999999999,6.3380000000000001,7.7409999999999997,9.5220000000000002,11.803000000000001,14.749000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,524,-0.17050000000000001,7.7407000000000004,0.20349,4.3310000000000004,5.2229999999999999,6.3369999999999997,7.7409999999999997,9.5220000000000002,11.802,14.747999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,525,-0.17069999999999999,7.7401999999999997,0.20349,4.3310000000000004,5.2220000000000004,6.3369999999999997,7.74,9.5210000000000008,11.802,14.747999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,526,-0.17100000000000001,7.7397,0.20349,4.3310000000000004,5.2220000000000004,6.3369999999999997,7.74,9.5210000000000008,11.801,14.747999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,527,-0.17119999999999999,7.7392000000000003,0.20349,4.33,5.2220000000000004,6.3360000000000003,7.7389999999999999,9.52,11.801,14.747999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,528,-0.1714,7.7386999999999997,0.20349,4.33,5.2220000000000004,6.3360000000000003,7.7389999999999999,9.52,11.8,14.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,529,-0.1716,7.7382,0.20349,4.33,5.2210000000000001,6.335,7.7380000000000004,9.5190000000000001,11.8,14.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,530,-0.17180000000000001,7.7378,0.20349,4.33,5.2210000000000001,6.335,7.7380000000000004,9.5190000000000001,11.798999999999999,14.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,531,-0.17199999999999999,7.7373000000000003,0.20349,4.33,5.2210000000000001,6.335,7.7370000000000001,9.5180000000000007,11.798999999999999,14.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,532,-0.17230000000000001,7.7369000000000003,0.20349,4.33,5.2210000000000001,6.3339999999999996,7.7370000000000001,9.5180000000000007,11.798,14.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,533,-0.17249999999999999,7.7365000000000004,0.20349,4.33,5.2210000000000001,6.3339999999999996,7.7359999999999998,9.5169999999999995,11.798,14.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,534,-0.17269999999999999,7.7361000000000004,0.20349,4.33,5.22,6.3339999999999996,7.7359999999999998,9.5169999999999995,11.798,14.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,535,-0.1729,7.7356999999999996,0.20349,4.33,5.22,6.3339999999999996,7.7359999999999998,9.516,11.797000000000001,14.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,536,-0.1731,7.7352999999999996,0.20349,4.33,5.22,6.3330000000000002,7.7350000000000003,9.516,11.797000000000001,14.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,537,-0.17330000000000001,7.7348999999999997,0.20349,4.33,5.22,6.3330000000000002,7.7350000000000003,9.5150000000000006,11.795999999999999,14.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,538,-0.17349999999999999,7.7344999999999997,0.20349,4.3289999999999997,5.22,6.3330000000000002,7.734,9.5150000000000006,11.795999999999999,14.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,539,-0.17369999999999999,7.7342000000000004,0.20349,4.3289999999999997,5.22,6.3319999999999999,7.734,9.5150000000000006,11.795999999999999,14.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,540,-0.1739,7.7337999999999996,0.20349,4.3289999999999997,5.2190000000000003,6.3319999999999999,7.734,9.5139999999999993,11.795,14.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,541,-0.1741,7.7335000000000003,0.20349,4.3289999999999997,5.2190000000000003,6.3319999999999999,7.734,9.5139999999999993,11.795,14.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,542,-0.17430000000000001,7.7332000000000001,0.20349,4.3289999999999997,5.2190000000000003,6.3319999999999999,7.7329999999999997,9.5129999999999999,11.795,14.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,543,-0.17449999999999999,7.7328999999999999,0.20349,4.3289999999999997,5.2190000000000003,6.3310000000000004,7.7329999999999997,9.5129999999999999,11.795,14.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,544,-0.17469999999999999,7.7325999999999997,0.20349,4.3289999999999997,5.2190000000000003,6.3310000000000004,7.7329999999999997,9.5129999999999999,11.794,14.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,545,-0.1749,7.7323000000000004,0.20349999999999999,4.3289999999999997,5.2190000000000003,6.3310000000000004,7.7320000000000002,9.5129999999999999,11.794,14.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,546,-0.17510000000000001,7.7320000000000002,0.20349999999999999,4.3289999999999997,5.2190000000000003,6.3310000000000004,7.7320000000000002,9.5120000000000005,11.794,14.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,547,-0.17530000000000001,7.7317,0.20349999999999999,4.3289999999999997,5.218,6.33,7.7320000000000002,9.5120000000000005,11.794,14.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,548,-0.17549999999999999,7.7314999999999996,0.20349999999999999,4.3289999999999997,5.218,6.33,7.7320000000000002,9.5120000000000005,11.794,14.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,549,-0.1757,7.7312000000000003,0.20349999999999999,4.3289999999999997,5.218,6.33,7.7309999999999999,9.5109999999999992,11.794,14.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,550,-0.1759,7.7309999999999999,0.20351,4.3289999999999997,5.218,6.33,7.7309999999999999,9.5109999999999992,11.794,14.747999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,551,-0.17610000000000001,7.7308000000000003,0.20351,4.3289999999999997,5.218,6.33,7.7309999999999999,9.5109999999999992,11.794,14.747999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,552,-0.17630000000000001,7.7305999999999999,0.20351,4.3289999999999997,5.218,6.33,7.7309999999999999,9.5109999999999992,11.792999999999999,14.747999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,553,-0.17649999999999999,7.7302999999999997,0.20351,4.3289999999999997,5.218,6.3289999999999997,7.73,9.5109999999999992,11.792999999999999,14.749000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,554,-0.1767,7.7302,0.20352000000000001,4.3289999999999997,5.218,6.3289999999999997,7.73,9.5109999999999992,11.794,14.749000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,555,-0.1769,7.73,0.20352000000000001,4.3289999999999997,5.218,6.3289999999999997,7.73,9.51,11.792999999999999,14.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,556,-0.17710000000000001,7.7298,0.20352000000000001,4.3289999999999997,5.218,6.3289999999999997,7.73,9.51,11.792999999999999,14.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,557,-0.17730000000000001,7.7295999999999996,0.20352999999999999,4.3289999999999997,5.2169999999999996,6.3289999999999997,7.73,9.51,11.794,14.750999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,558,-0.1774,7.7294999999999998,0.20352999999999999,4.3289999999999997,5.2169999999999996,6.3289999999999997,7.73,9.51,11.794,14.750999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,559,-0.17760000000000001,7.7293000000000003,0.20354,4.3289999999999997,5.2169999999999996,6.3289999999999997,7.7290000000000001,9.51,11.794,14.752000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,560,-0.17780000000000001,7.7291999999999996,0.20354,4.3289999999999997,5.2169999999999996,6.3280000000000003,7.7290000000000001,9.51,11.794,14.752000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,561,-0.17799999999999999,7.7290999999999999,0.20354,4.3289999999999997,5.2169999999999996,6.3280000000000003,7.7290000000000001,9.51,11.794,14.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,562,-0.1782,7.7290000000000001,0.20355000000000001,4.3289999999999997,5.2169999999999996,6.3280000000000003,7.7290000000000001,9.51,11.794,14.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,563,-0.1784,7.7289000000000003,0.20355000000000001,4.3289999999999997,5.2169999999999996,6.3280000000000003,7.7290000000000001,9.51,11.794,14.754 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,564,-0.17849999999999999,7.7287999999999997,0.20355999999999999,4.3289999999999997,5.2169999999999996,6.3280000000000003,7.7290000000000001,9.51,11.794,14.755000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,565,-0.1787,7.7286999999999999,0.20355999999999999,4.3289999999999997,5.2169999999999996,6.3280000000000003,7.7290000000000001,9.51,11.794,14.755000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,566,-0.1789,7.7286999999999999,0.20357,4.3289999999999997,5.2169999999999996,6.3280000000000003,7.7290000000000001,9.51,11.795,14.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,567,-0.17910000000000001,7.7286000000000001,0.20357,4.3289999999999997,5.2169999999999996,6.3280000000000003,7.7290000000000001,9.51,11.795,14.757 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,568,-0.17929999999999999,7.7286000000000001,0.20358000000000001,4.3289999999999997,5.2169999999999996,6.3280000000000003,7.7290000000000001,9.51,11.795,14.757999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,569,-0.1794,7.7285000000000004,0.20358000000000001,4.3289999999999997,5.2169999999999996,6.3280000000000003,7.7279999999999998,9.51,11.795,14.757999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,570,-0.17960000000000001,7.7285000000000004,0.20358999999999999,4.3289999999999997,5.2169999999999996,6.3280000000000003,7.7279999999999998,9.51,11.795999999999999,14.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,571,-0.17979999999999999,7.7285000000000004,0.20358999999999999,4.3289999999999997,5.2169999999999996,6.3280000000000003,7.7279999999999998,9.51,11.795999999999999,14.76 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,572,-0.18,7.7285000000000004,0.2036,4.3289999999999997,5.2169999999999996,6.3280000000000003,7.7279999999999998,9.51,11.797000000000001,14.760999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,573,-0.18010000000000001,7.7285000000000004,0.2036,4.3289999999999997,5.2169999999999996,6.3280000000000003,7.7279999999999998,9.51,11.797000000000001,14.760999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,574,-0.18029999999999999,7.7285000000000004,0.20361000000000001,4.3289999999999997,5.2169999999999996,6.3280000000000003,7.7279999999999998,9.51,11.797000000000001,14.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,575,-0.18049999999999999,7.7285000000000004,0.20362,4.3289999999999997,5.2169999999999996,6.3280000000000003,7.7279999999999998,9.51,11.798,14.763 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,576,-0.1807,7.7285000000000004,0.20362,4.33,5.2169999999999996,6.3280000000000003,7.7279999999999998,9.51,11.798,14.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,577,-0.18079999999999999,7.7286000000000001,0.20363000000000001,4.33,5.2169999999999996,6.3280000000000003,7.7290000000000001,9.5109999999999992,11.798,14.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,578,-0.18099999999999999,7.7286000000000001,0.20363999999999999,4.33,5.2169999999999996,6.3280000000000003,7.7290000000000001,9.5109999999999992,11.798999999999999,14.766 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,579,-0.1812,7.7286999999999999,0.20363999999999999,4.33,5.2169999999999996,6.3280000000000003,7.7290000000000001,9.5109999999999992,11.798999999999999,14.766999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,580,-0.18129999999999999,7.7287999999999997,0.20365,4.33,5.2169999999999996,6.3280000000000003,7.7290000000000001,9.5109999999999992,11.8,14.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,581,-0.18149999999999999,7.7287999999999997,0.20366000000000001,4.33,5.2169999999999996,6.3280000000000003,7.7290000000000001,9.5109999999999992,11.8,14.769 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,582,-0.1817,7.7289000000000003,0.20366999999999999,4.33,5.2169999999999996,6.3280000000000003,7.7290000000000001,9.5109999999999992,11.801,14.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,583,-0.18179999999999999,7.7290000000000001,0.20366999999999999,4.33,5.2169999999999996,6.3280000000000003,7.7290000000000001,9.5120000000000005,11.801,14.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,584,-0.182,7.7290999999999999,0.20368,4.33,5.218,6.3280000000000003,7.7290000000000001,9.5120000000000005,11.802,14.772 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,585,-0.1822,7.7293000000000003,0.20369000000000001,4.33,5.218,6.3280000000000003,7.7290000000000001,9.5120000000000005,11.802,14.773999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,586,-0.18229999999999999,7.7294,0.20369999999999999,4.33,5.218,6.3280000000000003,7.7290000000000001,9.5129999999999999,11.803000000000001,14.775 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,587,-0.1825,7.7294999999999998,0.20371,4.33,5.218,6.3280000000000003,7.73,9.5129999999999999,11.804,14.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,588,-0.1827,7.7297000000000002,0.20371,4.3310000000000004,5.218,6.3280000000000003,7.73,9.5129999999999999,11.804,14.776999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,589,-0.18279999999999999,7.7298,0.20372000000000001,4.3310000000000004,5.218,6.3289999999999997,7.73,9.5129999999999999,11.805,14.778 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,590,-0.183,7.73,0.20372999999999999,4.3310000000000004,5.218,6.3289999999999997,7.73,9.5139999999999993,11.805,14.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,591,-0.1832,7.7302,0.20374,4.3310000000000004,5.218,6.3289999999999997,7.73,9.5139999999999993,11.805999999999999,14.781000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,592,-0.18329999999999999,7.7302999999999997,0.20374999999999999,4.3310000000000004,5.218,6.3289999999999997,7.73,9.5139999999999993,11.807,14.782 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,593,-0.1835,7.7305000000000001,0.20376,4.3310000000000004,5.218,6.3289999999999997,7.73,9.5150000000000006,11.808,14.784000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,594,-0.18360000000000001,7.7306999999999997,0.20377000000000001,4.3310000000000004,5.218,6.3289999999999997,7.7309999999999999,9.5150000000000006,11.808,14.785 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,595,-0.18379999999999999,7.7309000000000001,0.20377999999999999,4.3310000000000004,5.218,6.3289999999999997,7.7309999999999999,9.5150000000000006,11.808999999999999,14.787000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,596,-0.18390000000000001,7.7312000000000003,0.20379,4.3310000000000004,5.2190000000000003,6.3289999999999997,7.7309999999999999,9.516,11.81,14.788 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,597,-0.18410000000000001,7.7313999999999998,0.20380000000000001,4.3319999999999999,5.2190000000000003,6.3289999999999997,7.7309999999999999,9.516,11.811,14.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,598,-0.18429999999999999,7.7316000000000003,0.20380999999999999,4.3319999999999999,5.2190000000000003,6.33,7.7320000000000002,9.5169999999999995,11.811,14.791 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,599,-0.18440000000000001,7.7319000000000004,0.20382,4.3319999999999999,5.2190000000000003,6.33,7.7320000000000002,9.5169999999999995,11.811999999999999,14.792 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,600,-0.18459999999999999,7.7321,0.20383000000000001,4.3319999999999999,5.2190000000000003,6.33,7.7320000000000002,9.5180000000000007,11.813000000000001,14.794 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,601,-0.1847,7.7324000000000002,0.20383999999999999,4.3319999999999999,5.2190000000000003,6.33,7.7320000000000002,9.5180000000000007,11.814,14.795 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,602,-0.18490000000000001,7.7325999999999997,0.20385,4.3319999999999999,5.2190000000000003,6.33,7.7329999999999997,9.5180000000000007,11.815,14.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,603,-0.185,7.7328999999999999,0.20386000000000001,4.3319999999999999,5.22,6.33,7.7329999999999997,9.5190000000000001,11.815,14.798 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,604,-0.1852,7.7332000000000001,0.20387,4.3319999999999999,5.22,6.3310000000000004,7.7329999999999997,9.5190000000000001,11.816000000000001,14.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,605,-0.18529999999999999,7.7335000000000003,0.20388000000000001,4.3330000000000002,5.22,6.3310000000000004,7.734,9.52,11.817,14.801 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,606,-0.1855,7.7337999999999996,0.2039,4.3330000000000002,5.22,6.3310000000000004,7.734,9.5210000000000008,11.818,14.804 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,607,-0.18559999999999999,7.7340999999999998,0.20391000000000001,4.3330000000000002,5.22,6.3310000000000004,7.734,9.5210000000000008,11.819000000000001,14.805 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,608,-0.18579999999999999,7.7343999999999999,0.20391999999999999,4.3330000000000002,5.22,6.3310000000000004,7.734,9.5220000000000002,11.82,14.807 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,609,-0.18590000000000001,7.7347000000000001,0.20393,4.3330000000000002,5.22,6.3319999999999999,7.7350000000000003,9.5220000000000002,11.821,14.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,610,-0.18609999999999999,7.7351000000000001,0.20394000000000001,4.3330000000000002,5.2210000000000001,6.3319999999999999,7.7350000000000003,9.5229999999999997,11.821999999999999,14.81 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,611,-0.1862,7.7354000000000003,0.20396,4.3330000000000002,5.2210000000000001,6.3319999999999999,7.7350000000000003,9.5229999999999997,11.823,14.811999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,612,-0.18640000000000001,7.7358000000000002,0.20397000000000001,4.3339999999999996,5.2210000000000001,6.3319999999999999,7.7359999999999998,9.5239999999999991,11.824,14.814 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,613,-0.1865,7.7361000000000004,0.20397999999999999,4.3339999999999996,5.2210000000000001,6.3330000000000002,7.7359999999999998,9.5239999999999991,11.824999999999999,14.815 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,614,-0.1867,7.7365000000000004,0.20399,4.3339999999999996,5.2210000000000001,6.3330000000000002,7.7359999999999998,9.5250000000000004,11.826000000000001,14.817 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,615,-0.18679999999999999,7.7369000000000003,0.20401,4.3339999999999996,5.2210000000000001,6.3330000000000002,7.7370000000000001,9.5259999999999998,11.827,14.819000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,616,-0.187,7.7373000000000003,0.20402000000000001,4.3339999999999996,5.2220000000000004,6.3330000000000002,7.7370000000000001,9.5259999999999998,11.827999999999999,14.821 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,617,-0.18709999999999999,7.7377000000000002,0.20402999999999999,4.3339999999999996,5.2220000000000004,6.3339999999999996,7.7380000000000004,9.5269999999999992,11.829000000000001,14.823 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,618,-0.18720000000000001,7.7381000000000002,0.20405000000000001,4.335,5.2220000000000004,6.3339999999999996,7.7380000000000004,9.5280000000000005,11.831,14.824999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,619,-0.18740000000000001,7.7385000000000002,0.20405999999999999,4.335,5.2220000000000004,6.3339999999999996,7.7380000000000004,9.5280000000000005,11.832000000000001,14.827 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,620,-0.1875,7.7389000000000001,0.20408000000000001,4.335,5.2220000000000004,6.3339999999999996,7.7389999999999999,9.5289999999999999,11.833,14.829000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,621,-0.18770000000000001,7.7393000000000001,0.20408999999999999,4.335,5.2229999999999999,6.335,7.7389999999999999,9.5299999999999994,11.834,14.831 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,622,-0.18779999999999999,7.7397,0.2041,4.335,5.2229999999999999,6.335,7.74,9.5299999999999994,11.835000000000001,14.833 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,623,-0.18790000000000001,7.7401999999999997,0.20412,4.335,5.2229999999999999,6.335,7.74,9.5310000000000006,11.836,14.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,624,-0.18809999999999999,7.7405999999999997,0.20413000000000001,4.3360000000000003,5.2229999999999999,6.3360000000000003,7.7409999999999997,9.532,11.837,14.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,625,-0.18820000000000001,7.7411000000000003,0.20415,4.3360000000000003,5.2240000000000002,6.3360000000000003,7.7409999999999997,9.5329999999999995,11.839,14.839 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,626,-0.18840000000000001,7.7415000000000003,0.20416000000000001,4.3360000000000003,5.2240000000000002,6.3360000000000003,7.742,9.5329999999999995,11.84,14.840999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,627,-0.1885,7.742,0.20418,4.3360000000000003,5.2240000000000002,6.3360000000000003,7.742,9.5340000000000007,11.840999999999999,14.843 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,628,-0.18859999999999999,7.7424999999999997,0.20419000000000001,4.3360000000000003,5.2240000000000002,6.3369999999999997,7.742,9.5350000000000001,11.842000000000001,14.845000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,629,-0.1888,7.7430000000000003,0.20421,4.3369999999999997,5.2240000000000002,6.3369999999999997,7.7430000000000003,9.5359999999999996,11.843999999999999,14.848000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,630,-0.18890000000000001,7.7435,0.20422000000000001,4.3369999999999997,5.2249999999999996,6.3369999999999997,7.7439999999999998,9.5359999999999996,11.845000000000001,14.849 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,631,-0.189,7.7439999999999998,0.20424,4.3369999999999997,5.2249999999999996,6.3380000000000001,7.7439999999999998,9.5370000000000008,11.846,14.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,632,-0.18920000000000001,7.7445000000000004,0.20426,4.3369999999999997,5.2249999999999996,6.3380000000000001,7.7439999999999998,9.5380000000000003,11.848000000000001,14.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,633,-0.1893,7.7450000000000001,0.20427000000000001,4.3369999999999997,5.2249999999999996,6.3380000000000001,7.7450000000000001,9.5389999999999997,11.849,14.856 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,634,-0.18940000000000001,7.7455999999999996,0.20429,4.3369999999999997,5.226,6.3390000000000004,7.7460000000000004,9.5399999999999991,11.851000000000001,14.859 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,635,-0.18959999999999999,7.7461000000000002,0.20430000000000001,4.3380000000000001,5.226,6.3390000000000004,7.7460000000000004,9.5410000000000004,11.852,14.861000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,636,-0.18970000000000001,7.7465999999999999,0.20432,4.3380000000000001,5.226,6.3390000000000004,7.7469999999999999,9.5410000000000004,11.853,14.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,637,-0.1898,7.7472000000000003,0.20433999999999999,4.3380000000000001,5.226,6.34,7.7469999999999999,9.5419999999999998,11.855,14.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,638,-0.19,7.7477999999999998,0.20435,4.3380000000000001,5.2270000000000003,6.34,7.7480000000000002,9.5429999999999993,11.856,14.868 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,639,-0.19009999999999999,7.7483000000000004,0.20437,4.3390000000000004,5.2270000000000003,6.3410000000000002,7.7480000000000002,9.5440000000000005,11.858000000000001,14.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,640,-0.19020000000000001,7.7488999999999999,0.20438999999999999,4.3390000000000004,5.2270000000000003,6.3410000000000002,7.7489999999999997,9.5449999999999999,11.859,14.872999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,641,-0.19040000000000001,7.7495000000000003,0.20441000000000001,4.3390000000000004,5.2279999999999998,6.3410000000000002,7.75,9.5459999999999994,11.861000000000001,14.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,642,-0.1905,7.7500999999999998,0.20441999999999999,4.3390000000000004,5.2279999999999998,6.3419999999999996,7.75,9.5470000000000006,11.862,14.877000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,643,-0.19059999999999999,7.7507000000000001,0.20444000000000001,4.3390000000000004,5.2279999999999998,6.3419999999999996,7.7510000000000003,9.548,11.864000000000001,14.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,644,-0.1908,7.7512999999999996,0.20446,4.34,5.2279999999999998,6.343,7.7510000000000003,9.5489999999999995,11.865,14.882999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,645,-0.19089999999999999,7.7519,0.20448,4.34,5.2290000000000001,6.343,7.7519999999999998,9.5500000000000007,11.867000000000001,14.885 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,646,-0.191,7.7525000000000004,0.20449000000000001,4.34,5.2290000000000001,6.343,7.7519999999999998,9.5510000000000002,11.868,14.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,647,-0.19109999999999999,7.7530999999999999,0.20451,4.34,5.2290000000000001,6.3440000000000003,7.7530000000000001,9.5519999999999996,11.87,14.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,648,-0.1913,7.7538,0.20452999999999999,4.3410000000000002,5.23,6.3440000000000003,7.7539999999999996,9.5530000000000008,11.871,14.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,649,-0.19139999999999999,7.7544000000000004,0.20455000000000001,4.3410000000000002,5.23,6.3449999999999998,7.7539999999999996,9.5540000000000003,11.872999999999999,14.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,650,-0.1915,7.7550999999999997,0.20457,4.3410000000000002,5.23,6.3449999999999998,7.7549999999999999,9.5549999999999997,11.875,14.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,651,-0.19170000000000001,7.7557,0.20458999999999999,4.3410000000000002,5.23,6.3460000000000001,7.7560000000000002,9.5559999999999992,11.875999999999999,14.901 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,652,-0.1918,7.7564000000000002,0.20460999999999999,4.3410000000000002,5.2309999999999999,6.3460000000000001,7.7560000000000002,9.5570000000000004,11.878,14.903 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,653,-0.19189999999999999,7.7569999999999997,0.20462,4.3419999999999996,5.2309999999999999,6.3460000000000001,7.7569999999999997,9.5579999999999998,11.879,14.904999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,654,-0.192,7.7576999999999998,0.20463999999999999,4.3419999999999996,5.2309999999999999,6.3470000000000004,7.758,9.5589999999999993,11.881,14.907999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,655,-0.19209999999999999,7.7584,0.20466000000000001,4.3419999999999996,5.2320000000000002,6.3470000000000004,7.758,9.56,11.882999999999999,14.911 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,656,-0.1923,7.7591000000000001,0.20468,4.343,5.2320000000000002,6.3479999999999999,7.7590000000000003,9.5609999999999999,11.885,14.914 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,657,-0.19239999999999999,7.7598000000000003,0.20469999999999999,4.343,5.2320000000000002,6.3479999999999999,7.76,9.5619999999999994,11.885999999999999,14.917 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,658,-0.1925,7.7605000000000004,0.20472000000000001,4.343,5.2329999999999997,6.3490000000000002,7.76,9.5630000000000006,11.888,14.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,659,-0.19259999999999999,7.7611999999999997,0.20474000000000001,4.343,5.2329999999999997,6.3490000000000002,7.7610000000000001,9.5640000000000001,11.89,14.922000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,660,-0.1928,7.7618999999999998,0.20476,4.3440000000000003,5.2329999999999997,6.35,7.7619999999999996,9.5649999999999995,11.891,14.925000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,661,-0.19289999999999999,7.7625999999999999,0.20477999999999999,4.3440000000000003,5.234,6.35,7.7629999999999999,9.5660000000000007,11.893000000000001,14.928000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,662,-0.193,7.7633999999999999,0.20480000000000001,4.3440000000000003,5.234,6.351,7.7629999999999999,9.5679999999999996,11.895,14.930999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,663,-0.19309999999999999,7.7641,0.20482,4.3440000000000003,5.234,6.351,7.7640000000000002,9.5690000000000008,11.897,14.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,664,-0.19320000000000001,7.7648999999999999,0.20483999999999999,4.3449999999999998,5.2350000000000003,6.3520000000000003,7.7649999999999997,9.57,11.898999999999999,14.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,665,-0.19339999999999999,7.7656000000000001,0.20487,4.3449999999999998,5.2350000000000003,6.3520000000000003,7.766,9.5709999999999997,11.901,14.94 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,666,-0.19350000000000001,7.7664,0.20488999999999999,4.3449999999999998,5.2350000000000003,6.3529999999999998,7.766,9.5719999999999992,11.901999999999999,14.943 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,667,-0.19359999999999999,7.7671000000000001,0.20491000000000001,4.3449999999999998,5.2359999999999998,6.3529999999999998,7.7670000000000003,9.5730000000000004,11.904,14.945 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,668,-0.19370000000000001,7.7679,0.20493,4.3460000000000001,5.2359999999999998,6.3540000000000001,7.7679999999999998,9.5749999999999993,11.906000000000001,14.948 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,669,-0.1938,7.7686999999999999,0.20494999999999999,4.3460000000000001,5.2370000000000001,6.3540000000000001,7.7690000000000001,9.5760000000000005,11.907999999999999,14.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,670,-0.19400000000000001,7.7694999999999999,0.20497000000000001,4.3460000000000001,5.2370000000000001,6.3550000000000004,7.77,9.577,11.91,14.954000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,671,-0.19409999999999999,7.7702,0.20499000000000001,4.3460000000000001,5.2370000000000001,6.3550000000000004,7.77,9.5779999999999994,11.912000000000001,14.957000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,672,-0.19420000000000001,7.7709999999999999,0.20502000000000001,4.3470000000000004,5.2380000000000004,6.3559999999999999,7.7709999999999999,9.5790000000000006,11.914,14.96 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,673,-0.1943,7.7717999999999998,0.20504,4.3470000000000004,5.2380000000000004,6.3559999999999999,7.7720000000000002,9.5809999999999995,11.916,14.962999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,674,-0.19439999999999999,7.7725999999999997,0.20505999999999999,4.3470000000000004,5.2380000000000004,6.3570000000000002,7.7729999999999997,9.5820000000000007,11.917,14.965999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,675,-0.19450000000000001,7.7735000000000003,0.20508000000000001,4.3470000000000004,5.2389999999999999,6.3570000000000002,7.774,9.5830000000000002,11.919,14.968999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,676,-0.19470000000000001,7.7743000000000002,0.2051,4.3479999999999999,5.2389999999999999,6.3579999999999997,7.774,9.5839999999999996,11.920999999999999,14.973000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,677,-0.1948,7.7751000000000001,0.20513000000000001,4.3479999999999999,5.24,6.3579999999999997,7.7750000000000004,9.5860000000000003,11.923,14.976000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,678,-0.19489999999999999,7.7759,0.20515,4.3479999999999999,5.24,6.359,7.7759999999999998,9.5869999999999997,11.925000000000001,14.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,679,-0.19500000000000001,7.7767999999999997,0.20516999999999999,4.3490000000000002,5.24,6.36,7.7770000000000001,9.5879999999999992,11.927,14.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,680,-0.1951,7.7775999999999996,0.20519000000000001,4.3490000000000002,5.2409999999999997,6.36,7.7779999999999996,9.5890000000000004,11.929,14.984999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,681,-0.19520000000000001,7.7785000000000002,0.20522000000000001,4.3490000000000002,5.2409999999999997,6.3609999999999998,7.7779999999999996,9.5909999999999993,11.930999999999999,14.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,682,-0.1953,7.7793000000000001,0.20524000000000001,4.3490000000000002,5.242,6.3609999999999998,7.7789999999999999,9.5920000000000005,11.933,14.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,683,-0.19539999999999999,7.7801999999999998,0.20526,4.3499999999999996,5.242,6.3620000000000001,7.78,9.593,11.935,14.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,684,-0.1956,7.7811000000000003,0.20529,4.3499999999999996,5.242,6.3630000000000004,7.7809999999999997,9.5950000000000006,11.938000000000001,14.997999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,685,-0.19570000000000001,7.7819000000000003,0.20530999999999999,4.3499999999999996,5.2430000000000003,6.3630000000000004,7.782,9.5960000000000001,11.94,15.000999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,686,-0.1958,7.7827999999999999,0.20533000000000001,4.351,5.2430000000000003,6.3639999999999999,7.7830000000000004,9.5969999999999995,11.942,15.004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,687,-0.19589999999999999,7.7836999999999996,0.20535999999999999,4.351,5.2439999999999998,6.3639999999999999,7.7839999999999998,9.5990000000000002,11.944000000000001,15.007999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,688,-0.19600000000000001,7.7846000000000002,0.20538000000000001,4.351,5.2439999999999998,6.3650000000000002,7.7850000000000001,9.6,11.946,15.010999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,689,-0.1961,7.7854999999999999,0.20541000000000001,4.351,5.2439999999999998,6.3650000000000002,7.7859999999999996,9.6020000000000003,11.948,15.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,690,-0.19620000000000001,7.7864000000000004,0.20543,4.3520000000000003,5.2450000000000001,6.3659999999999997,7.7859999999999996,9.6029999999999998,11.95,15.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,691,-0.1963,7.7873000000000001,0.20546,4.3520000000000003,5.2450000000000001,6.367,7.7869999999999999,9.6039999999999992,11.952,15.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,692,-0.19639999999999999,7.7881999999999998,0.20548,4.3520000000000003,5.2460000000000004,6.367,7.7880000000000003,9.6059999999999999,11.954000000000001,15.023999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,693,-0.19650000000000001,7.7891000000000004,0.20549999999999999,4.3529999999999998,5.2460000000000004,6.3680000000000003,7.7889999999999997,9.6069999999999993,11.956,15.028 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,694,-0.19670000000000001,7.7900999999999998,0.20552999999999999,4.3529999999999998,5.2469999999999999,6.3689999999999998,7.79,9.609,11.959,15.032 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,695,-0.1968,7.7910000000000004,0.20555000000000001,4.3529999999999998,5.2469999999999999,6.3689999999999998,7.7910000000000004,9.61,11.961,15.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,696,-0.19689999999999999,7.7919,0.20558000000000001,4.3540000000000001,5.2469999999999999,6.37,7.7919999999999998,9.6110000000000007,11.962999999999999,15.038 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,697,-0.19700000000000001,7.7929000000000004,0.2056,4.3540000000000001,5.2480000000000002,6.37,7.7930000000000001,9.6129999999999995,11.965,15.042 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,698,-0.1971,7.7938000000000001,0.20563000000000001,4.3540000000000001,5.2480000000000002,6.3710000000000004,7.7939999999999996,9.6140000000000008,11.968,15.045 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,699,-0.19719999999999999,7.7948000000000004,0.20566000000000001,4.3550000000000004,5.2489999999999997,6.3719999999999999,7.7949999999999999,9.6159999999999997,11.97,15.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,700,-0.1973,7.7957000000000001,0.20568,4.3550000000000004,5.2489999999999997,6.3719999999999999,7.7960000000000003,9.6170000000000009,11.972,15.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,701,-0.19739999999999999,7.7967000000000004,0.20571,4.3550000000000004,5.25,6.3730000000000002,7.7969999999999997,9.6189999999999998,11.975,15.055999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,702,-0.19750000000000001,7.7976999999999999,0.20573,4.3559999999999999,5.25,6.3739999999999997,7.798,9.6199999999999992,11.977,15.058999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,703,-0.1976,7.7986000000000004,0.20576,4.3559999999999999,5.25,6.3739999999999997,7.7990000000000004,9.6219999999999999,11.978999999999999,15.063000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,704,-0.19769999999999999,7.7995999999999999,0.20577999999999999,4.3559999999999999,5.2510000000000003,6.375,7.8,9.6229999999999993,11.981,15.066000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,705,-0.1978,7.8006000000000002,0.20580999999999999,4.3559999999999999,5.2510000000000003,6.3760000000000003,7.8010000000000002,9.625,11.984,15.07 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,706,-0.19789999999999999,7.8015999999999996,0.20584,4.3570000000000002,5.2519999999999998,6.3760000000000003,7.8019999999999996,9.6259999999999994,11.986000000000001,15.074 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,707,-0.19800000000000001,7.8026,0.20585999999999999,4.3570000000000002,5.2519999999999998,6.3769999999999998,7.8029999999999999,9.6280000000000001,11.988,15.077 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,708,-0.1981,7.8036000000000003,0.20588999999999999,4.3570000000000002,5.2530000000000001,6.3780000000000001,7.8040000000000003,9.6289999999999996,11.991,15.081 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,709,-0.19819999999999999,7.8045999999999998,0.20591999999999999,4.3579999999999997,5.2530000000000001,6.3780000000000001,7.8049999999999997,9.6310000000000002,11.993,15.085000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,710,-0.1983,7.8056000000000001,0.20594000000000001,4.3579999999999997,5.2539999999999996,6.3789999999999996,7.806,9.6319999999999997,11.994999999999999,15.087999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,711,-0.19839999999999999,7.8066000000000004,0.20596999999999999,4.3579999999999997,5.2539999999999996,6.38,7.8070000000000004,9.6340000000000003,11.997999999999999,15.092000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,712,-0.19850000000000001,7.8075999999999999,0.20599999999999999,4.359,5.2539999999999996,6.38,7.8079999999999998,9.6349999999999998,12,15.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,713,-0.1986,7.8087,0.20602999999999999,4.359,5.2549999999999999,6.3810000000000002,7.8090000000000002,9.6370000000000005,12.003,15.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,714,-0.19869999999999999,7.8097000000000003,0.20605000000000001,4.359,5.2549999999999999,6.3819999999999997,7.81,9.6379999999999999,12.005000000000001,15.103 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,715,-0.19889999999999999,7.8106999999999998,0.20608000000000001,4.3600000000000003,5.2560000000000002,6.3819999999999997,7.8109999999999999,9.64,12.007999999999999,15.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,716,-0.19900000000000001,7.8117999999999999,0.20610999999999999,4.3600000000000003,5.2560000000000002,6.383,7.8120000000000003,9.6419999999999995,12.01,15.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,717,-0.1991,7.8128000000000002,0.20613999999999999,4.3600000000000003,5.2569999999999997,6.3840000000000003,7.8129999999999997,9.6430000000000007,12.013,15.115 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,718,-0.19919999999999999,7.8139000000000003,0.20616000000000001,4.3609999999999998,5.2569999999999997,6.3840000000000003,7.8140000000000001,9.6449999999999996,12.015000000000001,15.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,719,-0.1993,7.8148999999999997,0.20619000000000001,4.3609999999999998,5.258,6.3849999999999998,7.8150000000000004,9.6460000000000008,12.016999999999999,15.122999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,720,-0.19939999999999999,7.8159999999999998,0.20621999999999999,4.3609999999999998,5.258,6.3860000000000001,7.8159999999999998,9.6479999999999997,12.02,15.127000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,721,-0.19950000000000001,7.8170000000000002,0.20624999999999999,4.3620000000000001,5.2590000000000003,6.3860000000000001,7.8170000000000002,9.65,12.022,15.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,722,-0.1996,7.8181000000000003,0.20627999999999999,4.3620000000000001,5.2590000000000003,6.3869999999999996,7.8179999999999996,9.6509999999999998,12.025,15.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,723,-0.19969999999999999,7.8192000000000004,0.20630999999999999,4.3620000000000001,5.26,6.3879999999999999,7.819,9.6530000000000005,12.028,15.138 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,724,-0.19980000000000001,7.8201999999999998,0.20633000000000001,4.3630000000000004,5.26,6.3890000000000002,7.82,9.6539999999999999,12.03,15.141999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,725,-0.19980000000000001,7.8212999999999999,0.20635999999999999,4.3630000000000004,5.2610000000000001,6.3890000000000002,7.8209999999999997,9.6560000000000006,12.032,15.145 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,726,-0.19989999999999999,7.8224,0.20638999999999999,4.3630000000000004,5.2610000000000001,6.39,7.8220000000000001,9.6579999999999995,12.035,15.148999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,727,-0.2,7.8235000000000001,0.20641999999999999,4.3639999999999999,5.2619999999999996,6.391,7.8239999999999998,9.6590000000000007,12.037000000000001,15.154 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,728,-0.2001,7.8246000000000002,0.20644999999999999,4.3639999999999999,5.2619999999999996,6.3920000000000003,7.8250000000000002,9.6609999999999996,12.04,15.157999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,729,-0.20019999999999999,7.8257000000000003,0.20648,4.3639999999999999,5.2629999999999999,6.3920000000000003,7.8259999999999996,9.6630000000000003,12.042999999999999,15.162000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,730,-0.20030000000000001,7.8268000000000004,0.20651,4.3650000000000002,5.2629999999999999,6.3929999999999998,7.827,9.6639999999999997,12.045,15.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,731,-0.20039999999999999,7.8278999999999996,0.20654,4.3650000000000002,5.2640000000000002,6.3940000000000001,7.8280000000000003,9.6660000000000004,12.048,15.17 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,732,-0.20050000000000001,7.8289999999999997,0.20657,4.3650000000000002,5.2640000000000002,6.3940000000000001,7.8289999999999997,9.6679999999999993,12.05,15.173999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,733,-0.2006,7.8300999999999998,0.20660000000000001,4.3659999999999997,5.2649999999999997,6.3949999999999996,7.83,9.67,12.053000000000001,15.178000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,734,-0.20069999999999999,7.8311999999999999,0.20663000000000001,4.3659999999999997,5.2649999999999997,6.3959999999999999,7.8310000000000004,9.6709999999999994,12.055999999999999,15.182 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,735,-0.20080000000000001,7.8323999999999998,0.20666000000000001,4.3659999999999997,5.266,6.3970000000000002,7.8319999999999999,9.673,12.058,15.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,736,-0.2009,7.8334999999999999,0.20669000000000001,4.367,5.266,6.3970000000000002,7.8339999999999996,9.6750000000000007,12.061,15.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,737,-0.20100000000000001,7.8346,0.20671999999999999,4.367,5.2670000000000003,6.3979999999999997,7.835,9.6760000000000002,12.063000000000001,15.194000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,738,-0.2011,7.8357999999999999,0.20674999999999999,4.3680000000000003,5.2670000000000003,6.399,7.8360000000000003,9.6780000000000008,12.066000000000001,15.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,739,-0.20119999999999999,7.8369,0.20677999999999999,4.3680000000000003,5.2679999999999998,6.4,7.8369999999999997,9.68,12.069000000000001,15.202 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,740,-0.20130000000000001,7.8380999999999998,0.20680999999999999,4.3680000000000003,5.2679999999999998,6.4,7.8380000000000001,9.6820000000000004,12.071999999999999,15.207000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,741,-0.2014,7.8391999999999999,0.20684,4.3689999999999998,5.2690000000000001,6.4009999999999998,7.8390000000000004,9.6829999999999998,12.074,15.211 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,742,-0.20150000000000001,7.8403,0.20687,4.3689999999999998,5.2690000000000001,6.4020000000000001,7.84,9.6850000000000005,12.077,15.215 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,743,-0.2016,7.8414999999999999,0.20691000000000001,4.3689999999999998,5.27,6.4029999999999996,7.8419999999999996,9.6869999999999994,12.08,15.218999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,744,-0.20169999999999999,7.8426999999999998,0.20694000000000001,4.37,5.27,6.4039999999999999,7.843,9.6890000000000001,12.083,15.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,745,-0.20180000000000001,7.8437999999999999,0.20696999999999999,4.37,5.2709999999999999,6.4039999999999999,7.8440000000000003,9.69,12.085000000000001,15.228 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,746,-0.20180000000000001,7.8449999999999998,0.20699999999999999,4.37,5.2709999999999999,6.4050000000000002,7.8449999999999998,9.6920000000000002,12.087999999999999,15.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,747,-0.2019,7.8461999999999996,0.20702999999999999,4.3710000000000004,5.2720000000000002,6.4059999999999997,7.8460000000000001,9.6940000000000008,12.090999999999999,15.236000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,748,-0.20200000000000001,7.8472999999999997,0.20705999999999999,4.3710000000000004,5.2720000000000002,6.407,7.8470000000000004,9.6959999999999997,12.093,15.24 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,749,-0.2021,7.8484999999999996,0.20709,4.3710000000000004,5.2729999999999997,6.407,7.8479999999999999,9.6980000000000004,12.096,15.244 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,750,-0.20219999999999999,7.8497000000000003,0.20713000000000001,4.3719999999999999,5.2729999999999997,6.4080000000000004,7.85,9.6989999999999998,12.099,15.249000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,751,-0.20230000000000001,7.8509000000000002,0.20716000000000001,4.3719999999999999,5.274,6.4089999999999998,7.851,9.7010000000000005,12.102,15.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,752,-0.2024,7.8520000000000003,0.20719000000000001,4.3719999999999999,5.274,6.41,7.8520000000000003,9.7029999999999994,12.103999999999999,15.257 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,753,-0.20250000000000001,7.8532000000000002,0.20721999999999999,4.3730000000000002,5.2750000000000004,6.41,7.8529999999999998,9.7050000000000001,12.106999999999999,15.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,754,-0.2026,7.8544,0.20726,4.3730000000000002,5.2750000000000004,6.4109999999999996,7.8540000000000001,9.7070000000000007,12.11,15.266 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,755,-0.20269999999999999,7.8555999999999999,0.20729,4.3730000000000002,5.2759999999999998,6.4119999999999999,7.8559999999999999,9.7080000000000002,12.113,15.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,756,-0.20280000000000001,7.8567999999999998,0.20732,4.3739999999999997,5.2759999999999998,6.4130000000000003,7.8570000000000002,9.7100000000000009,12.116,15.275 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,757,-0.20280000000000001,7.8579999999999997,0.20735000000000001,4.3739999999999997,5.2770000000000001,6.4139999999999997,7.8579999999999997,9.7119999999999997,12.118,15.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,758,-0.2029,7.8592000000000004,0.20738999999999999,4.3739999999999997,5.2770000000000001,6.4139999999999997,7.859,9.7140000000000004,12.121,15.284000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,759,-0.20300000000000001,7.8604000000000003,0.20741999999999999,4.375,5.2779999999999996,6.415,7.86,9.7159999999999993,12.124000000000001,15.288 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,760,-0.2031,7.8616000000000001,0.20745,4.375,5.2789999999999999,6.4160000000000004,7.8620000000000001,9.718,12.127000000000001,15.292 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,761,-0.20319999999999999,7.8628,0.20749000000000001,4.375,5.2789999999999999,6.4169999999999998,7.8630000000000004,9.7189999999999994,12.13,15.297000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,762,-0.20330000000000001,7.8639999999999999,0.20752000000000001,4.3760000000000003,5.28,6.4180000000000001,7.8639999999999999,9.7210000000000001,12.132999999999999,15.301 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,763,-0.2034,7.8653000000000004,0.20755000000000001,4.3760000000000003,5.28,6.4180000000000001,7.8650000000000002,9.7230000000000008,12.135999999999999,15.305999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,764,-0.20349999999999999,7.8665000000000003,0.20759,4.3769999999999998,5.2809999999999997,6.4189999999999996,7.8659999999999997,9.7249999999999996,12.138999999999999,15.31 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,765,-0.2036,7.8677000000000001,0.20762,4.3769999999999998,5.2809999999999997,6.42,7.8680000000000003,9.7270000000000003,12.141,15.315 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,766,-0.2036,7.8689,0.20765,4.3769999999999998,5.282,6.4210000000000003,7.8689999999999998,9.7289999999999992,12.144,15.319000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,767,-0.20369999999999999,7.8700999999999999,0.20769000000000001,4.3780000000000001,5.282,6.4219999999999997,7.87,9.7309999999999999,12.147,15.323 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,768,-0.20380000000000001,7.8714000000000004,0.20771999999999999,4.3780000000000001,5.2830000000000004,6.4219999999999997,7.8710000000000004,9.7330000000000005,12.15,15.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,769,-0.2039,7.8726000000000003,0.20776,4.3780000000000001,5.2830000000000004,6.423,7.8730000000000002,9.7349999999999994,12.153,15.333 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,770,-0.20399999999999999,7.8738000000000001,0.20779,4.3789999999999996,5.2839999999999998,6.4240000000000004,7.8739999999999997,9.7360000000000007,12.156000000000001,15.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,771,-0.2041,7.8750999999999998,0.20782,4.3789999999999996,5.2839999999999998,6.4249999999999998,7.875,9.7379999999999995,12.159000000000001,15.340999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,772,-0.20419999999999999,7.8762999999999996,0.20785999999999999,4.3789999999999996,5.2850000000000001,6.4260000000000002,7.8760000000000003,9.74,12.162000000000001,15.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,773,-0.20419999999999999,7.8775000000000004,0.20788999999999999,4.38,5.2850000000000001,6.4260000000000002,7.8780000000000001,9.7420000000000009,12.164,15.35 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,774,-0.20430000000000001,7.8788,0.20793,4.38,5.2859999999999996,6.4269999999999996,7.8789999999999996,9.7439999999999998,12.167999999999999,15.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,775,-0.2044,7.88,0.20796000000000001,4.38,5.2859999999999996,6.4279999999999999,7.88,9.7460000000000004,12.17,15.359 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,776,-0.20449999999999999,7.8813000000000004,0.20799999999999999,4.3810000000000002,5.2869999999999999,6.4290000000000003,7.8810000000000002,9.7479999999999993,12.173,15.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,777,-0.2046,7.8825000000000003,0.20802999999999999,4.3810000000000002,5.2880000000000003,6.43,7.8819999999999997,9.75,12.176,15.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,778,-0.20469999999999999,7.8837999999999999,0.20807,4.3810000000000002,5.2880000000000003,6.43,7.8840000000000003,9.7520000000000007,12.179,15.374000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,779,-0.20480000000000001,7.8849999999999998,0.20810000000000001,4.3819999999999997,5.2889999999999997,6.431,7.8849999999999998,9.7539999999999996,12.182,15.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,780,-0.20480000000000001,7.8863000000000003,0.20813999999999999,4.3819999999999997,5.2889999999999997,6.4320000000000004,7.8860000000000001,9.7560000000000002,12.185,15.382999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,781,-0.2049,7.8875000000000002,0.20816999999999999,4.3819999999999997,5.29,6.4329999999999998,7.8879999999999999,9.7569999999999997,12.188000000000001,15.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,782,-0.20499999999999999,7.8887999999999998,0.20821000000000001,4.383,5.29,6.4340000000000002,7.8890000000000002,9.7590000000000003,12.191000000000001,15.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,783,-0.2051,7.89,0.20824999999999999,4.383,5.2910000000000004,6.4340000000000002,7.89,9.7609999999999992,12.194000000000001,15.397 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,784,-0.20519999999999999,7.8913000000000002,0.20827999999999999,4.3840000000000003,5.2910000000000004,6.4349999999999996,7.891,9.7629999999999999,12.196999999999999,15.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,785,-0.20530000000000001,7.8925999999999998,0.20832000000000001,4.3840000000000003,5.2919999999999998,6.4359999999999999,7.8929999999999998,9.7650000000000006,12.2,15.406000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,786,-0.20530000000000001,7.8937999999999997,0.20835000000000001,4.3840000000000003,5.2919999999999998,6.4370000000000003,7.8940000000000001,9.7669999999999995,12.202999999999999,15.41 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,787,-0.2054,7.8951000000000002,0.20838999999999999,4.3840000000000003,5.2930000000000001,6.4379999999999997,7.8949999999999996,9.7690000000000001,12.206,15.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,788,-0.20549999999999999,7.8963000000000001,0.20843,4.3849999999999998,5.2930000000000001,6.4390000000000001,7.8959999999999999,9.7710000000000008,12.209,15.42 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,789,-0.2056,7.8975999999999997,0.20846000000000001,4.3849999999999998,5.2939999999999996,6.4390000000000001,7.8979999999999997,9.7729999999999997,12.212,15.425000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,790,-0.20569999999999999,7.8989000000000003,0.20849999999999999,4.3860000000000001,5.2939999999999996,6.44,7.899,9.7750000000000004,12.215,15.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,791,-0.20569999999999999,7.9001000000000001,0.20852999999999999,4.3860000000000001,5.2949999999999999,6.4409999999999998,7.9,9.7769999999999992,12.218,15.433999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,792,-0.20580000000000001,7.9013999999999998,0.20857000000000001,4.3860000000000001,5.2949999999999999,6.4420000000000002,7.9009999999999998,9.7789999999999999,12.221,15.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,793,-0.2059,7.9027000000000003,0.20860999999999999,4.3869999999999996,5.2960000000000003,6.4429999999999996,7.9029999999999996,9.7810000000000006,12.225,15.444000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,794,-0.20599999999999999,7.9039999999999999,0.20865,4.3869999999999996,5.2960000000000003,6.444,7.9039999999999999,9.7829999999999995,12.228,15.449 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,795,-0.20610000000000001,7.9051999999999998,0.20868,4.3869999999999996,5.2969999999999997,6.444,7.9050000000000002,9.7850000000000001,12.23,15.452999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,796,-0.20610000000000001,7.9065000000000003,0.20871999999999999,4.3869999999999996,5.2969999999999997,6.4450000000000003,7.9059999999999997,9.7870000000000008,12.234,15.458 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,797,-0.20619999999999999,7.9077999999999999,0.20876,4.3879999999999999,5.298,6.4459999999999997,7.9080000000000004,9.7889999999999997,12.237,15.462999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,798,-0.20630000000000001,7.9090999999999996,0.20879,4.3879999999999999,5.2990000000000004,6.4470000000000001,7.9089999999999998,9.7910000000000004,12.24,15.467000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,799,-0.2064,7.9103000000000003,0.20882999999999999,4.3890000000000002,5.2990000000000004,6.4480000000000004,7.91,9.7929999999999993,12.243,15.472 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,800,-0.20649999999999999,7.9116,0.20887,4.3890000000000002,5.3,6.4480000000000004,7.9119999999999999,9.7949999999999999,12.246,15.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,801,-0.20649999999999999,7.9128999999999996,0.20891000000000001,4.3890000000000002,5.3,6.4489999999999998,7.9130000000000003,9.7970000000000006,12.249000000000001,15.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,802,-0.20660000000000001,7.9142000000000001,0.20893999999999999,4.3899999999999997,5.3010000000000002,6.45,7.9139999999999997,9.7989999999999995,12.252000000000001,15.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,803,-0.20669999999999999,7.9154999999999998,0.20898,4.3899999999999997,5.3010000000000002,6.4509999999999996,7.9160000000000004,9.8010000000000002,12.255000000000001,15.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,804,-0.20680000000000001,7.9166999999999996,0.20902000000000001,4.3899999999999997,5.3019999999999996,6.452,7.9169999999999998,9.8030000000000008,12.257999999999999,15.496 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,805,-0.2069,7.9180000000000001,0.20906,4.3899999999999997,5.3019999999999996,6.4530000000000003,7.9180000000000001,9.8049999999999997,12.260999999999999,15.500999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,806,-0.2069,7.9192999999999998,0.20910000000000001,4.391,5.3029999999999999,6.4530000000000003,7.9189999999999996,9.8070000000000004,12.265000000000001,15.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,807,-0.20699999999999999,7.9206000000000003,0.20913000000000001,4.391,5.3029999999999999,6.4539999999999997,7.9210000000000003,9.8089999999999993,12.266999999999999,15.51 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,808,-0.20710000000000001,7.9218999999999999,0.20916999999999999,4.3920000000000003,5.3040000000000003,6.4550000000000001,7.9219999999999997,9.8109999999999999,12.271000000000001,15.515000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,809,-0.2072,7.9231999999999996,0.20921000000000001,4.3920000000000003,5.3040000000000003,6.4560000000000004,7.923,9.8130000000000006,12.273999999999999,15.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,810,-0.2072,7.9244000000000003,0.20924999999999999,4.3920000000000003,5.3049999999999997,6.4569999999999999,7.9240000000000004,9.8149999999999995,12.276999999999999,15.525 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,811,-0.20730000000000001,7.9257,0.20929,4.3920000000000003,5.3049999999999997,6.4569999999999999,7.9260000000000002,9.8170000000000002,12.28,15.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,812,-0.2074,7.9269999999999996,0.20932999999999999,4.3929999999999998,5.306,6.4580000000000002,7.9269999999999996,9.8190000000000008,12.282999999999999,15.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,813,-0.20749999999999999,7.9283000000000001,0.20935999999999999,4.3929999999999998,5.306,6.4589999999999996,7.9279999999999999,9.8209999999999997,12.286,15.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,814,-0.20749999999999999,7.9295999999999998,0.2094,4.3929999999999998,5.3070000000000004,6.46,7.93,9.8230000000000004,12.289,15.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,815,-0.20760000000000001,7.9309000000000003,0.20943999999999999,4.3940000000000001,5.3070000000000004,6.4610000000000003,7.931,9.8249999999999993,12.292,15.548999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,816,-0.2077,7.9321999999999999,0.20948,4.3940000000000001,5.3079999999999998,6.4619999999999997,7.9320000000000004,9.827,12.295999999999999,15.554 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,817,-0.20780000000000001,7.9333999999999998,0.20952000000000001,4.3940000000000001,5.3079999999999998,6.4619999999999997,7.9329999999999998,9.8290000000000006,12.298999999999999,15.558999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,818,-0.20780000000000001,7.9347000000000003,0.20956,4.3949999999999996,5.3090000000000002,6.4630000000000001,7.9349999999999996,9.8309999999999995,12.302,15.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,819,-0.2079,7.9359999999999999,0.20960000000000001,4.3949999999999996,5.3090000000000002,6.4640000000000004,7.9359999999999999,9.8330000000000002,12.305,15.569000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,820,-0.20799999999999999,7.9372999999999996,0.20963999999999999,4.3949999999999996,5.31,6.4649999999999999,7.9370000000000003,9.8350000000000009,12.308,15.574 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,821,-0.20810000000000001,7.9386000000000001,0.20968000000000001,4.3959999999999999,5.31,6.4660000000000002,7.9390000000000001,9.8369999999999997,12.311999999999999,15.579000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,822,-0.20810000000000001,7.9398999999999997,0.20971999999999999,4.3959999999999999,5.3109999999999999,6.4660000000000002,7.94,9.8390000000000004,12.315,15.584 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,823,-0.2082,7.9412000000000003,0.20976,4.3959999999999999,5.3109999999999999,6.4669999999999996,7.9409999999999998,9.8409999999999993,12.318,15.589 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,824,-0.20830000000000001,7.9424000000000001,0.20979999999999999,4.3959999999999999,5.3120000000000003,6.468,7.9420000000000002,9.843,12.321,15.593999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,825,-0.2084,7.9436999999999998,0.20984,4.3970000000000002,5.3120000000000003,6.4690000000000003,7.944,9.8450000000000006,12.324,15.599 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,826,-0.2084,7.9450000000000003,0.20988000000000001,4.3970000000000002,5.3129999999999997,6.47,7.9450000000000003,9.8469999999999995,12.327,15.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,827,-0.20849999999999999,7.9462999999999999,0.20992,4.3970000000000002,5.3129999999999997,6.47,7.9459999999999997,9.8490000000000002,12.33,15.609 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,828,-0.20860000000000001,7.9476000000000004,0.20996000000000001,4.3979999999999997,5.3140000000000001,6.4710000000000001,7.9480000000000004,9.8510000000000009,12.334,15.614000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,829,-0.20860000000000001,7.9489000000000001,0.21,4.3979999999999997,5.3140000000000001,6.4720000000000004,7.9489999999999998,9.8529999999999998,12.337,15.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,830,-0.2087,7.9501999999999997,0.21004,4.3979999999999997,5.3150000000000004,6.4729999999999999,7.95,9.8550000000000004,12.34,15.624000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,831,-0.20880000000000001,7.9513999999999996,0.21007999999999999,4.3979999999999997,5.3150000000000004,6.4740000000000002,7.9509999999999996,9.8569999999999993,12.343,15.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,832,-0.2089,7.9527000000000001,0.21012,4.399,5.3159999999999998,6.4749999999999996,7.9530000000000003,9.859,12.346,15.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,833,-0.2089,7.9539999999999997,0.21016000000000001,4.399,5.3159999999999998,6.4749999999999996,7.9539999999999997,9.8610000000000007,12.349,15.638 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,834,-0.20899999999999999,7.9553000000000003,0.2102,4.399,5.3170000000000002,6.476,7.9550000000000001,9.8629999999999995,12.353,15.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,835,-0.20910000000000001,7.9565999999999999,0.21024000000000001,4.4000000000000004,5.3170000000000002,6.4770000000000003,7.9569999999999999,9.8650000000000002,12.356,15.648 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,836,-0.20910000000000001,7.9579000000000004,0.21027999999999999,4.4000000000000004,5.3179999999999996,6.4779999999999998,7.9580000000000002,9.8670000000000009,12.359,15.653 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,837,-0.2092,7.9591000000000003,0.21032000000000001,4.4000000000000004,5.3179999999999996,6.4790000000000001,7.9589999999999996,9.8689999999999998,12.362,15.657999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,838,-0.20930000000000001,7.9603999999999999,0.21035999999999999,4.4009999999999998,5.319,6.4790000000000001,7.96,9.8710000000000004,12.365,15.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,839,-0.2094,7.9617000000000004,0.2104,4.4009999999999998,5.319,6.48,7.9619999999999997,9.8729999999999993,12.368,15.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,840,-0.2094,7.9630000000000001,0.21045,4.4009999999999998,5.32,6.4809999999999999,7.9630000000000001,9.875,12.372,15.673999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,841,-0.20949999999999999,7.9642999999999997,0.21049000000000001,4.4009999999999998,5.32,6.4820000000000002,7.9640000000000004,9.8770000000000007,12.375,15.679 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,842,-0.20960000000000001,7.9654999999999996,0.21052999999999999,4.4020000000000001,5.3209999999999997,6.4820000000000002,7.9660000000000002,9.8789999999999996,12.378,15.683999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,843,-0.20960000000000001,7.9668000000000001,0.21057000000000001,4.4020000000000001,5.3209999999999997,6.4829999999999997,7.9669999999999996,9.8810000000000002,12.381,15.688000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,844,-0.2097,7.9680999999999997,0.21060999999999999,4.4020000000000001,5.3220000000000001,6.484,7.968,9.8829999999999991,12.384,15.693 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,845,-0.20979999999999999,7.9694000000000003,0.21065,4.4029999999999996,5.3220000000000001,6.4850000000000003,7.9690000000000003,9.8849999999999998,12.388,15.699 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,846,-0.20979999999999999,7.9706000000000001,0.21068999999999999,4.4029999999999996,5.3230000000000004,6.4859999999999998,7.9710000000000001,9.8870000000000005,12.391,15.702999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,847,-0.2099,7.9718999999999998,0.21074000000000001,4.4029999999999996,5.3230000000000004,6.4859999999999998,7.9720000000000004,9.8889999999999993,12.394,15.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,848,-0.21,7.9732000000000003,0.21078,4.4029999999999996,5.3239999999999998,6.4870000000000001,7.9729999999999999,9.891,12.397,15.714 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,849,-0.21,7.9744999999999999,0.21082000000000001,4.4039999999999999,5.3239999999999998,6.4880000000000004,7.9740000000000002,9.8940000000000001,12.4,15.718999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,850,-0.21010000000000001,7.9756999999999998,0.21085999999999999,4.4039999999999999,5.3250000000000002,6.4889999999999999,7.976,9.8949999999999996,12.404,15.723000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,851,-0.2102,7.9770000000000003,0.2109,4.4039999999999999,5.3250000000000002,6.49,7.9770000000000003,9.8970000000000002,12.407,15.728999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,852,-0.2102,7.9782999999999999,0.21095,4.4039999999999999,5.3250000000000002,6.49,7.9779999999999998,9.9,12.41,15.734 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,853,-0.21029999999999999,7.9794999999999998,0.21099000000000001,4.4050000000000002,5.3259999999999996,6.4909999999999997,7.98,9.9019999999999992,12.413,15.739000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,854,-0.2104,7.9808000000000003,0.21103,4.4050000000000002,5.3259999999999996,6.492,7.9809999999999999,9.9039999999999999,12.417,15.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,855,-0.2104,7.9821,0.21107000000000001,4.4050000000000002,5.327,6.4930000000000003,7.9820000000000002,9.9060000000000006,12.42,15.749000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,856,-0.21049999999999999,7.9832999999999998,0.21112,4.4050000000000002,5.327,6.4930000000000003,7.9829999999999997,9.9079999999999995,12.423,15.754 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,857,-0.21060000000000001,7.9846000000000004,0.21115999999999999,4.4059999999999997,5.3280000000000003,6.4939999999999998,7.9850000000000003,9.91,12.426,15.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,858,-0.21060000000000001,7.9859,0.2112,4.4059999999999997,5.3280000000000003,6.4950000000000001,7.9859999999999998,9.9120000000000008,12.429,15.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,859,-0.2107,7.9870999999999999,0.21124000000000001,4.4059999999999997,5.3289999999999997,6.4960000000000004,7.9870000000000001,9.9139999999999997,12.432,15.769 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,860,-0.21079999999999999,7.9884000000000004,0.21129000000000001,4.4059999999999997,5.3289999999999997,6.4969999999999999,7.9880000000000004,9.9160000000000004,12.436,15.775 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,861,-0.21079999999999999,7.9897,0.21132999999999999,4.407,5.33,6.4969999999999999,7.99,9.9179999999999993,12.439,15.779 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,862,-0.2109,7.9908999999999999,0.21137,4.407,5.33,6.4980000000000002,7.9909999999999997,9.92,12.442,15.784000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,863,-0.21099999999999999,7.9922000000000004,0.21142,4.407,5.33,6.4989999999999997,7.992,9.9220000000000006,12.446,15.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,864,-0.21099999999999999,7.9934000000000003,0.21146000000000001,4.407,5.3310000000000004,6.5,7.9930000000000003,9.9239999999999995,12.449,15.795 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,865,-0.21110000000000001,7.9946999999999999,0.21149999999999999,4.4080000000000004,5.3310000000000004,6.5,7.9950000000000001,9.9260000000000002,12.452,15.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,866,-0.2112,7.9958999999999998,0.21154000000000001,4.4080000000000004,5.3319999999999999,6.5010000000000003,7.9960000000000004,9.9280000000000008,12.455,15.805 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,867,-0.2112,7.9972000000000003,0.21159,4.4080000000000004,5.3319999999999999,6.5019999999999998,7.9969999999999999,9.93,12.458,15.81 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,868,-0.21129999999999999,7.9984999999999999,0.21163000000000001,4.4080000000000004,5.3330000000000002,6.5030000000000001,7.9980000000000002,9.9320000000000004,12.462,15.815 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,869,-0.21129999999999999,7.9996999999999998,0.21167,4.4080000000000004,5.3330000000000002,6.5030000000000001,8,9.9339999999999993,12.465,15.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,870,-0.2114,8.0009999999999994,0.21171999999999999,4.4089999999999998,5.3339999999999996,6.5039999999999996,8.0009999999999994,9.9359999999999999,12.468,15.824999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,871,-0.21149999999999999,8.0022000000000002,0.21176,4.4089999999999998,5.3339999999999996,6.5049999999999999,8.0020000000000007,9.9380000000000006,12.471,15.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,872,-0.21149999999999999,8.0035000000000007,0.21181,4.4089999999999998,5.3339999999999996,6.5060000000000002,8.0039999999999996,9.94,12.475,15.836 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,873,-0.21160000000000001,8.0046999999999997,0.21185000000000001,4.4089999999999998,5.335,6.5060000000000002,8.0050000000000008,9.9420000000000002,12.478,15.840999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,874,-0.2117,8.0059000000000005,0.21189,4.41,5.335,6.5069999999999997,8.0060000000000002,9.9440000000000008,12.481,15.846 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,875,-0.2117,8.0071999999999992,0.21193999999999999,4.41,5.3360000000000003,6.508,8.0069999999999997,9.9459999999999997,12.484,15.851000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,876,-0.21179999999999999,8.0084,0.21198,4.41,5.3360000000000003,6.5090000000000003,8.0079999999999991,9.9480000000000004,12.487,15.856 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,877,-0.21179999999999999,8.0097000000000005,0.21201999999999999,4.41,5.3369999999999997,6.5090000000000003,8.01,9.9499999999999993,12.49,15.861000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,878,-0.21190000000000001,8.0108999999999995,0.21207000000000001,4.41,5.3369999999999997,6.51,8.0109999999999992,9.952,12.494,15.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,879,-0.21199999999999999,8.0122,0.21210999999999999,4.4109999999999996,5.3369999999999997,6.5110000000000001,8.0120000000000005,9.9540000000000006,12.497,15.871 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,880,-0.21199999999999999,8.0134000000000007,0.21215999999999999,4.4109999999999996,5.3380000000000001,6.5119999999999996,8.0129999999999999,9.9559999999999995,12.5,15.875999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,881,-0.21210000000000001,8.0145999999999997,0.2122,4.4109999999999996,5.3380000000000001,6.5119999999999996,8.0150000000000006,9.9580000000000002,12.503,15.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,882,-0.2122,8.0159000000000002,0.21224999999999999,4.4109999999999996,5.3390000000000004,6.5129999999999999,8.016,9.9600000000000009,12.507,15.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,883,-0.2122,8.0170999999999992,0.21229000000000001,4.4119999999999999,5.3390000000000004,6.5140000000000002,8.0169999999999995,9.9619999999999997,12.51,15.891999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,884,-0.21229999999999999,8.0183,0.21232999999999999,4.4119999999999999,5.3390000000000004,6.5149999999999997,8.0180000000000007,9.9640000000000004,12.513,15.897 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,885,-0.21229999999999999,8.0196000000000005,0.21238000000000001,4.4119999999999999,5.34,6.5149999999999997,8.02,9.9659999999999993,12.516,15.901999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,886,-0.21240000000000001,8.0207999999999995,0.21242,4.4119999999999999,5.34,6.516,8.0210000000000008,9.968,12.519,15.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,887,-0.21249999999999999,8.0220000000000002,0.21246999999999999,4.4119999999999999,5.3410000000000002,6.5170000000000003,8.0220000000000002,9.9700000000000006,12.523,15.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,888,-0.21249999999999999,8.0231999999999992,0.21251,4.4130000000000003,5.3410000000000002,6.5170000000000003,8.0229999999999997,9.9719999999999995,12.526,15.917 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,889,-0.21260000000000001,8.0244999999999997,0.21256,4.4130000000000003,5.3410000000000002,6.5179999999999998,8.0239999999999991,9.9740000000000002,12.529,15.923 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,890,-0.21260000000000001,8.0257000000000005,0.21260000000000001,4.4130000000000003,5.3419999999999996,6.5190000000000001,8.0259999999999998,9.9760000000000009,12.532,15.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,891,-0.2127,8.0268999999999995,0.21265000000000001,4.4130000000000003,5.3419999999999996,6.52,8.0269999999999992,9.9779999999999998,12.536,15.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,892,-0.21279999999999999,8.0281000000000002,0.21268999999999999,4.4130000000000003,5.343,6.52,8.0280000000000005,9.98,12.539,15.938000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,893,-0.21279999999999999,8.0292999999999992,0.21274000000000001,4.4130000000000003,5.343,6.5209999999999999,8.0289999999999999,9.9819999999999993,12.542,15.943 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,894,-0.21290000000000001,8.0305999999999997,0.21278,4.4139999999999997,5.3440000000000003,6.5220000000000002,8.0310000000000006,9.984,12.545,15.948 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,895,-0.21290000000000001,8.0318000000000005,0.21282999999999999,4.4139999999999997,5.3440000000000003,6.5229999999999997,8.032,9.9860000000000007,12.548999999999999,15.952999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,896,-0.21299999999999999,8.0329999999999995,0.21287,4.4139999999999997,5.3440000000000003,6.5229999999999997,8.0329999999999995,9.9879999999999995,12.552,15.958 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,897,-0.21299999999999999,8.0342000000000002,0.21292,4.4139999999999997,5.3449999999999998,6.524,8.0340000000000007,9.99,12.555,15.964 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,898,-0.21310000000000001,8.0353999999999992,0.21296000000000001,4.4139999999999997,5.3449999999999998,6.5250000000000004,8.0350000000000001,9.9920000000000009,12.558,15.968999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,899,-0.2132,8.0366,0.21301,4.415,5.3449999999999998,6.5250000000000004,8.0370000000000008,9.9939999999999998,12.561,15.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,900,-0.2132,8.0378000000000007,0.21306,4.415,5.3460000000000001,6.5259999999999998,8.0380000000000003,9.9960000000000004,12.565,15.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,901,-0.21329999999999999,8.0389999999999997,0.21310000000000001,4.415,5.3460000000000001,6.5270000000000001,8.0389999999999997,9.9979999999999993,12.568,15.984 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,902,-0.21329999999999999,8.0402000000000005,0.21315000000000001,4.415,5.3460000000000001,6.5270000000000001,8.0399999999999991,10,12.571,15.99 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,903,-0.21340000000000001,8.0413999999999994,0.21318999999999999,4.415,5.3470000000000004,6.5279999999999996,8.0410000000000004,10.002000000000001,12.574,15.994999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,904,-0.21340000000000001,8.0426000000000002,0.21324000000000001,4.415,5.3470000000000004,6.5289999999999999,8.0429999999999993,10.004,12.577,16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,905,-0.2135,8.0437999999999992,0.21328,4.4160000000000004,5.3479999999999999,6.53,8.0440000000000005,10.006,12.581,16.004999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,906,-0.21360000000000001,8.0449999999999999,0.21332999999999999,4.4160000000000004,5.3479999999999999,6.53,8.0449999999999999,10.007999999999999,12.584,16.010000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,907,-0.21360000000000001,8.0462000000000007,0.21337999999999999,4.4160000000000004,5.3479999999999999,6.5309999999999997,8.0459999999999994,10.01,12.587,16.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,908,-0.2137,8.0473999999999997,0.21342,4.4160000000000004,5.3490000000000002,6.532,8.0470000000000006,10.012,12.59,16.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,909,-0.2137,8.0486000000000004,0.21346999999999999,4.4160000000000004,5.3490000000000002,6.532,8.0489999999999995,10.013999999999999,12.593999999999999,16.026 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,910,-0.21379999999999999,8.0497999999999994,0.21351000000000001,4.4160000000000004,5.35,6.5330000000000004,8.0500000000000007,10.016,12.597,16.030999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,911,-0.21379999999999999,8.0510000000000002,0.21356,4.4169999999999998,5.35,6.5339999999999998,8.0510000000000002,10.018000000000001,12.6,16.036000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,912,-0.21390000000000001,8.0521999999999991,0.21360999999999999,4.4169999999999998,5.35,6.5339999999999998,8.0519999999999996,10.02,12.603,16.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,913,-0.21390000000000001,8.0533999999999999,0.21365000000000001,4.4169999999999998,5.351,6.5350000000000001,8.0530000000000008,10.022,12.606,16.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,914,-0.214,8.0546000000000006,0.2137,4.4169999999999998,5.351,6.5359999999999996,8.0549999999999997,10.023999999999999,12.61,16.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,915,-0.21410000000000001,8.0556999999999999,0.21374000000000001,4.4169999999999998,5.351,6.5359999999999996,8.0559999999999992,10.026,12.613,16.056000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,916,-0.21410000000000001,8.0569000000000006,0.21379000000000001,4.4169999999999998,5.3520000000000003,6.5369999999999999,8.0570000000000004,10.028,12.616,16.062000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,917,-0.2142,8.0580999999999996,0.21384,4.4169999999999998,5.3520000000000003,6.5380000000000003,8.0579999999999998,10.029999999999999,12.619,16.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,918,-0.2142,8.0593000000000004,0.21387999999999999,4.4180000000000001,5.3520000000000003,6.5380000000000003,8.0589999999999993,10.032,12.622,16.071999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,919,-0.21429999999999999,8.0603999999999996,0.21393000000000001,4.4180000000000001,5.3529999999999998,6.5389999999999997,8.06,10.034000000000001,12.625999999999999,16.077000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,920,-0.21429999999999999,8.0616000000000003,0.21398,4.4180000000000001,5.3529999999999998,6.54,8.0619999999999994,10.036,12.629,16.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,921,-0.21440000000000001,8.0627999999999993,0.21401999999999999,4.4180000000000001,5.3529999999999998,6.54,8.0630000000000006,10.038,12.632,16.087 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,922,-0.21440000000000001,8.0640000000000001,0.21407000000000001,4.4180000000000001,5.3540000000000001,6.5410000000000004,8.0640000000000001,10.039999999999999,12.635,16.093 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,923,-0.2145,8.0650999999999993,0.21412,4.4180000000000001,5.3540000000000001,6.5419999999999998,8.0649999999999995,10.042,12.638999999999999,16.097999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,924,-0.2145,8.0663,0.21415999999999999,4.4180000000000001,5.3540000000000001,6.5419999999999998,8.0660000000000007,10.044,12.641999999999999,16.103000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,925,-0.21460000000000001,8.0675000000000008,0.21421000000000001,4.4189999999999996,5.3550000000000004,6.5430000000000001,8.0679999999999996,10.045999999999999,12.645,16.108000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,926,-0.21460000000000001,8.0686,0.21426000000000001,4.4189999999999996,5.3550000000000004,6.5439999999999996,8.0690000000000008,10.047000000000001,12.648,16.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,927,-0.2147,8.0698000000000008,0.21431,4.4189999999999996,5.3550000000000004,6.5439999999999996,8.07,10.050000000000001,12.651,16.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,928,-0.21479999999999999,8.0709,0.21435000000000001,4.4189999999999996,5.3559999999999999,6.5449999999999999,8.0709999999999997,10.051,12.654,16.123999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,929,-0.21479999999999999,8.0721000000000007,0.21440000000000001,4.4189999999999996,5.3559999999999999,6.5460000000000003,8.0719999999999992,10.053000000000001,12.657999999999999,16.129000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,930,-0.21490000000000001,8.0732999999999997,0.21445,4.4189999999999996,5.3559999999999999,6.5460000000000003,8.0730000000000004,10.055,12.661,16.135000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,931,-0.21490000000000001,8.0744000000000007,0.21448999999999999,4.4189999999999996,5.3570000000000002,6.5469999999999997,8.0739999999999998,10.057,12.664,16.138999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,932,-0.215,8.0755999999999997,0.21454000000000001,4.42,5.3570000000000002,6.548,8.0760000000000005,10.058999999999999,12.667,16.145 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,933,-0.215,8.0767000000000007,0.21459,4.42,5.3570000000000002,6.548,8.077,10.061,12.67,16.149999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,934,-0.21510000000000001,8.0778999999999996,0.21464,4.42,5.3579999999999997,6.5490000000000004,8.0779999999999994,10.063000000000001,12.673999999999999,16.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,935,-0.21510000000000001,8.0790000000000006,0.21468000000000001,4.42,5.3579999999999997,6.55,8.0790000000000006,10.065,12.677,16.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,936,-0.2152,8.0800999999999998,0.21473,4.42,5.3579999999999997,6.55,8.08,10.067,12.68,16.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,937,-0.2152,8.0813000000000006,0.21478,4.42,5.359,6.5510000000000002,8.0809999999999995,10.069000000000001,12.683,16.170000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,938,-0.21529999999999999,8.0823999999999998,0.21482999999999999,4.42,5.359,6.5510000000000002,8.0820000000000007,10.071,12.686999999999999,16.175999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,939,-0.21529999999999999,8.0836000000000006,0.21487000000000001,4.42,5.359,6.5519999999999996,8.0839999999999996,10.073,12.69,16.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,940,-0.21540000000000001,8.0846999999999998,0.21492,4.42,5.36,6.5529999999999999,8.0850000000000009,10.074999999999999,12.693,16.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,941,-0.21540000000000001,8.0858000000000008,0.21496999999999999,4.42,5.36,6.5529999999999999,8.0860000000000003,10.077,12.696,16.190999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,942,-0.2155,8.0869999999999997,0.21501999999999999,4.4210000000000003,5.36,6.5540000000000003,8.0869999999999997,10.079000000000001,12.699,16.196999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,943,-0.2155,8.0881000000000007,0.21507000000000001,4.4210000000000003,5.36,6.5549999999999997,8.0879999999999992,10.081,12.702,16.202000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,944,-0.21560000000000001,8.0891999999999999,0.21511,4.4210000000000003,5.3609999999999998,6.5549999999999997,8.0890000000000004,10.082000000000001,12.705,16.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,945,-0.21560000000000001,8.0904000000000007,0.21515999999999999,4.4210000000000003,5.3609999999999998,6.556,8.09,10.084,12.709,16.212 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,946,-0.2157,8.0914999999999999,0.21521000000000001,4.4210000000000003,5.3609999999999998,6.556,8.0920000000000005,10.086,12.712,16.216999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,947,-0.2157,8.0925999999999991,0.21526000000000001,4.4210000000000003,5.3620000000000001,6.5570000000000004,8.093,10.087999999999999,12.715,16.222000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,948,-0.21579999999999999,8.0937000000000001,0.21531,4.4210000000000003,5.3620000000000001,6.5579999999999998,8.0939999999999994,10.09,12.718,16.228000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,949,-0.21579999999999999,8.0949000000000009,0.21535000000000001,4.4210000000000003,5.3620000000000001,6.5579999999999998,8.0950000000000006,10.092000000000001,12.721,16.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,950,-0.21590000000000001,8.0960000000000001,0.21540000000000001,4.4210000000000003,5.3630000000000004,6.5590000000000002,8.0960000000000001,10.093999999999999,12.725,16.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,951,-0.21590000000000001,8.0970999999999993,0.21545,4.4210000000000003,5.3630000000000004,6.56,8.0969999999999995,10.096,12.728,16.242999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,952,-0.216,8.0982000000000003,0.2155,4.4210000000000003,5.3630000000000004,6.56,8.0980000000000008,10.098000000000001,12.731,16.248000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,953,-0.216,8.0992999999999995,0.21554999999999999,4.4219999999999997,5.3630000000000004,6.5609999999999999,8.0990000000000002,10.1,12.734,16.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,954,-0.21609999999999999,8.1004000000000005,0.21560000000000001,4.4219999999999997,5.3639999999999999,6.5609999999999999,8.1,10.102,12.737,16.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,955,-0.21609999999999999,8.1015999999999995,0.21564,4.4219999999999997,5.3639999999999999,6.5620000000000003,8.1020000000000003,10.103999999999999,12.74,16.263000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,956,-0.2162,8.1027000000000005,0.21568999999999999,4.4219999999999997,5.3639999999999999,6.5629999999999997,8.1029999999999998,10.105,12.744,16.268999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,957,-0.2162,8.1037999999999997,0.21573999999999999,4.4219999999999997,5.3650000000000002,6.5629999999999997,8.1039999999999992,10.106999999999999,12.747,16.274000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,958,-0.21629999999999999,8.1049000000000007,0.21579000000000001,4.4219999999999997,5.3650000000000002,6.5640000000000001,8.1050000000000004,10.109,12.75,16.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,959,-0.21629999999999999,8.1059999999999999,0.21584,4.4219999999999997,5.3650000000000002,6.5640000000000001,8.1059999999999999,10.111000000000001,12.753,16.283999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,960,-0.21629999999999999,8.1071000000000009,0.21589,4.4219999999999997,5.3650000000000002,6.5650000000000004,8.1069999999999993,10.113,12.756,16.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,961,-0.21640000000000001,8.1082000000000001,0.21593000000000001,4.4219999999999997,5.3659999999999997,6.5659999999999998,8.1080000000000005,10.115,12.759,16.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,962,-0.21640000000000001,8.1092999999999993,0.21598000000000001,4.4219999999999997,5.3659999999999997,6.5659999999999998,8.109,10.117000000000001,12.763,16.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,963,-0.2165,8.1104000000000003,0.21603,4.4219999999999997,5.3659999999999997,6.5670000000000002,8.11,10.119,12.766,16.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,964,-0.2165,8.1114999999999995,0.21607999999999999,4.4219999999999997,5.3659999999999997,6.5670000000000002,8.1110000000000007,10.121,12.769,16.309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,965,-0.21659999999999999,8.1126000000000005,0.21612999999999999,4.4219999999999997,5.367,6.5679999999999996,8.1129999999999995,10.122999999999999,12.772,16.315000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,966,-0.21659999999999999,8.1136999999999997,0.21618000000000001,4.4219999999999997,5.367,6.5679999999999996,8.1140000000000008,10.125,12.775,16.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,967,-0.2167,8.1148000000000007,0.21623000000000001,4.423,5.367,6.569,8.1150000000000002,10.125999999999999,12.779,16.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,968,-0.2167,8.1158000000000001,0.21628,4.423,5.367,6.57,8.1159999999999997,10.128,12.782,16.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,969,-0.21679999999999999,8.1168999999999993,0.21632999999999999,4.423,5.3680000000000003,6.57,8.1170000000000009,10.130000000000001,12.785,16.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,970,-0.21679999999999999,8.1180000000000003,0.21637000000000001,4.423,5.3680000000000003,6.5709999999999997,8.1180000000000003,10.132,12.788,16.341000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,971,-0.21690000000000001,8.1190999999999995,0.21642,4.423,5.3680000000000003,6.5709999999999997,8.1189999999999998,10.134,12.791,16.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,972,-0.21690000000000001,8.1202000000000005,0.21647,4.423,5.3689999999999998,6.5720000000000001,8.1199999999999992,10.135999999999999,12.794,16.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,973,-0.217,8.1212999999999997,0.21651999999999999,4.423,5.3689999999999998,6.5730000000000004,8.1210000000000004,10.138,12.797000000000001,16.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,974,-0.217,8.1224000000000007,0.21657000000000001,4.423,5.3689999999999998,6.5730000000000004,8.1219999999999999,10.14,12.801,16.361999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,975,-0.217,8.1234000000000002,0.21662000000000001,4.423,5.3689999999999998,6.5739999999999998,8.1229999999999993,10.141,12.804,16.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,976,-0.21709999999999999,8.1244999999999994,0.21667,4.423,5.3689999999999998,6.5739999999999998,8.1240000000000006,10.143000000000001,12.807,16.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,977,-0.21709999999999999,8.1256000000000004,0.21672,4.423,5.37,6.5750000000000002,8.1259999999999994,10.145,12.81,16.376999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,978,-0.2172,8.1266999999999996,0.21676999999999999,4.423,5.37,6.5750000000000002,8.1270000000000007,10.147,12.813000000000001,16.382999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,979,-0.2172,8.1277000000000008,0.21682000000000001,4.423,5.37,6.5759999999999996,8.1280000000000001,10.148999999999999,12.816000000000001,16.388000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,980,-0.21729999999999999,8.1288,0.21687000000000001,4.423,5.37,6.5759999999999996,8.1289999999999996,10.151,12.82,16.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,981,-0.21729999999999999,8.1298999999999992,0.21692,4.423,5.3710000000000004,6.577,8.1300000000000008,10.153,12.823,16.398 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,982,-0.21740000000000001,8.1309000000000005,0.21697,4.423,5.3710000000000004,6.5780000000000003,8.1310000000000002,10.154999999999999,12.826000000000001,16.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,983,-0.21740000000000001,8.1319999999999997,0.21701999999999999,4.423,5.3710000000000004,6.5780000000000003,8.1319999999999997,10.156000000000001,12.829000000000001,16.408999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,984,-0.21740000000000001,8.1331000000000007,0.21707000000000001,4.423,5.3710000000000004,6.5789999999999997,8.1329999999999991,10.157999999999999,12.832000000000001,16.414000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,985,-0.2175,8.1341000000000001,0.21712000000000001,4.423,5.3719999999999999,6.5789999999999997,8.1340000000000003,10.16,12.835000000000001,16.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,986,-0.2175,8.1351999999999993,0.21717,4.423,5.3719999999999999,6.58,8.1349999999999998,10.162000000000001,12.837999999999999,16.423999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,987,-0.21759999999999999,8.1363000000000003,0.21722,4.423,5.3719999999999999,6.58,8.1359999999999992,10.164,12.842000000000001,16.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,988,-0.21759999999999999,8.1372999999999998,0.21726000000000001,4.4240000000000004,5.3719999999999999,6.5810000000000004,8.1370000000000005,10.166,12.843999999999999,16.434000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,989,-0.2177,8.1384000000000007,0.21731,4.4240000000000004,5.3730000000000002,6.5819999999999999,8.1379999999999999,10.167999999999999,12.848000000000001,16.440000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,990,-0.2177,8.1394000000000002,0.21736,4.4240000000000004,5.3730000000000002,6.5819999999999999,8.1389999999999993,10.169,12.851000000000001,16.443999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,991,-0.21779999999999999,8.1404999999999994,0.21740999999999999,4.4240000000000004,5.3730000000000002,6.5830000000000002,8.14,10.170999999999999,12.853999999999999,16.45 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,992,-0.21779999999999999,8.1415000000000006,0.21745999999999999,4.4240000000000004,5.3730000000000002,6.5830000000000002,8.1419999999999995,10.173,12.856999999999999,16.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,993,-0.21779999999999999,8.1425999999999998,0.21751000000000001,4.4240000000000004,5.3739999999999997,6.5839999999999996,8.1430000000000007,10.175000000000001,12.86,16.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,994,-0.21790000000000001,8.1435999999999993,0.21756,4.4240000000000004,5.3739999999999997,6.5839999999999996,8.1440000000000001,10.177,12.863,16.465 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,995,-0.21790000000000001,8.1447000000000003,0.21761,4.4240000000000004,5.3739999999999997,6.585,8.1449999999999996,10.179,12.867000000000001,16.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,996,-0.218,8.1456999999999997,0.21765999999999999,4.4240000000000004,5.3739999999999997,6.585,8.1460000000000008,10.180999999999999,12.87,16.475999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,997,-0.218,8.1468000000000007,0.21770999999999999,4.4240000000000004,5.3739999999999997,6.5860000000000003,8.1470000000000002,10.183,12.872999999999999,16.481000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,998,-0.21809999999999999,8.1478000000000002,0.21776000000000001,4.4240000000000004,5.375,6.5860000000000003,8.1479999999999997,10.183999999999999,12.875999999999999,16.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,999,-0.21809999999999999,8.1488999999999994,0.21782000000000001,4.4240000000000004,5.375,6.5869999999999997,8.1489999999999991,10.186,12.879,16.492000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1000,-0.21809999999999999,8.1499000000000006,0.21787000000000001,4.4240000000000004,5.375,6.5869999999999997,8.15,10.188000000000001,12.882,16.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1001,-0.21820000000000001,8.1509999999999998,0.21792,4.4240000000000004,5.375,6.5880000000000001,8.1509999999999998,10.19,12.885999999999999,16.501999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1002,-0.21820000000000001,8.1519999999999992,0.21797,4.4240000000000004,5.375,6.5880000000000001,8.1519999999999992,10.192,12.888999999999999,16.507000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1003,-0.21829999999999999,8.1530000000000005,0.21801999999999999,4.4240000000000004,5.3760000000000003,6.5890000000000004,8.1530000000000005,10.194000000000001,12.891999999999999,16.513000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1004,-0.21829999999999999,8.1540999999999997,0.21807000000000001,4.4240000000000004,5.3760000000000003,6.59,8.1539999999999999,10.196,12.895,16.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1005,-0.21829999999999999,8.1550999999999991,0.21812000000000001,4.4240000000000004,5.3760000000000003,6.59,8.1549999999999994,10.196999999999999,12.898,16.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1006,-0.21840000000000001,8.1562000000000001,0.21817,4.4240000000000004,5.3760000000000003,6.5910000000000002,8.1560000000000006,10.199,12.901,16.527999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1007,-0.21840000000000001,8.1571999999999996,0.21822,4.4240000000000004,5.3760000000000003,6.5910000000000002,8.157,10.201000000000001,12.904,16.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1008,-0.2185,8.1582000000000008,0.21826999999999999,4.4240000000000004,5.3769999999999998,6.5919999999999996,8.1579999999999995,10.202999999999999,12.907999999999999,16.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1009,-0.2185,8.1592000000000002,0.21831999999999999,4.4240000000000004,5.3769999999999998,6.5919999999999996,8.1590000000000007,10.205,12.911,16.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1010,-0.21859999999999999,8.1602999999999994,0.21837000000000001,4.4240000000000004,5.3769999999999998,6.593,8.16,10.207000000000001,12.914,16.548999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1011,-0.21859999999999999,8.1613000000000007,0.21842,4.4240000000000004,5.3769999999999998,6.593,8.1609999999999996,10.208,12.917,16.553999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1012,-0.21859999999999999,8.1623000000000001,0.21847,4.4240000000000004,5.3769999999999998,6.5940000000000003,8.1620000000000008,10.210000000000001,12.92,16.559000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1013,-0.21870000000000001,8.1633999999999993,0.21851999999999999,4.4240000000000004,5.3780000000000001,6.5940000000000003,8.1630000000000003,10.212,12.923,16.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1014,-0.21870000000000001,8.1644000000000005,0.21856999999999999,4.4240000000000004,5.3780000000000001,6.5949999999999998,8.1639999999999997,10.214,12.926,16.568999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1015,-0.21879999999999999,8.1654,0.21862000000000001,4.4240000000000004,5.3780000000000001,6.5949999999999998,8.1649999999999991,10.215999999999999,12.929,16.574999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1016,-0.21879999999999999,8.1663999999999994,0.21867,4.4240000000000004,5.3780000000000001,6.5960000000000001,8.1660000000000004,10.218,12.932,16.579999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1017,-0.21879999999999999,8.1675000000000004,0.21872,4.4240000000000004,5.3789999999999996,6.5960000000000001,8.1679999999999993,10.218999999999999,12.936,16.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1018,-0.21890000000000001,8.1684999999999999,0.21878,4.4240000000000004,5.3789999999999996,6.5970000000000004,8.1679999999999993,10.221,12.939,16.591000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1019,-0.21890000000000001,8.1694999999999993,0.21883,4.4240000000000004,5.3789999999999996,6.5970000000000004,8.1690000000000005,10.223000000000001,12.942,16.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1020,-0.219,8.1705000000000005,0.21887999999999999,4.4240000000000004,5.3789999999999996,6.5979999999999999,8.1709999999999994,10.225,12.945,16.600999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1021,-0.219,8.1715,0.21893000000000001,4.4240000000000004,5.3789999999999996,6.5979999999999999,8.1720000000000006,10.227,12.948,16.606000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1022,-0.219,8.1724999999999994,0.21898000000000001,4.4240000000000004,5.3789999999999996,6.5990000000000002,8.1720000000000006,10.228999999999999,12.951000000000001,16.611000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1023,-0.21909999999999999,8.1736000000000004,0.21903,4.4240000000000004,5.38,6.5990000000000002,8.1739999999999995,10.23,12.954000000000001,16.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1024,-0.21909999999999999,8.1745999999999999,0.21908,4.4240000000000004,5.38,6.6,8.1750000000000007,10.231999999999999,12.957000000000001,16.620999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1025,-0.21920000000000001,8.1755999999999993,0.21912999999999999,4.4240000000000004,5.38,6.6,8.1760000000000002,10.234,12.961,16.626999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1026,-0.21920000000000001,8.1766000000000005,0.21918000000000001,4.4240000000000004,5.38,6.601,8.1769999999999996,10.236000000000001,12.964,16.632000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1027,-0.21920000000000001,8.1776,0.21923999999999999,4.4240000000000004,5.38,6.601,8.1780000000000008,10.238,12.967000000000001,16.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1028,-0.21929999999999999,8.1785999999999994,0.21929000000000001,4.4240000000000004,5.38,6.6020000000000003,8.1790000000000003,10.24,12.97,16.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1029,-0.21929999999999999,8.1796000000000006,0.21934000000000001,4.4240000000000004,5.3810000000000002,6.6020000000000003,8.18,10.241,12.973000000000001,16.648 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1030,-0.21940000000000001,8.1806000000000001,0.21939,4.4240000000000004,5.3810000000000002,6.6029999999999998,8.1809999999999992,10.243,12.976000000000001,16.652999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1031,-0.21940000000000001,8.1815999999999995,0.21944,4.4240000000000004,5.3810000000000002,6.6029999999999998,8.1820000000000004,10.244999999999999,12.978999999999999,16.658000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1032,-0.21940000000000001,8.1826000000000008,0.21948999999999999,4.4240000000000004,5.3810000000000002,6.6040000000000001,8.1829999999999998,10.247,12.981999999999999,16.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1033,-0.2195,8.1836000000000002,0.21954000000000001,4.4240000000000004,5.3810000000000002,6.6040000000000001,8.1839999999999993,10.249000000000001,12.986000000000001,16.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1034,-0.2195,8.1845999999999997,0.21959000000000001,4.4240000000000004,5.3819999999999997,6.6050000000000004,8.1850000000000005,10.25,12.989000000000001,16.672999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1035,-0.2195,8.1856000000000009,0.21965000000000001,4.4240000000000004,5.3819999999999997,6.6050000000000004,8.1859999999999999,10.252000000000001,12.992000000000001,16.678999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1036,-0.21959999999999999,8.1866000000000003,0.21970000000000001,4.4240000000000004,5.3819999999999997,6.6059999999999999,8.1869999999999994,10.254,12.994999999999999,16.684000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1037,-0.21959999999999999,8.1875999999999998,0.21975,4.4240000000000004,5.3819999999999997,6.6059999999999999,8.1880000000000006,10.256,12.997999999999999,16.689 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1038,-0.21970000000000001,8.1885999999999992,0.2198,4.4240000000000004,5.3819999999999997,6.6070000000000002,8.1890000000000001,10.257999999999999,13.000999999999999,16.695 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1039,-0.21970000000000001,8.1896000000000004,0.21984999999999999,4.4240000000000004,5.3819999999999997,6.6070000000000002,8.19,10.259,13.004,16.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1040,-0.21970000000000001,8.1905999999999999,0.21990000000000001,4.423,5.383,6.6079999999999997,8.1910000000000007,10.260999999999999,13.007,16.704999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1041,-0.2198,8.1915999999999993,0.21995999999999999,4.423,5.383,6.6079999999999997,8.1920000000000002,10.263,13.010999999999999,16.710999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1042,-0.2198,8.1926000000000005,0.22001000000000001,4.423,5.383,6.609,8.1929999999999996,10.265000000000001,13.013999999999999,16.716000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1043,-0.21990000000000001,8.1936,0.22006000000000001,4.423,5.383,6.609,8.1940000000000008,10.266999999999999,13.016999999999999,16.721 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1044,-0.21990000000000001,8.1945999999999994,0.22011,4.423,5.383,6.61,8.1950000000000003,10.269,13.02,16.725999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1045,-0.21990000000000001,8.1956000000000007,0.22015999999999999,4.423,5.383,6.61,8.1959999999999997,10.27,13.023,16.731000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1046,-0.22,8.1966000000000001,0.22020999999999999,4.423,5.3840000000000003,6.6109999999999998,8.1969999999999992,10.272,13.026,16.736000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1047,-0.22,8.1975999999999996,0.22026999999999999,4.423,5.3840000000000003,6.6109999999999998,8.1980000000000004,10.273999999999999,13.03,16.742000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1048,-0.22,8.1986000000000008,0.22031999999999999,4.423,5.3840000000000003,6.6120000000000001,8.1989999999999998,10.276,13.032999999999999,16.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1049,-0.22009999999999999,8.1996000000000002,0.22037000000000001,4.423,5.3840000000000003,6.6120000000000001,8.1999999999999993,10.278,13.036,16.751999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1050,-0.22009999999999999,8.2005999999999997,0.22042,4.423,5.3840000000000003,6.6130000000000004,8.2010000000000005,10.28,13.039,16.757000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1051,-0.22020000000000001,8.2014999999999993,0.22047,4.423,5.3840000000000003,6.6130000000000004,8.202,10.281000000000001,13.042,16.763000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1052,-0.22020000000000001,8.2025000000000006,0.22053,4.423,5.3840000000000003,6.6130000000000004,8.202,10.282999999999999,13.045,16.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1053,-0.22020000000000001,8.2035,0.22058,4.423,5.3849999999999998,6.6139999999999999,8.2040000000000006,10.285,13.048,16.773 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1054,-0.2203,8.2044999999999995,0.22062999999999999,4.423,5.3849999999999998,6.6139999999999999,8.2040000000000006,10.287000000000001,13.051,16.779 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1055,-0.2203,8.2055000000000007,0.22067999999999999,4.423,5.3849999999999998,6.6150000000000002,8.2059999999999995,10.289,13.054,16.783999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1056,-0.2203,8.2065000000000001,0.22073000000000001,4.423,5.3849999999999998,6.6150000000000002,8.2059999999999995,10.29,13.057,16.789000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1057,-0.22040000000000001,8.2073999999999998,0.22078999999999999,4.423,5.3849999999999998,6.6159999999999997,8.2070000000000007,10.292,13.061,16.794 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1058,-0.22040000000000001,8.2083999999999993,0.22084000000000001,4.423,5.3849999999999998,6.6159999999999997,8.2080000000000002,10.294,13.064,16.798999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1059,-0.22040000000000001,8.2094000000000005,0.22089,4.423,5.3849999999999998,6.617,8.2089999999999996,10.295999999999999,13.067,16.803999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1060,-0.2205,8.2103999999999999,0.22094,4.423,5.3860000000000001,6.617,8.2100000000000009,10.298,13.07,16.809999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1061,-0.2205,8.2113999999999994,0.22098999999999999,4.423,5.3860000000000001,6.6180000000000003,8.2110000000000003,10.298999999999999,13.073,16.815000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1062,-0.22059999999999999,8.2123000000000008,0.22105,4.423,5.3860000000000001,6.6180000000000003,8.2119999999999997,10.301,13.076000000000001,16.821000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1063,-0.22059999999999999,8.2133000000000003,0.22109999999999999,4.423,5.3860000000000001,6.6189999999999998,8.2129999999999992,10.303000000000001,13.079000000000001,16.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1064,-0.22059999999999999,8.2142999999999997,0.22115000000000001,4.423,5.3860000000000001,6.6189999999999998,8.2140000000000004,10.305,13.082000000000001,16.831 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1065,-0.22070000000000001,8.2152999999999992,0.22120000000000001,4.423,5.3860000000000001,6.62,8.2149999999999999,10.307,13.086,16.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1066,-0.22070000000000001,8.2162000000000006,0.22126000000000001,4.4219999999999997,5.3860000000000001,6.62,8.2159999999999993,10.308,13.089,16.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1067,-0.22070000000000001,8.2172000000000001,0.22131000000000001,4.4219999999999997,5.3869999999999996,6.62,8.2170000000000005,10.31,13.092000000000001,16.847000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1068,-0.2208,8.2181999999999995,0.22136,4.4219999999999997,5.3869999999999996,6.6210000000000004,8.218,10.311999999999999,13.095000000000001,16.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1069,-0.2208,8.2192000000000007,0.22141,4.4219999999999997,5.3869999999999996,6.6210000000000004,8.2189999999999994,10.314,13.098000000000001,16.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1070,-0.2208,8.2201000000000004,0.22145999999999999,4.4219999999999997,5.3869999999999996,6.6219999999999999,8.2200000000000006,10.315,13.101000000000001,16.861999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1071,-0.22090000000000001,8.2210999999999999,0.22151999999999999,4.4219999999999997,5.3869999999999996,6.6219999999999999,8.2210000000000001,10.317,13.103999999999999,16.867999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1072,-0.22090000000000001,8.2220999999999993,0.22156999999999999,4.4219999999999997,5.3869999999999996,6.6230000000000002,8.2219999999999995,10.319000000000001,13.106999999999999,16.873000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1073,-0.221,8.2231000000000005,0.22162000000000001,4.4219999999999997,5.3879999999999999,6.6230000000000002,8.2230000000000008,10.321,13.111000000000001,16.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1074,-0.221,8.2240000000000002,0.22167000000000001,4.4219999999999997,5.3879999999999999,6.6239999999999997,8.2240000000000002,10.323,13.114000000000001,16.882999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1075,-0.221,8.2249999999999996,0.22173000000000001,4.4219999999999997,5.3879999999999999,6.6239999999999997,8.2249999999999996,10.324999999999999,13.117000000000001,16.888999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1076,-0.22109999999999999,8.2260000000000009,0.22178,4.4219999999999997,5.3879999999999999,6.625,8.2260000000000009,10.326000000000001,13.12,16.893999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1077,-0.22109999999999999,8.2269000000000005,0.22183,4.4219999999999997,5.3879999999999999,6.625,8.2270000000000003,10.327999999999999,13.122999999999999,16.899000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1078,-0.22109999999999999,8.2279,0.22187999999999999,4.4219999999999997,5.3879999999999999,6.625,8.2279999999999998,10.33,13.125999999999999,16.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1079,-0.22120000000000001,8.2288999999999994,0.22194,4.4219999999999997,5.3879999999999999,6.6260000000000003,8.2289999999999992,10.332000000000001,13.13,16.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1080,-0.22120000000000001,8.2297999999999991,0.22198999999999999,4.4219999999999997,5.3879999999999999,6.6260000000000003,8.23,10.333,13.132,16.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1081,-0.22120000000000001,8.2308000000000003,0.22203999999999999,4.4219999999999997,5.3890000000000002,6.6269999999999998,8.2309999999999999,10.335000000000001,13.135,16.920000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1082,-0.2213,8.2317999999999998,0.22209999999999999,4.4210000000000003,5.3890000000000002,6.6269999999999998,8.2319999999999993,10.337,13.138999999999999,16.925999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1083,-0.2213,8.2326999999999995,0.22214999999999999,4.4210000000000003,5.3890000000000002,6.6280000000000001,8.2330000000000005,10.339,13.141999999999999,16.931000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1084,-0.2213,8.2337000000000007,0.22220000000000001,4.4210000000000003,5.3890000000000002,6.6280000000000001,8.234,10.340999999999999,13.145,16.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1085,-0.22140000000000001,8.2346000000000004,0.22225,4.4210000000000003,5.3890000000000002,6.6289999999999996,8.2349999999999994,10.342000000000001,13.148,16.940999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1086,-0.22140000000000001,8.2355999999999998,0.22231000000000001,4.4210000000000003,5.3890000000000002,6.6289999999999996,8.2360000000000007,10.343999999999999,13.151,16.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1087,-0.22140000000000001,8.2365999999999993,0.22236,4.4210000000000003,5.3890000000000002,6.6289999999999996,8.2370000000000001,10.346,13.154,16.952000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1088,-0.2215,8.2375000000000007,0.22241,4.4210000000000003,5.3890000000000002,6.63,8.2379999999999995,10.348000000000001,13.157,16.957000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1089,-0.2215,8.2385000000000002,0.22247,4.4210000000000003,5.39,6.63,8.2379999999999995,10.35,13.161,16.963000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1090,-0.2215,8.2394999999999996,0.22252,4.4210000000000003,5.39,6.6310000000000002,8.24,10.351000000000001,13.164,16.968 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1091,-0.22159999999999999,8.2403999999999993,0.22256999999999999,4.4210000000000003,5.39,6.6310000000000002,8.24,10.353,13.167,16.972999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1092,-0.22159999999999999,8.2414000000000005,0.22262000000000001,4.4210000000000003,5.39,6.6319999999999997,8.2409999999999997,10.355,13.17,16.978000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1093,-0.22159999999999999,8.2423000000000002,0.22267999999999999,4.4210000000000003,5.39,6.6319999999999997,8.2420000000000009,10.356999999999999,13.173,16.984000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1094,-0.22170000000000001,8.2432999999999996,0.22273000000000001,4.4210000000000003,5.39,6.633,8.2430000000000003,10.359,13.176,16.989000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1095,-0.22170000000000001,8.2441999999999993,0.22278000000000001,4.4210000000000003,5.39,6.633,8.2439999999999998,10.36,13.179,16.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1096,-0.22170000000000001,8.2452000000000005,0.22284000000000001,4.42,5.39,6.633,8.2449999999999992,10.362,13.183,17 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1097,-0.2218,8.2462,0.22289,4.4210000000000003,5.391,6.6340000000000003,8.2460000000000004,10.364000000000001,13.186,17.004999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1098,-0.2218,8.2470999999999997,0.22294,4.42,5.391,6.6340000000000003,8.2469999999999999,10.366,13.189,17.010000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1099,-0.2218,8.2481000000000009,0.223,4.42,5.391,6.6349999999999998,8.2479999999999993,10.368,13.192,17.015999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1100,-0.22189999999999999,8.2490000000000006,0.22305,4.42,5.391,6.6349999999999998,8.2490000000000006,10.369,13.195,17.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1101,-0.22189999999999999,8.25,0.22309999999999999,4.42,5.391,6.6360000000000001,8.25,10.371,13.198,17.026 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1102,-0.22189999999999999,8.2508999999999997,0.22314999999999999,4.42,5.391,6.6360000000000001,8.2509999999999994,10.372999999999999,13.201000000000001,17.030999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1103,-0.222,8.2518999999999991,0.22320999999999999,4.42,5.391,6.6369999999999996,8.2520000000000007,10.375,13.205,17.036999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1104,-0.222,8.2528000000000006,0.22325999999999999,4.42,5.391,6.6369999999999996,8.2530000000000001,10.375999999999999,13.207000000000001,17.042000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1105,-0.222,8.2538,0.22331000000000001,4.42,5.3920000000000003,6.6369999999999996,8.2539999999999996,10.378,13.211,17.047000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1106,-0.22209999999999999,8.2546999999999997,0.22337000000000001,4.42,5.3920000000000003,6.6379999999999999,8.2550000000000008,10.38,13.214,17.053000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1107,-0.22209999999999999,8.2556999999999992,0.22342000000000001,4.42,5.3920000000000003,6.6379999999999999,8.2560000000000002,10.382,13.217000000000001,17.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1108,-0.22209999999999999,8.2566000000000006,0.22347,4.42,5.3920000000000003,6.6390000000000002,8.2569999999999997,10.384,13.22,17.062999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1109,-0.22220000000000001,8.2576000000000001,0.22353000000000001,4.42,5.3920000000000003,6.6390000000000002,8.2579999999999991,10.385,13.223000000000001,17.068999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1110,-0.22220000000000001,8.2584999999999997,0.22358,4.4189999999999996,5.3920000000000003,6.64,8.2579999999999991,10.387,13.226000000000001,17.074000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1111,-0.22220000000000001,8.2594999999999992,0.22363,4.4189999999999996,5.3920000000000003,6.64,8.26,10.388999999999999,13.228999999999999,17.079000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1112,-0.2223,8.2604000000000006,0.22369,4.4189999999999996,5.3920000000000003,6.64,8.26,10.391,13.233000000000001,17.085000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1113,-0.2223,8.2614000000000001,0.22373999999999999,4.4189999999999996,5.3920000000000003,6.641,8.2609999999999992,10.393000000000001,13.236000000000001,17.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1114,-0.2223,8.2622999999999998,0.22378999999999999,4.4189999999999996,5.3929999999999998,6.641,8.2620000000000005,10.394,13.239000000000001,17.094999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1115,-0.22239999999999999,8.2631999999999994,0.22384999999999999,4.4189999999999996,5.3929999999999998,6.6420000000000003,8.2629999999999999,10.396000000000001,13.242000000000001,17.100999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1116,-0.22239999999999999,8.2642000000000007,0.22389999999999999,4.4189999999999996,5.3929999999999998,6.6420000000000003,8.2639999999999993,10.398,13.244999999999999,17.106000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1117,-0.22239999999999999,8.2651000000000003,0.22395000000000001,4.4189999999999996,5.3929999999999998,6.6429999999999998,8.2650000000000006,10.4,13.247999999999999,17.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1118,-0.2225,8.2660999999999998,0.22400999999999999,4.4189999999999996,5.3929999999999998,6.6429999999999998,8.266,10.401,13.252000000000001,17.117000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1119,-0.2225,8.2669999999999995,0.22406000000000001,4.4189999999999996,5.3929999999999998,6.6429999999999998,8.2669999999999995,10.403,13.255000000000001,17.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1120,-0.2225,8.2680000000000007,0.22411,4.4189999999999996,5.3929999999999998,6.6440000000000001,8.2680000000000007,10.404999999999999,13.257999999999999,17.126999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1121,-0.22259999999999999,8.2689000000000004,0.22417000000000001,4.4189999999999996,5.3929999999999998,6.6440000000000001,8.2690000000000001,10.407,13.260999999999999,17.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1122,-0.22259999999999999,8.2698,0.22422,4.4180000000000001,5.3929999999999998,6.6449999999999996,8.27,10.407999999999999,13.263999999999999,17.138000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1123,-0.22259999999999999,8.2707999999999995,0.22427,4.4180000000000001,5.3940000000000001,6.6449999999999996,8.2710000000000008,10.41,13.266999999999999,17.143000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1124,-0.22270000000000001,8.2716999999999992,0.22433,4.4180000000000001,5.3940000000000001,6.6449999999999996,8.2720000000000002,10.412000000000001,13.27,17.149000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1125,-0.22270000000000001,8.2727000000000004,0.22438,4.4180000000000001,5.3940000000000001,6.6459999999999999,8.2729999999999997,10.414,13.273,17.154 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1126,-0.22270000000000001,8.2736000000000001,0.22442999999999999,4.4180000000000001,5.3940000000000001,6.6459999999999999,8.2739999999999991,10.416,13.276,17.158999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1127,-0.2228,8.2744999999999997,0.22449,4.4180000000000001,5.3940000000000001,6.6470000000000002,8.2739999999999991,10.417,13.28,17.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1128,-0.2228,8.2754999999999992,0.22453999999999999,4.4180000000000001,5.3940000000000001,6.6470000000000002,8.2759999999999998,10.419,13.282999999999999,17.170000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1129,-0.2228,8.2764000000000006,0.22459999999999999,4.4180000000000001,5.3940000000000001,6.6479999999999997,8.2759999999999998,10.420999999999999,13.286,17.175999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1130,-0.22289999999999999,8.2773000000000003,0.22464999999999999,4.4180000000000001,5.3940000000000001,6.6479999999999997,8.2769999999999992,10.423,13.289,17.181000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1131,-0.22289999999999999,8.2782999999999998,0.22470000000000001,4.4180000000000001,5.3940000000000001,6.6479999999999997,8.2780000000000005,10.425000000000001,13.292,17.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1132,-0.22289999999999999,8.2791999999999994,0.22475999999999999,4.4169999999999998,5.3940000000000001,6.649,8.2789999999999999,10.426,13.295,17.192 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1133,-0.223,8.2800999999999991,0.22481000000000001,4.4169999999999998,5.3940000000000001,6.649,8.2799999999999994,10.428000000000001,13.298,17.196999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1134,-0.223,8.2811000000000003,0.22486,4.4169999999999998,5.3949999999999996,6.65,8.2810000000000006,10.43,13.302,17.202000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1135,-0.223,8.282,0.22492000000000001,4.4169999999999998,5.3949999999999996,6.65,8.282,10.432,13.305,17.207999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1136,-0.223,8.2828999999999997,0.22497,4.4169999999999998,5.3949999999999996,6.65,8.2829999999999995,10.433,13.308,17.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1137,-0.22309999999999999,8.2837999999999994,0.22502,4.4169999999999998,5.3949999999999996,6.6509999999999998,8.2840000000000007,10.435,13.311,17.218 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1138,-0.22309999999999999,8.2848000000000006,0.22508,4.4169999999999998,5.3949999999999996,6.6509999999999998,8.2850000000000001,10.436999999999999,13.314,17.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1139,-0.22309999999999999,8.2857000000000003,0.22513,4.4169999999999998,5.3949999999999996,6.6520000000000001,8.2859999999999996,10.439,13.317,17.228999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1140,-0.22320000000000001,8.2866,0.22519,4.4169999999999998,5.3949999999999996,6.6520000000000001,8.2870000000000008,10.44,13.32,17.234999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1141,-0.22320000000000001,8.2875999999999994,0.22524,4.4169999999999998,5.3949999999999996,6.6529999999999996,8.2880000000000003,10.442,13.324,17.239999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1142,-0.22320000000000001,8.2885000000000009,0.22528999999999999,4.4169999999999998,5.3949999999999996,6.6529999999999996,8.2880000000000003,10.444000000000001,13.326000000000001,17.245000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1143,-0.2233,8.2894000000000005,0.22534999999999999,4.4160000000000004,5.3949999999999996,6.6529999999999996,8.2889999999999997,10.446,13.33,17.251000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1144,-0.2233,8.2903000000000002,0.22539999999999999,4.4160000000000004,5.3949999999999996,6.6539999999999999,8.2899999999999991,10.446999999999999,13.333,17.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1145,-0.2233,8.2912999999999997,0.22545000000000001,4.4160000000000004,5.3959999999999999,6.6539999999999999,8.2910000000000004,10.449,13.336,17.260999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1146,-0.22339999999999999,8.2921999999999993,0.22550999999999999,4.4160000000000004,5.3959999999999999,6.6550000000000002,8.2919999999999998,10.451000000000001,13.339,17.266999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1147,-0.22339999999999999,8.2931000000000008,0.22556000000000001,4.4160000000000004,5.3959999999999999,6.6550000000000002,8.2929999999999993,10.452999999999999,13.342000000000001,17.271999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1148,-0.22339999999999999,8.2940000000000005,0.22561999999999999,4.4160000000000004,5.3959999999999999,6.6550000000000002,8.2940000000000005,10.455,13.345000000000001,17.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1149,-0.22339999999999999,8.2949000000000002,0.22567000000000001,4.4160000000000004,5.3959999999999999,6.6559999999999997,8.2949999999999999,10.456,13.348000000000001,17.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1150,-0.2235,8.2958999999999996,0.22572,4.4160000000000004,5.3959999999999999,6.6559999999999997,8.2959999999999994,10.458,13.352,17.288 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1151,-0.2235,8.2967999999999993,0.22578000000000001,4.4160000000000004,5.3959999999999999,6.657,8.2970000000000006,10.46,13.355,17.292999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1152,-0.2235,8.2977000000000007,0.22583,4.4160000000000004,5.3959999999999999,6.657,8.298,10.462,13.358000000000001,17.297999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1153,-0.22359999999999999,8.2986000000000004,0.22589000000000001,4.415,5.3959999999999999,6.657,8.2989999999999995,10.462999999999999,13.361000000000001,17.303999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1154,-0.22359999999999999,8.2995000000000001,0.22594,4.415,5.3959999999999999,6.6580000000000004,8.3000000000000007,10.465,13.364000000000001,17.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1155,-0.22359999999999999,8.3003999999999998,0.22599,4.415,5.3959999999999999,6.6580000000000004,8.3000000000000007,10.467000000000001,13.367000000000001,17.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1156,-0.22370000000000001,8.3013999999999992,0.22605,4.415,5.3970000000000002,6.6589999999999998,8.3010000000000002,10.468999999999999,13.371,17.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1157,-0.22370000000000001,8.3023000000000007,0.2261,4.415,5.3970000000000002,6.6589999999999998,8.3019999999999996,10.47,13.372999999999999,17.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1158,-0.22370000000000001,8.3032000000000004,0.22614999999999999,4.415,5.3970000000000002,6.6589999999999998,8.3030000000000008,10.472,13.375999999999999,17.329999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1159,-0.2238,8.3041,0.22620999999999999,4.415,5.3970000000000002,6.66,8.3040000000000003,10.474,13.38,17.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1160,-0.2238,8.3049999999999997,0.22625999999999999,4.415,5.3970000000000002,6.66,8.3049999999999997,10.476000000000001,13.382999999999999,17.341000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1161,-0.2238,8.3058999999999994,0.22631999999999999,4.415,5.3970000000000002,6.66,8.3059999999999992,10.477,13.385999999999999,17.347000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1162,-0.2238,8.3068000000000008,0.22636999999999999,4.4139999999999997,5.3970000000000002,6.6609999999999996,8.3070000000000004,10.478999999999999,13.388999999999999,17.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1163,-0.22389999999999999,8.3077000000000005,0.22642000000000001,4.4139999999999997,5.3970000000000002,6.6609999999999996,8.3079999999999998,10.481,13.391999999999999,17.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1164,-0.22389999999999999,8.3086000000000002,0.22647999999999999,4.4139999999999997,5.3970000000000002,6.6619999999999999,8.3089999999999993,10.483000000000001,13.395,17.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1165,-0.22389999999999999,8.3095999999999997,0.22653000000000001,4.4139999999999997,5.3970000000000002,6.6619999999999999,8.31,10.484,13.398,17.367999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1166,-0.224,8.3104999999999993,0.22659000000000001,4.4139999999999997,5.3970000000000002,6.6619999999999999,8.31,10.486000000000001,13.401999999999999,17.373999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1167,-0.224,8.3114000000000008,0.22664000000000001,4.4139999999999997,5.3970000000000002,6.6630000000000003,8.3109999999999999,10.488,13.404999999999999,17.379000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1168,-0.224,8.3123000000000005,0.22669,4.4139999999999997,5.3970000000000002,6.6630000000000003,8.3119999999999994,10.49,13.407999999999999,17.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1169,-0.22409999999999999,8.3132000000000001,0.22675000000000001,4.4139999999999997,5.3979999999999997,6.6639999999999997,8.3130000000000006,10.491,13.411,17.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1170,-0.22409999999999999,8.3140999999999998,0.2268,4.4139999999999997,5.3979999999999997,6.6639999999999997,8.3140000000000001,10.493,13.414,17.395 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1171,-0.22409999999999999,8.3149999999999995,0.22686000000000001,4.4130000000000003,5.3979999999999997,6.6639999999999997,8.3149999999999995,10.494999999999999,13.417,17.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1172,-0.22409999999999999,8.3158999999999992,0.22691,4.4130000000000003,5.3979999999999997,6.665,8.3160000000000007,10.497,13.42,17.405999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1173,-0.22420000000000001,8.3168000000000006,0.22696,4.4130000000000003,5.3979999999999997,6.665,8.3170000000000002,10.497999999999999,13.423,17.411000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1174,-0.22420000000000001,8.3177000000000003,0.22702,4.4130000000000003,5.3979999999999997,6.6660000000000004,8.3179999999999996,10.5,13.427,17.417000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1175,-0.22420000000000001,8.3186,0.22706999999999999,4.4130000000000003,5.3979999999999997,6.6660000000000004,8.3190000000000008,10.502000000000001,13.429,17.422000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1176,-0.2243,8.3194999999999997,0.22713,4.4130000000000003,5.3979999999999997,6.6660000000000004,8.32,10.504,13.433,17.428000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1177,-0.2243,8.3203999999999994,0.22717999999999999,4.4130000000000003,5.3979999999999997,6.6669999999999998,8.32,10.505000000000001,13.436,17.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1178,-0.2243,8.3213000000000008,0.22722999999999999,4.4130000000000003,5.3979999999999997,6.6669999999999998,8.3209999999999997,10.507,13.439,17.437999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1179,-0.2243,8.3222000000000005,0.22728999999999999,4.4119999999999999,5.3979999999999997,6.6669999999999998,8.3219999999999992,10.509,13.442,17.443000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1180,-0.22439999999999999,8.3231000000000002,0.22733999999999999,4.4119999999999999,5.3979999999999997,6.6680000000000001,8.3230000000000004,10.510999999999999,13.445,17.449000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1181,-0.22439999999999999,8.3239999999999998,0.22739999999999999,4.4119999999999999,5.3979999999999997,6.6680000000000001,8.3239999999999998,10.512,13.448,17.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1182,-0.22439999999999999,8.3248999999999995,0.22745000000000001,4.4119999999999999,5.3979999999999997,6.6689999999999996,8.3249999999999993,10.513999999999999,13.451000000000001,17.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1183,-0.22450000000000001,8.3256999999999994,0.22750000000000001,4.4119999999999999,5.3979999999999997,6.6689999999999996,8.3260000000000005,10.516,13.454000000000001,17.465 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1184,-0.22450000000000001,8.3265999999999991,0.22756000000000001,4.4119999999999999,5.3979999999999997,6.6689999999999996,8.327,10.516999999999999,13.458,17.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1185,-0.22450000000000001,8.3275000000000006,0.22761000000000001,4.4119999999999999,5.399,6.67,8.3279999999999994,10.519,13.461,17.475000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1186,-0.22450000000000001,8.3284000000000002,0.22767000000000001,4.4119999999999999,5.399,6.67,8.3279999999999994,10.521000000000001,13.464,17.481000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1187,-0.22459999999999999,8.3292999999999999,0.22772000000000001,4.4119999999999999,5.399,6.67,8.3290000000000006,10.523,13.467000000000001,17.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1188,-0.22459999999999999,8.3301999999999996,0.22777,4.4109999999999996,5.399,6.6710000000000003,8.33,10.523999999999999,13.47,17.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1189,-0.22459999999999999,8.3310999999999993,0.22783,4.4109999999999996,5.399,6.6710000000000003,8.3309999999999995,10.526,13.473000000000001,17.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1190,-0.22470000000000001,8.3320000000000007,0.22788,4.4109999999999996,5.399,6.6719999999999997,8.3320000000000007,10.528,13.476000000000001,17.501999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1191,-0.22470000000000001,8.3329000000000004,0.22794,4.4109999999999996,5.399,6.6719999999999997,8.3330000000000002,10.53,13.478999999999999,17.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1192,-0.22470000000000001,8.3337000000000003,0.22799,4.4109999999999996,5.399,6.6719999999999997,8.3339999999999996,10.531000000000001,13.481999999999999,17.513000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1193,-0.22470000000000001,8.3346,0.22805,4.4109999999999996,5.399,6.673,8.3350000000000009,10.532999999999999,13.486000000000001,17.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1194,-0.2248,8.3354999999999997,0.2281,4.4109999999999996,5.399,6.673,8.3360000000000003,10.535,13.489000000000001,17.524000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1195,-0.2248,8.3363999999999994,0.22814999999999999,4.4109999999999996,5.399,6.673,8.3360000000000003,10.536,13.492000000000001,17.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1196,-0.2248,8.3373000000000008,0.22821,4.41,5.399,6.6740000000000004,8.3369999999999997,10.538,13.494999999999999,17.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1197,-0.22489999999999999,8.3381000000000007,0.22825999999999999,4.41,5.399,6.6740000000000004,8.3379999999999992,10.54,13.497999999999999,17.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1198,-0.22489999999999999,8.3390000000000004,0.22832,4.41,5.399,6.6740000000000004,8.3390000000000004,10.542,13.500999999999999,17.545000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1199,-0.22489999999999999,8.3399000000000001,0.22836999999999999,4.41,5.399,6.6749999999999998,8.34,10.542999999999999,13.504,17.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1200,-0.22489999999999999,8.3407999999999998,0.22842000000000001,4.41,5.399,6.6749999999999998,8.3409999999999993,10.545,13.507,17.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1201,-0.22500000000000001,8.3416999999999994,0.22847999999999999,4.41,5.399,6.6760000000000002,8.3420000000000005,10.547000000000001,13.51,17.562000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1202,-0.22500000000000001,8.3424999999999994,0.22853000000000001,4.41,5.4,6.6760000000000002,8.3420000000000005,10.548,13.513,17.565999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1203,-0.22500000000000001,8.3434000000000008,0.22858999999999999,4.4089999999999998,5.4,6.6760000000000002,8.343,10.55,13.516999999999999,17.571999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1204,-0.22509999999999999,8.3443000000000005,0.22864000000000001,4.4089999999999998,5.4,6.6769999999999996,8.3439999999999994,10.552,13.52,17.577999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1205,-0.22509999999999999,8.3451000000000004,0.22869,4.4089999999999998,5.4,6.6769999999999996,8.3450000000000006,10.554,13.522,17.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1206,-0.22509999999999999,8.3460000000000001,0.22875000000000001,4.4089999999999998,5.4,6.6769999999999996,8.3460000000000001,10.555,13.526,17.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1207,-0.22509999999999999,8.3468999999999998,0.2288,4.4089999999999998,5.4,6.6779999999999999,8.3469999999999995,10.557,13.529,17.593 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1208,-0.22520000000000001,8.3477999999999994,0.22886000000000001,4.4089999999999998,5.4,6.6779999999999999,8.3480000000000008,10.558999999999999,13.532,17.599 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1209,-0.22520000000000001,8.3485999999999994,0.22891,4.4089999999999998,5.4,6.6779999999999999,8.3490000000000002,10.56,13.535,17.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1210,-0.22520000000000001,8.3495000000000008,0.22896,4.4080000000000004,5.4,6.6790000000000003,8.35,10.561999999999999,13.538,17.609000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1211,-0.2253,8.3504000000000005,0.22902,4.4080000000000004,5.4,6.6790000000000003,8.35,10.564,13.541,17.614999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1212,-0.2253,8.3512000000000004,0.22907,4.4080000000000004,5.4,6.68,8.3510000000000009,10.566000000000001,13.544,17.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1213,-0.2253,8.3521000000000001,0.22913,4.4080000000000004,5.4,6.68,8.3520000000000003,10.567,13.547000000000001,17.626000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1214,-0.2253,8.3529999999999998,0.22917999999999999,4.4080000000000004,5.4,6.68,8.3529999999999998,10.569000000000001,13.55,17.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1215,-0.22539999999999999,8.3537999999999997,0.22922999999999999,4.4080000000000004,5.4,6.681,8.3539999999999992,10.571,13.553000000000001,17.635999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1216,-0.22539999999999999,8.3546999999999993,0.22928999999999999,4.4080000000000004,5.4,6.681,8.3550000000000004,10.571999999999999,13.557,17.641999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1217,-0.22539999999999999,8.3554999999999993,0.22933999999999999,4.407,5.4,6.681,8.3559999999999999,10.574,13.558999999999999,17.646999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1218,-0.22539999999999999,8.3564000000000007,0.22939999999999999,4.407,5.4,6.6820000000000004,8.3559999999999999,10.576000000000001,13.563000000000001,17.652000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1219,-0.22550000000000001,8.3573000000000004,0.22944999999999999,4.407,5.4,6.6820000000000004,8.3569999999999993,10.577999999999999,13.566000000000001,17.658000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1220,-0.22550000000000001,8.3581000000000003,0.22950000000000001,4.407,5.4,6.6820000000000004,8.3580000000000005,10.579000000000001,13.569000000000001,17.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1221,-0.22550000000000001,8.359,0.22955999999999999,4.407,5.4,6.6829999999999998,8.359,10.581,13.571999999999999,17.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1222,-0.22559999999999999,8.3597999999999999,0.22961000000000001,4.407,5.4,6.6829999999999998,8.36,10.583,13.574999999999999,17.673999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1223,-0.22559999999999999,8.3606999999999996,0.22967000000000001,4.407,5.4,6.6829999999999998,8.3610000000000007,10.584,13.577999999999999,17.678999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1224,-0.22559999999999999,8.3614999999999995,0.22972000000000001,4.4059999999999997,5.4,6.6840000000000002,8.3620000000000001,10.586,13.581,17.684000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1225,-0.22559999999999999,8.3623999999999992,0.22977,4.4059999999999997,5.4009999999999998,6.6840000000000002,8.3620000000000001,10.587999999999999,13.584,17.689 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1226,-0.22570000000000001,8.3633000000000006,0.22983000000000001,4.4059999999999997,5.4009999999999998,6.6840000000000002,8.3629999999999995,10.589,13.587,17.695 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1227,-0.22570000000000001,8.3641000000000005,0.22988,4.4059999999999997,5.4009999999999998,6.6849999999999996,8.3640000000000008,10.590999999999999,13.59,17.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1228,-0.22570000000000001,8.3650000000000002,0.22994000000000001,4.4059999999999997,5.4009999999999998,6.6849999999999996,8.3650000000000002,10.593,13.593999999999999,17.706 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1229,-0.22570000000000001,8.3658000000000001,0.22999,4.4059999999999997,5.4009999999999998,6.6849999999999996,8.3659999999999997,10.593999999999999,13.596,17.710999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1230,-0.2258,8.3666999999999998,0.23003999999999999,4.4059999999999997,5.4009999999999998,6.6859999999999999,8.3670000000000009,10.596,13.6,17.716000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1231,-0.2258,8.3674999999999997,0.2301,4.4050000000000002,5.4009999999999998,6.6859999999999999,8.3680000000000003,10.598000000000001,13.603,17.722000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1232,-0.2258,8.3683999999999994,0.23014999999999999,4.4050000000000002,5.4009999999999998,6.6870000000000003,8.3680000000000003,10.6,13.606,17.727 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1233,-0.22589999999999999,8.3691999999999993,0.23021,4.4050000000000002,5.4009999999999998,6.6870000000000003,8.3689999999999998,10.601000000000001,13.609,17.733000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1234,-0.22589999999999999,8.3701000000000008,0.23025999999999999,4.4050000000000002,5.4009999999999998,6.6870000000000003,8.3699999999999992,10.603,13.612,17.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1235,-0.22589999999999999,8.3709000000000007,0.23030999999999999,4.4050000000000002,5.4009999999999998,6.6879999999999997,8.3710000000000004,10.605,13.615,17.742999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1236,-0.22589999999999999,8.3717000000000006,0.23036999999999999,4.4050000000000002,5.4009999999999998,6.6879999999999997,8.3719999999999999,10.606,13.618,17.748000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1237,-0.22600000000000001,8.3726000000000003,0.23042000000000001,4.4050000000000002,5.4009999999999998,6.6879999999999997,8.3729999999999993,10.608000000000001,13.621,17.754000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1238,-0.22600000000000001,8.3734000000000002,0.23047999999999999,4.4039999999999999,5.4009999999999998,6.6879999999999997,8.3729999999999993,10.61,13.624000000000001,17.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1239,-0.22600000000000001,8.3742999999999999,0.23053000000000001,4.4039999999999999,5.4009999999999998,6.6890000000000001,8.3740000000000006,10.611000000000001,13.627000000000001,17.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1240,-0.22600000000000001,8.3750999999999998,0.23058000000000001,4.4039999999999999,5.4009999999999998,6.6890000000000001,8.375,10.613,13.63,17.768999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1241,-0.2261,8.3759999999999994,0.23064000000000001,4.4039999999999999,5.4009999999999998,6.69,8.3759999999999994,10.615,13.632999999999999,17.774999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1242,-0.2261,8.3767999999999994,0.23069000000000001,4.4039999999999999,5.4009999999999998,6.69,8.3770000000000007,10.616,13.635999999999999,17.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1243,-0.2261,8.3775999999999993,0.23074,4.4039999999999999,5.4009999999999998,6.69,8.3780000000000001,10.618,13.638999999999999,17.785 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1244,-0.2261,8.3785000000000007,0.23080000000000001,4.4039999999999999,5.4009999999999998,6.6909999999999998,8.3780000000000001,10.62,13.641999999999999,17.791 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1245,-0.22620000000000001,8.3793000000000006,0.23085,4.4029999999999996,5.4009999999999998,6.6909999999999998,8.3789999999999996,10.621,13.645,17.795999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1246,-0.22620000000000001,8.3801000000000005,0.23091,4.4029999999999996,5.4009999999999998,6.6909999999999998,8.3800000000000008,10.622999999999999,13.648,17.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1247,-0.22620000000000001,8.3810000000000002,0.23096,4.4029999999999996,5.4009999999999998,6.6909999999999998,8.3810000000000002,10.625,13.651,17.806999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1248,-0.22620000000000001,8.3818000000000001,0.23100999999999999,4.4029999999999996,5.4009999999999998,6.6920000000000002,8.3819999999999997,10.625999999999999,13.654,17.812000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1249,-0.2263,8.3826000000000001,0.23107,4.4029999999999996,5.4009999999999998,6.6920000000000002,8.3829999999999991,10.628,13.657999999999999,17.818000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1250,-0.2263,8.3834999999999997,0.23111999999999999,4.4029999999999996,5.4009999999999998,6.6920000000000002,8.3840000000000003,10.63,13.661,17.823 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1251,-0.2263,8.3842999999999996,0.23118,4.4020000000000001,5.4009999999999998,6.6929999999999996,8.3840000000000003,10.631,13.664,17.827999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1252,-0.22639999999999999,8.3850999999999996,0.23122999999999999,4.4020000000000001,5.4009999999999998,6.6929999999999996,8.3849999999999998,10.632999999999999,13.667,17.834 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1253,-0.22639999999999999,8.3859999999999992,0.23128000000000001,4.4020000000000001,5.4009999999999998,6.6929999999999996,8.3859999999999992,10.635,13.67,17.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1254,-0.22639999999999999,8.3867999999999991,0.23133999999999999,4.4020000000000001,5.4009999999999998,6.694,8.3870000000000005,10.635999999999999,13.673,17.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1255,-0.22639999999999999,8.3876000000000008,0.23139000000000001,4.4020000000000001,5.4009999999999998,6.694,8.3879999999999999,10.638,13.676,17.849 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1256,-0.22650000000000001,8.3885000000000005,0.23144000000000001,4.4020000000000001,5.4009999999999998,6.694,8.3879999999999999,10.64,13.679,17.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1257,-0.22650000000000001,8.3893000000000004,0.23150000000000001,4.4020000000000001,5.4009999999999998,6.6950000000000003,8.3889999999999993,10.641,13.682,17.86 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1258,-0.22650000000000001,8.3901000000000003,0.23155000000000001,4.4009999999999998,5.4009999999999998,6.6950000000000003,8.39,10.643000000000001,13.685,17.864999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1259,-0.22650000000000001,8.3909000000000002,0.23161000000000001,4.4009999999999998,5.4009999999999998,6.6950000000000003,8.391,10.645,13.688000000000001,17.870999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1260,-0.2266,8.3917999999999999,0.23166,4.4009999999999998,5.4020000000000001,6.6959999999999997,8.3919999999999995,10.646000000000001,13.691000000000001,17.876000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1261,-0.2266,8.3925999999999998,0.23171,4.4009999999999998,5.4020000000000001,6.6959999999999997,8.3930000000000007,10.648,13.694000000000001,17.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1262,-0.2266,8.3933999999999997,0.23177,4.4009999999999998,5.4009999999999998,6.6959999999999997,8.3930000000000007,10.65,13.696999999999999,17.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1263,-0.2266,8.3941999999999997,0.23182,4.4009999999999998,5.4009999999999998,6.6970000000000001,8.3940000000000001,10.651,13.7,17.891999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1264,-0.22670000000000001,8.3949999999999996,0.23186999999999999,4.4000000000000004,5.4020000000000001,6.6970000000000001,8.3949999999999996,10.653,13.702999999999999,17.896999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1265,-0.22670000000000001,8.3958999999999993,0.23193,4.4000000000000004,5.4020000000000001,6.6970000000000001,8.3960000000000008,10.654999999999999,13.706,17.902999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1266,-0.22670000000000001,8.3966999999999992,0.23197999999999999,4.4000000000000004,5.4020000000000001,6.6980000000000004,8.3970000000000002,10.656000000000001,13.709,17.908000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1267,-0.22670000000000001,8.3975000000000009,0.23202999999999999,4.4000000000000004,5.4020000000000001,6.6980000000000004,8.3979999999999997,10.657999999999999,13.712,17.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1268,-0.2268,8.3983000000000008,0.23208999999999999,4.4000000000000004,5.4020000000000001,6.6980000000000004,8.3979999999999997,10.659000000000001,13.715,17.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1269,-0.2268,8.3991000000000007,0.23214000000000001,4.4000000000000004,5.4020000000000001,6.6989999999999998,8.3989999999999991,10.661,13.718,17.923999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1270,-0.2268,8.4,0.23219999999999999,4.399,5.4020000000000001,6.6989999999999998,8.4,10.663,13.721,17.928999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1271,-0.2268,8.4008000000000003,0.23225000000000001,4.399,5.4020000000000001,6.6989999999999998,8.4009999999999998,10.664,13.724,17.934000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1272,-0.22689999999999999,8.4016000000000002,0.23230000000000001,4.399,5.4020000000000001,6.7,8.4019999999999992,10.666,13.727,17.940000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1273,-0.22689999999999999,8.4024000000000001,0.23236000000000001,4.399,5.4020000000000001,6.7,8.4019999999999992,10.667999999999999,13.73,17.945 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1274,-0.22689999999999999,8.4032,0.23241000000000001,4.399,5.4020000000000001,6.7,8.4030000000000005,10.669,13.733000000000001,17.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1275,-0.22689999999999999,8.4039999999999999,0.23246,4.399,5.4020000000000001,6.7,8.4039999999999999,10.670999999999999,13.736000000000001,17.954999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1276,-0.22700000000000001,8.4047999999999998,0.23252,4.3979999999999997,5.4020000000000001,6.7009999999999996,8.4049999999999994,10.673,13.739000000000001,17.960999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1277,-0.22700000000000001,8.4056999999999995,0.23257,4.3979999999999997,5.4020000000000001,6.7009999999999996,8.4060000000000006,10.673999999999999,13.742000000000001,17.966000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1278,-0.22700000000000001,8.4064999999999994,0.23261999999999999,4.3979999999999997,5.4020000000000001,6.7009999999999996,8.4060000000000006,10.676,13.744999999999999,17.971 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1279,-0.22700000000000001,8.4072999999999993,0.23268,4.3979999999999997,5.4020000000000001,6.702,8.407,10.678000000000001,13.747999999999999,17.977 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1280,-0.2271,8.4080999999999992,0.23272999999999999,4.3979999999999997,5.4020000000000001,6.702,8.4079999999999995,10.679,13.750999999999999,17.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1281,-0.2271,8.4088999999999992,0.23277999999999999,4.3979999999999997,5.4020000000000001,6.702,8.4090000000000007,10.680999999999999,13.754,17.986999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1282,-0.2271,8.4097000000000008,0.23283999999999999,4.3970000000000002,5.4020000000000001,6.7030000000000003,8.41,10.683,13.757,17.992999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1283,-0.2271,8.4105000000000008,0.23289000000000001,4.3970000000000002,5.4020000000000001,6.7030000000000003,8.41,10.683999999999999,13.76,17.998000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1284,-0.22720000000000001,8.4113000000000007,0.23294000000000001,4.3970000000000002,5.4020000000000001,6.7030000000000003,8.4109999999999996,10.686,13.763,18.003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1285,-0.22720000000000001,8.4121000000000006,0.23300000000000001,4.3970000000000002,5.4020000000000001,6.7030000000000003,8.4120000000000008,10.686999999999999,13.766,18.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1286,-0.22720000000000001,8.4129000000000005,0.23305000000000001,4.3970000000000002,5.4020000000000001,6.7039999999999997,8.4130000000000003,10.689,13.769,18.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1287,-0.22720000000000001,8.4137000000000004,0.23311000000000001,4.3970000000000002,5.4020000000000001,6.7039999999999997,8.4139999999999997,10.691000000000001,13.772,18.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1288,-0.2273,8.4145000000000003,0.23316000000000001,4.3970000000000002,5.4020000000000001,6.7039999999999997,8.4139999999999997,10.692,13.775,18.024999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1289,-0.2273,8.4153000000000002,0.23321,4.3959999999999999,5.4020000000000001,6.7050000000000001,8.4149999999999991,10.694000000000001,13.778,18.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1290,-0.2273,8.4161000000000001,0.23327000000000001,4.3959999999999999,5.4020000000000001,6.7050000000000001,8.4160000000000004,10.696,13.781000000000001,18.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1291,-0.2273,8.4169,0.23332,4.3959999999999999,5.4020000000000001,6.7050000000000001,8.4169999999999998,10.696999999999999,13.784000000000001,18.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1292,-0.22739999999999999,8.4177,0.23336999999999999,4.3959999999999999,5.4020000000000001,6.7060000000000004,8.4179999999999993,10.699,13.787000000000001,18.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1293,-0.22739999999999999,8.4184999999999999,0.23343,4.3959999999999999,5.4020000000000001,6.7060000000000004,8.4179999999999993,10.7,13.791,18.050999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1294,-0.22739999999999999,8.4192999999999998,0.23347999999999999,4.3949999999999996,5.4020000000000001,6.7060000000000004,8.4190000000000005,10.702,13.792999999999999,18.056000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1295,-0.22739999999999999,8.4200999999999997,0.23352999999999999,4.3949999999999996,5.4020000000000001,6.7069999999999999,8.42,10.704000000000001,13.795999999999999,18.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1296,-0.22750000000000001,8.4208999999999996,0.23358000000000001,4.3949999999999996,5.4020000000000001,6.7069999999999999,8.4209999999999994,10.705,13.798999999999999,18.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1297,-0.22750000000000001,8.4216999999999995,0.23363999999999999,4.3949999999999996,5.4020000000000001,6.7069999999999999,8.4220000000000006,10.707000000000001,13.802,18.071999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1298,-0.22750000000000001,8.4224999999999994,0.23369000000000001,4.3949999999999996,5.4020000000000001,6.7069999999999999,8.4220000000000006,10.709,13.805,18.077000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1299,-0.22750000000000001,8.4232999999999993,0.23374,4.3949999999999996,5.4020000000000001,6.7080000000000002,8.423,10.71,13.808,18.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1300,-0.2276,8.4240999999999993,0.23380000000000001,4.3949999999999996,5.4020000000000001,6.7080000000000002,8.4239999999999995,10.712,13.811,18.088000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1301,-0.2276,8.4248999999999992,0.23385,4.3940000000000001,5.4020000000000001,6.7080000000000002,8.4250000000000007,10.712999999999999,13.814,18.093 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1302,-0.2276,8.4257000000000009,0.2339,4.3940000000000001,5.4020000000000001,6.7089999999999996,8.4260000000000002,10.715,13.817,18.097999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1303,-0.2276,8.4265000000000008,0.23396,4.3940000000000001,5.4020000000000001,6.7089999999999996,8.4260000000000002,10.717000000000001,13.82,18.103999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1304,-0.22770000000000001,8.4273000000000007,0.23401,4.3940000000000001,5.4020000000000001,6.7089999999999996,8.4269999999999996,10.718,13.823,18.109000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1305,-0.22770000000000001,8.4281000000000006,0.23405999999999999,4.3940000000000001,5.4020000000000001,6.71,8.4280000000000008,10.72,13.826000000000001,18.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1306,-0.22770000000000001,8.4289000000000005,0.23411999999999999,4.3929999999999998,5.4020000000000001,6.71,8.4290000000000003,10.722,13.829000000000001,18.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1307,-0.22770000000000001,8.4297000000000004,0.23416999999999999,4.3929999999999998,5.4020000000000001,6.71,8.43,10.723000000000001,13.832000000000001,18.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1308,-0.22770000000000001,8.4305000000000003,0.23422000000000001,4.3929999999999998,5.4020000000000001,6.71,8.43,10.725,13.835000000000001,18.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1309,-0.2278,8.4313000000000002,0.23427999999999999,4.3929999999999998,5.4020000000000001,6.7110000000000003,8.4309999999999992,10.726000000000001,13.837999999999999,18.135999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1310,-0.2278,8.4321000000000002,0.23433000000000001,4.3929999999999998,5.4020000000000001,6.7110000000000003,8.4320000000000004,10.728,13.840999999999999,18.140999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1311,-0.2278,8.4329000000000001,0.23438000000000001,4.3929999999999998,5.4020000000000001,6.7110000000000003,8.4329999999999998,10.73,13.843999999999999,18.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1312,-0.2278,8.4337,0.23444000000000001,4.3920000000000003,5.4020000000000001,6.7119999999999997,8.4339999999999993,10.731,13.847,18.151 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1313,-0.22789999999999999,8.4344000000000001,0.23449,4.3920000000000003,5.4020000000000001,6.7119999999999997,8.4339999999999993,10.733000000000001,13.85,18.157 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1314,-0.22789999999999999,8.4352,0.23454,4.3920000000000003,5.4020000000000001,6.7119999999999997,8.4350000000000005,10.734,13.853,18.161999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1315,-0.22789999999999999,8.4359999999999999,0.23458999999999999,4.3920000000000003,5.4020000000000001,6.7130000000000001,8.4359999999999999,10.736000000000001,13.856,18.167000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1316,-0.22789999999999999,8.4367999999999999,0.23465,4.3920000000000003,5.4020000000000001,6.7130000000000001,8.4369999999999994,10.738,13.859,18.172000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1317,-0.22800000000000001,8.4375999999999998,0.23469999999999999,4.3920000000000003,5.4020000000000001,6.7130000000000001,8.4380000000000006,10.739000000000001,13.862,18.178000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1318,-0.22800000000000001,8.4383999999999997,0.23474999999999999,4.3920000000000003,5.4020000000000001,6.7130000000000001,8.4380000000000006,10.741,13.865,18.183 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1319,-0.22800000000000001,8.4391999999999996,0.23480999999999999,4.391,5.4020000000000001,6.7140000000000004,8.4390000000000001,10.743,13.868,18.187999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1320,-0.22800000000000001,8.44,0.23486000000000001,4.391,5.4020000000000001,6.7140000000000004,8.44,10.744,13.871,18.193000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1321,-0.2281,8.4406999999999996,0.23491000000000001,4.391,5.4020000000000001,6.7140000000000004,8.4410000000000007,10.746,13.874000000000001,18.199000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1322,-0.2281,8.4414999999999996,0.23496,4.391,5.4020000000000001,6.7149999999999999,8.4420000000000002,10.747,13.877000000000001,18.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1323,-0.2281,8.4422999999999995,0.23502000000000001,4.391,5.4020000000000001,6.7149999999999999,8.4420000000000002,10.749000000000001,13.88,18.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1324,-0.2281,8.4430999999999994,0.23507,4.3899999999999997,5.4020000000000001,6.7149999999999999,8.4429999999999996,10.750999999999999,13.882999999999999,18.213999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1325,-0.22819999999999999,8.4438999999999993,0.23512,4.3899999999999997,5.4020000000000001,6.7149999999999999,8.4440000000000008,10.752000000000001,13.885999999999999,18.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1326,-0.22819999999999999,8.4446999999999992,0.23518,4.3899999999999997,5.4020000000000001,6.7160000000000002,8.4450000000000003,10.754,13.888999999999999,18.225000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1327,-0.22819999999999999,8.4454999999999991,0.23522999999999999,4.3899999999999997,5.4020000000000001,6.7160000000000002,8.4459999999999997,10.755000000000001,13.891999999999999,18.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1328,-0.22819999999999999,8.4461999999999993,0.23527999999999999,4.3899999999999997,5.4020000000000001,6.7160000000000002,8.4459999999999997,10.757,13.895,18.234999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1329,-0.22819999999999999,8.4469999999999992,0.23533000000000001,4.3899999999999997,5.4020000000000001,6.7169999999999996,8.4469999999999992,10.757999999999999,13.898,18.239999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1330,-0.2283,8.4478000000000009,0.23538999999999999,4.3890000000000002,5.4020000000000001,6.7169999999999996,8.4480000000000004,10.76,13.901,18.245999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1331,-0.2283,8.4486000000000008,0.23544000000000001,4.3890000000000002,5.4020000000000001,6.7169999999999996,8.4489999999999998,10.762,13.904,18.251000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1332,-0.2283,8.4494000000000007,0.23549,4.3890000000000002,5.4020000000000001,6.718,8.4489999999999998,10.763,13.907,18.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1333,-0.2283,8.4501000000000008,0.23555000000000001,4.3890000000000002,5.4020000000000001,6.718,8.4499999999999993,10.765000000000001,13.91,18.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1334,-0.22839999999999999,8.4509000000000007,0.2356,4.3890000000000002,5.4020000000000001,6.718,8.4510000000000005,10.766999999999999,13.913,18.266999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1335,-0.22839999999999999,8.4517000000000007,0.23565,4.3890000000000002,5.4020000000000001,6.718,8.452,10.768000000000001,13.916,18.271999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1336,-0.22839999999999999,8.4525000000000006,0.23569999999999999,4.3879999999999999,5.4020000000000001,6.7190000000000003,8.452,10.77,13.919,18.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1337,-0.22839999999999999,8.4533000000000005,0.23576,4.3879999999999999,5.4020000000000001,6.7190000000000003,8.4529999999999994,10.771000000000001,13.922000000000001,18.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1338,-0.22850000000000001,8.4540000000000006,0.23580999999999999,4.3879999999999999,5.4020000000000001,6.7190000000000003,8.4540000000000006,10.773,13.925000000000001,18.288 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1339,-0.22850000000000001,8.4548000000000005,0.23585999999999999,4.3879999999999999,5.4020000000000001,6.7190000000000003,8.4550000000000001,10.775,13.928000000000001,18.292999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1340,-0.22850000000000001,8.4556000000000004,0.23591000000000001,4.3879999999999999,5.4020000000000001,6.72,8.4559999999999995,10.776,13.93,18.297999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1341,-0.22850000000000001,8.4564000000000004,0.23597000000000001,4.3869999999999996,5.4020000000000001,6.72,8.4559999999999995,10.778,13.933999999999999,18.303999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1342,-0.22850000000000001,8.4572000000000003,0.23602000000000001,4.3869999999999996,5.4020000000000001,6.72,8.4570000000000007,10.779,13.936,18.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1343,-0.2286,8.4579000000000004,0.23607,4.3869999999999996,5.4020000000000001,6.7210000000000001,8.4580000000000002,10.781000000000001,13.939,18.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1344,-0.2286,8.4587000000000003,0.23612,4.3869999999999996,5.4020000000000001,6.7210000000000001,8.4589999999999996,10.782999999999999,13.942,18.318999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1345,-0.2286,8.4595000000000002,0.23618,4.3869999999999996,5.4020000000000001,6.7210000000000001,8.4600000000000009,10.784000000000001,13.945,18.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1346,-0.2286,8.4603000000000002,0.23623,4.3869999999999996,5.4020000000000001,6.7220000000000004,8.4600000000000009,10.786,13.948,18.329999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1347,-0.22869999999999999,8.4610000000000003,0.23627999999999999,4.3869999999999996,5.4020000000000001,6.7220000000000004,8.4610000000000003,10.787000000000001,13.951000000000001,18.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1348,-0.22869999999999999,8.4618000000000002,0.23633000000000001,4.3860000000000001,5.4020000000000001,6.7220000000000004,8.4619999999999997,10.789,13.954000000000001,18.341000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1349,-0.22869999999999999,8.4626000000000001,0.23638999999999999,4.3860000000000001,5.4020000000000001,6.7220000000000004,8.4629999999999992,10.791,13.957000000000001,18.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1350,-0.22869999999999999,8.4634,0.23644000000000001,4.3860000000000001,5.4020000000000001,6.7229999999999999,8.4629999999999992,10.792,13.96,18.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1351,-0.22869999999999999,8.4641000000000002,0.23649000000000001,4.3860000000000001,5.4020000000000001,6.7229999999999999,8.4640000000000004,10.794,13.962999999999999,18.356000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1352,-0.2288,8.4649000000000001,0.23654,4.3860000000000001,5.4020000000000001,6.7229999999999999,8.4649999999999999,10.795,13.965999999999999,18.361999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1353,-0.2288,8.4657,0.2366,4.3849999999999998,5.4020000000000001,6.7229999999999999,8.4659999999999993,10.797000000000001,13.968999999999999,18.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1354,-0.2288,8.4664999999999999,0.23665,4.3849999999999998,5.4020000000000001,6.7240000000000002,8.4659999999999993,10.798999999999999,13.972,18.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1355,-0.2288,8.4672000000000001,0.23669999999999999,4.3849999999999998,5.4020000000000001,6.7240000000000002,8.4670000000000005,10.8,13.975,18.376999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1356,-0.22889999999999999,8.468,0.23674999999999999,4.3849999999999998,5.4020000000000001,6.7240000000000002,8.468,10.802,13.978,18.382999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1357,-0.22889999999999999,8.4687999999999999,0.23680999999999999,4.3849999999999998,5.4020000000000001,6.7249999999999996,8.4689999999999994,10.803000000000001,13.981,18.388000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1358,-0.22889999999999999,8.4695999999999998,0.23685999999999999,4.3849999999999998,5.4020000000000001,6.7249999999999996,8.4700000000000006,10.805,13.984,18.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1359,-0.22889999999999999,8.4702999999999999,0.23691000000000001,4.3840000000000003,5.4020000000000001,6.7249999999999996,8.4700000000000006,10.805999999999999,13.987,18.398 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1360,-0.22889999999999999,8.4710999999999999,0.23696,4.3840000000000003,5.4020000000000001,6.7249999999999996,8.4710000000000001,10.808,13.99,18.402999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1361,-0.22900000000000001,8.4718999999999998,0.23701,4.3840000000000003,5.4020000000000001,6.726,8.4719999999999995,10.81,13.993,18.408999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1362,-0.22900000000000001,8.4726999999999997,0.23707,4.3840000000000003,5.4020000000000001,6.726,8.4730000000000008,10.811,13.996,18.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1363,-0.22900000000000001,8.4733999999999998,0.23712,4.3840000000000003,5.4020000000000001,6.726,8.4730000000000008,10.813000000000001,13.999000000000001,18.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1364,-0.22900000000000001,8.4741999999999997,0.23716999999999999,4.3840000000000003,5.4020000000000001,6.7270000000000003,8.4740000000000002,10.814,14.000999999999999,18.425000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1365,-0.2291,8.4749999999999996,0.23721999999999999,4.3840000000000003,5.4020000000000001,6.7270000000000003,8.4749999999999996,10.816000000000001,14.005000000000001,18.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1366,-0.2291,8.4756999999999998,0.23727999999999999,4.383,5.4020000000000001,6.7270000000000003,8.4760000000000009,10.818,14.007999999999999,18.436 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1367,-0.2291,8.4764999999999997,0.23733000000000001,4.383,5.4020000000000001,6.7270000000000003,8.4760000000000009,10.819000000000001,14.01,18.440999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1368,-0.2291,8.4772999999999996,0.23738000000000001,4.383,5.4020000000000001,6.7279999999999998,8.4770000000000003,10.821,14.013,18.446000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1369,-0.2291,8.4780999999999995,0.23743,4.383,5.4020000000000001,6.7279999999999998,8.4779999999999998,10.821999999999999,14.016,18.451000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1370,-0.22919999999999999,8.4787999999999997,0.23748,4.383,5.4020000000000001,6.7279999999999998,8.4789999999999992,10.824,14.019,18.456 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1371,-0.22919999999999999,8.4795999999999996,0.23754,4.3819999999999997,5.4020000000000001,6.7290000000000001,8.48,10.826000000000001,14.022,18.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1372,-0.22919999999999999,8.4803999999999995,0.23759,4.3819999999999997,5.4020000000000001,6.7290000000000001,8.48,10.827,14.025,18.466999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1373,-0.22919999999999999,8.4810999999999996,0.23763999999999999,4.3819999999999997,5.4020000000000001,6.7290000000000001,8.4809999999999999,10.829000000000001,14.028,18.472000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1374,-0.22919999999999999,8.4818999999999996,0.23769000000000001,4.3819999999999997,5.4020000000000001,6.7290000000000001,8.4819999999999993,10.83,14.031000000000001,18.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1375,-0.2293,8.4826999999999995,0.23774000000000001,4.3819999999999997,5.4020000000000001,6.73,8.4830000000000005,10.832000000000001,14.034000000000001,18.483000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1376,-0.2293,8.4833999999999996,0.23780000000000001,4.3810000000000002,5.4020000000000001,6.73,8.4830000000000005,10.833,14.037000000000001,18.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1377,-0.2293,8.4841999999999995,0.23785000000000001,4.3810000000000002,5.4020000000000001,6.73,8.484,10.835000000000001,14.04,18.492999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1378,-0.2293,8.4849999999999994,0.2379,4.3810000000000002,5.4020000000000001,6.7309999999999999,8.4849999999999994,10.837,14.042999999999999,18.498000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1379,-0.22939999999999999,8.4856999999999996,0.23794999999999999,4.3810000000000002,5.4020000000000001,6.7309999999999999,8.4860000000000007,10.837999999999999,14.045999999999999,18.504000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1380,-0.22939999999999999,8.4864999999999995,0.23799999999999999,4.3810000000000002,5.4020000000000001,6.7309999999999999,8.4860000000000007,10.84,14.048999999999999,18.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1381,-0.22939999999999999,8.4872999999999994,0.23805999999999999,4.3810000000000002,5.4020000000000001,6.7309999999999999,8.4870000000000001,10.840999999999999,14.052,18.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1382,-0.22939999999999999,8.4879999999999995,0.23810999999999999,4.38,5.4020000000000001,6.7320000000000002,8.4879999999999995,10.843,14.055,18.518999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1383,-0.22939999999999999,8.4887999999999995,0.23816000000000001,4.38,5.4020000000000001,6.7320000000000002,8.4890000000000008,10.845000000000001,14.058,18.524000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1384,-0.22950000000000001,8.4895999999999994,0.23821000000000001,4.38,5.4020000000000001,6.7320000000000002,8.49,10.846,14.061,18.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1385,-0.22950000000000001,8.4902999999999995,0.23826,4.38,5.4020000000000001,6.7329999999999997,8.49,10.848000000000001,14.063000000000001,18.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1386,-0.22950000000000001,8.4910999999999994,0.23832,4.38,5.4020000000000001,6.7329999999999997,8.4909999999999997,10.849,14.067,18.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1387,-0.22950000000000001,8.4918999999999993,0.23837,4.38,5.4020000000000001,6.7329999999999997,8.4920000000000009,10.851000000000001,14.069000000000001,18.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1388,-0.22950000000000001,8.4925999999999995,0.23841999999999999,4.3789999999999996,5.4020000000000001,6.7329999999999997,8.4930000000000003,10.852,14.071999999999999,18.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1389,-0.2296,8.4933999999999994,0.23846999999999999,4.3789999999999996,5.4020000000000001,6.734,8.4930000000000003,10.853999999999999,14.074999999999999,18.556000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1390,-0.2296,8.4941999999999993,0.23852000000000001,4.3789999999999996,5.4020000000000001,6.734,8.4939999999999998,10.856,14.077999999999999,18.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1391,-0.2296,8.4948999999999995,0.23857,4.3789999999999996,5.4020000000000001,6.734,8.4949999999999992,10.856999999999999,14.081,18.565999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1392,-0.2296,8.4956999999999994,0.23863000000000001,4.3789999999999996,5.4020000000000001,6.734,8.4960000000000004,10.859,14.084,18.571999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1393,-0.22969999999999999,8.4964999999999993,0.23868,4.3789999999999996,5.4020000000000001,6.7350000000000003,8.4960000000000004,10.86,14.087,18.577999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1394,-0.22969999999999999,8.4971999999999994,0.23873,4.3780000000000001,5.4020000000000001,6.7350000000000003,8.4969999999999999,10.862,14.09,18.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1395,-0.22969999999999999,8.4979999999999993,0.23877999999999999,4.3780000000000001,5.4020000000000001,6.7350000000000003,8.4979999999999993,10.864000000000001,14.093,18.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1396,-0.22969999999999999,8.4986999999999995,0.23882999999999999,4.3780000000000001,5.4020000000000001,6.7359999999999998,8.4990000000000006,10.865,14.096,18.591999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1397,-0.22969999999999999,8.4994999999999994,0.23888000000000001,4.3780000000000001,5.4020000000000001,6.7359999999999998,8.5,10.867000000000001,14.099,18.597000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1398,-0.2298,8.5002999999999993,0.23894000000000001,4.3780000000000001,5.4020000000000001,6.7359999999999998,8.5,10.868,14.102,18.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1399,-0.2298,8.5009999999999994,0.23899000000000001,4.3780000000000001,5.4020000000000001,6.7359999999999998,8.5009999999999994,10.87,14.105,18.609000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1400,-0.2298,8.5017999999999994,0.23904,4.3769999999999998,5.4020000000000001,6.7370000000000001,8.5020000000000007,10.871,14.108000000000001,18.614000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1401,-0.2298,8.5025999999999993,0.23909,4.3769999999999998,5.4020000000000001,6.7370000000000001,8.5030000000000001,10.872999999999999,14.111000000000001,18.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1402,-0.2298,8.5032999999999994,0.23913999999999999,4.3769999999999998,5.4020000000000001,6.7370000000000001,8.5030000000000001,10.874000000000001,14.113,18.623999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1403,-0.22989999999999999,8.5040999999999993,0.23919000000000001,4.3769999999999998,5.4020000000000001,6.7380000000000004,8.5039999999999996,10.875999999999999,14.116,18.629000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1404,-0.22989999999999999,8.5047999999999995,0.23924000000000001,4.3769999999999998,5.4020000000000001,6.7380000000000004,8.5050000000000008,10.878,14.119,18.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1405,-0.22989999999999999,8.5055999999999994,0.23930000000000001,4.3769999999999998,5.4009999999999998,6.7380000000000004,8.5060000000000002,10.879,14.122,18.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1406,-0.22989999999999999,8.5063999999999993,0.23935000000000001,4.3760000000000003,5.4009999999999998,6.7380000000000004,8.5060000000000002,10.881,14.125,18.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1407,-0.22989999999999999,8.5070999999999994,0.2394,4.3760000000000003,5.4009999999999998,6.7389999999999999,8.5069999999999997,10.882,14.128,18.649999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1408,-0.23,8.5078999999999994,0.23945,4.3760000000000003,5.4020000000000001,6.7389999999999999,8.5079999999999991,10.884,14.131,18.655999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1409,-0.23,8.5086999999999993,0.23949999999999999,4.3760000000000003,5.4020000000000001,6.7389999999999999,8.5090000000000003,10.885999999999999,14.134,18.661000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1410,-0.23,8.5093999999999994,0.23955000000000001,4.3760000000000003,5.4009999999999998,6.74,8.5090000000000003,10.887,14.137,18.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1411,-0.23,8.5101999999999993,0.23960000000000001,4.3760000000000003,5.4020000000000001,6.74,8.51,10.888999999999999,14.14,18.670999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1412,-0.23,8.5108999999999995,0.23966000000000001,4.375,5.4009999999999998,6.74,8.5109999999999992,10.89,14.143000000000001,18.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1413,-0.2301,8.5116999999999994,0.23971000000000001,4.375,5.4009999999999998,6.74,8.5120000000000005,10.891999999999999,14.146000000000001,18.681999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1414,-0.2301,8.5124999999999993,0.23976,4.375,5.4009999999999998,6.7409999999999997,8.5120000000000005,10.893000000000001,14.148999999999999,18.687000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1415,-0.2301,8.5131999999999994,0.23981,4.375,5.4009999999999998,6.7409999999999997,8.5129999999999999,10.895,14.151999999999999,18.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1416,-0.2301,8.5139999999999993,0.23985999999999999,4.375,5.4009999999999998,6.7409999999999997,8.5139999999999993,10.897,14.154999999999999,18.696999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1417,-0.2301,8.5146999999999995,0.23991000000000001,4.375,5.4009999999999998,6.7409999999999997,8.5150000000000006,10.898,14.157,18.702000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1418,-0.23019999999999999,8.5154999999999994,0.23996000000000001,4.3739999999999997,5.4009999999999998,6.742,8.516,10.9,14.16,18.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1419,-0.23019999999999999,8.5162999999999993,0.24001,4.3739999999999997,5.4020000000000001,6.742,8.516,10.901,14.163,18.713000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1420,-0.23019999999999999,8.5169999999999995,0.24007000000000001,4.3739999999999997,5.4009999999999998,6.742,8.5169999999999995,10.903,14.166,18.719000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1421,-0.23019999999999999,8.5177999999999994,0.24012,4.3739999999999997,5.4009999999999998,6.7430000000000003,8.5180000000000007,10.904,14.169,18.724 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1422,-0.23019999999999999,8.5184999999999995,0.24016999999999999,4.3739999999999997,5.4009999999999998,6.7430000000000003,8.5180000000000007,10.906000000000001,14.172000000000001,18.728999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1423,-0.2303,8.5192999999999994,0.24021999999999999,4.3739999999999997,5.4009999999999998,6.7430000000000003,8.5190000000000001,10.907999999999999,14.175000000000001,18.734000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1424,-0.2303,8.5200999999999993,0.24027000000000001,4.3730000000000002,5.4009999999999998,6.7430000000000003,8.52,10.909000000000001,14.178000000000001,18.739999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1425,-0.2303,8.5207999999999995,0.24032000000000001,4.3730000000000002,5.4009999999999998,6.7439999999999998,8.5210000000000008,10.911,14.180999999999999,18.745000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1426,-0.2303,8.5215999999999994,0.24037,4.3730000000000002,5.4009999999999998,6.7439999999999998,8.5220000000000002,10.912000000000001,14.183999999999999,18.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1427,-0.2303,8.5222999999999995,0.24041999999999999,4.3730000000000002,5.4009999999999998,6.7439999999999998,8.5220000000000002,10.914,14.186999999999999,18.754999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1428,-0.23039999999999999,8.5230999999999995,0.24046999999999999,4.3730000000000002,5.4009999999999998,6.7450000000000001,8.5229999999999997,10.914999999999999,14.19,18.760000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1429,-0.23039999999999999,8.5237999999999996,0.24052000000000001,4.3730000000000002,5.4009999999999998,6.7450000000000001,8.5239999999999991,10.917,14.192,18.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1430,-0.23039999999999999,8.5245999999999995,0.24057999999999999,4.3719999999999999,5.4009999999999998,6.7450000000000001,8.5250000000000004,10.919,14.196,18.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1431,-0.23039999999999999,8.5253999999999994,0.24063000000000001,4.3719999999999999,5.4009999999999998,6.7450000000000001,8.5250000000000004,10.92,14.199,18.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1432,-0.23039999999999999,8.5260999999999996,0.24068000000000001,4.3719999999999999,5.4009999999999998,6.7460000000000004,8.5259999999999998,10.922000000000001,14.201000000000001,18.780999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1433,-0.23050000000000001,8.5268999999999995,0.24073,4.3719999999999999,5.4009999999999998,6.7460000000000004,8.5269999999999992,10.923,14.204000000000001,18.786999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1434,-0.23050000000000001,8.5275999999999996,0.24077999999999999,4.3719999999999999,5.4009999999999998,6.7460000000000004,8.5280000000000005,10.925000000000001,14.207000000000001,18.792000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1435,-0.23050000000000001,8.5283999999999995,0.24082999999999999,4.3719999999999999,5.4009999999999998,6.7460000000000004,8.5280000000000005,10.926,14.21,18.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1436,-0.23050000000000001,8.5291999999999994,0.24088000000000001,4.3710000000000004,5.4009999999999998,6.7469999999999999,8.5289999999999999,10.928000000000001,14.212999999999999,18.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1437,-0.23050000000000001,8.5298999999999996,0.24093000000000001,4.3710000000000004,5.4009999999999998,6.7469999999999999,8.5299999999999994,10.929,14.215999999999999,18.806999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1438,-0.2306,8.5306999999999995,0.24098,4.3710000000000004,5.4009999999999998,6.7469999999999999,8.5310000000000006,10.930999999999999,14.218999999999999,18.812999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1439,-0.2306,8.5313999999999997,0.24102999999999999,4.3710000000000004,5.4009999999999998,6.7480000000000002,8.5310000000000006,10.933,14.222,18.818000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1440,-0.2306,8.5321999999999996,0.24107999999999999,4.3710000000000004,5.4009999999999998,6.7480000000000002,8.532,10.933999999999999,14.225,18.823 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1441,-0.2306,8.5328999999999997,0.24113999999999999,4.3710000000000004,5.4009999999999998,6.7480000000000002,8.5329999999999995,10.936,14.228,18.827999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1442,-0.2306,8.5336999999999996,0.24118999999999999,4.37,5.4009999999999998,6.7480000000000002,8.5340000000000007,10.936999999999999,14.231,18.834 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1443,-0.23069999999999999,8.5344999999999995,0.24124000000000001,4.37,5.4009999999999998,6.7489999999999997,8.5340000000000007,10.939,14.234,18.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1444,-0.23069999999999999,8.5351999999999997,0.24129,4.37,5.4009999999999998,6.7489999999999997,8.5350000000000001,10.94,14.237,18.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1445,-0.23069999999999999,8.5359999999999996,0.24134,4.37,5.4009999999999998,6.7489999999999997,8.5359999999999996,10.942,14.24,18.850000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1446,-0.23069999999999999,8.5366999999999997,0.24138999999999999,4.37,5.4009999999999998,6.7489999999999997,8.5370000000000008,10.944000000000001,14.242000000000001,18.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1447,-0.23069999999999999,8.5374999999999996,0.24143999999999999,4.37,5.4009999999999998,6.75,8.5380000000000003,10.945,14.244999999999999,18.86 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1448,-0.23080000000000001,8.5381999999999998,0.24149000000000001,4.3689999999999998,5.4009999999999998,6.75,8.5380000000000003,10.946999999999999,14.247999999999999,18.864999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1449,-0.23080000000000001,8.5389999999999997,0.24154,4.3689999999999998,5.4009999999999998,6.75,8.5389999999999997,10.948,14.250999999999999,18.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1450,-0.23080000000000001,8.5397999999999996,0.24159,4.3689999999999998,5.4009999999999998,6.7510000000000003,8.5399999999999991,10.95,14.254,18.876000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1451,-0.23080000000000001,8.5404999999999998,0.24163999999999999,4.3689999999999998,5.4009999999999998,6.7510000000000003,8.5399999999999991,10.951000000000001,14.257,18.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1452,-0.23080000000000001,8.5412999999999997,0.24168999999999999,4.3689999999999998,5.4009999999999998,6.7510000000000003,8.5410000000000004,10.952999999999999,14.26,18.885999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1453,-0.23080000000000001,8.5419999999999998,0.24174000000000001,4.3689999999999998,5.4009999999999998,6.7510000000000003,8.5419999999999998,10.954000000000001,14.263,18.890999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1454,-0.23089999999999999,8.5427999999999997,0.24179,4.3689999999999998,5.4009999999999998,6.7519999999999998,8.5429999999999993,10.956,14.266,18.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1455,-0.23089999999999999,8.5434999999999999,0.24184,4.3680000000000003,5.4009999999999998,6.7519999999999998,8.5440000000000005,10.958,14.269,18.901 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1456,-0.23089999999999999,8.5442999999999998,0.24188999999999999,4.3680000000000003,5.4009999999999998,6.7519999999999998,8.5440000000000005,10.959,14.271000000000001,18.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1457,-0.23089999999999999,8.5450999999999997,0.24193999999999999,4.3680000000000003,5.4009999999999998,6.7530000000000001,8.5449999999999999,10.961,14.273999999999999,18.911999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1458,-0.23089999999999999,8.5457999999999998,0.24199000000000001,4.3680000000000003,5.4009999999999998,6.7530000000000001,8.5459999999999994,10.962,14.276999999999999,18.917000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1459,-0.23100000000000001,8.5465999999999998,0.24204999999999999,4.3680000000000003,5.4009999999999998,6.7530000000000001,8.5470000000000006,10.964,14.281000000000001,18.922999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1460,-0.23100000000000001,8.5472999999999999,0.24210000000000001,4.367,5.4009999999999998,6.7530000000000001,8.5470000000000006,10.965,14.282999999999999,18.928000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1461,-0.23100000000000001,8.5480999999999998,0.24215,4.367,5.4009999999999998,6.7539999999999996,8.548,10.967000000000001,14.286,18.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1462,-0.23100000000000001,8.5488,0.2422,4.367,5.4009999999999998,6.7539999999999996,8.5489999999999995,10.968999999999999,14.289,18.937999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1463,-0.23100000000000001,8.5495999999999999,0.24224999999999999,4.367,5.4009999999999998,6.7539999999999996,8.5500000000000007,10.97,14.292,18.943000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1464,-0.2311,8.5503999999999998,0.24229999999999999,4.367,5.4009999999999998,6.7549999999999999,8.5500000000000007,10.972,14.295,18.949000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1465,-0.2311,8.5510999999999999,0.24235000000000001,4.367,5.4009999999999998,6.7549999999999999,8.5510000000000002,10.973000000000001,14.298,18.954000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1466,-0.2311,8.5518999999999998,0.2424,4.367,5.4009999999999998,6.7549999999999999,8.5519999999999996,10.975,14.301,18.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1467,-0.2311,8.5526,0.24245,4.3659999999999997,5.4009999999999998,6.7549999999999999,8.5530000000000008,10.976000000000001,14.304,18.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1468,-0.2311,8.5533999999999999,0.24249999999999999,4.3659999999999997,5.4009999999999998,6.7560000000000002,8.5530000000000008,10.978,14.307,18.97 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1469,-0.2311,8.5541,0.24254999999999999,4.3659999999999997,5.4009999999999998,6.7560000000000002,8.5540000000000003,10.978999999999999,14.308999999999999,18.975000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1470,-0.23119999999999999,8.5548999999999999,0.24260000000000001,4.3659999999999997,5.4009999999999998,6.7560000000000002,8.5549999999999997,10.981,14.313000000000001,18.98 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1471,-0.23119999999999999,8.5556000000000001,0.24265,4.3659999999999997,5.4009999999999998,6.7560000000000002,8.5559999999999992,10.983000000000001,14.315,18.984999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1472,-0.23119999999999999,8.5564,0.2427,4.3659999999999997,5.4009999999999998,6.7569999999999997,8.5559999999999992,10.984,14.318,18.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1473,-0.23119999999999999,8.5571999999999999,0.24274999999999999,4.3650000000000002,5.4009999999999998,6.7569999999999997,8.5570000000000004,10.986000000000001,14.321,18.995999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1474,-0.23119999999999999,8.5579000000000001,0.24279999999999999,4.3650000000000002,5.4009999999999998,6.7569999999999997,8.5579999999999998,10.987,14.324,19.001000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1475,-0.23130000000000001,8.5587,0.24285000000000001,4.3650000000000002,5.4009999999999998,6.758,8.5589999999999993,10.989000000000001,14.327,19.007000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1476,-0.23130000000000001,8.5594000000000001,0.2429,4.3650000000000002,5.4009999999999998,6.758,8.5589999999999993,10.99,14.33,19.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1477,-0.23130000000000001,8.5602,0.24295,4.3650000000000002,5.4009999999999998,6.758,8.56,10.992000000000001,14.333,19.016999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1478,-0.23130000000000001,8.5609000000000002,0.24299999999999999,4.3650000000000002,5.4009999999999998,6.758,8.5609999999999999,10.993,14.336,19.021999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1479,-0.23130000000000001,8.5617000000000001,0.24304999999999999,4.3639999999999999,5.4009999999999998,6.7590000000000003,8.5619999999999994,10.994999999999999,14.339,19.027000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1480,-0.23139999999999999,8.5625,0.24310000000000001,4.3639999999999999,5.4009999999999998,6.7590000000000003,8.5619999999999994,10.997,14.342000000000001,19.033000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1481,-0.23139999999999999,8.5632000000000001,0.24315000000000001,4.3639999999999999,5.4009999999999998,6.7590000000000003,8.5630000000000006,10.997999999999999,14.345000000000001,19.038 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1482,-0.23139999999999999,8.5640000000000001,0.2432,4.3639999999999999,5.4009999999999998,6.76,8.5640000000000001,11,14.348000000000001,19.042999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1483,-0.23139999999999999,8.5647000000000002,0.24324999999999999,4.3639999999999999,5.4009999999999998,6.76,8.5649999999999995,11.000999999999999,14.35,19.047999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1484,-0.23139999999999999,8.5655000000000001,0.24329999999999999,4.3639999999999999,5.4009999999999998,6.76,8.5660000000000007,11.003,14.353,19.053000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1485,-0.23139999999999999,8.5662000000000003,0.24335000000000001,4.3630000000000004,5.4009999999999998,6.76,8.5660000000000007,11.004,14.356,19.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1486,-0.23150000000000001,8.5670000000000002,0.24340000000000001,4.3630000000000004,5.4009999999999998,6.7610000000000001,8.5670000000000002,11.006,14.359,19.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1487,-0.23150000000000001,8.5678000000000001,0.24345,4.3630000000000004,5.4009999999999998,6.7610000000000001,8.5679999999999996,11.007999999999999,14.362,19.068999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1488,-0.23150000000000001,8.5685000000000002,0.24349999999999999,4.3630000000000004,5.4009999999999998,6.7610000000000001,8.5679999999999996,11.009,14.365,19.074000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1489,-0.23150000000000001,8.5693000000000001,0.24354999999999999,4.3630000000000004,5.4009999999999998,6.7619999999999996,8.5690000000000008,11.010999999999999,14.368,19.079999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1490,-0.23150000000000001,8.57,0.24360000000000001,4.3630000000000004,5.4009999999999998,6.7619999999999996,8.57,11.012,14.371,19.085000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1491,-0.2316,8.5708000000000002,0.24365000000000001,4.3630000000000004,5.4009999999999998,6.7619999999999996,8.5709999999999997,11.013999999999999,14.374000000000001,19.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1492,-0.2316,8.5715000000000003,0.2437,4.3620000000000001,5.4009999999999998,6.7619999999999996,8.5719999999999992,11.015000000000001,14.377000000000001,19.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1493,-0.2316,8.5723000000000003,0.24374999999999999,4.3620000000000001,5.4009999999999998,6.7629999999999999,8.5719999999999992,11.016999999999999,14.38,19.100999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1494,-0.2316,8.5731000000000002,0.24379999999999999,4.3620000000000001,5.4009999999999998,6.7629999999999999,8.5730000000000004,11.019,14.382999999999999,19.106000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1495,-0.2316,8.5738000000000003,0.24385000000000001,4.3620000000000001,5.4009999999999998,6.7629999999999999,8.5739999999999998,11.02,14.385999999999999,19.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1496,-0.2316,8.5746000000000002,0.24389,4.3620000000000001,5.4009999999999998,6.7640000000000002,8.5749999999999993,11.022,14.388,19.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1497,-0.23169999999999999,8.5753000000000004,0.24393999999999999,4.3620000000000001,5.4009999999999998,6.7640000000000002,8.5749999999999993,11.023,14.391,19.120999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1498,-0.23169999999999999,8.5761000000000003,0.24399000000000001,4.3620000000000001,5.4009999999999998,6.7640000000000002,8.5760000000000005,11.025,14.394,19.126000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1499,-0.23169999999999999,8.5768000000000004,0.24404000000000001,4.3609999999999998,5.4009999999999998,6.7640000000000002,8.577,11.026,14.397,19.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1500,-0.23169999999999999,8.5776000000000003,0.24409,4.3609999999999998,5.4009999999999998,6.7649999999999997,8.5779999999999994,11.028,14.4,19.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1501,-0.23169999999999999,8.5784000000000002,0.24414,4.3609999999999998,5.4009999999999998,6.7649999999999997,8.5779999999999994,11.029,14.403,19.141999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1502,-0.23180000000000001,8.5791000000000004,0.24418999999999999,4.3609999999999998,5.4009999999999998,6.7649999999999997,8.5790000000000006,11.031000000000001,14.406000000000001,19.148 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1503,-0.23180000000000001,8.5799000000000003,0.24424000000000001,4.3609999999999998,5.4009999999999998,6.766,8.58,11.032999999999999,14.409000000000001,19.152999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1504,-0.23180000000000001,8.5806000000000004,0.24429000000000001,4.3609999999999998,5.4009999999999998,6.766,8.5809999999999995,11.034000000000001,14.412000000000001,19.158000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1505,-0.23180000000000001,8.5814000000000004,0.24434,4.3609999999999998,5.4009999999999998,6.766,8.5809999999999995,11.036,14.414999999999999,19.163 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1506,-0.23180000000000001,8.5821000000000005,0.24439,4.3600000000000003,5.4009999999999998,6.766,8.5820000000000007,11.037000000000001,14.417,19.167999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1507,-0.23180000000000001,8.5829000000000004,0.24443999999999999,4.3600000000000003,5.4009999999999998,6.7670000000000003,8.5830000000000002,11.039,14.42,19.172999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1508,-0.2319,8.5837000000000003,0.24449000000000001,4.3600000000000003,5.4009999999999998,6.7670000000000003,8.5839999999999996,11.04,14.423999999999999,19.178999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1509,-0.2319,8.5844000000000005,0.24454000000000001,4.3600000000000003,5.4009999999999998,6.7670000000000003,8.5839999999999996,11.042,14.426,19.184000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1510,-0.2319,8.5852000000000004,0.24459,4.3600000000000003,5.4009999999999998,6.7679999999999998,8.5850000000000009,11.042999999999999,14.429,19.190000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1511,-0.2319,8.5859000000000005,0.24464,4.3600000000000003,5.4009999999999998,6.7679999999999998,8.5860000000000003,11.045,14.432,19.195 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1512,-0.2319,8.5867000000000004,0.24468999999999999,4.359,5.4009999999999998,6.7679999999999998,8.5869999999999997,11.047000000000001,14.435,19.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1513,-0.2319,8.5875000000000004,0.24473,4.359,5.4020000000000001,6.7679999999999998,8.5879999999999992,11.048,14.438000000000001,19.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1514,-0.23200000000000001,8.5882000000000005,0.24478,4.359,5.4020000000000001,6.7690000000000001,8.5879999999999992,11.05,14.441000000000001,19.21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1515,-0.23200000000000001,8.5890000000000004,0.24482999999999999,4.359,5.4020000000000001,6.7690000000000001,8.5890000000000004,11.051,14.444000000000001,19.215 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1516,-0.23200000000000001,8.5897000000000006,0.24487999999999999,4.359,5.4020000000000001,6.7690000000000001,8.59,11.053000000000001,14.446999999999999,19.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1517,-0.23200000000000001,8.5905000000000005,0.24493000000000001,4.359,5.4020000000000001,6.77,8.59,11.054,14.449,19.225999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1518,-0.23200000000000001,8.5913000000000004,0.24498,4.359,5.4020000000000001,6.77,8.5909999999999993,11.055999999999999,14.452,19.231000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1519,-0.2321,8.5920000000000005,0.24503,4.3579999999999997,5.4020000000000001,6.77,8.5920000000000005,11.057,14.455,19.236999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1520,-0.2321,8.5928000000000004,0.24507999999999999,4.3579999999999997,5.4020000000000001,6.77,8.593,11.058999999999999,14.458,19.242000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1521,-0.2321,8.5935000000000006,0.24512999999999999,4.3579999999999997,5.4020000000000001,6.7709999999999999,8.5939999999999994,11.061,14.461,19.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1522,-0.2321,8.5943000000000005,0.24518000000000001,4.3579999999999997,5.4020000000000001,6.7709999999999999,8.5939999999999994,11.061999999999999,14.464,19.251999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1523,-0.2321,8.5950000000000006,0.24523,4.3579999999999997,5.4020000000000001,6.7709999999999999,8.5950000000000006,11.064,14.467000000000001,19.257000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1524,-0.2321,8.5958000000000006,0.24526999999999999,4.3579999999999997,5.4020000000000001,6.7720000000000002,8.5960000000000001,11.065,14.47,19.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1525,-0.23219999999999999,8.5966000000000005,0.24532000000000001,4.3579999999999997,5.4020000000000001,6.7720000000000002,8.5969999999999995,11.067,14.473000000000001,19.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1526,-0.23219999999999999,8.5973000000000006,0.24537,4.3570000000000002,5.4020000000000001,6.7720000000000002,8.5969999999999995,11.068,14.476000000000001,19.273 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1527,-0.23219999999999999,8.5981000000000005,0.24542,4.3570000000000002,5.4020000000000001,6.7720000000000002,8.5980000000000008,11.07,14.478999999999999,19.277999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1528,-0.23219999999999999,8.5988000000000007,0.24546999999999999,4.3570000000000002,5.4020000000000001,6.7729999999999997,8.5990000000000002,11.071,14.481999999999999,19.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1529,-0.23219999999999999,8.5996000000000006,0.24551999999999999,4.3570000000000002,5.4020000000000001,6.7729999999999997,8.6,11.073,14.484,19.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1530,-0.23219999999999999,8.6004000000000005,0.24557000000000001,4.3570000000000002,5.4020000000000001,6.7729999999999997,8.6,11.074999999999999,14.487,19.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1531,-0.23230000000000001,8.6011000000000006,0.24562,4.3570000000000002,5.4020000000000001,6.774,8.6010000000000009,11.076000000000001,14.49,19.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1532,-0.23230000000000001,8.6019000000000005,0.24567,4.3570000000000002,5.4020000000000001,6.774,8.6020000000000003,11.077999999999999,14.493,19.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1533,-0.23230000000000001,8.6026000000000007,0.24571000000000001,4.3559999999999999,5.4020000000000001,6.774,8.6029999999999998,11.079000000000001,14.496,19.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1534,-0.23230000000000001,8.6034000000000006,0.24576000000000001,4.3559999999999999,5.4020000000000001,6.774,8.6029999999999998,11.081,14.499000000000001,19.315000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1535,-0.23230000000000001,8.6042000000000005,0.24581,4.3559999999999999,5.4020000000000001,6.7750000000000004,8.6039999999999992,11.082000000000001,14.502000000000001,19.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1536,-0.2324,8.6049000000000007,0.24586,4.3559999999999999,5.4020000000000001,6.7750000000000004,8.6050000000000004,11.084,14.505000000000001,19.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1537,-0.2324,8.6057000000000006,0.24590999999999999,4.3559999999999999,5.4020000000000001,6.7750000000000004,8.6059999999999999,11.086,14.507999999999999,19.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1538,-0.2324,8.6065000000000005,0.24596000000000001,4.3559999999999999,5.4020000000000001,6.7759999999999998,8.6059999999999999,11.087,14.510999999999999,19.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1539,-0.2324,8.6072000000000006,0.24601000000000001,4.3559999999999999,5.4020000000000001,6.7759999999999998,8.6069999999999993,11.089,14.513999999999999,19.341000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1540,-0.2324,8.6080000000000005,0.24604999999999999,4.3550000000000004,5.4020000000000001,6.7759999999999998,8.6080000000000005,11.09,14.516,19.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1541,-0.2324,8.6087000000000007,0.24610000000000001,4.3550000000000004,5.4020000000000001,6.7759999999999998,8.609,11.092000000000001,14.519,19.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1542,-0.23250000000000001,8.6095000000000006,0.24615000000000001,4.3550000000000004,5.4020000000000001,6.7770000000000001,8.61,11.093,14.522,19.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1543,-0.23250000000000001,8.6103000000000005,0.2462,4.3550000000000004,5.4020000000000001,6.7770000000000001,8.61,11.095000000000001,14.525,19.361999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1544,-0.23250000000000001,8.6110000000000007,0.24625,4.3550000000000004,5.4020000000000001,6.7770000000000001,8.6110000000000007,11.096,14.528,19.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1545,-0.23250000000000001,8.6118000000000006,0.24629999999999999,4.3550000000000004,5.4020000000000001,6.7779999999999996,8.6120000000000001,11.098000000000001,14.531000000000001,19.373000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1546,-0.23250000000000001,8.6125000000000007,0.24635000000000001,4.3550000000000004,5.4020000000000001,6.7779999999999996,8.6120000000000001,11.1,14.534000000000001,19.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1547,-0.23250000000000001,8.6133000000000006,0.24639,4.3540000000000001,5.4020000000000001,6.7779999999999996,8.6129999999999995,11.101000000000001,14.537000000000001,19.382000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1548,-0.2326,8.6141000000000005,0.24643999999999999,4.3540000000000001,5.4020000000000001,6.7789999999999999,8.6140000000000008,11.103,14.54,19.388000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1549,-0.2326,8.6148000000000007,0.24648999999999999,4.3540000000000001,5.4020000000000001,6.7789999999999999,8.6150000000000002,11.103999999999999,14.542999999999999,19.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1550,-0.2326,8.6156000000000006,0.24654000000000001,4.3540000000000001,5.4020000000000001,6.7789999999999999,8.6159999999999997,11.106,14.545999999999999,19.399000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1551,-0.2326,8.6164000000000005,0.24659,4.3540000000000001,5.4020000000000001,6.7789999999999999,8.6159999999999997,11.106999999999999,14.548999999999999,19.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1552,-0.2326,8.6171000000000006,0.24664,4.3540000000000001,5.4020000000000001,6.78,8.6170000000000009,11.109,14.552,19.408999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1553,-0.2326,8.6179000000000006,0.24668000000000001,4.3540000000000001,5.4020000000000001,6.78,8.6180000000000003,11.11,14.554,19.414000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1554,-0.23269999999999999,8.6186000000000007,0.24673,4.3540000000000001,5.4020000000000001,6.78,8.6189999999999998,11.112,14.557,19.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1555,-0.23269999999999999,8.6194000000000006,0.24678,4.3529999999999998,5.4020000000000001,6.7809999999999997,8.6189999999999998,11.114000000000001,14.56,19.425000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1556,-0.23269999999999999,8.6202000000000005,0.24682999999999999,4.3529999999999998,5.4020000000000001,6.7809999999999997,8.6199999999999992,11.115,14.563000000000001,19.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1557,-0.23269999999999999,8.6209000000000007,0.24687999999999999,4.3529999999999998,5.4020000000000001,6.7809999999999997,8.6210000000000004,11.117000000000001,14.566000000000001,19.434999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1558,-0.23269999999999999,8.6217000000000006,0.24692,4.3529999999999998,5.4020000000000001,6.7809999999999997,8.6219999999999999,11.118,14.569000000000001,19.440000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1559,-0.23269999999999999,8.6225000000000005,0.24697,4.3529999999999998,5.4020000000000001,6.782,8.6219999999999999,11.12,14.571999999999999,19.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1560,-0.23280000000000001,8.6232000000000006,0.24701999999999999,4.3529999999999998,5.4020000000000001,6.782,8.6229999999999993,11.121,14.574999999999999,19.451000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1561,-0.23280000000000001,8.6240000000000006,0.24707000000000001,4.3529999999999998,5.4020000000000001,6.782,8.6240000000000006,11.122999999999999,14.577999999999999,19.456 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1562,-0.23280000000000001,8.6248000000000005,0.24712000000000001,4.3520000000000003,5.4020000000000001,6.7830000000000004,8.625,11.125,14.581,19.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1563,-0.23280000000000001,8.6255000000000006,0.24715999999999999,4.3520000000000003,5.4020000000000001,6.7830000000000004,8.6259999999999994,11.125999999999999,14.583,19.466000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1564,-0.23280000000000001,8.6263000000000005,0.24721000000000001,4.3520000000000003,5.4020000000000001,6.7830000000000004,8.6259999999999994,11.128,14.586,19.471 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1565,-0.23280000000000001,8.6270000000000007,0.24726000000000001,4.3520000000000003,5.4020000000000001,6.7830000000000004,8.6270000000000007,11.129,14.589,19.475999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1566,-0.2329,8.6278000000000006,0.24731,4.3520000000000003,5.4020000000000001,6.7839999999999998,8.6280000000000001,11.131,14.592000000000001,19.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1567,-0.2329,8.6286000000000005,0.24736,4.3520000000000003,5.4020000000000001,6.7839999999999998,8.6289999999999996,11.132,14.595000000000001,19.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1568,-0.2329,8.6293000000000006,0.24740000000000001,4.3520000000000003,5.4020000000000001,6.7839999999999998,8.6289999999999996,11.134,14.598000000000001,19.492000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1569,-0.2329,8.6301000000000005,0.24745,4.3520000000000003,5.4020000000000001,6.7850000000000001,8.6300000000000008,11.135,14.601000000000001,19.498000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1570,-0.2329,8.6309000000000005,0.2475,4.351,5.4029999999999996,6.7850000000000001,8.6310000000000002,11.137,14.603999999999999,19.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1571,-0.2329,8.6316000000000006,0.24754999999999999,4.351,5.4020000000000001,6.7850000000000001,8.6319999999999997,11.138,14.606999999999999,19.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1572,-0.23300000000000001,8.6324000000000005,0.24759999999999999,4.351,5.4029999999999996,6.7859999999999996,8.6319999999999997,11.14,14.61,19.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1573,-0.23300000000000001,8.6332000000000004,0.24764,4.351,5.4029999999999996,6.7859999999999996,8.6329999999999991,11.141999999999999,14.613,19.518999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1574,-0.23300000000000001,8.6339000000000006,0.24768999999999999,4.351,5.4029999999999996,6.7859999999999996,8.6340000000000003,11.143000000000001,14.615,19.524000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1575,-0.23300000000000001,8.6347000000000005,0.24773999999999999,4.351,5.4029999999999996,6.7869999999999999,8.6349999999999998,11.145,14.618,19.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1576,-0.23300000000000001,8.6355000000000004,0.24779000000000001,4.351,5.4029999999999996,6.7869999999999999,8.6359999999999992,11.146000000000001,14.621,19.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1577,-0.23300000000000001,8.6362000000000005,0.24782999999999999,4.3499999999999996,5.4029999999999996,6.7869999999999999,8.6359999999999992,11.148,14.624000000000001,19.539000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1578,-0.2331,8.6370000000000005,0.24787999999999999,4.3499999999999996,5.4029999999999996,6.7869999999999999,8.6370000000000005,11.148999999999999,14.627000000000001,19.545000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1579,-0.2331,8.6378000000000004,0.24793000000000001,4.3499999999999996,5.4029999999999996,6.7880000000000003,8.6379999999999999,11.151,14.63,19.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1580,-0.2331,8.6385000000000005,0.24798000000000001,4.3499999999999996,5.4029999999999996,6.7880000000000003,8.6379999999999999,11.153,14.632999999999999,19.556000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1581,-0.2331,8.6393000000000004,0.24801999999999999,4.3499999999999996,5.4029999999999996,6.7880000000000003,8.6389999999999993,11.154,14.635999999999999,19.559999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1582,-0.2331,8.6401000000000003,0.24807000000000001,4.3499999999999996,5.4029999999999996,6.7889999999999997,8.64,11.156000000000001,14.638999999999999,19.565999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1583,-0.2331,8.6408000000000005,0.24812000000000001,4.3499999999999996,5.4029999999999996,6.7889999999999997,8.641,11.157,14.641999999999999,19.571000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1584,-0.23319999999999999,8.6416000000000004,0.24817,4.3499999999999996,5.4029999999999996,6.7889999999999997,8.6419999999999995,11.159000000000001,14.645,19.577000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1585,-0.23319999999999999,8.6424000000000003,0.24820999999999999,4.3499999999999996,5.4029999999999996,6.79,8.6419999999999995,11.16,14.647,19.581 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1586,-0.23319999999999999,8.6431000000000004,0.24826000000000001,4.3490000000000002,5.4029999999999996,6.79,8.6430000000000007,11.162000000000001,14.65,19.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1587,-0.23319999999999999,8.6439000000000004,0.24831,4.3490000000000002,5.4029999999999996,6.79,8.6440000000000001,11.163,14.653,19.591999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1588,-0.23319999999999999,8.6447000000000003,0.24836,4.3490000000000002,5.4029999999999996,6.79,8.6449999999999996,11.164999999999999,14.656000000000001,19.597000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1589,-0.23319999999999999,8.6454000000000004,0.24840000000000001,4.3490000000000002,5.4029999999999996,6.7910000000000004,8.6449999999999996,11.166,14.659000000000001,19.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1590,-0.23330000000000001,8.6462000000000003,0.24845,4.3490000000000002,5.4029999999999996,6.7910000000000004,8.6460000000000008,11.167999999999999,14.662000000000001,19.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1591,-0.23330000000000001,8.6470000000000002,0.2485,4.3490000000000002,5.4029999999999996,6.7910000000000004,8.6470000000000002,11.17,14.664999999999999,19.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1592,-0.23330000000000001,8.6477000000000004,0.24854000000000001,4.3490000000000002,5.4029999999999996,6.7919999999999998,8.6479999999999997,11.170999999999999,14.667999999999999,19.617999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1593,-0.23330000000000001,8.6485000000000003,0.24859000000000001,4.3479999999999999,5.4029999999999996,6.7919999999999998,8.6479999999999997,11.173,14.670999999999999,19.623000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1594,-0.23330000000000001,8.6493000000000002,0.24864,4.3479999999999999,5.4029999999999996,6.7919999999999998,8.6489999999999991,11.173999999999999,14.673999999999999,19.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1595,-0.23330000000000001,8.65,0.24868999999999999,4.3479999999999999,5.4029999999999996,6.7919999999999998,8.65,11.176,14.676,19.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1596,-0.2334,8.6508000000000003,0.24873000000000001,4.3479999999999999,5.4029999999999996,6.7930000000000001,8.6509999999999998,11.177,14.679,19.638999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1597,-0.2334,8.6516000000000002,0.24878,4.3479999999999999,5.4029999999999996,6.7930000000000001,8.6519999999999992,11.179,14.682,19.643999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1598,-0.2334,8.6524000000000001,0.24883,4.3479999999999999,5.4029999999999996,6.7930000000000001,8.6519999999999992,11.180999999999999,14.685,19.649999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1599,-0.2334,8.6531000000000002,0.24887000000000001,4.3479999999999999,5.4029999999999996,6.7939999999999996,8.6530000000000005,11.182,14.688000000000001,19.654 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1600,-0.2334,8.6539000000000001,0.24892,4.3479999999999999,5.4029999999999996,6.7939999999999996,8.6539999999999999,11.183999999999999,14.691000000000001,19.658999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1601,-0.2334,8.6547000000000001,0.24897,4.3470000000000004,5.4029999999999996,6.7939999999999996,8.6549999999999994,11.185,14.694000000000001,19.664999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1602,-0.23350000000000001,8.6554000000000002,0.24901999999999999,4.3470000000000004,5.4029999999999996,6.7949999999999999,8.6549999999999994,11.186999999999999,14.696999999999999,19.670999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1603,-0.23350000000000001,8.6562000000000001,0.24906,4.3470000000000004,5.4039999999999999,6.7949999999999999,8.6560000000000006,11.188000000000001,14.7,19.675000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1604,-0.23350000000000001,8.657,0.24911,4.3470000000000004,5.4039999999999999,6.7949999999999999,8.657,11.19,14.702999999999999,19.681000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1605,-0.23350000000000001,8.6577000000000002,0.24915999999999999,4.3470000000000004,5.4039999999999999,6.7960000000000003,8.6579999999999995,11.191000000000001,14.706,19.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1606,-0.23350000000000001,8.6585000000000001,0.2492,4.3470000000000004,5.4039999999999999,6.7960000000000003,8.6579999999999995,11.193,14.708,19.690999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1607,-0.23350000000000001,8.6593,0.24925,4.3470000000000004,5.4039999999999999,6.7960000000000003,8.6590000000000007,11.195,14.711,19.696000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1608,-0.2336,8.6600999999999999,0.24929999999999999,4.3470000000000004,5.4039999999999999,6.7969999999999997,8.66,11.196,14.715,19.702000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1609,-0.2336,8.6608000000000001,0.24934000000000001,4.3470000000000004,5.4039999999999999,6.7969999999999997,8.6609999999999996,11.198,14.717000000000001,19.707000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1610,-0.2336,8.6616,0.24939,4.3460000000000001,5.4039999999999999,6.7969999999999997,8.6620000000000008,11.199,14.72,19.712 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1611,-0.2336,8.6623999999999999,0.24944,4.3460000000000001,5.4039999999999999,6.7969999999999997,8.6620000000000008,11.201000000000001,14.723000000000001,19.716999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1612,-0.2336,8.6631,0.24948000000000001,4.3460000000000001,5.4039999999999999,6.798,8.6630000000000003,11.202,14.726000000000001,19.722000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1613,-0.2336,8.6638999999999999,0.24953,4.3460000000000001,5.4039999999999999,6.798,8.6639999999999997,11.204000000000001,14.728999999999999,19.727 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1614,-0.23369999999999999,8.6646999999999998,0.24958,4.3460000000000001,5.4039999999999999,6.798,8.6649999999999991,11.206,14.731999999999999,19.733000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1615,-0.23369999999999999,8.6654,0.24962000000000001,4.3460000000000001,5.4039999999999999,6.7990000000000004,8.6649999999999991,11.207000000000001,14.734,19.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1616,-0.23369999999999999,8.6661999999999999,0.24967,4.3460000000000001,5.4039999999999999,6.7990000000000004,8.6660000000000004,11.209,14.737,19.742999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1617,-0.23369999999999999,8.6669999999999998,0.24972,4.3460000000000001,5.4039999999999999,6.7990000000000004,8.6669999999999998,11.21,14.74,19.748999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1618,-0.23369999999999999,8.6677999999999997,0.24976000000000001,4.3460000000000001,5.4039999999999999,6.8,8.6679999999999993,11.212,14.743,19.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1619,-0.23369999999999999,8.6684999999999999,0.24981,4.3449999999999998,5.4039999999999999,6.8,8.6679999999999993,11.212999999999999,14.746,19.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1620,-0.23369999999999999,8.6692999999999998,0.24986,4.3449999999999998,5.4039999999999999,6.8,8.6690000000000005,11.215,14.749000000000001,19.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1621,-0.23380000000000001,8.6700999999999997,0.24990000000000001,4.3449999999999998,5.4039999999999999,6.8010000000000002,8.67,11.215999999999999,14.752000000000001,19.768999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1622,-0.23380000000000001,8.6707999999999998,0.24995000000000001,4.3449999999999998,5.4039999999999999,6.8010000000000002,8.6709999999999994,11.218,14.755000000000001,19.774999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1623,-0.23380000000000001,8.6715999999999998,0.25,4.3449999999999998,5.4039999999999999,6.8010000000000002,8.6720000000000006,11.22,14.757999999999999,19.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1624,-0.23380000000000001,8.6723999999999997,0.25003999999999998,4.3449999999999998,5.4039999999999999,6.8010000000000002,8.6720000000000006,11.221,14.760999999999999,19.785 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1625,-0.23380000000000001,8.6731999999999996,0.25008999999999998,4.3449999999999998,5.4039999999999999,6.8019999999999996,8.673,11.223000000000001,14.763999999999999,19.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1626,-0.23380000000000001,8.6738999999999997,0.25013999999999997,4.3449999999999998,5.4039999999999999,6.8019999999999996,8.6739999999999995,11.224,14.766,19.795000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1627,-0.2339,8.6746999999999996,0.25018000000000001,4.3449999999999998,5.4039999999999999,6.8019999999999996,8.6750000000000007,11.226000000000001,14.769,19.800999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1628,-0.2339,8.6754999999999995,0.25023000000000001,4.3440000000000003,5.4050000000000002,6.8029999999999999,8.6760000000000002,11.227,14.772,19.806000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1629,-0.2339,8.6762999999999995,0.25026999999999999,4.3440000000000003,5.4050000000000002,6.8029999999999999,8.6760000000000002,11.228999999999999,14.775,19.811 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1630,-0.2339,8.6769999999999996,0.25031999999999999,4.3440000000000003,5.4050000000000002,6.8029999999999999,8.6769999999999996,11.23,14.778,19.815999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1631,-0.2339,8.6777999999999995,0.25036999999999998,4.3440000000000003,5.4050000000000002,6.8040000000000003,8.6780000000000008,11.231999999999999,14.781000000000001,19.821999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1632,-0.2339,8.6785999999999994,0.25041000000000002,4.3440000000000003,5.4050000000000002,6.8040000000000003,8.6790000000000003,11.234,14.784000000000001,19.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1633,-0.23400000000000001,8.6793999999999993,0.25046000000000002,4.3440000000000003,5.4050000000000002,6.8040000000000003,8.6790000000000003,11.234999999999999,14.787000000000001,19.832000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1634,-0.23400000000000001,8.6800999999999995,0.25051000000000001,4.3440000000000003,5.4050000000000002,6.8049999999999997,8.68,11.237,14.79,19.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1635,-0.23400000000000001,8.6808999999999994,0.25054999999999999,4.3440000000000003,5.4050000000000002,6.8049999999999997,8.6809999999999992,11.238,14.792999999999999,19.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1636,-0.23400000000000001,8.6816999999999993,0.25059999999999999,4.3440000000000003,5.4050000000000002,6.8049999999999997,8.6820000000000004,11.24,14.795999999999999,19.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1637,-0.23400000000000001,8.6823999999999995,0.25063999999999997,4.343,5.4050000000000002,6.806,8.6820000000000004,11.241,14.798,19.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1638,-0.23400000000000001,8.6831999999999994,0.25069000000000002,4.343,5.4050000000000002,6.806,8.6829999999999998,11.243,14.801,19.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1639,-0.23400000000000001,8.6839999999999993,0.25074000000000002,4.343,5.4050000000000002,6.806,8.6839999999999993,11.244,14.804,19.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1640,-0.2341,8.6847999999999992,0.25078,4.343,5.4050000000000002,6.8070000000000004,8.6850000000000005,11.246,14.807,19.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1641,-0.2341,8.6854999999999993,0.25083,4.343,5.4050000000000002,6.8070000000000004,8.6859999999999999,11.247999999999999,14.81,19.873999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1642,-0.2341,8.6862999999999992,0.25086999999999998,4.343,5.4050000000000002,6.8070000000000004,8.6859999999999999,11.249000000000001,14.813000000000001,19.879000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1643,-0.2341,8.6870999999999992,0.25091999999999998,4.343,5.4050000000000002,6.8070000000000004,8.6869999999999994,11.250999999999999,14.816000000000001,19.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1644,-0.2341,8.6879000000000008,0.25096000000000002,4.343,5.4050000000000002,6.8079999999999998,8.6880000000000006,11.252000000000001,14.818,19.888999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1645,-0.2341,8.6885999999999992,0.25101000000000001,4.343,5.4050000000000002,6.8079999999999998,8.6890000000000001,11.254,14.821,19.893999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1646,-0.23419999999999999,8.6893999999999991,0.25106000000000001,4.3419999999999996,5.4050000000000002,6.8079999999999998,8.6890000000000001,11.255000000000001,14.824999999999999,19.899999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1647,-0.23419999999999999,8.6902000000000008,0.25109999999999999,4.3419999999999996,5.4050000000000002,6.8090000000000002,8.69,11.257,14.827,19.905000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1648,-0.23419999999999999,8.6910000000000007,0.25114999999999998,4.3419999999999996,5.4050000000000002,6.8090000000000002,8.6910000000000007,11.259,14.83,19.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1649,-0.23419999999999999,8.6917000000000009,0.25119000000000002,4.3419999999999996,5.4050000000000002,6.8090000000000002,8.6920000000000002,11.26,14.833,19.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1650,-0.23419999999999999,8.6925000000000008,0.25124000000000002,4.3419999999999996,5.4050000000000002,6.81,8.6920000000000002,11.262,14.836,19.920000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1651,-0.23419999999999999,8.6933000000000007,0.25129000000000001,4.3419999999999996,5.4050000000000002,6.81,8.6929999999999996,11.263,14.839,19.925999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1652,-0.23419999999999999,8.6941000000000006,0.25133,4.3419999999999996,5.4059999999999997,6.81,8.6940000000000008,11.265000000000001,14.842000000000001,19.931000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1653,-0.23430000000000001,8.6948000000000008,0.25137999999999999,4.3419999999999996,5.4059999999999997,6.8109999999999999,8.6950000000000003,11.266,14.845000000000001,19.937000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1654,-0.23430000000000001,8.6956000000000007,0.25141999999999998,4.3419999999999996,5.4059999999999997,6.8109999999999999,8.6959999999999997,11.268000000000001,14.848000000000001,19.940999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1655,-0.23430000000000001,8.6964000000000006,0.25147000000000003,4.3419999999999996,5.4059999999999997,6.8109999999999999,8.6959999999999997,11.269,14.851000000000001,19.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1656,-0.23430000000000001,8.6972000000000005,0.25151000000000001,4.3410000000000002,5.4059999999999997,6.8120000000000003,8.6969999999999992,11.271000000000001,14.853,19.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1657,-0.23430000000000001,8.6980000000000004,0.25156000000000001,4.3410000000000002,5.4059999999999997,6.8120000000000003,8.6980000000000004,11.273,14.856,19.957000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1658,-0.23430000000000001,8.6987000000000005,0.25159999999999999,4.3410000000000002,5.4059999999999997,6.8120000000000003,8.6989999999999998,11.273999999999999,14.859,19.960999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1659,-0.2344,8.6995000000000005,0.25164999999999998,4.3410000000000002,5.4059999999999997,6.8120000000000003,8.6999999999999993,11.276,14.862,19.968 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1660,-0.2344,8.7003000000000004,0.25169000000000002,4.3410000000000002,5.4059999999999997,6.8129999999999997,8.6999999999999993,11.276999999999999,14.865,19.972000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1661,-0.2344,8.7011000000000003,0.25174000000000002,4.3410000000000002,5.4059999999999997,6.8129999999999997,8.7010000000000005,11.279,14.868,19.978000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1662,-0.2344,8.7018000000000004,0.25179000000000001,4.3410000000000002,5.4059999999999997,6.8129999999999997,8.702,11.28,14.871,19.983000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1663,-0.2344,8.7026000000000003,0.25183,4.3410000000000002,5.4059999999999997,6.8140000000000001,8.7029999999999994,11.282,14.874000000000001,19.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1664,-0.2344,8.7034000000000002,0.25187999999999999,4.3410000000000002,5.4059999999999997,6.8140000000000001,8.7029999999999994,11.282999999999999,14.877000000000001,19.992999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1665,-0.2344,8.7042000000000002,0.25191999999999998,4.3410000000000002,5.4059999999999997,6.8140000000000001,8.7040000000000006,11.285,14.879,19.998000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1666,-0.23449999999999999,8.7049000000000003,0.25197000000000003,4.34,5.4059999999999997,6.8150000000000004,8.7050000000000001,11.286,14.882,20.004000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1667,-0.23449999999999999,8.7057000000000002,0.25201000000000001,4.34,5.4059999999999997,6.8150000000000004,8.7059999999999995,11.288,14.885,20.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1668,-0.23449999999999999,8.7065000000000001,0.25206000000000001,4.34,5.4059999999999997,6.8150000000000004,8.7059999999999995,11.29,14.888,20.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1669,-0.23449999999999999,8.7073,0.25209999999999999,4.34,5.407,6.8159999999999998,8.7070000000000007,11.291,14.891,20.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1670,-0.23449999999999999,8.7081,0.25214999999999999,4.34,5.407,6.8159999999999998,8.7080000000000002,11.292999999999999,14.894,20.024999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1671,-0.23449999999999999,8.7088000000000001,0.25219000000000003,4.34,5.407,6.8159999999999998,8.7089999999999996,11.294,14.896000000000001,20.029 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1672,-0.2346,8.7096,0.25224000000000002,4.34,5.407,6.8170000000000002,8.7100000000000009,11.295999999999999,14.9,20.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1673,-0.2346,8.7103999999999999,0.25228,4.34,5.407,6.8170000000000002,8.7100000000000009,11.297000000000001,14.901999999999999,20.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1674,-0.2346,8.7111999999999998,0.25233,4.34,5.407,6.8170000000000002,8.7110000000000003,11.298999999999999,14.906000000000001,20.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1675,-0.2346,8.7119,0.25236999999999998,4.34,5.407,6.8179999999999996,8.7119999999999997,11.3,14.907999999999999,20.05 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1676,-0.2346,8.7126999999999999,0.25241999999999998,4.3390000000000004,5.407,6.8179999999999996,8.7129999999999992,11.302,14.911,20.056000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1677,-0.2346,8.7134999999999998,0.25246000000000002,4.3390000000000004,5.407,6.8179999999999996,8.7140000000000004,11.304,14.914,20.059999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1678,-0.2346,8.7142999999999997,0.25251000000000001,4.3390000000000004,5.407,6.819,8.7140000000000004,11.305,14.917,20.065999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1679,-0.23469999999999999,8.7150999999999996,0.25255,4.3390000000000004,5.407,6.819,8.7149999999999999,11.307,14.92,20.071000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1680,-0.23469999999999999,8.7157999999999998,0.25259999999999999,4.3390000000000004,5.407,6.819,8.7159999999999993,11.308,14.923,20.077000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1681,-0.23469999999999999,8.7165999999999997,0.25263999999999998,4.3390000000000004,5.407,6.82,8.7170000000000005,11.31,14.925000000000001,20.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1682,-0.23469999999999999,8.7173999999999996,0.25269000000000003,4.3390000000000004,5.407,6.82,8.7170000000000005,11.311,14.929,20.087 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1683,-0.23469999999999999,8.7181999999999995,0.25273000000000001,4.3390000000000004,5.407,6.82,8.718,11.313000000000001,14.930999999999999,20.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1684,-0.23469999999999999,8.7188999999999997,0.25278,4.3390000000000004,5.407,6.82,8.7189999999999994,11.314,14.933999999999999,20.097000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1685,-0.23480000000000001,8.7196999999999996,0.25281999999999999,4.3390000000000004,5.407,6.8209999999999997,8.7200000000000006,11.316000000000001,14.936999999999999,20.103000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1686,-0.23480000000000001,8.7204999999999995,0.25286999999999998,4.3390000000000004,5.407,6.8209999999999997,8.7200000000000006,11.318,14.94,20.108000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1687,-0.23480000000000001,8.7212999999999994,0.25291000000000002,4.3390000000000004,5.4080000000000004,6.8220000000000001,8.7210000000000001,11.319000000000001,14.943,20.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1688,-0.23480000000000001,8.7220999999999993,0.25296000000000002,4.3380000000000001,5.4080000000000004,6.8220000000000001,8.7219999999999995,11.321,14.946,20.117999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1689,-0.23480000000000001,8.7227999999999994,0.253,4.3380000000000001,5.4080000000000004,6.8220000000000001,8.7230000000000008,11.321999999999999,14.949,20.123000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1690,-0.23480000000000001,8.7235999999999994,0.25303999999999999,4.3380000000000001,5.4080000000000004,6.8220000000000001,8.7240000000000002,11.324,14.951000000000001,20.128 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1691,-0.23480000000000001,8.7243999999999993,0.25308999999999998,4.3380000000000001,5.4080000000000004,6.8230000000000004,8.7240000000000002,11.324999999999999,14.954000000000001,20.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1692,-0.2349,8.7251999999999992,0.25313000000000002,4.3380000000000001,5.4080000000000004,6.8230000000000004,8.7249999999999996,11.327,14.957000000000001,20.138999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1693,-0.2349,8.7258999999999993,0.25318000000000002,4.3380000000000001,5.4080000000000004,6.8230000000000004,8.7260000000000009,11.327999999999999,14.96,20.143999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1694,-0.2349,8.7266999999999992,0.25322,4.3380000000000001,5.4080000000000004,6.8239999999999998,8.7270000000000003,11.33,14.962999999999999,20.149000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1695,-0.2349,8.7274999999999991,0.25327,4.3380000000000001,5.4080000000000004,6.8239999999999998,8.7279999999999998,11.332000000000001,14.965999999999999,20.154 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1696,-0.2349,8.7283000000000008,0.25330999999999998,4.3380000000000001,5.4080000000000004,6.8239999999999998,8.7279999999999998,11.333,14.968999999999999,20.158999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1697,-0.2349,8.7291000000000007,0.25335999999999997,4.3380000000000001,5.4080000000000004,6.8250000000000002,8.7289999999999992,11.335000000000001,14.972,20.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1698,-0.2349,8.7297999999999991,0.25340000000000001,4.3369999999999997,5.4080000000000004,6.8250000000000002,8.73,11.336,14.974,20.169 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1699,-0.23499999999999999,8.7306000000000008,0.25345000000000001,4.3369999999999997,5.4080000000000004,6.8250000000000002,8.7309999999999999,11.337999999999999,14.978,20.175999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1700,-0.23499999999999999,8.7314000000000007,0.25348999999999999,4.3369999999999997,5.4080000000000004,6.8259999999999996,8.7309999999999999,11.339,14.98,20.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1701,-0.23499999999999999,8.7322000000000006,0.25352999999999998,4.3369999999999997,5.4080000000000004,6.8259999999999996,8.7319999999999993,11.340999999999999,14.983000000000001,20.184999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1702,-0.23499999999999999,8.7330000000000005,0.25358000000000003,4.3369999999999997,5.4080000000000004,6.8259999999999996,8.7330000000000005,11.343,14.986000000000001,20.190999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1703,-0.23499999999999999,8.7337000000000007,0.25362000000000001,4.3369999999999997,5.4089999999999998,6.827,8.734,11.343999999999999,14.989000000000001,20.195 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1704,-0.23499999999999999,8.7345000000000006,0.25367000000000001,4.3369999999999997,5.4089999999999998,6.827,8.734,11.346,14.992000000000001,20.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1705,-0.2351,8.7353000000000005,0.25370999999999999,4.3369999999999997,5.4089999999999998,6.827,8.7349999999999994,11.347,14.994999999999999,20.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1706,-0.2351,8.7361000000000004,0.25374999999999998,4.3369999999999997,5.4089999999999998,6.8280000000000003,8.7360000000000007,11.349,14.997999999999999,20.210999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1707,-0.2351,8.7369000000000003,0.25380000000000003,4.3369999999999997,5.4089999999999998,6.8280000000000003,8.7370000000000001,11.35,15.000999999999999,20.216999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1708,-0.2351,8.7376000000000005,0.25384000000000001,4.3369999999999997,5.4089999999999998,6.8280000000000003,8.7379999999999995,11.352,15.003,20.221 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1709,-0.2351,8.7384000000000004,0.25389,4.3369999999999997,5.4089999999999998,6.8289999999999997,8.7379999999999995,11.353,15.006,20.227 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1710,-0.2351,8.7392000000000003,0.25392999999999999,4.3360000000000003,5.4089999999999998,6.8289999999999997,8.7390000000000008,11.355,15.009,20.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1711,-0.2351,8.74,0.25397999999999998,4.3360000000000003,5.4089999999999998,6.8289999999999997,8.74,11.356,15.012,20.236999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1712,-0.23519999999999999,8.7408000000000001,0.25402000000000002,4.3360000000000003,5.4089999999999998,6.83,8.7409999999999997,11.358000000000001,15.015000000000001,20.242999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1713,-0.23519999999999999,8.7415000000000003,0.25406000000000001,4.3360000000000003,5.4089999999999998,6.83,8.7420000000000009,11.359,15.018000000000001,20.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1714,-0.23519999999999999,8.7423000000000002,0.25411,4.3360000000000003,5.4089999999999998,6.83,8.7420000000000009,11.361000000000001,15.021000000000001,20.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1715,-0.23519999999999999,8.7431000000000001,0.25414999999999999,4.3360000000000003,5.4089999999999998,6.8310000000000004,8.7430000000000003,11.363,15.023,20.257999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1716,-0.23519999999999999,8.7439,0.25419999999999998,4.3360000000000003,5.4089999999999998,6.8310000000000004,8.7439999999999998,11.364000000000001,15.026999999999999,20.263000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1717,-0.23519999999999999,8.7446000000000002,0.25424000000000002,4.3360000000000003,5.4089999999999998,6.8310000000000004,8.7449999999999992,11.366,15.029,20.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1718,-0.23519999999999999,8.7454000000000001,0.25428000000000001,4.3360000000000003,5.4089999999999998,6.8319999999999999,8.7449999999999992,11.367000000000001,15.032,20.273 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1719,-0.23530000000000001,8.7462,0.25433,4.3360000000000003,5.41,6.8319999999999999,8.7460000000000004,11.369,15.035,20.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1720,-0.23530000000000001,8.7469999999999999,0.25436999999999999,4.3360000000000003,5.41,6.8319999999999999,8.7469999999999999,11.37,15.038,20.283999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1721,-0.23530000000000001,8.7477999999999998,0.25441000000000003,4.3360000000000003,5.41,6.8330000000000002,8.7479999999999993,11.372,15.041,20.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1722,-0.23530000000000001,8.7484999999999999,0.25446000000000002,4.335,5.41,6.8330000000000002,8.7479999999999993,11.372999999999999,15.044,20.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1723,-0.23530000000000001,8.7492999999999999,0.2545,4.335,5.41,6.8330000000000002,8.7490000000000006,11.375,15.045999999999999,20.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1724,-0.23530000000000001,8.7500999999999998,0.25455,4.335,5.41,6.8339999999999996,8.75,11.377000000000001,15.048999999999999,20.303999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1725,-0.23530000000000001,8.7508999999999997,0.25458999999999998,4.335,5.41,6.8339999999999996,8.7509999999999994,11.378,15.052,20.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1726,-0.2354,8.7516999999999996,0.25463000000000002,4.335,5.41,6.8339999999999996,8.7520000000000007,11.38,15.055,20.315000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1727,-0.2354,8.7523999999999997,0.25468000000000002,4.335,5.41,6.835,8.7520000000000007,11.381,15.058,20.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1728,-0.2354,8.7531999999999996,0.25472,4.335,5.41,6.835,8.7530000000000001,11.382999999999999,15.061,20.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1729,-0.2354,8.7539999999999996,0.25475999999999999,4.335,5.41,6.835,8.7539999999999996,11.384,15.063000000000001,20.329999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1730,-0.2354,8.7547999999999995,0.25480999999999998,4.335,5.41,6.8360000000000003,8.7550000000000008,11.385999999999999,15.067,20.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1731,-0.2354,8.7555999999999994,0.25485000000000002,4.335,5.41,6.8360000000000003,8.7560000000000002,11.387,15.069000000000001,20.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1732,-0.2354,8.7562999999999995,0.25489000000000001,4.335,5.41,6.8360000000000003,8.7560000000000002,11.388999999999999,15.071999999999999,20.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1733,-0.23549999999999999,8.7570999999999994,0.25494,4.335,5.4109999999999996,6.8369999999999997,8.7569999999999997,11.39,15.074999999999999,20.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1734,-0.23549999999999999,8.7578999999999994,0.25497999999999998,4.335,5.4109999999999996,6.8369999999999997,8.7579999999999991,11.391999999999999,15.077999999999999,20.356000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1735,-0.23549999999999999,8.7586999999999993,0.25502000000000002,4.335,5.4109999999999996,6.8369999999999997,8.7590000000000003,11.394,15.081,20.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1736,-0.23549999999999999,8.7594999999999992,0.25507000000000002,4.3339999999999996,5.4109999999999996,6.8380000000000001,8.76,11.395,15.084,20.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1737,-0.23549999999999999,8.7601999999999993,0.25511,4.3339999999999996,5.4109999999999996,6.8380000000000001,8.76,11.397,15.086,20.370999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1738,-0.23549999999999999,8.7609999999999992,0.25514999999999999,4.3339999999999996,5.4109999999999996,6.8380000000000001,8.7609999999999992,11.398,15.089,20.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1739,-0.23549999999999999,8.7617999999999991,0.25519999999999998,4.3339999999999996,5.4109999999999996,6.8390000000000004,8.7620000000000005,11.4,15.092000000000001,20.382000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1740,-0.2356,8.7626000000000008,0.25524000000000002,4.3339999999999996,5.4109999999999996,6.8390000000000004,8.7629999999999999,11.401,15.095000000000001,20.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1741,-0.2356,8.7634000000000007,0.25528000000000001,4.3339999999999996,5.4109999999999996,6.8390000000000004,8.7629999999999999,11.403,15.098000000000001,20.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1742,-0.2356,8.7640999999999991,0.25533,4.3339999999999996,5.4109999999999996,6.84,8.7639999999999993,11.404,15.101000000000001,20.396999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1743,-0.2356,8.7649000000000008,0.25536999999999999,4.3339999999999996,5.4109999999999996,6.84,8.7650000000000006,11.406000000000001,15.103999999999999,20.402000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1744,-0.2356,8.7657000000000007,0.25541000000000003,4.3339999999999996,5.4109999999999996,6.84,8.766,11.407,15.106,20.407 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1745,-0.2356,8.7665000000000006,0.25546000000000002,4.3339999999999996,5.4109999999999996,6.8410000000000002,8.766,11.409000000000001,15.109,20.413 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1746,-0.2356,8.7673000000000005,0.2555,4.3339999999999996,5.4109999999999996,6.8410000000000002,8.7669999999999995,11.411,15.112,20.417000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1747,-0.23569999999999999,8.7680000000000007,0.25553999999999999,4.3339999999999996,5.4119999999999999,6.8410000000000002,8.7680000000000007,11.412000000000001,15.115,20.422999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1748,-0.23569999999999999,8.7688000000000006,0.25558999999999998,4.3330000000000002,5.4119999999999999,6.8419999999999996,8.7690000000000001,11.414,15.118,20.428000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1749,-0.23569999999999999,8.7696000000000005,0.25563000000000002,4.3330000000000002,5.4119999999999999,6.8419999999999996,8.77,11.414999999999999,15.121,20.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1750,-0.23569999999999999,8.7704000000000004,0.25567000000000001,4.3330000000000002,5.4119999999999999,6.8419999999999996,8.77,11.417,15.124000000000001,20.437999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1751,-0.23569999999999999,8.7712000000000003,0.25570999999999999,4.3330000000000002,5.4119999999999999,6.843,8.7710000000000008,11.417999999999999,15.125999999999999,20.443000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1752,-0.23569999999999999,8.7719000000000005,0.25575999999999999,4.3330000000000002,5.4119999999999999,6.843,8.7720000000000002,11.42,15.129,20.448 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1753,-0.23569999999999999,8.7727000000000004,0.25580000000000003,4.3330000000000002,5.4119999999999999,6.843,8.7729999999999997,11.420999999999999,15.132,20.452999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1754,-0.23580000000000001,8.7735000000000003,0.25584000000000001,4.3330000000000002,5.4119999999999999,6.8440000000000003,8.7739999999999991,11.423,15.135,20.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1755,-0.23580000000000001,8.7743000000000002,0.25589000000000001,4.3330000000000002,5.4119999999999999,6.8440000000000003,8.7739999999999991,11.425000000000001,15.138,20.465 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1756,-0.23580000000000001,8.7751000000000001,0.25592999999999999,4.3330000000000002,5.4119999999999999,6.8440000000000003,8.7750000000000004,11.426,15.141,20.469000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1757,-0.23580000000000001,8.7758000000000003,0.25596999999999998,4.3330000000000002,5.4119999999999999,6.8449999999999998,8.7759999999999998,11.427,15.144,20.474 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1758,-0.23580000000000001,8.7766000000000002,0.25601000000000002,4.3330000000000002,5.4119999999999999,6.8449999999999998,8.7769999999999992,11.429,15.146000000000001,20.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1759,-0.23580000000000001,8.7774000000000001,0.25606000000000001,4.3330000000000002,5.4119999999999999,6.8449999999999998,8.7769999999999992,11.430999999999999,15.148999999999999,20.484999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1760,-0.23580000000000001,8.7782,0.25609999999999999,4.3330000000000002,5.4130000000000003,6.8460000000000001,8.7780000000000005,11.432,15.151999999999999,20.489000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1761,-0.2359,8.7789999999999999,0.25613999999999998,4.3330000000000002,5.4130000000000003,6.8460000000000001,8.7789999999999999,11.433999999999999,15.154999999999999,20.495000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1762,-0.2359,8.7797000000000001,0.25618999999999997,4.3319999999999999,5.4130000000000003,6.8460000000000001,8.7799999999999994,11.435,15.157999999999999,20.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1763,-0.2359,8.7805,0.25623000000000001,4.3319999999999999,5.4130000000000003,6.8470000000000004,8.7799999999999994,11.436999999999999,15.161,20.504999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1764,-0.2359,8.7812999999999999,0.25627,4.3319999999999999,5.4130000000000003,6.8470000000000004,8.7810000000000006,11.438000000000001,15.164,20.51 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1765,-0.2359,8.7820999999999998,0.25630999999999998,4.3319999999999999,5.4130000000000003,6.8470000000000004,8.782,11.44,15.166,20.515000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1766,-0.2359,8.7828999999999997,0.25635999999999998,4.3319999999999999,5.4130000000000003,6.8479999999999999,8.7829999999999995,11.441000000000001,15.169,20.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1767,-0.2359,8.7835999999999999,0.25640000000000002,4.3319999999999999,5.4130000000000003,6.8479999999999999,8.7840000000000007,11.443,15.172000000000001,20.524999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1768,-0.23599999999999999,8.7843999999999998,0.25644,4.3319999999999999,5.4130000000000003,6.8479999999999999,8.7840000000000007,11.444000000000001,15.175000000000001,20.530999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1769,-0.23599999999999999,8.7851999999999997,0.25647999999999999,4.3319999999999999,5.4130000000000003,6.8490000000000002,8.7850000000000001,11.446,15.178000000000001,20.536000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1770,-0.23599999999999999,8.7859999999999996,0.25652999999999998,4.3319999999999999,5.4130000000000003,6.8490000000000002,8.7859999999999996,11.448,15.180999999999999,20.542000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1771,-0.23599999999999999,8.7867999999999995,0.25657000000000002,4.3319999999999999,5.4130000000000003,6.8490000000000002,8.7870000000000008,11.449,15.183999999999999,20.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1772,-0.23599999999999999,8.7874999999999996,0.25661,4.3319999999999999,5.4130000000000003,6.85,8.7880000000000003,11.451000000000001,15.186,20.550999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1773,-0.23599999999999999,8.7882999999999996,0.25664999999999999,4.3319999999999999,5.4139999999999997,6.85,8.7880000000000003,11.452,15.189,20.556000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1774,-0.23599999999999999,8.7890999999999995,0.25669999999999998,4.3319999999999999,5.4139999999999997,6.85,8.7889999999999997,11.454000000000001,15.192,20.562000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1775,-0.2361,8.7898999999999994,0.25674000000000002,4.3319999999999999,5.4139999999999997,6.851,8.7899999999999991,11.455,15.195,20.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1776,-0.2361,8.7906999999999993,0.25678000000000001,4.3319999999999999,5.4139999999999997,6.851,8.7910000000000004,11.457000000000001,15.198,20.571999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1777,-0.2361,8.7913999999999994,0.25681999999999999,4.3310000000000004,5.4139999999999997,6.851,8.7910000000000004,11.458,15.201000000000001,20.577000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1778,-0.2361,8.7921999999999993,0.25685999999999998,4.3310000000000004,5.4139999999999997,6.8520000000000003,8.7919999999999998,11.46,15.202999999999999,20.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1779,-0.2361,8.7929999999999993,0.25691000000000003,4.3310000000000004,5.4139999999999997,6.8520000000000003,8.7929999999999993,11.461,15.206,20.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1780,-0.2361,8.7937999999999992,0.25695000000000001,4.3310000000000004,5.4139999999999997,6.8520000000000003,8.7940000000000005,11.462999999999999,15.209,20.591999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1781,-0.2361,8.7944999999999993,0.25699,4.3310000000000004,5.4139999999999997,6.8529999999999998,8.7940000000000005,11.464,15.212,20.597000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1782,-0.23619999999999999,8.7952999999999992,0.25702999999999998,4.3310000000000004,5.4139999999999997,6.8529999999999998,8.7949999999999999,11.465999999999999,15.215,20.603000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1783,-0.23619999999999999,8.7960999999999991,0.25707999999999998,4.3310000000000004,5.4139999999999997,6.8529999999999998,8.7959999999999994,11.468,15.218,20.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1784,-0.23619999999999999,8.7969000000000008,0.25712000000000002,4.3310000000000004,5.4139999999999997,6.8540000000000001,8.7970000000000006,11.468999999999999,15.221,20.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1785,-0.23619999999999999,8.7977000000000007,0.25716,4.3310000000000004,5.415,6.8540000000000001,8.798,11.471,15.223000000000001,20.617999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1786,-0.23619999999999999,8.7984000000000009,0.25719999999999998,4.3310000000000004,5.415,6.8540000000000001,8.798,11.472,15.226000000000001,20.623000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1787,-0.23619999999999999,8.7992000000000008,0.25724000000000002,4.3310000000000004,5.415,6.8550000000000004,8.7989999999999995,11.474,15.228999999999999,20.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1788,-0.23619999999999999,8.8000000000000007,0.25729000000000002,4.3310000000000004,5.415,6.8550000000000004,8.8000000000000007,11.475,15.231999999999999,20.632999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1789,-0.23630000000000001,8.8008000000000006,0.25733,4.3310000000000004,5.415,6.8550000000000004,8.8010000000000002,11.477,15.234999999999999,20.638999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1790,-0.23630000000000001,8.8016000000000005,0.25736999999999999,4.3310000000000004,5.415,6.8559999999999999,8.8019999999999996,11.478,15.238,20.643999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1791,-0.23630000000000001,8.8023000000000007,0.25741000000000003,4.3310000000000004,5.415,6.8559999999999999,8.8019999999999996,11.48,15.24,20.649000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1792,-0.23630000000000001,8.8031000000000006,0.25745000000000001,4.33,5.415,6.8559999999999999,8.8030000000000008,11.481,15.243,20.652999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1793,-0.23630000000000001,8.8039000000000005,0.25749,4.33,5.415,6.8570000000000002,8.8040000000000003,11.483000000000001,15.246,20.658000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1794,-0.23630000000000001,8.8047000000000004,0.25753999999999999,4.33,5.415,6.8570000000000002,8.8049999999999997,11.484,15.249000000000001,20.664000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1795,-0.23630000000000001,8.8055000000000003,0.25757999999999998,4.33,5.415,6.8570000000000002,8.8059999999999992,11.486000000000001,15.252000000000001,20.669 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1796,-0.23630000000000001,8.8062000000000005,0.25762000000000002,4.33,5.415,6.8579999999999997,8.8059999999999992,11.487,15.254,20.673999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1797,-0.2364,8.8070000000000004,0.25766,4.33,5.4160000000000004,6.8579999999999997,8.8070000000000004,11.489000000000001,15.257,20.678999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1798,-0.2364,8.8078000000000003,0.25769999999999998,4.33,5.4160000000000004,6.8579999999999997,8.8079999999999998,11.491,15.26,20.684000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1799,-0.2364,8.8086000000000002,0.25774999999999998,4.33,5.4160000000000004,6.859,8.8089999999999993,11.492000000000001,15.263,20.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1800,-0.2364,8.8093000000000004,0.25779000000000002,4.33,5.4160000000000004,6.859,8.8089999999999993,11.494,15.266,20.695 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1801,-0.2364,8.8101000000000003,0.25783,4.33,5.4160000000000004,6.859,8.81,11.494999999999999,15.269,20.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1802,-0.2364,8.8109000000000002,0.25786999999999999,4.33,5.4160000000000004,6.86,8.8109999999999999,11.497,15.271000000000001,20.704000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1803,-0.2364,8.8117000000000001,0.25790999999999997,4.33,5.4160000000000004,6.86,8.8119999999999994,11.497999999999999,15.273999999999999,20.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1804,-0.23649999999999999,8.8125,0.25795000000000001,4.33,5.4160000000000004,6.8609999999999998,8.8119999999999994,11.5,15.276999999999999,20.715 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1805,-0.23649999999999999,8.8132000000000001,0.25800000000000001,4.33,5.4160000000000004,6.8609999999999998,8.8130000000000006,11.500999999999999,15.28,20.721 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1806,-0.23649999999999999,8.8140000000000001,0.25803999999999999,4.33,5.4160000000000004,6.8609999999999998,8.8140000000000001,11.503,15.282999999999999,20.725999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1807,-0.23649999999999999,8.8148,0.25807999999999998,4.33,5.4160000000000004,6.8609999999999998,8.8149999999999995,11.504,15.286,20.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1808,-0.23649999999999999,8.8155999999999999,0.25812000000000002,4.3289999999999997,5.4160000000000004,6.8620000000000001,8.8160000000000007,11.506,15.289,20.734999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1809,-0.23649999999999999,8.8163999999999998,0.25816,4.3289999999999997,5.4169999999999998,6.8620000000000001,8.8160000000000007,11.507,15.291,20.74 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1810,-0.23649999999999999,8.8170999999999999,0.25819999999999999,4.3289999999999997,5.4169999999999998,6.8620000000000001,8.8170000000000002,11.509,15.294,20.745000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1811,-0.2366,8.8178999999999998,0.25824000000000003,4.3289999999999997,5.4169999999999998,6.8630000000000004,8.8179999999999996,11.51,15.297000000000001,20.751000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1812,-0.2366,8.8186999999999998,0.25829000000000002,4.3289999999999997,5.4169999999999998,6.8630000000000004,8.8190000000000008,11.512,15.3,20.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1813,-0.2366,8.8194999999999997,0.25833,4.3289999999999997,5.4169999999999998,6.8639999999999999,8.82,11.513999999999999,15.303000000000001,20.760999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1814,-0.2366,8.8201999999999998,0.25836999999999999,4.3289999999999997,5.4169999999999998,6.8639999999999999,8.82,11.515000000000001,15.305,20.765999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1815,-0.2366,8.8209999999999997,0.25840999999999997,4.3289999999999997,5.4169999999999998,6.8639999999999999,8.8209999999999997,11.516999999999999,15.308,20.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1816,-0.2366,8.8217999999999996,0.25845000000000001,4.3289999999999997,5.4169999999999998,6.8650000000000002,8.8219999999999992,11.518000000000001,15.311,20.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1817,-0.2366,8.8225999999999996,0.25849,4.3289999999999997,5.4169999999999998,6.8650000000000002,8.8230000000000004,11.52,15.314,20.780999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1818,-0.2366,8.8233999999999995,0.25852999999999998,4.3289999999999997,5.4169999999999998,6.8650000000000002,8.8230000000000004,11.521000000000001,15.317,20.786000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1819,-0.23669999999999999,8.8240999999999996,0.25857999999999998,4.3289999999999997,5.4169999999999998,6.8659999999999997,8.8239999999999998,11.523,15.32,20.792000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1820,-0.23669999999999999,8.8248999999999995,0.25862000000000002,4.3289999999999997,5.4169999999999998,6.8659999999999997,8.8249999999999993,11.523999999999999,15.323,20.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1821,-0.23669999999999999,8.8256999999999994,0.25866,4.3289999999999997,5.4180000000000001,6.8659999999999997,8.8260000000000005,11.526,15.324999999999999,20.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1822,-0.23669999999999999,8.8264999999999993,0.25869999999999999,4.3289999999999997,5.4180000000000001,6.867,8.8260000000000005,11.526999999999999,15.327999999999999,20.806999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1823,-0.23669999999999999,8.8271999999999995,0.25874000000000003,4.3289999999999997,5.4180000000000001,6.867,8.827,11.529,15.331,20.812000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1824,-0.23669999999999999,8.8279999999999994,0.25878000000000001,4.3289999999999997,5.4180000000000001,6.867,8.8279999999999994,11.53,15.334,20.817 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1825,-0.23669999999999999,8.8287999999999993,0.25881999999999999,4.3280000000000003,5.4180000000000001,6.8680000000000003,8.8290000000000006,11.532,15.336,20.821999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1826,-0.23680000000000001,8.8295999999999992,0.25885999999999998,4.3289999999999997,5.4180000000000001,6.8680000000000003,8.83,11.532999999999999,15.339,20.827000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1827,-0.23680000000000001,8.8302999999999994,0.25890000000000002,4.3280000000000003,5.4180000000000001,6.8680000000000003,8.83,11.535,15.342000000000001,20.832000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1828,-0.23680000000000001,8.8310999999999993,0.25895000000000001,4.3280000000000003,5.4180000000000001,6.8689999999999998,8.8309999999999995,11.536,15.345000000000001,20.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1829,-0.23680000000000001,8.8318999999999992,0.25899,4.3280000000000003,5.4180000000000001,6.8689999999999998,8.8320000000000007,11.538,15.348000000000001,20.843 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1830,-0.23680000000000001,8.8327000000000009,0.25902999999999998,4.3280000000000003,5.4180000000000001,6.8689999999999998,8.8330000000000002,11.539,15.351000000000001,20.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1831,-0.23680000000000001,8.8333999999999993,0.25907000000000002,4.3280000000000003,5.4180000000000001,6.87,8.8330000000000002,11.541,15.353,20.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1832,-0.23680000000000001,8.8341999999999992,0.25911000000000001,4.3280000000000003,5.4189999999999996,6.87,8.8339999999999996,11.542,15.356,20.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1833,-0.2369,8.8350000000000009,0.25914999999999999,4.3280000000000003,5.4189999999999996,6.87,8.8350000000000009,11.544,15.359,20.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1834,-0.2369,8.8358000000000008,0.25918999999999998,4.3280000000000003,5.4189999999999996,6.8710000000000004,8.8360000000000003,11.545999999999999,15.362,20.867999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1835,-0.2369,8.8364999999999991,0.25923000000000002,4.3280000000000003,5.4189999999999996,6.8710000000000004,8.8360000000000003,11.547000000000001,15.365,20.873000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1836,-0.2369,8.8373000000000008,0.25927,4.3280000000000003,5.4189999999999996,6.8710000000000004,8.8369999999999997,11.548,15.367000000000001,20.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1837,-0.2369,8.8381000000000007,0.25930999999999998,4.3280000000000003,5.4189999999999996,6.8719999999999999,8.8379999999999992,11.55,15.37,20.882999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1838,-0.2369,8.8389000000000006,0.25935000000000002,4.3280000000000003,5.4189999999999996,6.8719999999999999,8.8390000000000004,11.552,15.372999999999999,20.888000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1839,-0.2369,8.8396000000000008,0.25940000000000002,4.3280000000000003,5.4189999999999996,6.8719999999999999,8.84,11.553000000000001,15.375999999999999,20.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1840,-0.2369,8.8404000000000007,0.25944,4.3280000000000003,5.4189999999999996,6.8730000000000002,8.84,11.555,15.379,20.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1841,-0.23699999999999999,8.8412000000000006,0.25947999999999999,4.3280000000000003,5.4189999999999996,6.8730000000000002,8.8409999999999993,11.555999999999999,15.382,20.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1842,-0.23699999999999999,8.8420000000000005,0.25951999999999997,4.3280000000000003,5.4189999999999996,6.8730000000000002,8.8420000000000005,11.558,15.385,20.908999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1843,-0.23699999999999999,8.8427000000000007,0.25956000000000001,4.3280000000000003,5.42,6.8739999999999997,8.843,11.558999999999999,15.387,20.914000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1844,-0.23699999999999999,8.8435000000000006,0.2596,4.327,5.42,6.8739999999999997,8.8439999999999994,11.561,15.39,20.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1845,-0.23699999999999999,8.8443000000000005,0.25963999999999998,4.327,5.42,6.8739999999999997,8.8439999999999994,11.561999999999999,15.393000000000001,20.923999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1846,-0.23699999999999999,8.8451000000000004,0.25968000000000002,4.327,5.42,6.875,8.8450000000000006,11.564,15.396000000000001,20.928999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1847,-0.23699999999999999,8.8458000000000006,0.25972000000000001,4.327,5.42,6.875,8.8460000000000001,11.565,15.398,20.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1848,-0.23710000000000001,8.8466000000000005,0.25975999999999999,4.327,5.42,6.875,8.8469999999999995,11.567,15.401,20.939 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1849,-0.23710000000000001,8.8474000000000004,0.25979999999999998,4.327,5.42,6.8760000000000003,8.8469999999999995,11.568,15.404,20.943999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1850,-0.23710000000000001,8.8482000000000003,0.25984000000000002,4.327,5.42,6.8760000000000003,8.8480000000000008,11.57,15.407,20.949000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1851,-0.23710000000000001,8.8489000000000004,0.25988,4.327,5.42,6.8760000000000003,8.8490000000000002,11.571,15.409000000000001,20.954000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1852,-0.23710000000000001,8.8497000000000003,0.25991999999999998,4.327,5.42,6.8769999999999998,8.85,11.573,15.412000000000001,20.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1853,-0.23710000000000001,8.8505000000000003,0.25996000000000002,4.327,5.4210000000000003,6.8769999999999998,8.85,11.574,15.414999999999999,20.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1854,-0.23710000000000001,8.8512000000000004,0.26,4.327,5.4210000000000003,6.8769999999999998,8.8510000000000009,11.576000000000001,15.417999999999999,20.968 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1855,-0.23710000000000001,8.8520000000000003,0.26003999999999999,4.327,5.4210000000000003,6.8780000000000001,8.8520000000000003,11.577,15.42,20.972999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1856,-0.23719999999999999,8.8528000000000002,0.26007999999999998,4.327,5.4210000000000003,6.8780000000000001,8.8529999999999998,11.579000000000001,15.423999999999999,20.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,91,0.0030000000000000001,9.7658000000000005,0.16611000000000001,5.931,7.0039999999999996,8.2710000000000008,9.766,11.53,13.612,16.068000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,92,0.0023,9.7596000000000007,0.16633999999999999,5.9240000000000004,6.9969999999999999,8.2639999999999993,9.76,11.525,13.61,16.07 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,93,0.0016000000000000001,9.7535000000000007,0.16657,5.9160000000000004,6.9889999999999999,8.2569999999999997,9.7539999999999996,11.521000000000001,13.608000000000001,16.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,94,0.00089999999999999998,9.7475000000000005,0.1668,5.9089999999999998,6.9820000000000002,8.25,9.7479999999999993,11.516999999999999,13.606999999999999,16.076000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,95,0.00020000000000000001,9.7415000000000003,0.16703000000000001,5.9020000000000001,6.9749999999999996,8.2430000000000003,9.7420000000000009,11.512,13.605,16.077999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,96,-0.00050000000000000001,9.7355,0.16725000000000001,5.8949999999999996,6.968,8.2360000000000007,9.7360000000000007,11.507999999999999,13.603,16.079999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,97,-0.0011999999999999999,9.7294999999999998,0.16747999999999999,5.8879999999999999,6.9610000000000003,8.2289999999999992,9.73,11.504,13.602,16.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,98,-0.0018,9.7235999999999994,0.16769999999999999,5.8810000000000002,6.9539999999999997,8.2230000000000008,9.7240000000000002,11.499000000000001,13.6,16.085000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,99,-0.0025000000000000001,9.7177000000000007,0.16792000000000001,5.8739999999999997,6.9470000000000001,8.2159999999999993,9.718,11.494999999999999,13.598000000000001,16.087 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,100,-0.0032000000000000002,9.7118000000000002,0.16814000000000001,5.867,6.94,8.2089999999999996,9.7119999999999997,11.491,13.596,16.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,101,-0.0038,9.7058999999999997,0.16836000000000001,5.86,6.9329999999999998,8.202,9.7059999999999995,11.486000000000001,13.595000000000001,16.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,102,-0.0044999999999999997,9.7001000000000008,0.16858000000000001,5.8529999999999998,6.9260000000000002,8.1959999999999997,9.6999999999999993,11.481999999999999,13.593,16.094000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,103,-0.0051000000000000004,9.6942000000000004,0.16879,5.8460000000000001,6.9189999999999996,8.1890000000000001,9.6940000000000008,11.478,13.590999999999999,16.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,104,-0.0057000000000000002,9.6883999999999997,0.16900999999999999,5.8390000000000004,6.9119999999999999,8.1829999999999998,9.6880000000000006,11.473000000000001,13.589,16.097999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,105,-0.0064000000000000003,9.6826000000000008,0.16922000000000001,5.8330000000000002,6.9050000000000002,8.1760000000000002,9.6829999999999998,11.468999999999999,13.587,16.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,106,-0.0070000000000000001,9.6768000000000001,0.16944000000000001,5.8259999999999996,6.8979999999999997,8.1690000000000005,9.6769999999999996,11.465,13.586,16.102 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,107,-0.0077000000000000002,9.6709999999999994,0.16965,5.819,6.891,8.1630000000000003,9.6709999999999994,11.46,13.584,16.103999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,108,-0.0083000000000000001,9.6652000000000005,0.16986000000000001,5.8129999999999997,6.8849999999999998,8.1560000000000006,9.6649999999999991,11.456,13.582000000000001,16.106000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,109,-0.0088999999999999999,9.6593,0.17007,5.806,6.8780000000000001,8.15,9.6590000000000007,11.451000000000001,13.58,16.108000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,110,-0.0094999999999999998,9.6534999999999993,0.17027,5.7990000000000004,6.8710000000000004,8.1430000000000007,9.6539999999999999,11.446999999999999,13.577,16.109000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,111,-0.0101,9.6477000000000004,0.17047999999999999,5.7930000000000001,6.8639999999999999,8.1370000000000005,9.6479999999999997,11.443,13.576000000000001,16.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,112,-0.010699999999999999,9.6417999999999999,0.17069000000000001,5.7859999999999996,6.8579999999999997,8.1300000000000008,9.6419999999999995,11.438000000000001,13.573,16.111999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,113,-0.011299999999999999,9.6359999999999992,0.17088999999999999,5.7789999999999999,6.851,8.1240000000000006,9.6359999999999992,11.433999999999999,13.571,16.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,114,-0.011900000000000001,9.6301000000000005,0.1711,5.7729999999999997,6.8440000000000003,8.1170000000000009,9.6300000000000008,11.429,13.569000000000001,16.114999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,115,-0.012500000000000001,9.6242000000000001,0.17130000000000001,5.766,6.8369999999999997,8.1110000000000007,9.6240000000000006,11.425000000000001,13.567,16.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,116,-0.013100000000000001,9.6182999999999996,0.17150000000000001,5.76,6.8310000000000004,8.1039999999999992,9.6180000000000003,11.42,13.564,16.117999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,117,-0.0137,9.6123999999999992,0.17169999999999999,5.7530000000000001,6.8239999999999998,8.0980000000000008,9.6120000000000001,11.414999999999999,13.561999999999999,16.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,118,-0.0143,9.6065000000000005,0.1719,5.7469999999999999,6.8170000000000002,8.0909999999999993,9.6059999999999999,11.411,13.56,16.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,119,-0.0149,9.6005000000000003,0.1721,5.74,6.8109999999999999,8.0839999999999996,9.6,11.406000000000001,13.557,16.120999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,120,-0.0155,9.5945999999999998,0.17230000000000001,5.734,6.8040000000000003,8.0779999999999994,9.5950000000000006,11.401,13.555,16.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,121,-0.0161,9.5884999999999998,0.17249999999999999,5.7270000000000003,6.7969999999999997,8.0709999999999997,9.5879999999999992,11.396000000000001,13.552,16.123000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,122,-0.0166,9.5824999999999996,0.17269000000000001,5.7210000000000001,6.7910000000000004,8.0649999999999995,9.5820000000000007,11.391999999999999,13.548999999999999,16.123000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,123,-0.0172,9.5764999999999993,0.17288999999999999,5.7140000000000004,6.7839999999999998,8.0579999999999998,9.5760000000000005,11.387,13.545999999999999,16.123999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,124,-0.0178,9.5703999999999994,0.17308000000000001,5.7080000000000002,6.7770000000000001,8.0519999999999996,9.57,11.382,13.542999999999999,16.123999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,125,-0.0183,9.5642999999999994,0.17327999999999999,5.7009999999999996,6.77,8.0449999999999999,9.5640000000000001,11.377000000000001,13.541,16.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,126,-0.0189,9.5580999999999996,0.17347000000000001,5.6950000000000003,6.7640000000000002,8.0380000000000003,9.5579999999999998,11.372,13.538,16.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,127,-0.0195,9.5519999999999996,0.17366000000000001,5.6879999999999997,6.7569999999999997,8.032,9.5519999999999996,11.367000000000001,13.535,16.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,128,-0.02,9.5457999999999998,0.17385,5.6820000000000004,6.75,8.0250000000000004,9.5459999999999994,11.362,13.531000000000001,16.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,129,-0.0206,9.5396000000000001,0.17405000000000001,5.6749999999999998,6.7439999999999998,8.0180000000000007,9.5399999999999991,11.356999999999999,13.529,16.126000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,130,-0.021100000000000001,9.5333000000000006,0.17424000000000001,5.6689999999999996,6.7370000000000001,8.0109999999999992,9.5329999999999995,11.352,13.525,16.126000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,131,-0.021700000000000001,9.5271000000000008,0.17441999999999999,5.6619999999999999,6.73,8.0050000000000008,9.5269999999999992,11.346,13.522,16.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,132,-0.022200000000000001,9.5207999999999995,0.17460999999999999,5.6559999999999997,6.7229999999999999,7.9980000000000002,9.5210000000000008,11.340999999999999,13.519,16.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,133,-0.022700000000000001,9.5145,0.17480000000000001,5.649,6.7169999999999996,7.9909999999999997,9.5139999999999993,11.336,13.515000000000001,16.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,134,-0.023300000000000001,9.5082000000000004,0.17499000000000001,5.6429999999999998,6.71,7.9850000000000003,9.5079999999999991,11.331,13.512,16.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,135,-0.023800000000000002,9.5017999999999994,0.17516999999999999,5.6360000000000001,6.7030000000000003,7.9779999999999998,9.5020000000000007,11.324999999999999,13.507999999999999,16.123999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,136,-0.024400000000000002,9.4954000000000001,0.17535999999999999,5.63,6.6959999999999997,7.9710000000000001,9.4949999999999992,11.32,13.505000000000001,16.123999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,137,-0.024899999999999999,9.4890000000000008,0.17554,5.6230000000000002,6.69,7.9640000000000004,9.4890000000000008,11.314,13.500999999999999,16.123000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,138,-0.025399999999999999,9.4825999999999997,0.17573,5.617,6.6829999999999998,7.9580000000000002,9.4830000000000005,11.308999999999999,13.497,16.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,139,-0.025899999999999999,9.4761000000000006,0.17591000000000001,5.61,6.6760000000000002,7.9509999999999996,9.4760000000000009,11.303000000000001,13.493,16.120999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,140,-0.026499999999999999,9.4696999999999996,0.17609,5.6040000000000001,6.67,7.944,9.4700000000000006,11.298,13.49,16.120999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,141,-0.027,9.4631000000000007,0.17627000000000001,5.5979999999999999,6.6630000000000003,7.9370000000000003,9.4629999999999992,11.292,13.486000000000001,16.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,142,-0.0275,9.4565999999999999,0.17645,5.5910000000000002,6.6559999999999997,7.93,9.4570000000000007,11.286,13.481999999999999,16.117999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,143,-0.028000000000000001,9.4501000000000008,0.17663000000000001,5.585,6.649,7.923,9.4499999999999993,11.281000000000001,13.478,16.117000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,144,-0.028500000000000001,9.4435000000000002,0.17680999999999999,5.5780000000000003,6.6420000000000003,7.9169999999999998,9.4440000000000008,11.275,13.474,16.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,145,-0.029000000000000001,9.4367999999999999,0.17699000000000001,5.5720000000000001,6.6360000000000001,7.91,9.4369999999999994,11.269,13.468999999999999,16.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,146,-0.029499999999999998,9.4301999999999992,0.17716999999999999,5.5650000000000004,6.6289999999999996,7.9029999999999996,9.43,11.263,13.465,16.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,147,-0.03,9.4235000000000007,0.17734,5.5590000000000002,6.6219999999999999,7.8959999999999999,9.4239999999999995,11.257,13.461,16.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,148,-0.030499999999999999,9.4168000000000003,0.17752000000000001,5.5519999999999996,6.6150000000000002,7.8890000000000002,9.4169999999999998,11.250999999999999,13.457000000000001,16.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,149,-0.031,9.4100999999999999,0.17768999999999999,5.5460000000000003,6.6079999999999997,7.8819999999999997,9.41,11.244999999999999,13.452,16.108000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,150,-0.0315,9.4033999999999995,0.17787,5.5389999999999997,6.6020000000000003,7.875,9.4030000000000005,11.24,13.448,16.106000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,151,-0.032000000000000001,9.3965999999999994,0.17804,5.5330000000000004,6.5949999999999998,7.8680000000000003,9.3970000000000002,11.233000000000001,13.443,16.103999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,152,-0.032500000000000001,9.3897999999999993,0.17821000000000001,5.5270000000000001,6.5880000000000001,7.8609999999999998,9.39,11.227,13.439,16.102 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,153,-0.033000000000000002,9.3828999999999994,0.17838000000000001,5.52,6.5810000000000004,7.8540000000000001,9.3829999999999991,11.221,13.433999999999999,16.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,154,-0.033500000000000002,9.3760999999999992,0.17854999999999999,5.5140000000000002,6.5739999999999998,7.8470000000000004,9.3759999999999994,11.215,13.429,16.097999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,155,-0.034000000000000002,9.3691999999999993,0.17871999999999999,5.5069999999999997,6.5679999999999996,7.84,9.3689999999999998,11.209,13.423999999999999,16.094999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,156,-0.034500000000000003,9.3622999999999994,0.17888999999999999,5.5010000000000003,6.5609999999999999,7.8330000000000002,9.3620000000000001,11.202,13.419,16.093 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,157,-0.0349,9.3553999999999995,0.17906,5.4939999999999998,6.5540000000000003,7.8259999999999996,9.3550000000000004,11.196,13.414,16.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,158,-0.035400000000000001,9.3483999999999998,0.17923,5.4880000000000004,6.5469999999999997,7.819,9.3480000000000008,11.19,13.409000000000001,16.088000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,159,-0.035900000000000001,9.3414999999999999,0.17938999999999999,5.4820000000000002,6.54,7.8120000000000003,9.3420000000000005,11.183,13.404,16.085000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,160,-0.036400000000000002,9.3345000000000002,0.17956,5.4749999999999996,6.5330000000000004,7.8049999999999997,9.3339999999999996,11.177,13.398999999999999,16.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,161,-0.036799999999999999,9.3275000000000006,0.17971999999999999,5.4690000000000003,6.5270000000000001,7.798,9.3279999999999994,11.170999999999999,13.394,16.079999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,162,-0.0373,9.3204999999999991,0.17988000000000001,5.4630000000000001,6.52,7.7910000000000004,9.32,11.164,13.388999999999999,16.077000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,163,-0.0378,9.3133999999999997,0.18004999999999999,5.4560000000000004,6.5129999999999999,7.7839999999999998,9.3130000000000006,11.157999999999999,13.384,16.074000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,164,-0.038300000000000001,9.3064,0.18021000000000001,5.45,6.5060000000000002,7.7770000000000001,9.3059999999999992,11.151,13.378,16.071000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,165,-0.038699999999999998,9.2993000000000006,0.18037,5.4429999999999996,6.4989999999999997,7.7690000000000001,9.2989999999999995,11.144,13.372999999999999,16.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,166,-0.039199999999999999,9.2921999999999993,0.18053,5.4370000000000003,6.492,7.7619999999999996,9.2919999999999998,11.138,13.367000000000001,16.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,167,-0.039600000000000003,9.2850999999999999,0.18068999999999999,5.431,6.4859999999999998,7.7549999999999999,9.2850000000000001,11.131,13.362,16.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,168,-0.040099999999999997,9.2780000000000005,0.18085000000000001,5.4240000000000004,6.4790000000000001,7.7480000000000002,9.2780000000000005,11.125,13.356,16.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,169,-0.040599999999999997,9.2708999999999993,0.18099999999999999,5.4180000000000001,6.4720000000000004,7.7409999999999997,9.2710000000000008,11.118,13.351000000000001,16.053999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,170,-0.041000000000000002,9.2637999999999998,0.18115999999999999,5.4119999999999999,6.4649999999999999,7.734,9.2639999999999993,11.111000000000001,13.345000000000001,16.050999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,171,-0.041500000000000002,9.2566000000000006,0.18131,5.4059999999999997,6.4589999999999996,7.7270000000000003,9.2569999999999997,11.103999999999999,13.339,16.047000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,172,-0.0419,9.2494999999999994,0.18146999999999999,5.399,6.452,7.72,9.25,11.098000000000001,13.334,16.042999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,173,-0.0424,9.2423000000000002,0.18162,5.3929999999999998,6.4450000000000003,7.7130000000000001,9.2420000000000009,11.090999999999999,13.327999999999999,16.039000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,174,-0.042799999999999998,9.2350999999999992,0.18176999999999999,5.3869999999999996,6.4379999999999997,7.7060000000000004,9.2349999999999994,11.084,13.321999999999999,16.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,175,-0.043299999999999998,9.2279,0.18192,5.3810000000000002,6.4320000000000004,7.6980000000000004,9.2279999999999998,11.077,13.316000000000001,16.030999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,176,-0.043700000000000003,9.2208000000000006,0.18207000000000001,5.375,6.4249999999999998,7.6909999999999998,9.2210000000000001,11.07,13.31,16.027000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,177,-0.0441,9.2134999999999998,0.18221999999999999,5.3680000000000003,6.4180000000000001,7.6840000000000002,9.2140000000000004,11.063000000000001,13.304,16.023 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,178,-0.044600000000000001,9.2063000000000006,0.18237,5.3620000000000001,6.4109999999999996,7.6769999999999996,9.2059999999999995,11.055999999999999,13.298,16.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,179,-0.044999999999999998,9.1990999999999996,0.18251000000000001,5.3559999999999999,6.4050000000000002,7.67,9.1989999999999998,11.048999999999999,13.292,16.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,180,-0.045499999999999999,9.1919000000000004,0.18265999999999999,5.35,6.3979999999999997,7.6630000000000003,9.1920000000000002,11.042,13.286,16.010999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,181,-0.045900000000000003,9.1846999999999994,0.18279999999999999,5.3440000000000003,6.3920000000000003,7.6559999999999997,9.1850000000000005,11.035,13.28,16.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,182,-0.046300000000000001,9.1775000000000002,0.18295,5.3380000000000001,6.3849999999999998,7.649,9.1780000000000008,11.029,13.273999999999999,16.001999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,183,-0.046800000000000001,9.1701999999999995,0.18309,5.3310000000000004,6.3780000000000001,7.6420000000000003,9.17,11.021000000000001,13.266999999999999,15.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,184,-0.047199999999999999,9.1630000000000003,0.18323,5.3250000000000002,6.3719999999999999,7.6349999999999998,9.1630000000000003,11.013999999999999,13.260999999999999,15.993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,185,-0.047600000000000003,9.1556999999999995,0.18337000000000001,5.319,6.3650000000000002,7.6280000000000001,9.1560000000000006,11.007,13.255000000000001,15.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,186,-0.048000000000000001,9.1485000000000003,0.18351000000000001,5.3129999999999997,6.3579999999999997,7.6210000000000004,9.1479999999999997,11,13.247999999999999,15.983000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,187,-0.048500000000000001,9.1412999999999993,0.18365000000000001,5.3070000000000004,6.3520000000000003,7.6139999999999999,9.141,10.993,13.242000000000001,15.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,188,-0.048899999999999999,9.1340000000000003,0.18378,5.3010000000000002,6.3449999999999998,7.6070000000000002,9.1340000000000003,10.986000000000001,13.236000000000001,15.973000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,189,-0.049299999999999997,9.1267999999999994,0.18392,5.2949999999999999,6.3390000000000004,7.6,9.1270000000000007,10.978999999999999,13.228999999999999,15.968999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,190,-0.049700000000000001,9.1195000000000004,0.18404999999999999,5.2889999999999997,6.3319999999999999,7.593,9.1199999999999992,10.972,13.223000000000001,15.962999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,191,-0.050200000000000002,9.1122999999999994,0.18418999999999999,5.2830000000000004,6.3259999999999996,7.5860000000000003,9.1120000000000001,10.965,13.215999999999999,15.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,192,-0.050599999999999999,9.1051000000000002,0.18432000000000001,5.2779999999999996,6.319,7.5789999999999997,9.1050000000000004,10.957000000000001,13.21,15.952999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,193,-0.050999999999999997,9.0977999999999994,0.18445,5.2720000000000002,6.3129999999999997,7.5720000000000001,9.0980000000000008,10.95,13.202999999999999,15.948 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,194,-0.051400000000000001,9.0906000000000002,0.18457999999999999,5.266,6.306,7.5650000000000004,9.0909999999999993,10.943,13.196,15.943 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,195,-0.051799999999999999,9.0832999999999995,0.18471000000000001,5.26,6.3,7.5579999999999998,9.0830000000000002,10.936,13.19,15.938000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,196,-0.052200000000000003,9.0761000000000003,0.18482999999999999,5.2539999999999996,6.2930000000000001,7.5510000000000002,9.0760000000000005,10.928000000000001,13.183,15.932 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,197,-0.052600000000000001,9.0688999999999993,0.18496000000000001,5.2480000000000002,6.2869999999999999,7.5439999999999996,9.0690000000000008,10.920999999999999,13.176,15.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,198,-0.053100000000000001,9.0616000000000003,0.18509,5.2430000000000003,6.2809999999999997,7.5369999999999999,9.0619999999999994,10.914,13.17,15.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,199,-0.053499999999999999,9.0543999999999993,0.18521000000000001,5.2370000000000001,6.274,7.53,9.0540000000000003,10.907,13.163,15.916 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,200,-0.053900000000000003,9.0472000000000001,0.18532999999999999,5.2309999999999999,6.2679999999999998,7.524,9.0470000000000006,10.9,13.156000000000001,15.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,201,-0.054300000000000001,9.0399999999999991,0.18546000000000001,5.2249999999999996,6.2619999999999996,7.5170000000000003,9.0399999999999991,10.891999999999999,13.148999999999999,15.904999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,202,-0.054699999999999999,9.0327999999999999,0.18557999999999999,5.22,6.2549999999999999,7.51,9.0329999999999995,10.885,13.141999999999999,15.898999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,203,-0.055100000000000003,9.0256000000000007,0.1857,5.2140000000000004,6.2489999999999997,7.5030000000000001,9.0259999999999998,10.878,13.135,15.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,204,-0.055500000000000001,9.0183999999999997,0.18582000000000001,5.2080000000000002,6.2430000000000003,7.4960000000000004,9.0180000000000007,10.87,13.129,15.888 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,205,-0.055899999999999998,9.0112000000000005,0.18593000000000001,5.2030000000000003,6.2370000000000001,7.4889999999999999,9.0109999999999992,10.863,13.121,15.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,206,-0.056300000000000003,9.0039999999999996,0.18604999999999999,5.1970000000000001,6.23,7.4829999999999997,9.0039999999999996,10.856,13.115,15.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,207,-0.0567,8.9968000000000004,0.18617,5.1909999999999998,6.2240000000000002,7.476,8.9969999999999999,10.849,13.108000000000001,15.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,208,-0.057099999999999998,8.9896999999999991,0.18628,5.1859999999999999,6.218,7.4690000000000003,8.99,10.840999999999999,13.101000000000001,15.864000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,209,-0.057500000000000002,8.9824999999999999,0.18640000000000001,5.18,6.2119999999999997,7.4619999999999997,8.9819999999999993,10.834,13.093999999999999,15.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,210,-0.057799999999999997,8.9754000000000005,0.18651000000000001,5.1749999999999998,6.2050000000000001,7.4560000000000004,8.9749999999999996,10.827,13.087,15.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,211,-0.058200000000000002,8.9681999999999995,0.18662000000000001,5.1689999999999996,6.1989999999999998,7.4489999999999998,8.968,10.819000000000001,13.079000000000001,15.845000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,212,-0.058599999999999999,8.9611000000000001,0.18673000000000001,5.1639999999999997,6.1929999999999996,7.4420000000000002,8.9610000000000003,10.811999999999999,13.071999999999999,15.839 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,213,-0.058999999999999997,8.9539000000000009,0.18684000000000001,5.1580000000000004,6.1870000000000003,7.4359999999999999,8.9540000000000006,10.805,13.065,15.833 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,214,-0.059400000000000001,8.9467999999999996,0.18695000000000001,5.1529999999999996,6.181,7.4290000000000003,8.9469999999999992,10.797000000000001,13.058,15.827 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,215,-0.059799999999999999,8.9397000000000002,0.18704999999999999,5.1479999999999997,6.1749999999999998,7.4219999999999997,8.94,10.79,13.051,15.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,216,-0.060199999999999997,8.9326000000000008,0.18715999999999999,5.1420000000000003,6.1689999999999996,7.4160000000000004,8.9329999999999998,10.782999999999999,13.044,15.814 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,217,-0.060600000000000001,8.9254999999999995,0.18726000000000001,5.1369999999999996,6.1630000000000003,7.4089999999999998,8.9260000000000002,10.775,13.036,15.807 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,218,-0.060900000000000003,8.9184999999999999,0.18737000000000001,5.1319999999999997,6.157,7.4029999999999996,8.9179999999999993,10.768000000000001,13.029,15.801 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,219,-0.0613,8.9114000000000004,0.18747,5.1260000000000003,6.1509999999999998,7.3959999999999999,8.9109999999999996,10.760999999999999,13.022,15.795 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,220,-0.061699999999999998,8.9044000000000008,0.18756999999999999,5.1210000000000004,6.1449999999999996,7.3890000000000002,8.9039999999999999,10.753,13.015000000000001,15.788 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,221,-0.062100000000000002,8.8972999999999995,0.18767,5.1159999999999997,6.1390000000000002,7.383,8.8970000000000002,10.746,13.007999999999999,15.781000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,222,-0.0625,8.8902999999999999,0.18776999999999999,5.1109999999999998,6.133,7.3760000000000003,8.89,10.739000000000001,13,15.775 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,223,-0.062799999999999995,8.8833000000000002,0.18787000000000001,5.1050000000000004,6.1280000000000001,7.37,8.8829999999999991,10.731,12.993,15.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,224,-0.063200000000000006,8.8763000000000005,0.18797,5.0999999999999996,6.1219999999999999,7.3630000000000004,8.8759999999999994,10.724,12.986000000000001,15.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,225,-0.063600000000000004,8.8694000000000006,0.18806999999999999,5.0949999999999998,6.1159999999999997,7.3570000000000002,8.8689999999999998,10.717000000000001,12.978999999999999,15.755000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,226,-0.063899999999999998,8.8623999999999992,0.18815999999999999,5.09,6.11,7.351,8.8620000000000001,10.709,12.971,15.747999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,227,-0.064299999999999996,8.8554999999999993,0.18826000000000001,5.085,6.1040000000000001,7.3440000000000003,8.8559999999999999,10.702,12.964,15.742000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,228,-0.064699999999999994,8.8484999999999996,0.18834999999999999,5.08,6.0990000000000002,7.3380000000000001,8.8480000000000008,10.695,12.957000000000001,15.734999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,229,-0.065100000000000005,8.8415999999999997,0.18844,5.0750000000000002,6.093,7.3310000000000004,8.8420000000000005,10.686999999999999,12.949,15.728 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,230,-0.0654,8.8346999999999998,0.18853,5.07,6.0869999999999997,7.3250000000000002,8.8350000000000009,10.68,12.942,15.721 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,231,-0.065799999999999997,8.8278999999999996,0.18862999999999999,5.0650000000000004,6.0819999999999999,7.319,8.8279999999999994,10.673,12.935,15.715 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,232,-0.066199999999999995,8.8209999999999997,0.18870999999999999,5.0599999999999996,6.0759999999999996,7.3129999999999997,8.8209999999999997,10.666,12.927,15.708 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,233,-0.066500000000000004,8.8141999999999996,0.1888,5.0549999999999997,6.07,7.306,8.8140000000000001,10.659000000000001,12.92,15.701000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,234,-0.066900000000000001,8.8072999999999997,0.18889,5.05,6.0650000000000004,7.3,8.8070000000000004,10.651,12.913,15.694000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,235,-0.067299999999999999,8.8004999999999995,0.18898000000000001,5.0449999999999999,6.0590000000000002,7.2939999999999996,8.8000000000000007,10.644,12.906000000000001,15.686999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,236,-0.067599999999999993,8.7937999999999992,0.18906000000000001,5.04,6.0540000000000003,7.2880000000000003,8.7940000000000005,10.637,12.898,15.68 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,237,-0.068000000000000005,8.7870000000000008,0.18915000000000001,5.0350000000000001,6.048,7.2809999999999997,8.7870000000000008,10.63,12.891,15.673 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,238,-0.0683,8.7802000000000007,0.18923000000000001,5.0309999999999997,6.0430000000000001,7.2750000000000004,8.7799999999999994,10.622,12.882999999999999,15.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,239,-0.068699999999999997,8.7735000000000003,0.18931000000000001,5.0259999999999998,6.0369999999999999,7.2690000000000001,8.7739999999999991,10.615,12.875999999999999,15.659000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,240,-0.069000000000000006,8.7667999999999999,0.18940000000000001,5.0209999999999999,6.032,7.2629999999999999,8.7669999999999995,10.608000000000001,12.869,15.651999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,241,-0.069400000000000003,8.7600999999999996,0.18948000000000001,5.016,6.0259999999999998,7.2569999999999997,8.76,10.601000000000001,12.862,15.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,242,-0.069800000000000001,8.7535000000000007,0.18956000000000001,5.0119999999999996,6.0209999999999999,7.2510000000000003,8.7539999999999996,10.593999999999999,12.853999999999999,15.638 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,243,-0.070099999999999996,8.7468000000000004,0.18964,5.0069999999999997,6.016,7.2450000000000001,8.7469999999999999,10.587,12.847,15.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,244,-0.070499999999999993,8.7401999999999997,0.18972,5.0019999999999998,6.01,7.2389999999999999,8.74,10.58,12.84,15.624000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,245,-0.070800000000000002,8.7335999999999991,0.18978999999999999,4.9980000000000002,6.0049999999999999,7.2329999999999997,8.734,10.571999999999999,12.832000000000001,15.617000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,246,-0.071199999999999999,8.7270000000000003,0.18987000000000001,4.9930000000000003,6,7.2270000000000003,8.7270000000000003,10.565,12.824999999999999,15.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,247,-0.071499999999999994,8.7203999999999997,0.18994,4.9889999999999999,5.9950000000000001,7.2210000000000001,8.7200000000000006,10.558,12.817,15.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,248,-0.071900000000000006,8.7139000000000006,0.19001999999999999,4.984,5.9889999999999999,7.2149999999999999,8.7140000000000004,10.551,12.81,15.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,249,-0.0722,8.7073999999999998,0.19009000000000001,4.9800000000000004,5.984,7.2089999999999996,8.7070000000000007,10.544,12.803000000000001,15.587999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,250,-0.072599999999999998,8.7009000000000007,0.19017000000000001,4.9749999999999996,5.9790000000000001,7.2030000000000003,8.7010000000000005,10.537000000000001,12.795999999999999,15.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,251,-0.072900000000000006,8.6943999999999999,0.19023999999999999,4.97,5.9740000000000002,7.1980000000000004,8.6940000000000008,10.53,12.788,15.574 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,252,-0.073300000000000004,8.6879000000000008,0.19031000000000001,4.9660000000000002,5.9690000000000003,7.1920000000000002,8.6880000000000006,10.523,12.781000000000001,15.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,253,-0.073599999999999999,8.6814999999999998,0.19037999999999999,4.9619999999999997,5.9640000000000004,7.1859999999999999,8.6820000000000004,10.516,12.773999999999999,15.56 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,254,-0.073899999999999993,8.6751000000000005,0.19045000000000001,4.9569999999999999,5.9589999999999996,7.18,8.6750000000000007,10.509,12.766,15.552 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,255,-0.074300000000000005,8.6686999999999994,0.19051999999999999,4.9530000000000003,5.9530000000000003,7.1749999999999998,8.6690000000000005,10.502000000000001,12.759,15.545 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,256,-0.0746,8.6623000000000001,0.19058,4.9489999999999998,5.9480000000000004,7.1689999999999996,8.6620000000000008,10.494999999999999,12.752000000000001,15.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,257,-0.074999999999999997,8.6560000000000006,0.19064999999999999,4.944,5.944,7.1630000000000003,8.6560000000000006,10.488,12.744999999999999,15.531000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,258,-0.075300000000000006,8.6495999999999995,0.19072,4.9400000000000004,5.9379999999999997,7.157,8.65,10.481999999999999,12.737,15.523999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,259,-0.075600000000000001,8.6433,0.19078000000000001,4.9359999999999999,5.9340000000000002,7.1520000000000001,8.6430000000000007,10.475,12.73,15.516 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,260,-0.075999999999999998,8.6370000000000005,0.19084999999999999,4.931,5.9290000000000003,7.1459999999999999,8.6370000000000005,10.468,12.723000000000001,15.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,261,-0.076300000000000007,8.6308000000000007,0.19091,4.9269999999999996,5.9240000000000004,7.141,8.6310000000000002,10.461,12.715999999999999,15.502000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,262,-0.076700000000000004,8.6244999999999994,0.19097,4.923,5.9189999999999996,7.1349999999999998,8.6240000000000006,10.454000000000001,12.708,15.494999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,263,-0.076999999999999999,8.6182999999999996,0.19103000000000001,4.9189999999999996,5.9139999999999997,7.13,8.6180000000000003,10.446999999999999,12.701000000000001,15.487 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,264,-0.077299999999999994,8.6120999999999999,0.19109999999999999,4.915,5.9089999999999998,7.1239999999999997,8.6120000000000001,10.441000000000001,12.694000000000001,15.48 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,265,-0.077700000000000005,8.6059999999999999,0.19116,4.9109999999999996,5.9039999999999999,7.1189999999999998,8.6059999999999999,10.433999999999999,12.686999999999999,15.473000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,266,-0.078,8.5998000000000001,0.19122,4.9059999999999997,5.9,7.1130000000000004,8.6,10.427,12.68,15.465999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,267,-0.078299999999999995,8.5937000000000001,0.19128000000000001,4.9020000000000001,5.8949999999999996,7.1079999999999997,8.5939999999999994,10.42,12.673,15.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,268,-0.078600000000000003,8.5876000000000001,0.19133,4.8979999999999997,5.89,7.1020000000000003,8.5879999999999992,10.413,12.664999999999999,15.451000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,269,-0.079000000000000001,8.5815000000000001,0.19139,4.8940000000000001,5.8860000000000001,7.0970000000000004,8.5820000000000007,10.407,12.657999999999999,15.444000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,270,-0.079299999999999995,8.5754000000000001,0.19145000000000001,4.8899999999999997,5.8810000000000002,7.0910000000000002,8.5749999999999993,10.4,12.651,15.436999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,271,-0.079600000000000004,8.5693999999999999,0.1915,4.8860000000000001,5.8760000000000003,7.0860000000000003,8.5690000000000008,10.393000000000001,12.644,15.429 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,272,-0.08,8.5633999999999997,0.19156000000000001,4.8819999999999997,5.8719999999999999,7.0810000000000004,8.5630000000000006,10.387,12.637,15.422000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,273,-0.080299999999999996,8.5573999999999995,0.19161,4.8789999999999996,5.867,7.0759999999999996,8.5570000000000004,10.38,12.63,15.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,274,-0.080600000000000005,8.5513999999999992,0.19167000000000001,4.8739999999999997,5.8620000000000001,7.07,8.5510000000000002,10.374000000000001,12.622999999999999,15.407999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,275,-0.0809,8.5454000000000008,0.19172,4.8710000000000004,5.8579999999999997,7.0650000000000004,8.5449999999999999,10.367000000000001,12.615,15.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,276,-0.081299999999999997,8.5395000000000003,0.19177,4.867,5.8529999999999998,7.06,8.5399999999999991,10.36,12.608000000000001,15.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,277,-0.081600000000000006,8.5335999999999999,0.19183,4.8630000000000004,5.8490000000000002,7.0549999999999997,8.5340000000000007,10.353999999999999,12.601000000000001,15.385999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,278,-0.081900000000000001,8.5276999999999994,0.19188,4.859,5.8440000000000003,7.0490000000000004,8.5280000000000005,10.347,12.593999999999999,15.379 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,279,-0.082199999999999995,8.5219000000000005,0.19192999999999999,4.8550000000000004,5.84,7.0439999999999996,8.5220000000000002,10.340999999999999,12.587,15.371 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,280,-0.082500000000000004,8.5160999999999998,0.19198000000000001,4.851,5.835,7.0389999999999997,8.516,10.334,12.58,15.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,281,-0.082900000000000001,8.5103000000000009,0.19203000000000001,4.8479999999999999,5.8310000000000004,7.0339999999999998,8.51,10.327999999999999,12.573,15.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,282,-0.083199999999999996,8.5045000000000002,0.19206999999999999,4.8440000000000003,5.827,7.0289999999999999,8.5039999999999996,10.321,12.566000000000001,15.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,283,-0.083500000000000005,8.4986999999999995,0.19212000000000001,4.84,5.8220000000000001,7.024,8.4990000000000006,10.315,12.558999999999999,15.342000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,284,-0.083799999999999999,8.4930000000000003,0.19217000000000001,4.8369999999999997,5.8179999999999996,7.0190000000000001,8.4930000000000003,10.308999999999999,12.552,15.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,285,-0.084099999999999994,8.4872999999999994,0.19222,4.8330000000000002,5.8140000000000001,7.0140000000000002,8.4870000000000001,10.302,12.545999999999999,15.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,286,-0.084500000000000006,8.4816000000000003,0.19225999999999999,4.8289999999999997,5.8090000000000002,7.0090000000000003,8.4819999999999993,10.295999999999999,12.539,15.321 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,287,-0.0848,8.4758999999999993,0.19231000000000001,4.8259999999999996,5.8049999999999997,7.0039999999999996,8.4760000000000009,10.289,12.532,15.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,288,-0.085099999999999995,8.4702999999999999,0.19234999999999999,4.8220000000000001,5.8010000000000002,6.9989999999999997,8.4700000000000006,10.282999999999999,12.525,15.305999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,289,-0.085400000000000004,8.4646000000000008,0.19239999999999999,4.819,5.7969999999999997,6.9939999999999998,8.4649999999999999,10.276999999999999,12.518000000000001,15.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,290,-0.085699999999999998,8.4590999999999994,0.19244,4.8150000000000004,5.7930000000000001,6.9889999999999999,8.4589999999999996,10.271000000000001,12.510999999999999,15.292 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,291,-0.085999999999999993,8.4535,0.19248000000000001,4.8120000000000003,5.7880000000000003,6.984,8.4540000000000006,10.263999999999999,12.504,15.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,292,-0.086300000000000002,8.4479000000000006,0.19253000000000001,4.8079999999999998,5.7839999999999998,6.9790000000000001,8.4480000000000004,10.257999999999999,12.497,15.278 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,293,-0.086599999999999996,8.4423999999999992,0.19256999999999999,4.8040000000000003,5.78,6.9749999999999996,8.4420000000000002,10.252000000000001,12.491,15.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,294,-0.086999999999999994,8.4368999999999996,0.19261,4.8010000000000002,5.7759999999999998,6.97,8.4369999999999994,10.246,12.484,15.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,295,-0.087300000000000003,8.4314,0.19264999999999999,4.798,5.7720000000000002,6.9649999999999999,8.4309999999999992,10.239000000000001,12.477,15.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,296,-0.087599999999999997,8.4260000000000002,0.19269,4.7939999999999996,5.7679999999999998,6.96,8.4260000000000002,10.233000000000001,12.47,15.249000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,297,-0.087900000000000006,8.4205000000000005,0.19273000000000001,4.7910000000000004,5.7640000000000002,6.9560000000000004,8.42,10.227,12.464,15.242000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,298,-0.088200000000000001,8.4151000000000007,0.19277,4.7869999999999999,5.76,6.9509999999999996,8.4149999999999991,10.221,12.457000000000001,15.234999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,299,-0.088499999999999995,8.4098000000000006,0.19281000000000001,4.7839999999999998,5.7560000000000002,6.9459999999999997,8.41,10.215,12.45,15.228 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,300,-0.088800000000000004,8.4044000000000008,0.19284000000000001,4.7809999999999997,5.7519999999999998,6.9420000000000002,8.4039999999999999,10.209,12.443,15.221 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,301,-0.089099999999999999,8.3991000000000007,0.19288,4.7770000000000001,5.7480000000000002,6.9370000000000003,8.3989999999999991,10.202999999999999,12.436999999999999,15.214 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,302,-0.089399999999999993,8.3937000000000008,0.19292000000000001,4.774,5.7439999999999998,6.9320000000000004,8.3940000000000001,10.196999999999999,12.43,15.207000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,303,-0.089700000000000002,8.3885000000000005,0.19295999999999999,4.7709999999999999,5.74,6.9279999999999999,8.3879999999999999,10.191000000000001,12.423999999999999,15.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,304,-0.09,8.3832000000000004,0.19298999999999999,4.7679999999999998,5.7359999999999998,6.923,8.3829999999999991,10.185,12.417,15.193 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,305,-0.090300000000000005,8.3779000000000003,0.19303000000000001,4.7640000000000002,5.7320000000000002,6.9189999999999996,8.3780000000000001,10.179,12.411,15.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,306,-0.0906,8.3727,0.19306000000000001,4.7610000000000001,5.7290000000000001,6.9139999999999997,8.3729999999999993,10.173,12.404,15.179 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,307,-0.090899999999999995,8.3674999999999997,0.19309999999999999,4.758,5.7249999999999996,6.91,8.3680000000000003,10.167,12.398,15.172000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,308,-0.091200000000000003,8.3623999999999992,0.19313,4.7549999999999999,5.7210000000000001,6.9050000000000002,8.3620000000000001,10.161,12.391,15.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,309,-0.091499999999999998,8.3572000000000006,0.19316,4.7519999999999998,5.7169999999999996,6.9009999999999998,8.3569999999999993,10.154999999999999,12.384,15.157999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,310,-0.091800000000000007,8.3521000000000001,0.19320000000000001,4.7480000000000002,5.7130000000000001,6.8959999999999999,8.3520000000000003,10.15,12.378,15.151999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,311,-0.092100000000000001,8.3469999999999995,0.19323000000000001,4.7450000000000001,5.71,6.8920000000000003,8.3469999999999995,10.144,12.372,15.145 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,312,-0.092399999999999996,8.3419000000000008,0.19325999999999999,4.742,5.7060000000000004,6.8879999999999999,8.3420000000000005,10.138,12.365,15.138 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,313,-0.092700000000000005,8.3368000000000002,0.19328999999999999,4.7389999999999999,5.702,6.883,8.3369999999999997,10.132,12.359,15.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,314,-0.092999999999999999,8.3317999999999994,0.19331999999999999,4.7359999999999998,5.6989999999999998,6.8789999999999996,8.3320000000000007,10.127000000000001,12.352,15.124000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,315,-0.093299999999999994,8.3268000000000004,0.19336,4.7329999999999997,5.6950000000000003,6.875,8.327,10.121,12.346,15.117000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,316,-0.093600000000000003,8.3217999999999996,0.19339000000000001,4.7300000000000004,5.6909999999999998,6.87,8.3219999999999992,10.115,12.34,15.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,317,-0.093899999999999997,8.3169000000000004,0.19342000000000001,4.7270000000000003,5.6879999999999997,6.8659999999999997,8.3170000000000002,10.11,12.334,15.103999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,318,-0.094200000000000006,8.3118999999999996,0.19345000000000001,4.7240000000000002,5.6840000000000002,6.8620000000000001,8.3119999999999994,10.103999999999999,12.327,15.097 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,319,-0.094500000000000001,8.3070000000000004,0.19347,4.7210000000000001,5.681,6.8579999999999997,8.3070000000000004,10.098000000000001,12.321,15.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,320,-0.094799999999999995,8.3020999999999994,0.19350000000000001,4.718,5.6769999999999996,6.8540000000000001,8.3019999999999996,10.093,12.315,15.083 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,321,-0.095100000000000004,8.2972000000000001,0.19353000000000001,4.7149999999999999,5.6740000000000004,6.8490000000000002,8.2970000000000006,10.087,12.308,15.077 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,322,-0.095299999999999996,8.2924000000000007,0.19356000000000001,4.7119999999999997,5.67,6.8449999999999998,8.2919999999999998,10.082000000000001,12.302,15.07 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,323,-0.095600000000000004,8.2875999999999994,0.19359000000000001,4.7089999999999996,5.6669999999999998,6.8410000000000002,8.2880000000000003,10.076000000000001,12.295999999999999,15.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,324,-0.095899999999999999,8.2827999999999999,0.19361,4.7069999999999999,5.6630000000000003,6.8369999999999997,8.2829999999999995,10.071,12.29,15.057 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,325,-0.096199999999999994,8.2780000000000005,0.19364000000000001,4.7039999999999997,5.66,6.8330000000000002,8.2780000000000005,10.065,12.284000000000001,15.05 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,326,-0.096500000000000002,8.2731999999999992,0.19367000000000001,4.7009999999999996,5.6559999999999997,6.8289999999999997,8.2729999999999997,10.06,12.278,15.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,327,-0.096799999999999997,8.2684999999999995,0.19370000000000001,4.6980000000000004,5.6529999999999996,6.8250000000000002,8.2680000000000007,10.054,12.272,15.037000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,328,-0.097100000000000006,8.2637999999999998,0.19372,4.6950000000000003,5.649,6.8209999999999997,8.2639999999999993,10.048999999999999,12.266,15.031000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,329,-0.0974,8.2591000000000001,0.19375000000000001,4.6920000000000002,5.6459999999999999,6.8170000000000002,8.2590000000000003,10.042999999999999,12.26,15.023999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,330,-0.097600000000000006,8.2544000000000004,0.19377,4.6900000000000004,5.6429999999999998,6.8129999999999997,8.2539999999999996,10.038,12.253,15.016999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,331,-0.097900000000000001,8.2498000000000005,0.1938,4.6870000000000003,5.6390000000000002,6.8090000000000002,8.25,10.032999999999999,12.247999999999999,15.010999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,332,-0.098199999999999996,8.2452000000000005,0.19381999999999999,4.6840000000000002,5.6360000000000001,6.8049999999999997,8.2449999999999992,10.026999999999999,12.242000000000001,15.005000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,333,-0.098500000000000004,8.2406000000000006,0.19384999999999999,4.681,5.633,6.8010000000000002,8.2409999999999997,10.022,12.236000000000001,14.997999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,334,-0.098799999999999999,8.2360000000000007,0.19386999999999999,4.6790000000000003,5.6289999999999996,6.7969999999999997,8.2360000000000007,10.016999999999999,12.23,14.992000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,335,-0.099099999999999994,8.2314000000000007,0.19389999999999999,4.6760000000000002,5.6260000000000003,6.7930000000000001,8.2309999999999999,10.012,12.224,14.986000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,336,-0.099299999999999999,8.2269000000000005,0.19392000000000001,4.673,5.6230000000000002,6.7889999999999997,8.2270000000000003,10.006,12.218,14.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,337,-0.099599999999999994,8.2224000000000004,0.19394,4.6710000000000003,5.62,6.7850000000000001,8.2219999999999995,10.000999999999999,12.212,14.973000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,338,-0.099900000000000003,8.2179000000000002,0.19397,4.6680000000000001,5.6159999999999997,6.782,8.218,9.9960000000000004,12.207000000000001,14.967000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,339,-0.1002,8.2134999999999998,0.19399,4.665,5.6130000000000004,6.7779999999999996,8.2140000000000004,9.9909999999999997,12.201000000000001,14.96 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,340,-0.10050000000000001,8.2089999999999996,0.19400999999999999,4.6630000000000003,5.61,6.774,8.2089999999999996,9.9860000000000007,12.195,14.954000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,341,-0.1007,8.2045999999999992,0.19403000000000001,4.66,5.6070000000000002,6.77,8.2050000000000001,9.9809999999999999,12.189,14.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,342,-0.10100000000000001,8.2002000000000006,0.19406000000000001,4.657,5.6040000000000001,6.766,8.1999999999999993,9.9760000000000009,12.183999999999999,14.942 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,343,-0.1013,8.1958000000000002,0.19408,4.6550000000000002,5.601,6.7629999999999999,8.1959999999999997,9.9710000000000001,12.178000000000001,14.935 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,344,-0.1016,8.1913999999999998,0.19409999999999999,4.6520000000000001,5.5979999999999999,6.7590000000000003,8.1910000000000007,9.9649999999999999,12.172000000000001,14.929 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,345,-0.1019,8.1870999999999992,0.19411999999999999,4.6500000000000004,5.5949999999999998,6.7549999999999999,8.1869999999999994,9.9600000000000009,12.167,14.923 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,346,-0.1021,8.1828000000000003,0.19414000000000001,4.6470000000000002,5.5919999999999996,6.7519999999999998,8.1829999999999998,9.9550000000000001,12.161,14.917 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,347,-0.1024,8.1784999999999997,0.19416,4.6449999999999996,5.5880000000000001,6.7480000000000002,8.1780000000000008,9.9510000000000005,12.154999999999999,14.911 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,348,-0.1027,8.1742000000000008,0.19419,4.6420000000000003,5.585,6.7439999999999998,8.1739999999999995,9.9459999999999997,12.15,14.904999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,349,-0.10299999999999999,8.17,0.19420999999999999,4.6399999999999997,5.5819999999999999,6.7409999999999997,8.17,9.9410000000000007,12.144,14.898999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,350,-0.1032,8.1658000000000008,0.19423000000000001,4.6369999999999996,5.5789999999999997,6.7370000000000001,8.1660000000000004,9.9359999999999999,12.138999999999999,14.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,351,-0.10349999999999999,8.1616,0.19425000000000001,4.6349999999999998,5.5759999999999996,6.734,8.1620000000000008,9.9309999999999992,12.132999999999999,14.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,352,-0.1038,8.1574000000000009,0.19427,4.6319999999999997,5.5730000000000004,6.73,8.157,9.9260000000000002,12.128,14.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,353,-0.1041,8.1532,0.19428999999999999,4.63,5.57,6.7270000000000003,8.1530000000000005,9.9209999999999994,12.122999999999999,14.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,354,-0.1043,8.1491000000000007,0.19431000000000001,4.6269999999999998,5.5679999999999996,6.7229999999999999,8.1489999999999991,9.9169999999999998,12.117000000000001,14.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,355,-0.1046,8.1449999999999996,0.19433,4.625,5.5650000000000004,6.72,8.1449999999999996,9.9120000000000008,12.112,14.864000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,356,-0.10489999999999999,8.1409000000000002,0.19434999999999999,4.6230000000000002,5.5620000000000003,6.7160000000000002,8.141,9.907,12.106999999999999,14.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,357,-0.1051,8.1367999999999991,0.19436999999999999,4.62,5.5590000000000002,6.7130000000000001,8.1370000000000005,9.9019999999999992,12.101000000000001,14.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,358,-0.10539999999999999,8.1327999999999996,0.19439000000000001,4.6180000000000003,5.556,6.7089999999999996,8.1329999999999991,9.8979999999999997,12.096,14.847 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,359,-0.1057,8.1287000000000003,0.19441,4.6159999999999997,5.5529999999999999,6.7060000000000004,8.1289999999999996,9.8930000000000007,12.090999999999999,14.840999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,360,-0.10589999999999999,8.1247000000000007,0.19442999999999999,4.6130000000000004,5.55,6.702,8.125,9.8879999999999999,12.085000000000001,14.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,361,-0.1062,8.1207999999999991,0.19445000000000001,4.6109999999999998,5.5469999999999997,6.6989999999999998,8.1210000000000004,9.8840000000000003,12.08,14.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,362,-0.1065,8.1167999999999996,0.19447,4.609,5.5449999999999999,6.6959999999999997,8.1170000000000009,9.8789999999999996,12.074999999999999,14.824 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,363,-0.1067,8.1128,0.19447999999999999,4.6059999999999999,5.5419999999999998,6.6920000000000002,8.1129999999999995,9.875,12.07,14.818 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,364,-0.107,8.1089000000000002,0.19450000000000001,4.6040000000000001,5.5389999999999997,6.6890000000000001,8.109,9.8699999999999992,12.065,14.813000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,365,-0.10730000000000001,8.1050000000000004,0.19452,4.6020000000000003,5.5359999999999996,6.6859999999999999,8.1050000000000004,9.8659999999999997,12.06,14.807 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,366,-0.1075,8.1012000000000004,0.19453999999999999,4.5999999999999996,5.5339999999999998,6.6820000000000004,8.1010000000000009,9.8610000000000007,12.055,14.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,367,-0.10780000000000001,8.0973000000000006,0.19456000000000001,4.5970000000000004,5.5309999999999997,6.6790000000000003,8.0969999999999995,9.8569999999999993,12.05,14.795999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,368,-0.1081,8.0935000000000006,0.19458,4.5949999999999998,5.5279999999999996,6.6760000000000002,8.0939999999999994,9.8520000000000003,12.045,14.791 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,369,-0.10829999999999999,8.0897000000000006,0.1946,4.593,5.5250000000000004,6.673,8.09,9.8480000000000008,12.04,14.786 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,370,-0.1086,8.0859000000000005,0.19461000000000001,4.5910000000000002,5.5229999999999997,6.6689999999999996,8.0860000000000003,9.8439999999999994,12.035,14.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,371,-0.1089,8.0821000000000005,0.19463,4.5890000000000004,5.52,6.6660000000000004,8.0820000000000007,9.8390000000000004,12.03,14.775 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,372,-0.1091,8.0784000000000002,0.19464999999999999,4.5860000000000003,5.5179999999999998,6.6630000000000003,8.0779999999999994,9.8350000000000009,12.025,14.77 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,373,-0.1094,8.0746000000000002,0.19467000000000001,4.5839999999999996,5.5149999999999997,6.66,8.0749999999999993,9.8309999999999995,12.02,14.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,374,-0.10970000000000001,8.0709,0.19469,4.5819999999999999,5.5119999999999996,6.657,8.0709999999999997,9.8260000000000005,12.016,14.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,375,-0.1099,8.0672999999999995,0.19470999999999999,4.58,5.51,6.6539999999999999,8.0670000000000002,9.8219999999999992,12.010999999999999,14.754 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,376,-0.11020000000000001,8.0635999999999992,0.19472,4.5780000000000003,5.5069999999999997,6.6509999999999998,8.0640000000000001,9.8179999999999996,12.006,14.749000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,377,-0.1104,8.06,0.19474,4.5759999999999996,5.5049999999999999,6.6470000000000002,8.06,9.8140000000000001,12.000999999999999,14.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,378,-0.11070000000000001,8.0564,0.19475999999999999,4.5739999999999998,5.5019999999999998,6.6440000000000001,8.0559999999999992,9.81,11.997,14.739000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,379,-0.111,8.0527999999999995,0.19478000000000001,4.5720000000000001,5.4989999999999997,6.641,8.0530000000000008,9.8049999999999997,11.992000000000001,14.734 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,380,-0.11119999999999999,8.0492000000000008,0.19478999999999999,4.57,5.4969999999999999,6.6379999999999999,8.0489999999999995,9.8010000000000002,11.987,14.728999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,381,-0.1115,8.0456000000000003,0.19481000000000001,4.5670000000000002,5.4939999999999998,6.6349999999999998,8.0459999999999994,9.7970000000000006,11.983000000000001,14.724 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,382,-0.11169999999999999,8.0420999999999996,0.19483,4.5650000000000004,5.492,6.6319999999999997,8.0419999999999998,9.7929999999999993,11.978,14.718999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,383,-0.112,8.0386000000000006,0.19485,4.5629999999999997,5.4889999999999999,6.6289999999999996,8.0389999999999997,9.7889999999999997,11.974,14.714 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,384,-0.11219999999999999,8.0350999999999999,0.19486000000000001,4.5609999999999999,5.4870000000000001,6.6260000000000003,8.0350000000000001,9.7850000000000001,11.968999999999999,14.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,385,-0.1125,8.0315999999999992,0.19488,4.5590000000000002,5.4850000000000003,6.6230000000000002,8.032,9.7810000000000006,11.965,14.704000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,386,-0.1128,8.0282,0.19489999999999999,4.5570000000000004,5.4820000000000002,6.6210000000000004,8.0280000000000005,9.7769999999999992,11.96,14.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,387,-0.113,8.0248000000000008,0.19492000000000001,4.5549999999999997,5.48,6.6180000000000003,8.0250000000000004,9.7729999999999997,11.956,14.695 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,388,-0.1133,8.0213000000000001,0.19492999999999999,4.5529999999999999,5.4770000000000003,6.6150000000000002,8.0210000000000008,9.7690000000000001,11.951000000000001,14.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,389,-0.1135,8.0180000000000007,0.19495000000000001,4.5510000000000002,5.4749999999999996,6.6120000000000001,8.0180000000000007,9.7650000000000006,11.946999999999999,14.685 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,390,-0.1138,8.0145999999999997,0.19497,4.5490000000000004,5.4720000000000004,6.609,8.0150000000000006,9.7609999999999992,11.943,14.680999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,391,-0.114,8.0113000000000003,0.19497999999999999,4.548,5.47,6.6059999999999999,8.0109999999999992,9.7569999999999997,11.938000000000001,14.676 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,392,-0.1143,8.0078999999999994,0.19500000000000001,4.5460000000000003,5.468,6.6029999999999998,8.0079999999999991,9.7539999999999996,11.933999999999999,14.670999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,393,-0.1145,8.0045999999999999,0.19502,4.5439999999999996,5.4649999999999999,6.6,8.0050000000000008,9.75,11.93,14.667 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,394,-0.1148,8.0013000000000005,0.19503999999999999,4.5419999999999998,5.4630000000000001,6.5979999999999999,8.0009999999999994,9.7460000000000004,11.926,14.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,395,-0.115,7.9981,0.19505,4.54,5.4610000000000003,6.5949999999999998,7.9980000000000002,9.7420000000000009,11.920999999999999,14.657999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,396,-0.1153,7.9947999999999997,0.19506999999999999,4.5380000000000003,5.4580000000000002,6.5919999999999996,7.9950000000000001,9.7390000000000008,11.917,14.654 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,397,-0.11550000000000001,7.9916,0.19509000000000001,4.5359999999999996,5.4560000000000004,6.5890000000000004,7.992,9.7349999999999994,11.913,14.648999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,398,-0.1158,7.9884000000000004,0.1951,4.5339999999999998,5.4539999999999997,6.5869999999999997,7.9880000000000004,9.7309999999999999,11.909000000000001,14.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,399,-0.11600000000000001,7.9851999999999999,0.19511999999999999,4.532,5.452,6.5839999999999996,7.9850000000000003,9.7270000000000003,11.904999999999999,14.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,400,-0.1163,7.9821,0.19514000000000001,4.5309999999999997,5.4489999999999998,6.5810000000000004,7.9820000000000002,9.7240000000000002,11.901,14.635999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,401,-0.11650000000000001,7.9789000000000003,0.19514999999999999,4.5289999999999999,5.4470000000000001,6.5789999999999997,7.9790000000000001,9.7200000000000006,11.897,14.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,402,-0.1168,7.9757999999999996,0.19517000000000001,4.5270000000000001,5.4450000000000003,6.5759999999999996,7.976,9.7170000000000005,11.893000000000001,14.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,403,-0.11700000000000001,7.9726999999999997,0.19519,4.5250000000000004,5.4429999999999996,6.5730000000000004,7.9729999999999999,9.7129999999999992,11.888999999999999,14.622999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,404,-0.1173,7.9695999999999998,0.19520999999999999,4.5229999999999997,5.4409999999999998,6.5709999999999997,7.97,9.7100000000000009,11.885,14.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,405,-0.11749999999999999,7.9665999999999997,0.19522,4.5220000000000002,5.4390000000000001,6.5679999999999996,7.9669999999999996,9.7059999999999995,11.881,14.615 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,406,-0.1178,7.9634999999999998,0.19524,4.5199999999999996,5.4359999999999999,6.5659999999999998,7.9640000000000004,9.7029999999999994,11.877000000000001,14.611000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,407,-0.11799999999999999,7.9604999999999997,0.19525999999999999,4.5179999999999998,5.4340000000000002,6.5629999999999997,7.96,9.6989999999999998,11.872999999999999,14.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,408,-0.1183,7.9574999999999996,0.19527,4.516,5.4320000000000004,6.56,7.9580000000000002,9.6959999999999997,11.869,14.603 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,409,-0.11849999999999999,7.9545000000000003,0.19528999999999999,4.5149999999999997,5.43,6.5579999999999998,7.9539999999999997,9.6920000000000002,11.866,14.599 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,410,-0.1188,7.9515000000000002,0.19531000000000001,4.5129999999999999,5.4279999999999999,6.5549999999999997,7.952,9.6890000000000001,11.862,14.595000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,411,-0.11899999999999999,7.9485999999999999,0.19531999999999999,4.5110000000000001,5.4260000000000002,6.5529999999999999,7.9489999999999998,9.6850000000000005,11.858000000000001,14.590999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,412,-0.1193,7.9457000000000004,0.19534000000000001,4.51,5.4240000000000004,6.55,7.9459999999999997,9.6820000000000004,11.855,14.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,413,-0.1195,7.9428000000000001,0.19536000000000001,4.508,5.4219999999999997,6.548,7.9429999999999996,9.6790000000000003,11.851000000000001,14.583 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,414,-0.1197,7.9398999999999997,0.19536999999999999,4.5060000000000002,5.42,6.5460000000000003,7.94,9.6750000000000007,11.847,14.579000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,415,-0.12,7.9370000000000003,0.19539000000000001,4.5039999999999996,5.4180000000000001,6.5430000000000001,7.9370000000000003,9.6720000000000006,11.843,14.574999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,416,-0.1202,7.9341999999999997,0.19541,4.5030000000000001,5.415,6.5410000000000004,7.9340000000000002,9.6690000000000005,11.84,14.571999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,417,-0.1205,7.9314,0.19542000000000001,4.5010000000000003,5.4139999999999997,6.5380000000000003,7.931,9.6660000000000004,11.836,14.568 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,418,-0.1207,7.9284999999999997,0.19544,4.4989999999999997,5.4109999999999996,6.5359999999999996,7.9279999999999999,9.6620000000000008,11.833,14.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,419,-0.121,7.9257999999999997,0.19545999999999999,4.4980000000000002,5.41,6.5330000000000004,7.9260000000000002,9.6590000000000007,11.829000000000001,14.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,420,-0.1212,7.923,0.19547,4.4960000000000004,5.4080000000000004,6.5309999999999997,7.923,9.6560000000000006,11.826000000000001,14.557 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,421,-0.12139999999999999,7.9202000000000004,0.19549,4.4950000000000001,5.4059999999999997,6.5289999999999999,7.92,9.6530000000000005,11.821999999999999,14.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,422,-0.1217,7.9175000000000004,0.19550999999999999,4.4930000000000003,5.4039999999999999,6.5259999999999998,7.9180000000000001,9.65,11.819000000000001,14.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,423,-0.12189999999999999,7.9147999999999996,0.19553000000000001,4.4909999999999997,5.4020000000000001,6.524,7.915,9.6470000000000002,11.816000000000001,14.547000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,424,-0.1222,7.9120999999999997,0.19553999999999999,4.49,5.4,6.5220000000000002,7.9119999999999999,9.6440000000000001,11.811999999999999,14.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,425,-0.12239999999999999,7.9093999999999998,0.19556000000000001,4.4880000000000004,5.3979999999999997,6.5190000000000001,7.9089999999999998,9.641,11.808999999999999,14.539 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,426,-0.1226,7.9067999999999996,0.19558,4.4870000000000001,5.3959999999999999,6.5170000000000003,7.907,9.6379999999999999,11.805999999999999,14.536 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,427,-0.1229,7.9040999999999997,0.19559000000000001,4.4850000000000003,5.3940000000000001,6.5149999999999997,7.9039999999999999,9.6349999999999998,11.802,14.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,428,-0.1231,7.9015000000000004,0.19561000000000001,4.484,5.3920000000000003,6.5129999999999999,7.9020000000000001,9.6319999999999997,11.798999999999999,14.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,429,-0.12330000000000001,7.8989000000000003,0.19563,4.4820000000000002,5.39,6.51,7.899,9.6289999999999996,11.795999999999999,14.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,430,-0.1236,7.8963999999999999,0.19564999999999999,4.4809999999999999,5.3890000000000002,6.508,7.8959999999999999,9.6259999999999994,11.792999999999999,14.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,431,-0.12379999999999999,7.8937999999999997,0.19566,4.4790000000000001,5.3869999999999996,6.5060000000000002,7.8940000000000001,9.6229999999999993,11.789,14.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,432,-0.1241,7.8913000000000002,0.19567999999999999,4.4779999999999998,5.3849999999999998,6.5039999999999996,7.891,9.6199999999999992,11.786,14.516 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,433,-0.12429999999999999,7.8887,0.19570000000000001,4.476,5.383,6.5019999999999998,7.8890000000000002,9.6170000000000009,11.782999999999999,14.513 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,434,-0.1245,7.8861999999999997,0.19571,4.4749999999999996,5.3810000000000002,6.5,7.8860000000000001,9.6140000000000008,11.78,14.51 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,435,-0.12479999999999999,7.8837000000000002,0.19572999999999999,4.4729999999999999,5.38,6.4980000000000002,7.8840000000000003,9.6110000000000007,11.776999999999999,14.507 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,436,-0.125,7.8813000000000004,0.19575000000000001,4.4720000000000004,5.3780000000000001,6.4950000000000001,7.8810000000000002,9.609,11.773999999999999,14.504 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,437,-0.12520000000000001,7.8788,0.19577,4.47,5.3760000000000003,6.4930000000000003,7.8789999999999996,9.6059999999999999,11.771000000000001,14.500999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,438,-0.1255,7.8764000000000003,0.19578000000000001,4.4690000000000003,5.3739999999999997,6.4909999999999997,7.8760000000000003,9.6029999999999998,11.768000000000001,14.497999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,439,-0.12570000000000001,7.8739999999999997,0.1958,4.468,5.3730000000000002,6.4889999999999999,7.8739999999999997,9.6010000000000009,11.765000000000001,14.494999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,440,-0.12590000000000001,7.8715999999999999,0.19581999999999999,4.4660000000000002,5.3710000000000004,6.4870000000000001,7.8719999999999999,9.5980000000000008,11.762,14.492000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,441,-0.12620000000000001,7.8692000000000002,0.19583999999999999,4.4649999999999999,5.3689999999999998,6.4850000000000003,7.8689999999999998,9.5950000000000006,11.759,14.489000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,442,-0.12640000000000001,7.8669000000000002,0.19585,4.4630000000000001,5.367,6.4829999999999997,7.867,9.5920000000000005,11.756,14.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,443,-0.12659999999999999,7.8644999999999996,0.19586999999999999,4.4619999999999997,5.3659999999999997,6.4809999999999999,7.8639999999999999,9.59,11.753,14.483000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,444,-0.12690000000000001,7.8621999999999996,0.19589000000000001,4.4610000000000003,5.3639999999999999,6.4790000000000001,7.8620000000000001,9.5869999999999997,11.750999999999999,14.481 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,445,-0.12709999999999999,7.8598999999999997,0.19591,4.4589999999999996,5.3620000000000001,6.4770000000000003,7.86,9.5850000000000009,11.747999999999999,14.478 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,446,-0.1273,7.8575999999999997,0.19592999999999999,4.4580000000000002,5.3609999999999998,6.4749999999999996,7.8579999999999997,9.5820000000000007,11.744999999999999,14.475 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,447,-0.12759999999999999,7.8552999999999997,0.19594,4.4569999999999999,5.359,6.4729999999999999,7.8550000000000004,9.5790000000000006,11.742000000000001,14.472 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,448,-0.1278,7.8531000000000004,0.19596,4.4550000000000001,5.3570000000000002,6.4710000000000001,7.8529999999999998,9.577,11.74,14.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,449,-0.128,7.8507999999999996,0.19597999999999999,4.4539999999999997,5.3559999999999999,6.4690000000000003,7.851,9.5739999999999998,11.737,14.467000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,450,-0.12820000000000001,7.8486000000000002,0.19600000000000001,4.452,5.3540000000000001,6.4669999999999996,7.8490000000000002,9.5719999999999992,11.734,14.464 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,451,-0.1285,7.8464,0.19602,4.4509999999999996,5.3529999999999998,6.4649999999999999,7.8460000000000001,9.57,11.731999999999999,14.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,452,-0.12870000000000001,7.8441999999999998,0.19603000000000001,4.45,5.351,6.4640000000000004,7.8440000000000003,9.5670000000000002,11.728999999999999,14.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,453,-0.12889999999999999,7.8421000000000003,0.19605,4.4489999999999998,5.3490000000000002,6.4619999999999997,7.8419999999999996,9.5649999999999995,11.727,14.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,454,-0.12920000000000001,7.8399000000000001,0.19606999999999999,4.4470000000000001,5.3479999999999999,6.46,7.84,9.5619999999999994,11.724,14.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,455,-0.12939999999999999,7.8377999999999997,0.19608999999999999,4.4459999999999997,5.3460000000000001,6.4580000000000002,7.8380000000000001,9.56,11.722,14.452 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,456,-0.12959999999999999,7.8357000000000001,0.19611000000000001,4.4450000000000003,5.3449999999999998,6.4560000000000004,7.8360000000000003,9.5579999999999998,11.718999999999999,14.449 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,457,-0.1298,7.8335999999999997,0.19611999999999999,4.444,5.343,6.4539999999999997,7.8339999999999996,9.5549999999999997,11.717000000000001,14.446999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,458,-0.13009999999999999,7.8315000000000001,0.19614000000000001,4.4420000000000002,5.3419999999999996,6.4530000000000003,7.8319999999999999,9.5530000000000008,11.714,14.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,459,-0.1303,7.8293999999999997,0.19616,4.4409999999999998,5.34,6.4509999999999996,7.8289999999999997,9.5510000000000002,11.712,14.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,460,-0.1305,7.8273999999999999,0.19617999999999999,4.4400000000000004,5.3390000000000004,6.4489999999999998,7.827,9.548,11.709,14.44 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,461,-0.1308,7.8254000000000001,0.19620000000000001,4.4390000000000001,5.3369999999999997,6.4470000000000001,7.8250000000000002,9.5459999999999994,11.707000000000001,14.438000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,462,-0.13100000000000001,7.8232999999999997,0.19621,4.4370000000000003,5.3360000000000003,6.4450000000000003,7.8230000000000004,9.5440000000000005,11.704000000000001,14.435 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,463,-0.13120000000000001,7.8212999999999999,0.19622999999999999,4.4359999999999999,5.3339999999999996,6.444,7.8209999999999997,9.5419999999999998,11.702,14.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,464,-0.13139999999999999,7.8193999999999999,0.19625000000000001,4.4349999999999996,5.3330000000000002,6.4420000000000002,7.819,9.5389999999999997,11.7,14.430999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,465,-0.13170000000000001,7.8174000000000001,0.19627,4.4340000000000002,5.3310000000000004,6.44,7.8170000000000002,9.5370000000000008,11.698,14.429 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,466,-0.13189999999999999,7.8154000000000003,0.19628999999999999,4.4329999999999998,5.33,6.4390000000000001,7.8150000000000004,9.5350000000000001,11.696,14.427 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,467,-0.1321,7.8135000000000003,0.19631000000000001,4.431,5.3289999999999997,6.4370000000000003,7.8140000000000001,9.5329999999999995,11.693,14.425000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,468,-0.1323,7.8116000000000003,0.19631999999999999,4.43,5.327,6.4349999999999996,7.8120000000000003,9.5310000000000006,11.691000000000001,14.422000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,469,-0.13250000000000001,7.8097000000000003,0.19633999999999999,4.4290000000000003,5.3259999999999996,6.4340000000000002,7.81,9.5289999999999999,11.689,14.42 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,470,-0.1328,7.8078000000000003,0.19636000000000001,4.4279999999999999,5.3239999999999998,6.4320000000000004,7.8079999999999998,9.5269999999999992,11.686999999999999,14.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,471,-0.13300000000000001,7.8059000000000003,0.19638,4.4269999999999996,5.3230000000000004,6.43,7.806,9.5250000000000004,11.685,14.417 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,472,-0.13320000000000001,7.8041,0.19639999999999999,4.4260000000000002,5.3220000000000001,6.4290000000000003,7.8040000000000003,9.5229999999999997,11.683,14.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,473,-0.13339999999999999,7.8022,0.19642000000000001,4.4249999999999998,5.32,6.4269999999999996,7.8019999999999996,9.52,11.68,14.413 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,474,-0.13370000000000001,7.8003999999999998,0.19644,4.423,5.319,6.4249999999999998,7.8,9.5190000000000001,11.679,14.411 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,475,-0.13389999999999999,7.7986000000000004,0.19645000000000001,4.4219999999999997,5.3179999999999996,6.4240000000000004,7.7990000000000004,9.516,11.676,14.409000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,476,-0.1341,7.7968000000000002,0.19647000000000001,4.4210000000000003,5.3159999999999998,6.4219999999999997,7.7969999999999997,9.5150000000000006,11.673999999999999,14.407 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,477,-0.1343,7.7949999999999999,0.19649,4.42,5.3150000000000004,6.4210000000000003,7.7949999999999999,9.5129999999999999,11.672000000000001,14.404999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,478,-0.13450000000000001,7.7933000000000003,0.19650999999999999,4.4189999999999996,5.3140000000000001,6.4189999999999996,7.7930000000000001,9.5109999999999992,11.67,14.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,479,-0.1348,7.7915000000000001,0.19653000000000001,4.4180000000000001,5.3120000000000003,6.4180000000000001,7.7919999999999998,9.5090000000000003,11.667999999999999,14.401999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,480,-0.13500000000000001,7.7897999999999996,0.19655,4.4169999999999998,5.3109999999999999,6.4160000000000004,7.79,9.5069999999999997,11.667,14.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,481,-0.13519999999999999,7.7881,0.19656999999999999,4.4160000000000004,5.31,6.415,7.7880000000000003,9.5050000000000008,11.664999999999999,14.398999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,482,-0.13539999999999999,7.7864000000000004,0.19658999999999999,4.415,5.3079999999999998,6.4130000000000003,7.7859999999999996,9.5030000000000001,11.663,14.397 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,483,-0.1356,7.7847,0.19661000000000001,4.4139999999999997,5.3070000000000004,6.4119999999999999,7.7850000000000001,9.5009999999999994,11.661,14.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,484,-0.13589999999999999,7.7830000000000004,0.19661999999999999,4.4130000000000003,5.306,6.41,7.7830000000000004,9.4990000000000006,11.659000000000001,14.394 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,485,-0.1361,7.7813999999999997,0.19664000000000001,4.4119999999999999,5.3049999999999997,6.4089999999999998,7.7809999999999997,9.4979999999999993,11.657,14.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,486,-0.1363,7.7797000000000001,0.19666,4.4109999999999996,5.3040000000000003,6.407,7.78,9.4960000000000004,11.654999999999999,14.391 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,487,-0.13650000000000001,7.7781000000000002,0.19667999999999999,4.41,5.3019999999999996,6.4059999999999997,7.7779999999999996,9.4939999999999998,11.654,14.388999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,488,-0.13669999999999999,7.7765000000000004,0.19670000000000001,4.4089999999999998,5.3010000000000002,6.4050000000000002,7.7759999999999998,9.4920000000000009,11.651999999999999,14.388 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,489,-0.13689999999999999,7.7748999999999997,0.19672000000000001,4.4080000000000004,5.3,6.4029999999999996,7.7750000000000004,9.4909999999999997,11.65,14.385999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,490,-0.13719999999999999,7.7732999999999999,0.19674,4.407,5.2990000000000004,6.4020000000000001,7.7729999999999997,9.4890000000000008,11.648999999999999,14.385 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,491,-0.13739999999999999,7.7717000000000001,0.19675999999999999,4.4059999999999997,5.298,6.4,7.7720000000000002,9.4870000000000001,11.647,14.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,492,-0.1376,7.7702,0.19678000000000001,4.4050000000000002,5.2960000000000003,6.399,7.77,9.4860000000000007,11.645,14.382 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,493,-0.13780000000000001,7.7686000000000002,0.1968,4.4039999999999999,5.2949999999999999,6.3979999999999997,7.7690000000000001,9.484,11.644,14.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,494,-0.13800000000000001,7.7671000000000001,0.19681999999999999,4.4029999999999996,5.2939999999999996,6.3959999999999999,7.7670000000000003,9.4819999999999993,11.641999999999999,14.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,495,-0.13819999999999999,7.7656000000000001,0.19683999999999999,4.4020000000000001,5.2930000000000001,6.3949999999999996,7.766,9.4809999999999999,11.641,14.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,496,-0.13850000000000001,7.7641,0.19686000000000001,4.4009999999999998,5.2919999999999998,6.3940000000000001,7.7640000000000002,9.4789999999999992,11.638999999999999,14.377000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,497,-0.13869999999999999,7.7625999999999999,0.19688,4.4000000000000004,5.2910000000000004,6.3920000000000003,7.7629999999999999,9.4779999999999998,11.638,14.375999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,498,-0.1389,7.7610999999999999,0.19689999999999999,4.399,5.2889999999999997,6.391,7.7610000000000001,9.4760000000000009,11.635999999999999,14.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,499,-0.1391,7.7596999999999996,0.19691,4.3979999999999997,5.2880000000000003,6.39,7.76,9.4740000000000002,11.634,14.372999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,500,-0.13930000000000001,7.7582000000000004,0.19692999999999999,4.3970000000000002,5.2869999999999999,6.3879999999999999,7.758,9.4730000000000008,11.632999999999999,14.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,501,-0.13950000000000001,7.7568000000000001,0.19694999999999999,4.3970000000000002,5.2859999999999996,6.3869999999999996,7.7569999999999997,9.4710000000000001,11.631,14.371 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,502,-0.13969999999999999,7.7553999999999998,0.19697000000000001,4.3959999999999999,5.2850000000000001,6.3860000000000001,7.7549999999999999,9.4700000000000006,11.63,14.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,503,-0.1399,7.7539999999999996,0.19699,4.3949999999999996,5.2839999999999998,6.3849999999999998,7.7539999999999996,9.468,11.629,14.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,504,-0.14019999999999999,7.7526000000000002,0.19700999999999999,4.3940000000000001,5.2830000000000004,6.383,7.7530000000000001,9.4670000000000005,11.627000000000001,14.368 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,505,-0.1404,7.7511999999999999,0.19703000000000001,4.3929999999999998,5.282,6.3819999999999997,7.7510000000000003,9.4659999999999993,11.625999999999999,14.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,506,-0.1406,7.7497999999999996,0.19705,4.3920000000000003,5.2809999999999997,6.3810000000000002,7.75,9.4640000000000004,11.624000000000001,14.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,507,-0.14080000000000001,7.7484999999999999,0.19707,4.391,5.28,6.38,7.7480000000000002,9.4629999999999992,11.622999999999999,14.365 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,508,-0.14099999999999999,7.7470999999999997,0.19708999999999999,4.3899999999999997,5.2789999999999999,6.3780000000000001,7.7469999999999999,9.4610000000000003,11.622,14.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,509,-0.14119999999999999,7.7458,0.19711000000000001,4.3890000000000002,5.2779999999999996,6.3769999999999998,7.7460000000000004,9.4600000000000009,11.62,14.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,510,-0.1414,7.7445000000000004,0.19713,4.3890000000000002,5.2770000000000001,6.3760000000000003,7.7439999999999998,9.4580000000000002,11.619,14.362 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,511,-0.1416,7.7431999999999999,0.19714999999999999,4.3879999999999999,5.2759999999999998,6.375,7.7430000000000003,9.4570000000000007,11.618,14.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,512,-0.14180000000000001,7.7419000000000002,0.19717000000000001,4.3869999999999996,5.2750000000000004,6.3739999999999997,7.742,9.4559999999999995,11.617000000000001,14.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,513,-0.1421,7.7405999999999997,0.19719,4.3860000000000001,5.274,6.3730000000000002,7.7409999999999997,9.4540000000000006,11.616,14.359 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,514,-0.14230000000000001,7.7393000000000001,0.19721,4.3849999999999998,5.2729999999999997,6.3710000000000004,7.7389999999999999,9.4529999999999994,11.614000000000001,14.358000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,515,-0.14249999999999999,7.7381000000000002,0.19722999999999999,4.3849999999999998,5.2720000000000002,6.37,7.7380000000000004,9.452,11.613,14.358000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,516,-0.14269999999999999,7.7369000000000003,0.19725000000000001,4.3840000000000003,5.2709999999999999,6.3689999999999998,7.7370000000000001,9.4510000000000005,11.612,14.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,517,-0.1429,7.7355999999999998,0.19727,4.383,5.27,6.3680000000000003,7.7359999999999998,9.4489999999999998,11.611000000000001,14.356 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,518,-0.1431,7.7343999999999999,0.1973,4.3819999999999997,5.2690000000000001,6.367,7.734,9.4480000000000004,11.61,14.356 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,519,-0.14330000000000001,7.7332000000000001,0.19732,4.3810000000000002,5.2679999999999998,6.3659999999999997,7.7329999999999997,9.4469999999999992,11.609,14.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,520,-0.14349999999999999,7.7320000000000002,0.19733999999999999,4.38,5.2670000000000003,6.3650000000000002,7.7320000000000002,9.4459999999999997,11.608000000000001,14.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,521,-0.14369999999999999,7.7309000000000001,0.19736000000000001,4.38,5.266,6.3639999999999999,7.7309999999999999,9.4450000000000003,11.606999999999999,14.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,522,-0.1439,7.7297000000000002,0.19738,4.3789999999999996,5.2649999999999997,6.3630000000000004,7.73,9.4429999999999996,11.606,14.353 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,523,-0.14410000000000001,7.7285000000000004,0.19739999999999999,4.3780000000000001,5.2640000000000002,6.3620000000000001,7.7279999999999998,9.4420000000000002,11.603999999999999,14.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,524,-0.14430000000000001,7.7274000000000003,0.19742000000000001,4.3769999999999998,5.2629999999999999,6.3609999999999998,7.7270000000000003,9.4410000000000007,11.603999999999999,14.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,525,-0.14460000000000001,7.7263000000000002,0.19744,4.3769999999999998,5.2629999999999999,6.36,7.726,9.44,11.603,14.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,526,-0.14480000000000001,7.7251000000000003,0.19746,4.3760000000000003,5.2619999999999996,6.3579999999999997,7.7249999999999996,9.4390000000000001,11.602,14.351000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,527,-0.14499999999999999,7.7240000000000002,0.19747999999999999,4.375,5.2610000000000001,6.3570000000000002,7.7240000000000002,9.4380000000000006,11.601000000000001,14.35 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,528,-0.1452,7.7229000000000001,0.19750000000000001,4.375,5.26,6.3559999999999999,7.7229999999999999,9.4359999999999999,11.6,14.35 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,529,-0.1454,7.7218999999999998,0.19752,4.3739999999999997,5.2590000000000003,6.3559999999999999,7.7220000000000004,9.4350000000000005,11.599,14.35 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,530,-0.14560000000000001,7.7207999999999997,0.19753999999999999,4.3730000000000002,5.258,6.3550000000000004,7.7210000000000001,9.4339999999999993,11.598000000000001,14.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,531,-0.14580000000000001,7.7196999999999996,0.19756000000000001,4.3719999999999999,5.2569999999999997,6.3540000000000001,7.72,9.4329999999999998,11.597,14.348000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,532,-0.14599999999999999,7.7187000000000001,0.19758999999999999,4.3719999999999999,5.2560000000000002,6.3529999999999998,7.7190000000000003,9.4320000000000004,11.596,14.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,533,-0.1462,7.7176999999999998,0.19761000000000001,4.3710000000000004,5.2560000000000002,6.3520000000000003,7.718,9.4309999999999992,11.595000000000001,14.348000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,534,-0.1464,7.7165999999999997,0.19763,4.37,5.2549999999999999,6.351,7.7169999999999996,9.43,11.595000000000001,14.348000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,535,-0.14660000000000001,7.7156000000000002,0.19764999999999999,4.37,5.2539999999999996,6.35,7.7160000000000002,9.4290000000000003,11.593999999999999,14.347 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,536,-0.14680000000000001,7.7145999999999999,0.19767000000000001,4.3689999999999998,5.2530000000000001,6.3490000000000002,7.7149999999999999,9.4280000000000008,11.593,14.347 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,537,-0.14699999999999999,7.7135999999999996,0.19769,4.3680000000000003,5.2519999999999998,6.3479999999999999,7.7140000000000004,9.4269999999999996,11.592000000000001,14.347 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,538,-0.1472,7.7126999999999999,0.19771,4.3680000000000003,5.2519999999999998,6.3470000000000004,7.7130000000000001,9.4260000000000002,11.590999999999999,14.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,539,-0.1474,7.7117000000000004,0.19772999999999999,4.367,5.2510000000000003,6.3460000000000001,7.7119999999999997,9.4250000000000007,11.590999999999999,14.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,540,-0.14760000000000001,7.7107000000000001,0.19775999999999999,4.3659999999999997,5.25,6.3449999999999998,7.7110000000000003,9.4239999999999995,11.59,14.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,541,-0.14779999999999999,7.7098000000000004,0.19778000000000001,4.3659999999999997,5.2489999999999997,6.3440000000000003,7.71,9.4239999999999995,11.589,14.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,542,-0.14799999999999999,7.7088000000000001,0.1978,4.3650000000000002,5.2480000000000002,6.343,7.7089999999999996,9.423,11.589,14.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,543,-0.1482,7.7079000000000004,0.19782,4.3639999999999999,5.2480000000000002,6.3419999999999996,7.7080000000000002,9.4220000000000006,11.587999999999999,14.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,544,-0.1484,7.7069999999999999,0.19783999999999999,4.3639999999999999,5.2469999999999999,6.3419999999999996,7.7069999999999999,9.4209999999999994,11.587,14.345000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,545,-0.14860000000000001,7.7061000000000002,0.19786000000000001,4.3630000000000004,5.2460000000000004,6.3410000000000002,7.7060000000000004,9.42,11.587,14.345000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,546,-0.14879999999999999,7.7051999999999996,0.19789000000000001,4.3620000000000001,5.2450000000000001,6.34,7.7050000000000001,9.4190000000000005,11.586,14.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,547,-0.14899999999999999,7.7042999999999999,0.19791,4.3620000000000001,5.2450000000000001,6.3390000000000004,7.7039999999999997,9.4179999999999993,11.585000000000001,14.345000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,548,-0.1492,7.7035,0.19792999999999999,4.3609999999999998,5.2439999999999998,6.3380000000000001,7.7039999999999997,9.4179999999999993,11.585000000000001,14.345000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,549,-0.14940000000000001,7.7026000000000003,0.19794999999999999,4.3609999999999998,5.2430000000000003,6.3369999999999997,7.7030000000000003,9.4169999999999998,11.584,14.345000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,550,-0.14960000000000001,7.7018000000000004,0.19797000000000001,4.3600000000000003,5.242,6.3369999999999997,7.702,9.4160000000000004,11.584,14.345000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,551,-0.14979999999999999,7.7008999999999999,0.19800000000000001,4.359,5.242,6.3360000000000003,7.7009999999999996,9.4149999999999991,11.583,14.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,552,-0.15,7.7000999999999999,0.19802,4.359,5.2409999999999997,6.335,7.7,9.4149999999999991,11.583,14.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,553,-0.1502,7.6993,0.19803999999999999,4.3579999999999997,5.24,6.3339999999999996,7.6989999999999998,9.4139999999999997,11.582000000000001,14.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,554,-0.15040000000000001,7.6985000000000001,0.19806000000000001,4.3579999999999997,5.24,6.3339999999999996,7.6980000000000004,9.4130000000000003,11.582000000000001,14.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,555,-0.15060000000000001,7.6977000000000002,0.19808999999999999,4.3570000000000002,5.2389999999999999,6.3330000000000002,7.6980000000000004,9.4120000000000008,11.582000000000001,14.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,556,-0.15079999999999999,7.6969000000000003,0.19811000000000001,4.3559999999999999,5.2380000000000004,6.3319999999999999,7.6970000000000001,9.4120000000000008,11.581,14.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,557,-0.151,7.6961000000000004,0.19813,4.3559999999999999,5.2380000000000004,6.3310000000000004,7.6959999999999997,9.4109999999999996,11.581,14.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,558,-0.1512,7.6954000000000002,0.19814999999999999,4.3550000000000004,5.2370000000000001,6.3310000000000004,7.6950000000000003,9.41,11.58,14.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,559,-0.15140000000000001,7.6946000000000003,0.19818,4.3550000000000004,5.2359999999999998,6.33,7.6950000000000003,9.41,11.58,14.347 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,560,-0.15160000000000001,7.6939000000000002,0.19819999999999999,4.3540000000000001,5.2359999999999998,6.3289999999999997,7.694,9.4090000000000007,11.58,14.347 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,561,-0.15179999999999999,7.6931000000000003,0.19822000000000001,4.3540000000000001,5.2350000000000003,6.3280000000000003,7.6929999999999996,9.4079999999999995,11.579000000000001,14.347 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,562,-0.152,7.6924000000000001,0.19824,4.3529999999999998,5.234,6.3280000000000003,7.6920000000000002,9.4079999999999995,11.579000000000001,14.347 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,563,-0.1522,7.6917,0.19827,4.3520000000000003,5.234,6.327,7.6920000000000002,9.407,11.579000000000001,14.348000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,564,-0.15240000000000001,7.6909999999999998,0.19828999999999999,4.3520000000000003,5.2329999999999997,6.3259999999999996,7.6909999999999998,9.4060000000000006,11.577999999999999,14.348000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,565,-0.15260000000000001,7.6902999999999997,0.19830999999999999,4.351,5.2320000000000002,6.3259999999999996,7.69,9.4060000000000006,11.577999999999999,14.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,566,-0.15279999999999999,7.6896000000000004,0.19833000000000001,4.351,5.2320000000000002,6.3250000000000002,7.69,9.4049999999999994,11.577,14.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,567,-0.153,7.6890000000000001,0.19836000000000001,4.3499999999999996,5.2309999999999999,6.3239999999999998,7.6890000000000001,9.4049999999999994,11.577,14.35 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,568,-0.1532,7.6882999999999999,0.19838,4.3499999999999996,5.2309999999999999,6.3239999999999998,7.6879999999999997,9.4039999999999999,11.577,14.35 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,569,-0.15340000000000001,7.6877000000000004,0.19839999999999999,4.3490000000000002,5.23,6.3230000000000004,7.6879999999999997,9.4039999999999999,11.577,14.35 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,570,-0.15359999999999999,7.6870000000000003,0.19843,4.3490000000000002,5.2290000000000001,6.3220000000000001,7.6870000000000003,9.4030000000000005,11.577,14.351000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,571,-0.15379999999999999,7.6863999999999999,0.19844999999999999,4.3479999999999999,5.2290000000000001,6.3220000000000001,7.6859999999999999,9.4030000000000005,11.577,14.351000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,572,-0.154,7.6858000000000004,0.19847000000000001,4.3479999999999999,5.2279999999999998,6.3209999999999997,7.6859999999999999,9.4019999999999992,11.576000000000001,14.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,573,-0.15409999999999999,7.6852,0.19850000000000001,4.3470000000000004,5.2279999999999998,6.32,7.6849999999999996,9.4019999999999992,11.576000000000001,14.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,574,-0.15429999999999999,7.6845999999999997,0.19852,4.3470000000000004,5.2270000000000003,6.32,7.6849999999999996,9.4009999999999998,11.576000000000001,14.353 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,575,-0.1545,7.6840000000000002,0.19853999999999999,4.3460000000000001,5.2270000000000003,6.319,7.6840000000000002,9.4009999999999998,11.576000000000001,14.353 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,576,-0.1547,7.6833999999999998,0.19857,4.3460000000000001,5.226,6.3179999999999996,7.6829999999999998,9.4,11.576000000000001,14.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,577,-0.15490000000000001,7.6828000000000003,0.19858999999999999,4.3449999999999998,5.2249999999999996,6.3179999999999996,7.6829999999999998,9.4,11.576000000000001,14.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,578,-0.15509999999999999,7.6822999999999997,0.19861000000000001,4.3449999999999998,5.2249999999999996,6.3170000000000002,7.6820000000000004,9.3989999999999991,11.576000000000001,14.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,579,-0.15529999999999999,7.6817000000000002,0.19864000000000001,4.3440000000000003,5.2240000000000002,6.3170000000000002,7.6820000000000004,9.3989999999999991,11.576000000000001,14.356 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,580,-0.1555,7.6811999999999996,0.19866,4.3440000000000003,5.2240000000000002,6.3159999999999998,7.681,9.3989999999999991,11.576000000000001,14.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,581,-0.15570000000000001,7.6806000000000001,0.19868,4.3440000000000003,5.2229999999999999,6.3159999999999998,7.681,9.3979999999999997,11.574999999999999,14.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,582,-0.15590000000000001,7.6801000000000004,0.19871,4.343,5.2229999999999999,6.3150000000000004,7.68,9.3979999999999997,11.576000000000001,14.358000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,583,-0.15609999999999999,7.6795999999999998,0.19872999999999999,4.343,5.2220000000000004,6.3150000000000004,7.68,9.3979999999999997,11.576000000000001,14.359 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,584,-0.15629999999999999,7.6791,0.19875999999999999,4.3419999999999996,5.2220000000000004,6.3140000000000001,7.6790000000000003,9.3970000000000002,11.576000000000001,14.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,585,-0.1565,7.6786000000000003,0.19878000000000001,4.3419999999999996,5.2210000000000001,6.3129999999999997,7.6790000000000003,9.3970000000000002,11.576000000000001,14.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,586,-0.15659999999999999,7.6780999999999997,0.1988,4.3410000000000002,5.2210000000000001,6.3129999999999997,7.6779999999999999,9.3960000000000008,11.574999999999999,14.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,587,-0.15679999999999999,7.6776,0.19883000000000001,4.3410000000000002,5.22,6.3120000000000003,7.6779999999999999,9.3960000000000008,11.576000000000001,14.362 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,588,-0.157,7.6772,0.19885,4.3410000000000002,5.22,6.3120000000000003,7.6769999999999996,9.3960000000000008,11.576000000000001,14.362 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,589,-0.15720000000000001,7.6767000000000003,0.19888,4.34,5.2190000000000003,6.3109999999999999,7.6769999999999996,9.3960000000000008,11.576000000000001,14.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,590,-0.15740000000000001,7.6763000000000003,0.19889999999999999,4.34,5.2190000000000003,6.3109999999999999,7.6760000000000002,9.3949999999999996,11.576000000000001,14.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,591,-0.15759999999999999,7.6757999999999997,0.19893,4.3390000000000004,5.218,6.31,7.6760000000000002,9.3949999999999996,11.576000000000001,14.365 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,592,-0.1578,7.6753999999999998,0.19894999999999999,4.3390000000000004,5.218,6.31,7.6749999999999998,9.3949999999999996,11.576000000000001,14.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,593,-0.158,7.6749999999999998,0.19897999999999999,4.3380000000000001,5.218,6.3090000000000002,7.6749999999999998,9.3949999999999996,11.577,14.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,594,-0.15820000000000001,7.6745999999999999,0.19900000000000001,4.3380000000000001,5.2169999999999996,6.3090000000000002,7.6749999999999998,9.3940000000000001,11.577,14.368 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,595,-0.15840000000000001,7.6741999999999999,0.19902,4.3380000000000001,5.2169999999999996,6.3090000000000002,7.6740000000000004,9.3940000000000001,11.577,14.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,596,-0.1585,7.6738,0.19905,4.3369999999999997,5.2160000000000002,6.3079999999999998,7.6740000000000004,9.3940000000000001,11.577,14.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,597,-0.15870000000000001,7.6734,0.19907,4.3369999999999997,5.2160000000000002,6.3079999999999998,7.673,9.3940000000000001,11.577,14.371 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,598,-0.15890000000000001,7.6730999999999998,0.1991,4.3369999999999997,5.2149999999999999,6.3070000000000004,7.673,9.3940000000000001,11.577999999999999,14.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,599,-0.15909999999999999,7.6726999999999999,0.19911999999999999,4.3360000000000003,5.2149999999999999,6.3070000000000004,7.673,9.3930000000000007,11.577999999999999,14.372999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,600,-0.1593,7.6723999999999997,0.19914999999999999,4.3360000000000003,5.2149999999999999,6.306,7.6719999999999997,9.3930000000000007,11.577999999999999,14.374000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,601,-0.1595,7.6719999999999997,0.19917000000000001,4.3360000000000003,5.2140000000000004,6.306,7.6719999999999997,9.3930000000000007,11.577999999999999,14.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,602,-0.15970000000000001,7.6717000000000004,0.19919999999999999,4.335,5.2140000000000004,6.306,7.6719999999999997,9.3930000000000007,11.579000000000001,14.377000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,603,-0.15989999999999999,7.6712999999999996,0.19922000000000001,4.335,5.2130000000000001,6.3049999999999997,7.6710000000000003,9.3930000000000007,11.579000000000001,14.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,604,-0.16,7.6710000000000003,0.19925000000000001,4.3339999999999996,5.2130000000000001,6.3049999999999997,7.6710000000000003,9.3930000000000007,11.579000000000001,14.379 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,605,-0.16020000000000001,7.6707000000000001,0.19927,4.3339999999999996,5.2130000000000001,6.3040000000000003,7.6710000000000003,9.3930000000000007,11.58,14.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,606,-0.16039999999999999,7.6703999999999999,0.1993,4.3339999999999996,5.2119999999999997,6.3040000000000003,7.67,9.3930000000000007,11.58,14.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,607,-0.16059999999999999,7.6700999999999997,0.19933000000000001,4.3330000000000002,5.2119999999999997,6.3040000000000003,7.67,9.3930000000000007,11.581,14.382999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,608,-0.1608,7.6699000000000002,0.19935,4.3330000000000002,5.2110000000000003,6.3029999999999999,7.67,9.3930000000000007,11.581,14.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,609,-0.161,7.6696,0.19938,4.3330000000000002,5.2110000000000003,6.3029999999999999,7.67,9.3930000000000007,11.581,14.385 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,610,-0.16120000000000001,7.6692999999999998,0.19939999999999999,4.3319999999999999,5.2110000000000003,6.3029999999999999,7.6689999999999996,9.3919999999999995,11.582000000000001,14.385999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,611,-0.1613,7.6691000000000003,0.19943,4.3319999999999999,5.21,6.3019999999999996,7.6689999999999996,9.3919999999999995,11.582000000000001,14.388 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,612,-0.1615,7.6688000000000001,0.19944999999999999,4.3319999999999999,5.21,6.3019999999999996,7.6689999999999996,9.3919999999999995,11.582000000000001,14.388999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,613,-0.16170000000000001,7.6685999999999996,0.19947999999999999,4.3310000000000004,5.21,6.3019999999999996,7.6689999999999996,9.3919999999999995,11.583,14.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,614,-0.16189999999999999,7.6684000000000001,0.19950999999999999,4.3310000000000004,5.2089999999999996,6.3010000000000002,7.6680000000000001,9.3919999999999995,11.584,14.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,615,-0.16209999999999999,7.6680999999999999,0.19953000000000001,4.3310000000000004,5.2089999999999996,6.3010000000000002,7.6680000000000001,9.3919999999999995,11.584,14.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,616,-0.1623,7.6679000000000004,0.19955999999999999,4.3310000000000004,5.2089999999999996,6.3010000000000002,7.6680000000000001,9.3919999999999995,11.585000000000001,14.394 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,617,-0.16250000000000001,7.6677,0.19958000000000001,4.33,5.2080000000000002,6.3,7.6680000000000001,9.3919999999999995,11.585000000000001,14.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,618,-0.16259999999999999,7.6675000000000004,0.19961000000000001,4.33,5.2080000000000002,6.3,7.6680000000000001,9.3930000000000007,11.586,14.397 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,619,-0.1628,7.6673,0.19964000000000001,4.33,5.2080000000000002,6.3,7.6669999999999998,9.3930000000000007,11.586,14.398999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,620,-0.16300000000000001,7.6672000000000002,0.19966,4.3289999999999997,5.2069999999999999,6.3,7.6669999999999998,9.3930000000000007,11.587,14.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,621,-0.16320000000000001,7.6669999999999998,0.19969000000000001,4.3289999999999997,5.2069999999999999,6.2990000000000004,7.6669999999999998,9.3930000000000007,11.587,14.401999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,622,-0.16339999999999999,7.6668000000000003,0.19972000000000001,4.3289999999999997,5.2069999999999999,6.2990000000000004,7.6669999999999998,9.3930000000000007,11.587999999999999,14.403 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,623,-0.1636,7.6666999999999996,0.19974,4.3289999999999997,5.2069999999999999,6.2990000000000004,7.6669999999999998,9.3930000000000007,11.589,14.404999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,624,-0.16370000000000001,7.6665000000000001,0.19977,4.3280000000000003,5.2060000000000004,6.298,7.6660000000000004,9.3930000000000007,11.589,14.406000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,625,-0.16389999999999999,7.6664000000000003,0.19980000000000001,4.3280000000000003,5.2060000000000004,6.298,7.6660000000000004,9.3930000000000007,11.59,14.407999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,626,-0.1641,7.6662999999999997,0.19982,4.3280000000000003,5.2060000000000004,6.298,7.6660000000000004,9.3930000000000007,11.59,14.409000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,627,-0.1643,7.6661000000000001,0.19985,4.327,5.2050000000000001,6.298,7.6660000000000004,9.3930000000000007,11.590999999999999,14.411 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,628,-0.16450000000000001,7.6660000000000004,0.19988,4.327,5.2050000000000001,6.2969999999999997,7.6660000000000004,9.3940000000000001,11.592000000000001,14.413 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,629,-0.16470000000000001,7.6658999999999997,0.19989999999999999,4.327,5.2050000000000001,6.2969999999999997,7.6660000000000004,9.3940000000000001,11.592000000000001,14.414 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,630,-0.1648,7.6657999999999999,0.19993,4.327,5.2050000000000001,6.2969999999999997,7.6660000000000004,9.3940000000000001,11.593,14.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,631,-0.16500000000000001,7.6657000000000002,0.19996,4.3259999999999996,5.2039999999999997,6.2969999999999997,7.6660000000000004,9.3940000000000001,11.593999999999999,14.417 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,632,-0.16520000000000001,7.6656000000000004,0.19997999999999999,4.3259999999999996,5.2039999999999997,6.2969999999999997,7.6660000000000004,9.3940000000000001,11.593999999999999,14.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,633,-0.16539999999999999,7.6656000000000004,0.20000999999999999,4.3259999999999996,5.2039999999999997,6.2960000000000003,7.6660000000000004,9.3949999999999996,11.595000000000001,14.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,634,-0.1656,7.6654999999999998,0.20004,4.3259999999999996,5.2039999999999997,6.2960000000000003,7.6660000000000004,9.3949999999999996,11.596,14.423 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,635,-0.16569999999999999,7.6654,0.20007,4.3250000000000002,5.2030000000000003,6.2960000000000003,7.665,9.3949999999999996,11.597,14.423999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,636,-0.16589999999999999,7.6654,0.20008999999999999,4.3250000000000002,5.2030000000000003,6.2960000000000003,7.665,9.3949999999999996,11.598000000000001,14.426 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,637,-0.1661,7.6653000000000002,0.20011999999999999,4.3250000000000002,5.2030000000000003,6.2960000000000003,7.665,9.3949999999999996,11.598000000000001,14.428000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,638,-0.1663,7.6653000000000002,0.20014999999999999,4.3250000000000002,5.2030000000000003,6.2949999999999999,7.665,9.3960000000000008,11.599,14.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,639,-0.16650000000000001,7.6651999999999996,0.20016999999999999,4.3250000000000002,5.202,6.2949999999999999,7.665,9.3960000000000008,11.6,14.430999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,640,-0.1666,7.6651999999999996,0.20019999999999999,4.3239999999999998,5.202,6.2949999999999999,7.665,9.3960000000000008,11.601000000000001,14.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,641,-0.1668,7.6651999999999996,0.20022999999999999,4.3239999999999998,5.202,6.2949999999999999,7.665,9.3970000000000002,11.602,14.435 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,642,-0.16700000000000001,7.6651999999999996,0.20025999999999999,4.3239999999999998,5.202,6.2949999999999999,7.665,9.3970000000000002,11.603,14.436999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,643,-0.16719999999999999,7.6651999999999996,0.20029,4.3239999999999998,5.202,6.2949999999999999,7.665,9.3970000000000002,11.603999999999999,14.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,644,-0.16739999999999999,7.6651999999999996,0.20030999999999999,4.3239999999999998,5.2009999999999996,6.2939999999999996,7.665,9.3970000000000002,11.603999999999999,14.441000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,645,-0.16750000000000001,7.6651999999999996,0.20033999999999999,4.3230000000000004,5.2009999999999996,6.2939999999999996,7.665,9.3979999999999997,11.605,14.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,646,-0.16769999999999999,7.6651999999999996,0.20036999999999999,4.3230000000000004,5.2009999999999996,6.2939999999999996,7.665,9.3979999999999997,11.606,14.444000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,647,-0.16789999999999999,7.6653000000000002,0.20039999999999999,4.3230000000000004,5.2009999999999996,6.2939999999999996,7.665,9.3989999999999991,11.606999999999999,14.446999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,648,-0.1681,7.6653000000000002,0.20043,4.3230000000000004,5.2009999999999996,6.2939999999999996,7.665,9.3989999999999991,11.608000000000001,14.449 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,649,-0.16819999999999999,7.6653000000000002,0.20044999999999999,4.3230000000000004,5.2,6.2939999999999996,7.665,9.3989999999999991,11.609,14.45 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,650,-0.16839999999999999,7.6654,0.20047999999999999,4.3220000000000001,5.2,6.2939999999999996,7.665,9.4,11.61,14.452 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,651,-0.1686,7.6654,0.20050999999999999,4.3220000000000001,5.2,6.2939999999999996,7.665,9.4,11.611000000000001,14.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,652,-0.16880000000000001,7.6654999999999998,0.20054,4.3220000000000001,5.2,6.2930000000000001,7.6660000000000004,9.4,11.612,14.456 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,653,-0.16900000000000001,7.6654999999999998,0.20057,4.3220000000000001,5.2,6.2930000000000001,7.6660000000000004,9.4009999999999998,11.613,14.458 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,654,-0.1691,7.6656000000000004,0.20058999999999999,4.3220000000000001,5.2,6.2930000000000001,7.6660000000000004,9.4009999999999998,11.614000000000001,14.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,655,-0.16930000000000001,7.6657000000000002,0.20061999999999999,4.3220000000000001,5.1989999999999998,6.2930000000000001,7.6660000000000004,9.4009999999999998,11.615,14.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,656,-0.16950000000000001,7.6657999999999999,0.20065,4.3209999999999997,5.1989999999999998,6.2930000000000001,7.6660000000000004,9.4019999999999992,11.616,14.464 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,657,-0.16969999999999999,7.6658999999999997,0.20068,4.3209999999999997,5.1989999999999998,6.2930000000000001,7.6660000000000004,9.4019999999999992,11.617000000000001,14.467000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,658,-0.16980000000000001,7.6660000000000004,0.20071,4.3209999999999997,5.1989999999999998,6.2930000000000001,7.6660000000000004,9.4030000000000005,11.618,14.468999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,659,-0.17,7.6661000000000001,0.20074,4.3209999999999997,5.1989999999999998,6.2930000000000001,7.6660000000000004,9.4030000000000005,11.619,14.471 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,660,-0.17019999999999999,7.6661999999999999,0.20077,4.3209999999999997,5.1989999999999998,6.2930000000000001,7.6660000000000004,9.4039999999999999,11.62,14.473000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,661,-0.1704,7.6662999999999997,0.20079,4.3209999999999997,5.1989999999999998,6.2930000000000001,7.6660000000000004,9.4039999999999999,11.621,14.475 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,662,-0.17050000000000001,7.6664000000000003,0.20082,4.32,5.1980000000000004,6.2930000000000001,7.6660000000000004,9.4039999999999999,11.622,14.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,663,-0.17069999999999999,7.6665000000000001,0.20085,4.32,5.1980000000000004,6.2930000000000001,7.6660000000000004,9.4049999999999994,11.622999999999999,14.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,664,-0.1709,7.6666999999999996,0.20088,4.32,5.1980000000000004,6.2930000000000001,7.6669999999999998,9.4060000000000006,11.624000000000001,14.481 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,665,-0.1711,7.6668000000000003,0.20091000000000001,4.32,5.1980000000000004,6.2930000000000001,7.6669999999999998,9.4060000000000006,11.625,14.484 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,666,-0.17119999999999999,7.6669999999999998,0.20094000000000001,4.32,5.1980000000000004,6.2930000000000001,7.6669999999999998,9.407,11.627000000000001,14.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,667,-0.1714,7.6670999999999996,0.20097000000000001,4.32,5.1980000000000004,6.2919999999999998,7.6669999999999998,9.407,11.628,14.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,668,-0.1716,7.6673,0.20100000000000001,4.32,5.1980000000000004,6.2919999999999998,7.6669999999999998,9.4079999999999995,11.629,14.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,669,-0.17180000000000001,7.6673999999999998,0.20102999999999999,4.319,5.1980000000000004,6.2919999999999998,7.6669999999999998,9.4079999999999995,11.63,14.493 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,670,-0.1719,7.6676000000000002,0.20105999999999999,4.319,5.1970000000000001,6.2919999999999998,7.6680000000000001,9.4090000000000007,11.631,14.494999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,671,-0.1721,7.6677999999999997,0.20108999999999999,4.319,5.1970000000000001,6.2919999999999998,7.6680000000000001,9.4090000000000007,11.632999999999999,14.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,672,-0.17230000000000001,7.6679000000000004,0.20111999999999999,4.319,5.1970000000000001,6.2919999999999998,7.6680000000000001,9.41,11.634,14.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,673,-0.17249999999999999,7.6680999999999999,0.20114000000000001,4.319,5.1970000000000001,6.2919999999999998,7.6680000000000001,9.41,11.635,14.502000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,674,-0.1726,7.6683000000000003,0.20116999999999999,4.319,5.1970000000000001,6.2919999999999998,7.6680000000000001,9.4109999999999996,11.635999999999999,14.504 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,675,-0.17280000000000001,7.6684999999999999,0.20119999999999999,4.319,5.1970000000000001,6.2919999999999998,7.6680000000000001,9.4109999999999996,11.637,14.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,676,-0.17299999999999999,7.6687000000000003,0.20122999999999999,4.319,5.1970000000000001,6.2919999999999998,7.6689999999999996,9.4120000000000008,11.638,14.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,677,-0.1731,7.6688999999999998,0.20125999999999999,4.3179999999999996,5.1970000000000001,6.2919999999999998,7.6689999999999996,9.4120000000000008,11.638999999999999,14.510999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,678,-0.17330000000000001,7.6691000000000003,0.20129,4.3179999999999996,5.1970000000000001,6.2919999999999998,7.6689999999999996,9.4130000000000003,11.641,14.513 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,679,-0.17349999999999999,7.6692999999999998,0.20132,4.3179999999999996,5.1970000000000001,6.2919999999999998,7.6689999999999996,9.4139999999999997,11.641999999999999,14.516 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,680,-0.17369999999999999,7.6696,0.20135,4.3179999999999996,5.1970000000000001,6.2919999999999998,7.67,9.4139999999999997,11.643000000000001,14.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,681,-0.17380000000000001,7.6698000000000004,0.20138,4.3179999999999996,5.1970000000000001,6.2919999999999998,7.67,9.4149999999999991,11.645,14.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,682,-0.17399999999999999,7.67,0.20141000000000001,4.3179999999999996,5.1970000000000001,6.2919999999999998,7.67,9.4149999999999991,11.646000000000001,14.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,683,-0.17419999999999999,7.6702000000000004,0.20144000000000001,4.3179999999999996,5.1959999999999997,6.2919999999999998,7.67,9.4160000000000004,11.647,14.525 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,684,-0.17430000000000001,7.6704999999999997,0.20147000000000001,4.3179999999999996,5.1959999999999997,6.2930000000000001,7.67,9.4169999999999998,11.648,14.528 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,685,-0.17449999999999999,7.6707000000000001,0.20150000000000001,4.3179999999999996,5.1959999999999997,6.2930000000000001,7.6710000000000003,9.4169999999999998,11.65,14.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,686,-0.17469999999999999,7.6710000000000003,0.20152999999999999,4.3179999999999996,5.1959999999999997,6.2930000000000001,7.6710000000000003,9.4179999999999993,11.651,14.532999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,687,-0.1749,7.6711999999999998,0.20155999999999999,4.3179999999999996,5.1959999999999997,6.2930000000000001,7.6710000000000003,9.4179999999999993,11.651999999999999,14.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,688,-0.17499999999999999,7.6715,0.20158999999999999,4.3170000000000002,5.1959999999999997,6.2930000000000001,7.6719999999999997,9.4190000000000005,11.654,14.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,689,-0.17519999999999999,7.6718000000000002,0.20161999999999999,4.3170000000000002,5.1959999999999997,6.2930000000000001,7.6719999999999997,9.42,11.654999999999999,14.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,690,-0.1754,7.6719999999999997,0.20165,4.3170000000000002,5.1959999999999997,6.2930000000000001,7.6719999999999997,9.42,11.656000000000001,14.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,691,-0.17549999999999999,7.6722999999999999,0.20168,4.3170000000000002,5.1959999999999997,6.2930000000000001,7.6719999999999997,9.4209999999999994,11.657999999999999,14.545 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,692,-0.1757,7.6726000000000001,0.20172000000000001,4.3170000000000002,5.1959999999999997,6.2930000000000001,7.673,9.4220000000000006,11.659000000000001,14.548 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,693,-0.1759,7.6729000000000003,0.20175000000000001,4.3170000000000002,5.1959999999999997,6.2930000000000001,7.673,9.423,11.661,14.551 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,694,-0.17610000000000001,7.6731999999999996,0.20177999999999999,4.3170000000000002,5.1959999999999997,6.2930000000000001,7.673,9.423,11.662000000000001,14.554 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,695,-0.1762,7.6734,0.20180999999999999,4.3170000000000002,5.1959999999999997,6.2930000000000001,7.673,9.4239999999999995,11.663,14.555999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,696,-0.1764,7.6737000000000002,0.20183999999999999,4.3170000000000002,5.1959999999999997,6.2930000000000001,7.6740000000000004,9.4250000000000007,11.664999999999999,14.558 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,697,-0.17660000000000001,7.6740000000000004,0.20186999999999999,4.3170000000000002,5.1959999999999997,6.2930000000000001,7.6740000000000004,9.4250000000000007,11.666,14.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,698,-0.1767,7.6742999999999997,0.2019,4.3170000000000002,5.1959999999999997,6.2930000000000001,7.6740000000000004,9.4260000000000002,11.667,14.563000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,699,-0.1769,7.6746999999999996,0.20193,4.3170000000000002,5.1959999999999997,6.2939999999999996,7.6749999999999998,9.4269999999999996,11.669,14.566000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,700,-0.17710000000000001,7.6749999999999998,0.20196,4.3159999999999998,5.1959999999999997,6.2939999999999996,7.6749999999999998,9.4269999999999996,11.67,14.569000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,701,-0.1772,7.6753,0.20199,4.3159999999999998,5.1959999999999997,6.2939999999999996,7.6749999999999998,9.4280000000000008,11.672000000000001,14.571 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,702,-0.1774,7.6756000000000002,0.20202000000000001,4.3159999999999998,5.1959999999999997,6.2939999999999996,7.6760000000000002,9.4290000000000003,11.673,14.574 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,703,-0.17760000000000001,7.6759000000000004,0.20205000000000001,4.3159999999999998,5.1959999999999997,6.2939999999999996,7.6760000000000002,9.43,11.675000000000001,14.577 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,704,-0.1777,7.6763000000000003,0.20208999999999999,4.3159999999999998,5.1959999999999997,6.2939999999999996,7.6760000000000002,9.43,11.676,14.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,705,-0.1779,7.6765999999999996,0.20211999999999999,4.3159999999999998,5.1959999999999997,6.2939999999999996,7.6769999999999996,9.4309999999999992,11.678000000000001,14.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,706,-0.17810000000000001,7.6768999999999998,0.20215,4.3159999999999998,5.1959999999999997,6.2939999999999996,7.6769999999999996,9.4320000000000004,11.679,14.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,707,-0.1782,7.6772999999999998,0.20218,4.3159999999999998,5.1959999999999997,6.2939999999999996,7.6769999999999996,9.4329999999999998,11.680999999999999,14.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,708,-0.1784,7.6776,0.20221,4.3159999999999998,5.1959999999999997,6.2939999999999996,7.6779999999999999,9.4329999999999998,11.682,14.59 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,709,-0.17860000000000001,7.6779999999999999,0.20224,4.3159999999999998,5.1959999999999997,6.2949999999999999,7.6779999999999999,9.4339999999999993,11.683999999999999,14.593 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,710,-0.1787,7.6783000000000001,0.20227000000000001,4.3159999999999998,5.1959999999999997,6.2949999999999999,7.6779999999999999,9.4350000000000005,11.685,14.595000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,711,-0.1789,7.6787000000000001,0.20230999999999999,4.3159999999999998,5.1959999999999997,6.2949999999999999,7.6790000000000003,9.4359999999999999,11.686999999999999,14.599 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,712,-0.17910000000000001,7.6790000000000003,0.20233999999999999,4.3159999999999998,5.1959999999999997,6.2949999999999999,7.6790000000000003,9.4369999999999994,11.688000000000001,14.601000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,713,-0.1792,7.6794000000000002,0.20236999999999999,4.3159999999999998,5.1959999999999997,6.2949999999999999,7.6790000000000003,9.4369999999999994,11.69,14.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,714,-0.1794,7.6798000000000002,0.2024,4.3159999999999998,5.1959999999999997,6.2949999999999999,7.68,9.4380000000000006,11.691000000000001,14.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,715,-0.17960000000000001,7.6801000000000004,0.20243,4.3159999999999998,5.1959999999999997,6.2949999999999999,7.68,9.4390000000000001,11.693,14.609 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,716,-0.1797,7.6805000000000003,0.20246,4.3159999999999998,5.1959999999999997,6.2949999999999999,7.68,9.44,11.694000000000001,14.612 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,717,-0.1799,7.6809000000000003,0.20250000000000001,4.3150000000000004,5.1959999999999997,6.2960000000000003,7.681,9.4410000000000007,11.696,14.615 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,718,-0.18010000000000001,7.6813000000000002,0.20252999999999999,4.3150000000000004,5.1959999999999997,6.2960000000000003,7.681,9.4410000000000007,11.698,14.618 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,719,-0.1802,7.6817000000000002,0.20255999999999999,4.3150000000000004,5.1959999999999997,6.2960000000000003,7.6820000000000004,9.4420000000000002,11.699,14.621 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,720,-0.1804,7.6821000000000002,0.20258999999999999,4.3150000000000004,5.1959999999999997,6.2960000000000003,7.6820000000000004,9.4429999999999996,11.701000000000001,14.624000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,721,-0.18060000000000001,7.6824000000000003,0.20261999999999999,4.3150000000000004,5.1959999999999997,6.2960000000000003,7.6820000000000004,9.4440000000000008,11.702,14.625999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,722,-0.1807,7.6828000000000003,0.20266000000000001,4.3150000000000004,5.1959999999999997,6.2960000000000003,7.6829999999999998,9.4450000000000003,11.704000000000001,14.629 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,723,-0.18090000000000001,7.6832000000000003,0.20269000000000001,4.3150000000000004,5.1959999999999997,6.2960000000000003,7.6829999999999998,9.4450000000000003,11.705,14.632 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,724,-0.18110000000000001,7.6836000000000002,0.20272000000000001,4.3150000000000004,5.1959999999999997,6.2969999999999997,7.6840000000000002,9.4459999999999997,11.707000000000001,14.635 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,725,-0.1812,7.6840000000000002,0.20275000000000001,4.3150000000000004,5.1959999999999997,6.2969999999999997,7.6840000000000002,9.4469999999999992,11.708,14.638 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,726,-0.18140000000000001,7.6844999999999999,0.20277999999999999,4.3150000000000004,5.1959999999999997,6.2969999999999997,7.6840000000000002,9.4480000000000004,11.71,14.641 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,727,-0.18160000000000001,7.6848999999999998,0.20282,4.3150000000000004,5.1959999999999997,6.2969999999999997,7.6849999999999996,9.4489999999999998,11.712,14.644 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,728,-0.1817,7.6852999999999998,0.20285,4.3150000000000004,5.1959999999999997,6.2969999999999997,7.6849999999999996,9.4499999999999993,11.712999999999999,14.647 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,729,-0.18190000000000001,7.6856999999999998,0.20288,4.3150000000000004,5.1959999999999997,6.2969999999999997,7.6859999999999999,9.4510000000000005,11.715,14.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,730,-0.182,7.6860999999999997,0.20291000000000001,4.3150000000000004,5.1959999999999997,6.298,7.6859999999999999,9.4510000000000005,11.717000000000001,14.651999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,731,-0.1822,7.6864999999999997,0.20294999999999999,4.3150000000000004,5.1959999999999997,6.298,7.6859999999999999,9.452,11.718,14.654999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,732,-0.18240000000000001,7.6870000000000003,0.20297999999999999,4.3150000000000004,5.1959999999999997,6.298,7.6870000000000003,9.4529999999999994,11.72,14.659000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,733,-0.1825,7.6874000000000002,0.20301,4.3150000000000004,5.1959999999999997,6.298,7.6870000000000003,9.4540000000000006,11.722,14.661 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,734,-0.1827,7.6878000000000002,0.20304,4.3150000000000004,5.1959999999999997,6.298,7.6879999999999997,9.4550000000000001,11.723000000000001,14.664 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,735,-0.18290000000000001,7.6882999999999999,0.20308000000000001,4.3150000000000004,5.1959999999999997,6.298,7.6879999999999997,9.4559999999999995,11.725,14.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,736,-0.183,7.6886999999999999,0.20311000000000001,4.3150000000000004,5.1959999999999997,6.2990000000000004,7.6890000000000001,9.4570000000000007,11.727,14.67 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,737,-0.1832,7.6890999999999998,0.20313999999999999,4.3150000000000004,5.1959999999999997,6.2990000000000004,7.6890000000000001,9.4580000000000002,11.728,14.673 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,738,-0.18340000000000001,7.6896000000000004,0.20316999999999999,4.3150000000000004,5.1959999999999997,6.2990000000000004,7.69,9.4589999999999996,11.73,14.676 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,739,-0.1835,7.69,0.20321,4.3150000000000004,5.1959999999999997,6.2990000000000004,7.69,9.4589999999999996,11.731999999999999,14.679 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,740,-0.1837,7.6905000000000001,0.20324,4.3150000000000004,5.1959999999999997,6.2990000000000004,7.69,9.4600000000000009,11.733000000000001,14.682 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,741,-0.18379999999999999,7.6909000000000001,0.20327000000000001,4.3150000000000004,5.1959999999999997,6.3,7.6909999999999998,9.4610000000000003,11.734999999999999,14.685 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,742,-0.184,7.6913999999999998,0.20330999999999999,4.3150000000000004,5.1959999999999997,6.3,7.6909999999999998,9.4619999999999997,11.737,14.688000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,743,-0.1842,7.6917999999999997,0.20333999999999999,4.3150000000000004,5.1970000000000001,6.3,7.6920000000000002,9.4629999999999992,11.738,14.691000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,744,-0.18429999999999999,7.6923000000000004,0.20337,4.3150000000000004,5.1970000000000001,6.3,7.6920000000000002,9.4640000000000004,11.74,14.694000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,745,-0.1845,7.6927000000000003,0.2034,4.3150000000000004,5.1970000000000001,6.3,7.6929999999999996,9.4649999999999999,11.742000000000001,14.696999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,746,-0.18459999999999999,7.6932,0.20344000000000001,4.3150000000000004,5.1970000000000001,6.3,7.6929999999999996,9.4659999999999993,11.744,14.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,747,-0.18479999999999999,7.6936999999999998,0.20347000000000001,4.3150000000000004,5.1970000000000001,6.3010000000000002,7.694,9.4670000000000005,11.744999999999999,14.702999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,748,-0.185,7.6940999999999997,0.20349999999999999,4.3150000000000004,5.1970000000000001,6.3010000000000002,7.694,9.468,11.747,14.706 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,749,-0.18509999999999999,7.6946000000000003,0.20354,4.3150000000000004,5.1970000000000001,6.3010000000000002,7.6950000000000003,9.4689999999999994,11.749000000000001,14.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,750,-0.18529999999999999,7.6951000000000001,0.20357,4.3150000000000004,5.1970000000000001,6.3010000000000002,7.6950000000000003,9.4700000000000006,11.750999999999999,14.712999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,751,-0.1855,7.6955,0.2036,4.3150000000000004,5.1970000000000001,6.3010000000000002,7.6959999999999997,9.4700000000000006,11.752000000000001,14.715 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,752,-0.18559999999999999,7.6959999999999997,0.20363999999999999,4.3150000000000004,5.1970000000000001,6.3019999999999996,7.6959999999999997,9.4719999999999995,11.754,14.718999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,753,-0.18579999999999999,7.6965000000000003,0.20366999999999999,4.3150000000000004,5.1970000000000001,6.3019999999999996,7.6959999999999997,9.4719999999999995,11.756,14.722 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,754,-0.18590000000000001,7.6969000000000003,0.20369999999999999,4.3150000000000004,5.1970000000000001,6.3019999999999996,7.6970000000000001,9.4730000000000008,11.757,14.724 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,755,-0.18609999999999999,7.6974,0.20374,4.3150000000000004,5.1970000000000001,6.3019999999999996,7.6970000000000001,9.4740000000000002,11.759,14.728 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,756,-0.18629999999999999,7.6978999999999997,0.20377000000000001,4.3150000000000004,5.1970000000000001,6.3029999999999999,7.6980000000000004,9.4749999999999996,11.760999999999999,14.731 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,757,-0.18640000000000001,7.6984000000000004,0.20380000000000001,4.3150000000000004,5.1970000000000001,6.3029999999999999,7.6980000000000004,9.4760000000000009,11.763,14.734 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,758,-0.18659999999999999,7.6989000000000001,0.20383999999999999,4.3150000000000004,5.1970000000000001,6.3029999999999999,7.6989999999999998,9.4770000000000003,11.765000000000001,14.737 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,759,-0.1867,7.6993,0.20387,4.3150000000000004,5.1970000000000001,6.3029999999999999,7.6989999999999998,9.4779999999999998,11.766,14.74 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,760,-0.18690000000000001,7.6997999999999998,0.2039,4.3150000000000004,5.1980000000000004,6.3029999999999999,7.7,9.4789999999999992,11.768000000000001,14.743 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,761,-0.187,7.7003000000000004,0.20394000000000001,4.3140000000000001,5.1980000000000004,6.3040000000000003,7.7,9.48,11.77,14.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,762,-0.18720000000000001,7.7008000000000001,0.20397000000000001,4.3150000000000004,5.1980000000000004,6.3040000000000003,7.7009999999999996,9.4809999999999999,11.772,14.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,763,-0.18740000000000001,7.7012999999999998,0.20399999999999999,4.3150000000000004,5.1980000000000004,6.3040000000000003,7.7009999999999996,9.4819999999999993,11.773,14.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,764,-0.1875,7.7018000000000004,0.20404,4.3150000000000004,5.1980000000000004,6.3040000000000003,7.702,9.4830000000000005,11.775,14.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,765,-0.18770000000000001,7.7023000000000001,0.20407,4.3150000000000004,5.1980000000000004,6.3040000000000003,7.702,9.484,11.776999999999999,14.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,766,-0.18779999999999999,7.7027999999999999,0.20411000000000001,4.3140000000000001,5.1980000000000004,6.3049999999999997,7.7030000000000003,9.4849999999999994,11.779,14.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,767,-0.188,7.7032999999999996,0.20413999999999999,4.3150000000000004,5.1980000000000004,6.3049999999999997,7.7030000000000003,9.4860000000000007,11.781000000000001,14.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,768,-0.18820000000000001,7.7038000000000002,0.20416999999999999,4.3150000000000004,5.1980000000000004,6.3049999999999997,7.7039999999999997,9.4870000000000001,11.782,14.769 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,769,-0.1883,7.7042999999999999,0.20421,4.3150000000000004,5.1980000000000004,6.3049999999999997,7.7039999999999997,9.4879999999999995,11.784000000000001,14.772 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,770,-0.1885,7.7047999999999996,0.20424,4.3150000000000004,5.1980000000000004,6.306,7.7050000000000001,9.4890000000000008,11.786,14.775 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,771,-0.18859999999999999,7.7053000000000003,0.20427999999999999,4.3140000000000001,5.1980000000000004,6.306,7.7050000000000001,9.49,11.788,14.778 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,772,-0.1888,7.7058,0.20430999999999999,4.3150000000000004,5.1980000000000004,6.306,7.7060000000000004,9.4909999999999997,11.79,14.781000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,773,-0.18890000000000001,7.7062999999999997,0.20433999999999999,4.3150000000000004,5.1980000000000004,6.306,7.7060000000000004,9.4920000000000009,11.791,14.784000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,774,-0.18909999999999999,7.7068000000000003,0.20438000000000001,4.3140000000000001,5.1989999999999998,6.306,7.7069999999999999,9.4930000000000003,11.792999999999999,14.788 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,775,-0.1893,7.7073,0.20441000000000001,4.3150000000000004,5.1989999999999998,6.3070000000000004,7.7069999999999999,9.4939999999999998,11.795,14.791 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,776,-0.18940000000000001,7.7077999999999998,0.20444999999999999,4.3140000000000001,5.1989999999999998,6.3070000000000004,7.7080000000000002,9.4949999999999992,11.797000000000001,14.794 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,777,-0.18959999999999999,7.7083000000000004,0.20448,4.3150000000000004,5.1989999999999998,6.3070000000000004,7.7080000000000002,9.4960000000000004,11.798999999999999,14.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,778,-0.18970000000000001,7.7088000000000001,0.20451,4.3150000000000004,5.1989999999999998,6.3070000000000004,7.7089999999999996,9.4969999999999999,11.8,14.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,779,-0.18990000000000001,7.7092999999999998,0.20455000000000001,4.3140000000000001,5.1989999999999998,6.3079999999999998,7.7089999999999996,9.4979999999999993,11.802,14.804 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,780,-0.19,7.7098000000000004,0.20458000000000001,4.3140000000000001,5.1989999999999998,6.3079999999999998,7.71,9.4990000000000006,11.804,14.807 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,781,-0.19020000000000001,7.7103000000000002,0.20462,4.3140000000000001,5.1989999999999998,6.3079999999999998,7.71,9.5,11.805999999999999,14.81 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,782,-0.19040000000000001,7.7107999999999999,0.20465,4.3150000000000004,5.1989999999999998,6.3079999999999998,7.7110000000000003,9.5009999999999994,11.808,14.813000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,783,-0.1905,7.7112999999999996,0.20468,4.3150000000000004,5.1989999999999998,6.3079999999999998,7.7110000000000003,9.5020000000000007,11.808999999999999,14.816000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,784,-0.19070000000000001,7.7118000000000002,0.20472000000000001,4.3140000000000001,5.1989999999999998,6.3090000000000002,7.7119999999999997,9.5030000000000001,11.811,14.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,785,-0.1908,7.7122999999999999,0.20474999999999999,4.3140000000000001,5.1989999999999998,6.3090000000000002,7.7119999999999997,9.5039999999999996,11.813000000000001,14.823 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,786,-0.191,7.7129000000000003,0.20479,4.3140000000000001,5.1989999999999998,6.3090000000000002,7.7130000000000001,9.5050000000000008,11.815,14.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,787,-0.19109999999999999,7.7134,0.20482,4.3140000000000001,5.1989999999999998,6.3090000000000002,7.7130000000000001,9.5060000000000002,11.817,14.829000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,788,-0.1913,7.7138999999999998,0.20485999999999999,4.3140000000000001,5.2,6.31,7.7140000000000004,9.5069999999999997,11.819000000000001,14.833 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,789,-0.19139999999999999,7.7144000000000004,0.20488999999999999,4.3140000000000001,5.2,6.31,7.7140000000000004,9.5079999999999991,11.82,14.836 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,790,-0.19159999999999999,7.7149000000000001,0.20491999999999999,4.3150000000000004,5.2,6.31,7.7149999999999999,9.5090000000000003,11.821999999999999,14.839 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,791,-0.1918,7.7153999999999998,0.20496,4.3140000000000001,5.2,6.31,7.7149999999999999,9.51,11.824,14.842000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,792,-0.19189999999999999,7.7159000000000004,0.20499000000000001,4.3140000000000001,5.2,6.3109999999999999,7.7160000000000002,9.5109999999999992,11.826000000000001,14.845000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,793,-0.19209999999999999,7.7164000000000001,0.20502999999999999,4.3140000000000001,5.2,6.3109999999999999,7.7160000000000002,9.5120000000000005,11.827999999999999,14.849 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,794,-0.19220000000000001,7.7169999999999996,0.20505999999999999,4.3140000000000001,5.2,6.3109999999999999,7.7169999999999996,9.5129999999999999,11.83,14.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,795,-0.19239999999999999,7.7175000000000002,0.2051,4.3140000000000001,5.2,6.3109999999999999,7.718,9.5139999999999993,11.832000000000001,14.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,796,-0.1925,7.718,0.20513000000000001,4.3140000000000001,5.2,6.3109999999999999,7.718,9.5150000000000006,11.833,14.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,797,-0.19270000000000001,7.7184999999999997,0.20516999999999999,4.3140000000000001,5.2,6.3120000000000003,7.718,9.516,11.835000000000001,14.862 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,798,-0.1928,7.7190000000000003,0.20519999999999999,4.3140000000000001,5.2,6.3120000000000003,7.7190000000000003,9.5169999999999995,11.837,14.865 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,799,-0.193,7.7195,0.20524000000000001,4.3140000000000001,5.2,6.3120000000000003,7.72,9.5180000000000007,11.839,14.868 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,800,-0.19309999999999999,7.72,0.20527000000000001,4.3140000000000001,5.2,6.3120000000000003,7.72,9.5190000000000001,11.840999999999999,14.871 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,801,-0.1933,7.7205000000000004,0.20530000000000001,4.3140000000000001,5.2009999999999996,6.3129999999999997,7.72,9.52,11.842000000000001,14.874000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,802,-0.19339999999999999,7.7210999999999999,0.20533999999999999,4.3140000000000001,5.2009999999999996,6.3129999999999997,7.7210000000000001,9.5210000000000008,11.845000000000001,14.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,803,-0.19359999999999999,7.7215999999999996,0.20537,4.3140000000000001,5.2009999999999996,6.3129999999999997,7.7220000000000004,9.5220000000000002,11.846,14.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,804,-0.1938,7.7221000000000002,0.20541000000000001,4.3140000000000001,5.2009999999999996,6.3129999999999997,7.7220000000000004,9.5229999999999997,11.848000000000001,14.885 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,805,-0.19389999999999999,7.7225999999999999,0.20544000000000001,4.3140000000000001,5.2009999999999996,6.3140000000000001,7.7229999999999999,9.5239999999999991,11.85,14.888 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,806,-0.19409999999999999,7.7230999999999996,0.20548,4.3140000000000001,5.2009999999999996,6.3140000000000001,7.7229999999999999,9.5250000000000004,11.852,14.891 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,807,-0.19420000000000001,7.7236000000000002,0.20551,4.3140000000000001,5.2009999999999996,6.3140000000000001,7.7240000000000002,9.5259999999999998,11.853999999999999,14.894 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,808,-0.19439999999999999,7.7241,0.20555000000000001,4.3140000000000001,5.2009999999999996,6.3140000000000001,7.7240000000000002,9.5269999999999992,11.856,14.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,809,-0.19450000000000001,7.7247000000000003,0.20558000000000001,4.3140000000000001,5.2009999999999996,6.3140000000000001,7.7249999999999996,9.5280000000000005,11.856999999999999,14.901 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,810,-0.19470000000000001,7.7252000000000001,0.20562,4.3140000000000001,5.2009999999999996,6.3150000000000004,7.7249999999999996,9.5289999999999999,11.859,14.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,811,-0.1948,7.7256999999999998,0.20565,4.3140000000000001,5.2009999999999996,6.3150000000000004,7.726,9.5299999999999994,11.861000000000001,14.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,812,-0.19500000000000001,7.7262000000000004,0.20569000000000001,4.3140000000000001,5.2009999999999996,6.3150000000000004,7.726,9.5310000000000006,11.863,14.911 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,813,-0.1951,7.7267000000000001,0.20571999999999999,4.3140000000000001,5.2009999999999996,6.3150000000000004,7.7270000000000003,9.532,11.865,14.914 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,814,-0.1953,7.7271999999999998,0.20576,4.3140000000000001,5.2009999999999996,6.3159999999999998,7.7270000000000003,9.5329999999999995,11.867000000000001,14.917 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,815,-0.19539999999999999,7.7276999999999996,0.20579,4.3140000000000001,5.2009999999999996,6.3159999999999998,7.7279999999999998,9.5340000000000007,11.868,14.92 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,816,-0.1956,7.7282000000000002,0.20583000000000001,4.3140000000000001,5.202,6.3159999999999998,7.7279999999999998,9.5350000000000001,11.871,14.923999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,817,-0.19570000000000001,7.7286999999999999,0.20585999999999999,4.3140000000000001,5.202,6.3159999999999998,7.7290000000000001,9.5359999999999996,11.872,14.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,818,-0.19589999999999999,7.7293000000000003,0.2059,4.3140000000000001,5.202,6.3159999999999998,7.7290000000000001,9.5370000000000008,11.874000000000001,14.930999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,819,-0.19600000000000001,7.7298,0.20593,4.3140000000000001,5.202,6.3170000000000002,7.73,9.5380000000000003,11.875999999999999,14.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,820,-0.19620000000000001,7.7302999999999997,0.20596999999999999,4.3140000000000001,5.202,6.3170000000000002,7.73,9.5389999999999997,11.878,14.936999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,821,-0.1963,7.7308000000000003,0.20599999999999999,4.3140000000000001,5.202,6.3170000000000002,7.7309999999999999,9.5399999999999991,11.88,14.94 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,822,-0.19650000000000001,7.7313000000000001,0.20604,4.3140000000000001,5.202,6.3170000000000002,7.7309999999999999,9.5410000000000004,11.882,14.944000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,823,-0.1966,7.7317999999999998,0.20607,4.3140000000000001,5.202,6.3179999999999996,7.7320000000000002,9.5419999999999998,11.882999999999999,14.946 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,824,-0.1968,7.7323000000000004,0.20610000000000001,4.3140000000000001,5.202,6.3179999999999996,7.7320000000000002,9.5429999999999993,11.885,14.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,825,-0.19689999999999999,7.7328000000000001,0.20613999999999999,4.3140000000000001,5.202,6.3179999999999996,7.7329999999999997,9.5440000000000005,11.887,14.952999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,826,-0.1971,7.7332999999999998,0.20616999999999999,4.3140000000000001,5.202,6.3179999999999996,7.7329999999999997,9.5449999999999999,11.888999999999999,14.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,827,-0.19719999999999999,7.7337999999999996,0.20621,4.3140000000000001,5.202,6.3179999999999996,7.734,9.5459999999999994,11.891,14.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,828,-0.19739999999999999,7.7343000000000002,0.20624000000000001,4.3140000000000001,5.202,6.319,7.734,9.5470000000000006,11.893000000000001,14.962999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,829,-0.19750000000000001,7.7347999999999999,0.20627999999999999,4.3140000000000001,5.202,6.319,7.7350000000000003,9.548,11.894,14.965999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,830,-0.19769999999999999,7.7352999999999996,0.20630999999999999,4.3140000000000001,5.2030000000000003,6.319,7.7350000000000003,9.5489999999999995,11.896000000000001,14.968999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,831,-0.1978,7.7358000000000002,0.20635000000000001,4.3140000000000001,5.2030000000000003,6.319,7.7359999999999998,9.5500000000000007,11.898,14.973000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,832,-0.19800000000000001,7.7363,0.20638999999999999,4.3140000000000001,5.2030000000000003,6.319,7.7359999999999998,9.5510000000000002,11.9,14.976000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,833,-0.1981,7.7367999999999997,0.20641999999999999,4.3140000000000001,5.2030000000000003,6.32,7.7370000000000001,9.5519999999999996,11.901999999999999,14.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,834,-0.1983,7.7373000000000003,0.20646,4.3140000000000001,5.2030000000000003,6.32,7.7370000000000001,9.5530000000000008,11.904,14.983000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,835,-0.19839999999999999,7.7378,0.20649000000000001,4.3140000000000001,5.2030000000000003,6.32,7.7380000000000004,9.5540000000000003,11.906000000000001,14.986000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,836,-0.1986,7.7382999999999997,0.20652999999999999,4.3140000000000001,5.2030000000000003,6.32,7.7380000000000004,9.5549999999999997,11.907999999999999,14.989000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,837,-0.19869999999999999,7.7388000000000003,0.20655999999999999,4.3140000000000001,5.2030000000000003,6.3209999999999997,7.7389999999999999,9.5559999999999992,11.909000000000001,14.992000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,838,-0.19889999999999999,7.7393000000000001,0.20660000000000001,4.3140000000000001,5.2030000000000003,6.3209999999999997,7.7389999999999999,9.5570000000000004,11.911,14.996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,839,-0.19900000000000001,7.7397999999999998,0.20663000000000001,4.3140000000000001,5.2030000000000003,6.3209999999999997,7.74,9.5579999999999998,11.913,14.999000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,840,-0.19919999999999999,7.7403000000000004,0.20666999999999999,4.3140000000000001,5.2030000000000003,6.3209999999999997,7.74,9.5589999999999993,11.914999999999999,15.002000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,841,-0.1993,7.7408000000000001,0.20669999999999999,4.3140000000000001,5.2030000000000003,6.3209999999999997,7.7409999999999997,9.56,11.917,15.005000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,842,-0.19950000000000001,7.7412999999999998,0.20674000000000001,4.3140000000000001,5.2030000000000003,6.3220000000000001,7.7409999999999997,9.5609999999999999,11.919,15.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,843,-0.1996,7.7417999999999996,0.20677000000000001,4.3140000000000001,5.2030000000000003,6.3220000000000001,7.742,9.5619999999999994,11.92,15.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,844,-0.19980000000000001,7.7423000000000002,0.20680999999999999,4.3140000000000001,5.2030000000000003,6.3220000000000001,7.742,9.5630000000000006,11.922000000000001,15.016 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,845,-0.19989999999999999,7.7427999999999999,0.20684,4.3140000000000001,5.2030000000000003,6.3220000000000001,7.7430000000000003,9.5640000000000001,11.923999999999999,15.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,846,-0.2001,7.7432999999999996,0.20688000000000001,4.3140000000000001,5.2030000000000003,6.3230000000000004,7.7430000000000003,9.5649999999999995,11.926,15.022 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,847,-0.20019999999999999,7.7436999999999996,0.20691000000000001,4.3140000000000001,5.2030000000000003,6.3230000000000004,7.7439999999999998,9.5660000000000007,11.928000000000001,15.025 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,848,-0.20039999999999999,7.7442000000000002,0.20695,4.3140000000000001,5.2030000000000003,6.3230000000000004,7.7439999999999998,9.5670000000000002,11.93,15.029 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,849,-0.20050000000000001,7.7446999999999999,0.20698,4.3140000000000001,5.2039999999999997,6.3230000000000004,7.7450000000000001,9.5679999999999996,11.930999999999999,15.031000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,850,-0.20069999999999999,7.7451999999999996,0.20702000000000001,4.3140000000000001,5.2039999999999997,6.3230000000000004,7.7450000000000001,9.5690000000000008,11.933,15.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,851,-0.20080000000000001,7.7457000000000003,0.20705000000000001,4.3140000000000001,5.2039999999999997,6.3239999999999998,7.7460000000000004,9.57,11.935,15.038 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,852,-0.2009,7.7462,0.20709,4.3140000000000001,5.2039999999999997,6.3239999999999998,7.7460000000000004,9.5709999999999997,11.936999999999999,15.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,853,-0.2011,7.7465999999999999,0.20712,4.3140000000000001,5.2039999999999997,6.3239999999999998,7.7469999999999999,9.5719999999999992,11.939,15.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,854,-0.20119999999999999,7.7470999999999997,0.20716000000000001,4.3129999999999997,5.2039999999999997,6.3239999999999998,7.7469999999999999,9.5730000000000004,11.94,15.048 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,855,-0.2014,7.7476000000000003,0.20719000000000001,4.3129999999999997,5.2039999999999997,6.3239999999999998,7.7480000000000002,9.5739999999999998,11.942,15.051 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,856,-0.20150000000000001,7.7481,0.20723,4.3129999999999997,5.2039999999999997,6.3239999999999998,7.7480000000000002,9.5749999999999993,11.944000000000001,15.054 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,857,-0.20169999999999999,7.7485999999999997,0.20727000000000001,4.3129999999999997,5.2039999999999997,6.3250000000000002,7.7489999999999997,9.5760000000000005,11.946,15.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,858,-0.20180000000000001,7.7489999999999997,0.20730000000000001,4.3129999999999997,5.2039999999999997,6.3250000000000002,7.7489999999999997,9.577,11.948,15.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,859,-0.20200000000000001,7.7495000000000003,0.20734,4.3129999999999997,5.2039999999999997,6.3250000000000002,7.75,9.5779999999999994,11.95,15.065 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,860,-0.2021,7.75,0.20737,4.3129999999999997,5.2039999999999997,6.3250000000000002,7.75,9.5790000000000006,11.951000000000001,15.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,861,-0.20230000000000001,7.7504,0.20741000000000001,4.3129999999999997,5.2039999999999997,6.3250000000000002,7.75,9.58,11.952999999999999,15.071 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,862,-0.2024,7.7508999999999997,0.20744000000000001,4.3129999999999997,5.2039999999999997,6.3259999999999996,7.7510000000000003,9.58,11.955,15.074 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,863,-0.2026,7.7514000000000003,0.20748,4.3129999999999997,5.2039999999999997,6.3259999999999996,7.7510000000000003,9.5820000000000007,11.957000000000001,15.077999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,864,-0.20269999999999999,7.7518000000000002,0.20751,4.3129999999999997,5.2039999999999997,6.3259999999999996,7.7519999999999998,9.5820000000000007,11.959,15.08 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,865,-0.20280000000000001,7.7523,0.20755000000000001,4.3129999999999997,5.2039999999999997,6.3259999999999996,7.7519999999999998,9.5830000000000002,11.96,15.084 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,866,-0.20300000000000001,7.7527999999999997,0.20757999999999999,4.3129999999999997,5.2039999999999997,6.3259999999999996,7.7530000000000001,9.5839999999999996,11.962,15.087 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,867,-0.2031,7.7531999999999996,0.20762,4.3129999999999997,5.2039999999999997,6.3259999999999996,7.7530000000000001,9.5850000000000009,11.964,15.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,868,-0.20330000000000001,7.7537000000000003,0.20766000000000001,4.3129999999999997,5.2039999999999997,6.327,7.7539999999999996,9.5860000000000003,11.965999999999999,15.093999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,869,-0.2034,7.7541000000000002,0.20769000000000001,4.3129999999999997,5.2039999999999997,6.327,7.7539999999999996,9.5869999999999997,11.968,15.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,870,-0.2036,7.7545999999999999,0.20773,4.3129999999999997,5.2039999999999997,6.327,7.7549999999999999,9.5879999999999992,11.97,15.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,871,-0.20369999999999999,7.7550999999999997,0.20776,4.3129999999999997,5.2039999999999997,6.327,7.7549999999999999,9.5890000000000004,11.971,15.103 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,872,-0.2039,7.7554999999999996,0.20780000000000001,4.3129999999999997,5.2039999999999997,6.327,7.7560000000000002,9.59,11.973000000000001,15.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,873,-0.20399999999999999,7.7560000000000002,0.20782999999999999,4.3129999999999997,5.2039999999999997,6.3280000000000003,7.7560000000000002,9.5909999999999993,11.975,15.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,874,-0.2041,7.7564000000000002,0.20787,4.3129999999999997,5.2039999999999997,6.3280000000000003,7.7560000000000002,9.5920000000000005,11.977,15.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,875,-0.20430000000000001,7.7568999999999999,0.20791000000000001,4.3120000000000003,5.2039999999999997,6.3280000000000003,7.7569999999999997,9.593,11.978999999999999,15.117000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,876,-0.2044,7.7572999999999999,0.20794000000000001,4.3120000000000003,5.2039999999999997,6.3280000000000003,7.7569999999999997,9.5939999999999994,11.98,15.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,877,-0.2046,7.7576999999999998,0.20798,4.3120000000000003,5.2039999999999997,6.3280000000000003,7.758,9.5950000000000006,11.981999999999999,15.122999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,878,-0.20469999999999999,7.7582000000000004,0.20801,4.3120000000000003,5.2039999999999997,6.3280000000000003,7.758,9.5960000000000001,11.984,15.125999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,879,-0.2049,7.7586000000000004,0.20805000000000001,4.3120000000000003,5.2039999999999997,6.3289999999999997,7.7590000000000003,9.5969999999999995,11.986000000000001,15.129 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,880,-0.20499999999999999,7.7591000000000001,0.20807999999999999,4.3120000000000003,5.2039999999999997,6.3289999999999997,7.7590000000000003,9.5980000000000008,11.987,15.132 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,881,-0.20519999999999999,7.7595000000000001,0.20812,4.3120000000000003,5.2039999999999997,6.3289999999999997,7.76,9.5990000000000002,11.989000000000001,15.135999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,882,-0.20530000000000001,7.7599,0.20816000000000001,4.3120000000000003,5.2039999999999997,6.3289999999999997,7.76,9.5990000000000002,11.991,15.138999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,883,-0.2054,7.7603999999999997,0.20818999999999999,4.3120000000000003,5.2039999999999997,6.3289999999999997,7.76,9.6,11.993,15.141999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,884,-0.2056,7.7607999999999997,0.20823,4.3120000000000003,5.2039999999999997,6.3289999999999997,7.7610000000000001,9.6010000000000009,11.994999999999999,15.145 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,885,-0.20569999999999999,7.7611999999999997,0.20826,4.3120000000000003,5.2039999999999997,6.3289999999999997,7.7610000000000001,9.6020000000000003,11.996,15.148 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,886,-0.2059,7.7617000000000003,0.20830000000000001,4.3120000000000003,5.2039999999999997,6.33,7.7619999999999996,9.6029999999999998,11.997999999999999,15.151999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,887,-0.20599999999999999,7.7621000000000002,0.20832999999999999,4.3120000000000003,5.2039999999999997,6.33,7.7619999999999996,9.6039999999999992,12,15.154999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,888,-0.20619999999999999,7.7625000000000002,0.20837,4.3120000000000003,5.2039999999999997,6.33,7.7619999999999996,9.6050000000000004,12.002000000000001,15.157999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,889,-0.20630000000000001,7.7629000000000001,0.20841000000000001,4.3109999999999999,5.2039999999999997,6.33,7.7629999999999999,9.6059999999999999,12.003,15.161 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,890,-0.2064,7.7633999999999999,0.20843999999999999,4.3120000000000003,5.2039999999999997,6.33,7.7629999999999999,9.6069999999999993,12.005000000000001,15.164 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,891,-0.20660000000000001,7.7637999999999998,0.20848,4.3109999999999999,5.2039999999999997,6.33,7.7640000000000002,9.6080000000000005,12.007,15.167999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,892,-0.20669999999999999,7.7641999999999998,0.20851,4.3109999999999999,5.2039999999999997,6.3310000000000004,7.7640000000000002,9.609,12.009,15.170999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,893,-0.2069,7.7645999999999997,0.20855000000000001,4.3109999999999999,5.2039999999999997,6.3310000000000004,7.7649999999999997,9.61,12.01,15.173999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,894,-0.20699999999999999,7.7649999999999997,0.20859,4.3109999999999999,5.2039999999999997,6.3310000000000004,7.7649999999999997,9.61,12.012,15.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,895,-0.2072,7.7653999999999996,0.20862,4.3109999999999999,5.2039999999999997,6.3310000000000004,7.7649999999999997,9.6110000000000007,12.013999999999999,15.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,896,-0.20730000000000001,7.7659000000000002,0.20866000000000001,4.3109999999999999,5.2039999999999997,6.3310000000000004,7.766,9.6120000000000001,12.016,15.183999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,897,-0.2074,7.7663000000000002,0.20868999999999999,4.3109999999999999,5.2039999999999997,6.3310000000000004,7.766,9.6129999999999995,12.016999999999999,15.186999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,898,-0.20760000000000001,7.7667000000000002,0.20873,4.3109999999999999,5.2039999999999997,6.3310000000000004,7.7670000000000003,9.6140000000000008,12.019,15.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,899,-0.2077,7.7671000000000001,0.20877000000000001,4.3109999999999999,5.2039999999999997,6.3310000000000004,7.7670000000000003,9.6150000000000002,12.021000000000001,15.193 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,900,-0.2079,7.7675000000000001,0.20880000000000001,4.3109999999999999,5.2039999999999997,6.3319999999999999,7.7679999999999998,9.6159999999999997,12.023,15.196 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,901,-0.20799999999999999,7.7679,0.20884,4.3109999999999999,5.2039999999999997,6.3319999999999999,7.7679999999999998,9.6170000000000009,12.025,15.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,902,-0.20810000000000001,7.7683,0.20887,4.3109999999999999,5.2039999999999997,6.3319999999999999,7.7679999999999998,9.6180000000000003,12.026,15.202 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,903,-0.20830000000000001,7.7686999999999999,0.20891000000000001,4.3099999999999996,5.2039999999999997,6.3319999999999999,7.7690000000000001,9.6189999999999998,12.028,15.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,904,-0.2084,7.7690999999999999,0.20895,4.3099999999999996,5.2039999999999997,6.3319999999999999,7.7690000000000001,9.6189999999999998,12.03,15.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,905,-0.20860000000000001,7.7694999999999999,0.20898,4.3099999999999996,5.2039999999999997,6.3319999999999999,7.77,9.6199999999999992,12.031000000000001,15.212 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,906,-0.2087,7.7698999999999998,0.20902000000000001,4.3099999999999996,5.2039999999999997,6.3319999999999999,7.77,9.6210000000000004,12.032999999999999,15.215999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,907,-0.20880000000000001,7.7702999999999998,0.20905000000000001,4.3099999999999996,5.2039999999999997,6.3319999999999999,7.77,9.6219999999999999,12.035,15.218 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,908,-0.20899999999999999,7.7706999999999997,0.20909,4.3099999999999996,5.2039999999999997,6.3330000000000002,7.7709999999999999,9.6229999999999993,12.037000000000001,15.222 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,909,-0.20910000000000001,7.7709999999999999,0.20913000000000001,4.3099999999999996,5.2039999999999997,6.3330000000000002,7.7709999999999999,9.6240000000000006,12.038,15.225 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,910,-0.20930000000000001,7.7713999999999999,0.20916000000000001,4.3099999999999996,5.2039999999999997,6.3330000000000002,7.7709999999999999,9.625,12.04,15.228 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,911,-0.2094,7.7717999999999998,0.2092,4.3099999999999996,5.2039999999999997,6.3330000000000002,7.7720000000000002,9.6259999999999994,12.042,15.231 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,912,-0.20949999999999999,7.7721999999999998,0.20924000000000001,4.3090000000000002,5.2039999999999997,6.3330000000000002,7.7720000000000002,9.6259999999999994,12.044,15.234999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,913,-0.2097,7.7725999999999997,0.20927000000000001,4.3090000000000002,5.2039999999999997,6.3330000000000002,7.7729999999999997,9.6270000000000007,12.045,15.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,914,-0.20979999999999999,7.7729999999999997,0.20931,4.3090000000000002,5.2039999999999997,6.3330000000000002,7.7729999999999997,9.6280000000000001,12.047000000000001,15.241 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,915,-0.21,7.7732999999999999,0.20934,4.3090000000000002,5.2039999999999997,6.3330000000000002,7.7729999999999997,9.6289999999999996,12.048,15.244 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,916,-0.21010000000000001,7.7736999999999998,0.20938000000000001,4.3090000000000002,5.2039999999999997,6.3330000000000002,7.774,9.6300000000000008,12.05,15.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,917,-0.2102,7.7740999999999998,0.20942,4.3090000000000002,5.2039999999999997,6.3339999999999996,7.774,9.6310000000000002,12.052,15.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,918,-0.2104,7.7744,0.20945,4.3090000000000002,5.2039999999999997,6.3339999999999996,7.774,9.6319999999999997,12.054,15.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,919,-0.21049999999999999,7.7747999999999999,0.20949000000000001,4.3090000000000002,5.2039999999999997,6.3339999999999996,7.7750000000000004,9.6319999999999997,12.055,15.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,920,-0.2107,7.7751999999999999,0.20952999999999999,4.3090000000000002,5.2039999999999997,6.3339999999999996,7.7750000000000004,9.6329999999999991,12.057,15.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,921,-0.21079999999999999,7.7755000000000001,0.20956,4.3090000000000002,5.2039999999999997,6.3339999999999996,7.7759999999999998,9.6340000000000003,12.058999999999999,15.263 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,922,-0.2109,7.7759,0.20960000000000001,4.3079999999999998,5.2039999999999997,6.3339999999999996,7.7759999999999998,9.6349999999999998,12.06,15.266 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,923,-0.21110000000000001,7.7763,0.20963999999999999,4.3079999999999998,5.2030000000000003,6.3339999999999996,7.7759999999999998,9.6359999999999992,12.061999999999999,15.269 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,924,-0.2112,7.7766000000000002,0.20967,4.3079999999999998,5.2030000000000003,6.3339999999999996,7.7770000000000001,9.6370000000000005,12.064,15.272 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,925,-0.2114,7.7770000000000001,0.20971000000000001,4.3079999999999998,5.2030000000000003,6.3339999999999996,7.7770000000000001,9.6379999999999999,12.066000000000001,15.276 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,926,-0.21149999999999999,7.7773000000000003,0.20974999999999999,4.3079999999999998,5.2030000000000003,6.3339999999999996,7.7770000000000001,9.6379999999999999,12.067,15.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,927,-0.21160000000000001,7.7777000000000003,0.20977999999999999,4.3079999999999998,5.2030000000000003,6.3339999999999996,7.7779999999999996,9.6389999999999993,12.069000000000001,15.281000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,928,-0.21179999999999999,7.7779999999999996,0.20982000000000001,4.3079999999999998,5.2030000000000003,6.3339999999999996,7.7779999999999996,9.64,12.071,15.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,929,-0.21190000000000001,7.7784000000000004,0.20985000000000001,4.3079999999999998,5.2030000000000003,6.335,7.7779999999999996,9.641,12.071999999999999,15.288 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,930,-0.21210000000000001,7.7786999999999997,0.20988999999999999,4.3079999999999998,5.2030000000000003,6.335,7.7789999999999999,9.6419999999999995,12.074,15.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,931,-0.2122,7.7790999999999997,0.20993000000000001,4.3070000000000004,5.2030000000000003,6.335,7.7789999999999999,9.6430000000000007,12.076000000000001,15.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,932,-0.21229999999999999,7.7793999999999999,0.20996000000000001,4.3070000000000004,5.2030000000000003,6.335,7.7789999999999999,9.6430000000000007,12.077,15.297000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,933,-0.21249999999999999,7.7797999999999998,0.21,4.3070000000000004,5.2030000000000003,6.335,7.78,9.6440000000000001,12.079000000000001,15.301 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,934,-0.21260000000000001,7.7801,0.21004,4.3070000000000004,5.2030000000000003,6.335,7.78,9.6449999999999996,12.081,15.304 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,935,-0.2127,7.7804000000000002,0.21007000000000001,4.3070000000000004,5.2030000000000003,6.335,7.78,9.6460000000000008,12.082000000000001,15.305999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,936,-0.21290000000000001,7.7808000000000002,0.21010999999999999,4.3070000000000004,5.2030000000000003,6.335,7.7809999999999997,9.6470000000000002,12.084,15.31 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,937,-0.21299999999999999,7.7811000000000003,0.21015,4.3070000000000004,5.2030000000000003,6.335,7.7809999999999997,9.6470000000000002,12.086,15.313000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,938,-0.2132,7.7813999999999997,0.21018999999999999,4.306,5.2030000000000003,6.335,7.7809999999999997,9.6479999999999997,12.087,15.316000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,939,-0.21329999999999999,7.7817999999999996,0.21021999999999999,4.306,5.2030000000000003,6.335,7.782,9.6489999999999991,12.089,15.319000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,940,-0.21340000000000001,7.7820999999999998,0.21026,4.306,5.202,6.335,7.782,9.65,12.090999999999999,15.321999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,941,-0.21360000000000001,7.7824,0.21029999999999999,4.306,5.202,6.335,7.782,9.6509999999999998,12.092000000000001,15.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,942,-0.2137,7.7827000000000002,0.21032999999999999,4.306,5.202,6.335,7.7830000000000004,9.6509999999999998,12.093999999999999,15.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,943,-0.21379999999999999,7.7831000000000001,0.21037,4.306,5.202,6.3360000000000003,7.7830000000000004,9.6519999999999992,12.096,15.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,944,-0.214,7.7834000000000003,0.21041000000000001,4.306,5.202,6.3360000000000003,7.7830000000000004,9.6530000000000005,12.097,15.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,945,-0.21410000000000001,7.7836999999999996,0.21043999999999999,4.3049999999999997,5.202,6.3360000000000003,7.7839999999999998,9.6539999999999999,12.099,15.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,946,-0.2142,7.7839999999999998,0.21048,4.3049999999999997,5.202,6.3360000000000003,7.7839999999999998,9.6549999999999994,12.1,15.340999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,947,-0.21440000000000001,7.7843,0.21052000000000001,4.3049999999999997,5.202,6.3360000000000003,7.7839999999999998,9.6560000000000006,12.102,15.343999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,948,-0.2145,7.7846000000000002,0.21054999999999999,4.3049999999999997,5.202,6.3360000000000003,7.7850000000000001,9.6560000000000006,12.103,15.347 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,949,-0.2147,7.7849000000000004,0.21059,4.3049999999999997,5.202,6.3360000000000003,7.7850000000000001,9.657,12.105,15.35 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,950,-0.21479999999999999,7.7851999999999997,0.21063000000000001,4.3049999999999997,5.2009999999999996,6.3360000000000003,7.7850000000000001,9.6579999999999995,12.106999999999999,15.353 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,951,-0.21490000000000001,7.7855999999999996,0.21067,4.3040000000000003,5.2009999999999996,6.3360000000000003,7.7859999999999996,9.6590000000000007,12.109,15.356 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,952,-0.21510000000000001,7.7858999999999998,0.2107,4.3040000000000003,5.2009999999999996,6.3360000000000003,7.7859999999999996,9.6590000000000007,12.11,15.359 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,953,-0.2152,7.7862,0.21074000000000001,4.3040000000000003,5.2009999999999996,6.3360000000000003,7.7859999999999996,9.66,12.112,15.362 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,954,-0.21529999999999999,7.7865000000000002,0.21078,4.3040000000000003,5.2009999999999996,6.3360000000000003,7.7859999999999996,9.6609999999999996,12.114000000000001,15.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,955,-0.2155,7.7866999999999997,0.21081,4.3040000000000003,5.2009999999999996,6.3360000000000003,7.7869999999999999,9.6620000000000008,12.115,15.368 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,956,-0.21560000000000001,7.7869999999999999,0.21085000000000001,4.3040000000000003,5.2009999999999996,6.3360000000000003,7.7869999999999999,9.6620000000000008,12.117000000000001,15.371 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,957,-0.2157,7.7873000000000001,0.21088999999999999,4.3029999999999999,5.2009999999999996,6.3360000000000003,7.7869999999999999,9.6630000000000003,12.118,15.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,958,-0.21590000000000001,7.7876000000000003,0.21093000000000001,4.3029999999999999,5.2009999999999996,6.3360000000000003,7.7880000000000003,9.6639999999999997,12.12,15.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,959,-0.216,7.7878999999999996,0.21096000000000001,4.3029999999999999,5.2009999999999996,6.3360000000000003,7.7880000000000003,9.6649999999999991,12.121,15.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,960,-0.21609999999999999,7.7881999999999998,0.21099999999999999,4.3029999999999999,5.2009999999999996,6.3360000000000003,7.7880000000000003,9.6660000000000004,12.122999999999999,15.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,961,-0.21629999999999999,7.7885,0.21104000000000001,4.3029999999999999,5.2,6.3360000000000003,7.7880000000000003,9.6660000000000004,12.125,15.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,962,-0.21640000000000001,7.7888000000000002,0.21107999999999999,4.3029999999999999,5.2,6.3360000000000003,7.7889999999999997,9.6669999999999998,12.125999999999999,15.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,963,-0.21659999999999999,7.7889999999999997,0.21110999999999999,4.3029999999999999,5.2,6.3360000000000003,7.7889999999999997,9.6679999999999993,12.128,15.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,964,-0.2167,7.7892999999999999,0.21115,4.3019999999999996,5.2,6.3360000000000003,7.7889999999999997,9.6690000000000005,12.129,15.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,965,-0.21679999999999999,7.7896000000000001,0.21118999999999999,4.3019999999999996,5.2,6.3360000000000003,7.79,9.6690000000000005,12.131,15.398999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,966,-0.217,7.7899000000000003,0.21123,4.3019999999999996,5.2,6.3360000000000003,7.79,9.67,12.132999999999999,15.403 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,967,-0.21709999999999999,7.7900999999999998,0.21126,4.3019999999999996,5.2,6.3360000000000003,7.79,9.6709999999999994,12.134,15.404999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,968,-0.2172,7.7904,0.21129999999999999,4.3019999999999996,5.2,6.3360000000000003,7.79,9.6720000000000006,12.135999999999999,15.407999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,969,-0.21740000000000001,7.7907000000000002,0.21134,4.3019999999999996,5.1989999999999998,6.3360000000000003,7.7910000000000004,9.6720000000000006,12.138,15.412000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,970,-0.2175,7.7910000000000004,0.21138000000000001,4.3010000000000002,5.1989999999999998,6.3360000000000003,7.7910000000000004,9.673,12.138999999999999,15.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,971,-0.21759999999999999,7.7911999999999999,0.21140999999999999,4.3010000000000002,5.1989999999999998,6.3360000000000003,7.7910000000000004,9.6739999999999995,12.141,15.417 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,972,-0.21779999999999999,7.7915000000000001,0.21145,4.3010000000000002,5.1989999999999998,6.3360000000000003,7.7919999999999998,9.6750000000000007,12.141999999999999,15.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,973,-0.21790000000000001,7.7916999999999996,0.21149000000000001,4.3010000000000002,5.1989999999999998,6.3360000000000003,7.7919999999999998,9.6750000000000007,12.144,15.423999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,974,-0.218,7.7919999999999998,0.21153,4.3010000000000002,5.1989999999999998,6.3360000000000003,7.7919999999999998,9.6760000000000002,12.145,15.427 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,975,-0.21820000000000001,7.7923,0.21157000000000001,4.3,5.1989999999999998,6.3360000000000003,7.7919999999999998,9.6769999999999996,12.147,15.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,976,-0.21829999999999999,7.7925000000000004,0.21160000000000001,4.3,5.1989999999999998,6.3360000000000003,7.7919999999999998,9.6780000000000008,12.148,15.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,977,-0.21840000000000001,7.7927999999999997,0.21163999999999999,4.3,5.1980000000000004,6.3360000000000003,7.7930000000000001,9.6780000000000008,12.15,15.436 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,978,-0.21859999999999999,7.7930000000000001,0.21168000000000001,4.3,5.1980000000000004,6.3360000000000003,7.7930000000000001,9.6790000000000003,12.151999999999999,15.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,979,-0.21870000000000001,7.7933000000000003,0.21171999999999999,4.3,5.1980000000000004,6.3360000000000003,7.7930000000000001,9.68,12.153,15.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,980,-0.21879999999999999,7.7934999999999999,0.21174999999999999,4.2990000000000004,5.1980000000000004,6.3360000000000003,7.7939999999999996,9.68,12.154999999999999,15.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,981,-0.219,7.7937000000000003,0.21179000000000001,4.2990000000000004,5.1980000000000004,6.3360000000000003,7.7939999999999996,9.6809999999999992,12.156000000000001,15.448 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,982,-0.21909999999999999,7.7939999999999996,0.21182999999999999,4.2990000000000004,5.1980000000000004,6.3360000000000003,7.7939999999999996,9.6820000000000004,12.157999999999999,15.451000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,983,-0.21920000000000001,7.7942,0.21187,4.2990000000000004,5.1980000000000004,6.3360000000000003,7.7939999999999996,9.6829999999999998,12.159000000000001,15.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,984,-0.21940000000000001,7.7945000000000002,0.21190999999999999,4.2990000000000004,5.1970000000000001,6.3360000000000003,7.7939999999999996,9.6829999999999998,12.161,15.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,985,-0.2195,7.7946999999999997,0.21195,4.298,5.1970000000000001,6.3360000000000003,7.7949999999999999,9.6839999999999993,12.163,15.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,986,-0.21959999999999999,7.7949000000000002,0.21198,4.298,5.1970000000000001,6.3360000000000003,7.7949999999999999,9.6850000000000005,12.164,15.462999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,987,-0.2198,7.7952000000000004,0.21201999999999999,4.298,5.1970000000000001,6.3360000000000003,7.7949999999999999,9.6850000000000005,12.166,15.465999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,988,-0.21990000000000001,7.7953999999999999,0.21206,4.298,5.1970000000000001,6.3360000000000003,7.7949999999999999,9.6859999999999999,12.167,15.468999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,989,-0.22,7.7956000000000003,0.21210000000000001,4.2969999999999997,5.1970000000000001,6.3360000000000003,7.7960000000000003,9.6869999999999994,12.169,15.472 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,990,-0.22020000000000001,7.7958999999999996,0.21214,4.2969999999999997,5.1959999999999997,6.3360000000000003,7.7960000000000003,9.6880000000000006,12.170999999999999,15.476000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,991,-0.2203,7.7961,0.21217,4.2969999999999997,5.1959999999999997,6.3360000000000003,7.7960000000000003,9.6880000000000006,12.172000000000001,15.478 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,992,-0.22040000000000001,7.7962999999999996,0.21221000000000001,4.2969999999999997,5.1959999999999997,6.3360000000000003,7.7960000000000003,9.6890000000000001,12.173,15.481 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,993,-0.22059999999999999,7.7965,0.21224999999999999,4.2969999999999997,5.1959999999999997,6.3360000000000003,7.7960000000000003,9.69,12.175000000000001,15.484 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,994,-0.22070000000000001,7.7967000000000004,0.21229000000000001,4.2960000000000003,5.1959999999999997,6.3360000000000003,7.7969999999999997,9.69,12.177,15.487 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,995,-0.2208,7.7969999999999997,0.21232999999999999,4.2960000000000003,5.1959999999999997,6.3360000000000003,7.7969999999999997,9.6910000000000007,12.178000000000001,15.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,996,-0.22090000000000001,7.7972000000000001,0.21237,4.2960000000000003,5.1950000000000003,6.3360000000000003,7.7969999999999997,9.6920000000000002,12.18,15.493 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,997,-0.22109999999999999,7.7973999999999997,0.21240999999999999,4.2960000000000003,5.1950000000000003,6.3360000000000003,7.7969999999999997,9.6920000000000002,12.180999999999999,15.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,998,-0.22120000000000001,7.7976000000000001,0.21243999999999999,4.2960000000000003,5.1950000000000003,6.3360000000000003,7.798,9.6929999999999996,12.183,15.499000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,999,-0.2213,7.7977999999999996,0.21248,4.2949999999999999,5.1950000000000003,6.3360000000000003,7.798,9.6940000000000008,12.183999999999999,15.502000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1000,-0.2215,7.798,0.21251999999999999,4.2949999999999999,5.1950000000000003,6.3360000000000003,7.798,9.6940000000000008,12.186,15.505000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1001,-0.22159999999999999,7.7981999999999996,0.21256,4.2949999999999999,5.1950000000000003,6.3360000000000003,7.798,9.6950000000000003,12.186999999999999,15.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1002,-0.22170000000000001,7.7984,0.21260000000000001,4.2949999999999999,5.194,6.3360000000000003,7.798,9.6959999999999997,12.189,15.510999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1003,-0.22189999999999999,7.7986000000000004,0.21264,4.2939999999999996,5.194,6.335,7.7990000000000004,9.6959999999999997,12.19,15.515000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1004,-0.222,7.7988,0.21268000000000001,4.2939999999999996,5.194,6.335,7.7990000000000004,9.6969999999999992,12.192,15.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1005,-0.22209999999999999,7.7990000000000004,0.21271999999999999,4.2939999999999996,5.194,6.335,7.7990000000000004,9.6980000000000004,12.193,15.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1006,-0.2223,7.7991999999999999,0.21274999999999999,4.2939999999999996,5.194,6.335,7.7990000000000004,9.6980000000000004,12.195,15.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1007,-0.22239999999999999,7.7994000000000003,0.21279000000000001,4.2939999999999996,5.194,6.335,7.7990000000000004,9.6989999999999998,12.196,15.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1008,-0.2225,7.7995999999999999,0.21282999999999999,4.2930000000000001,5.1929999999999996,6.335,7.8,9.6999999999999993,12.198,15.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1009,-0.22270000000000001,7.7998000000000003,0.21287,4.2930000000000001,5.1929999999999996,6.335,7.8,9.7010000000000005,12.199,15.532999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1010,-0.2228,7.8,0.21290999999999999,4.2930000000000001,5.1929999999999996,6.335,7.8,9.7010000000000005,12.201000000000001,15.536 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1011,-0.22289999999999999,7.8002000000000002,0.21295,4.2930000000000001,5.1929999999999996,6.335,7.8,9.702,12.202999999999999,15.539 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1012,-0.223,7.8003999999999998,0.21299000000000001,4.2919999999999998,5.1929999999999996,6.335,7.8,9.7029999999999994,12.204000000000001,15.542 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1013,-0.22320000000000001,7.8005000000000004,0.21303,4.2919999999999998,5.1920000000000002,6.335,7.8,9.7029999999999994,12.206,15.545 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1014,-0.2233,7.8007,0.21307000000000001,4.2919999999999998,5.1920000000000002,6.335,7.8010000000000002,9.7040000000000006,12.207000000000001,15.548 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1015,-0.22339999999999999,7.8009000000000004,0.21310999999999999,4.2919999999999998,5.1920000000000002,6.335,7.8010000000000002,9.7040000000000006,12.209,15.551 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1016,-0.22359999999999999,7.8010999999999999,0.21315000000000001,4.2910000000000004,5.1920000000000002,6.335,7.8010000000000002,9.7050000000000001,12.21,15.554 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1017,-0.22370000000000001,7.8011999999999997,0.21318999999999999,4.2910000000000004,5.1920000000000002,6.335,7.8010000000000002,9.7059999999999995,12.212,15.557 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1018,-0.2238,7.8014000000000001,0.21321999999999999,4.2910000000000004,5.1909999999999998,6.335,7.8010000000000002,9.7059999999999995,12.212999999999999,15.558999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1019,-0.224,7.8015999999999996,0.21326000000000001,4.2910000000000004,5.1909999999999998,6.3339999999999996,7.8019999999999996,9.7070000000000007,12.214,15.563000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1020,-0.22409999999999999,7.8018000000000001,0.21329999999999999,4.29,5.1909999999999998,6.3339999999999996,7.8019999999999996,9.7080000000000002,12.215999999999999,15.565 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1021,-0.22420000000000001,7.8018999999999998,0.21334,4.29,5.1909999999999998,6.3339999999999996,7.8019999999999996,9.7080000000000002,12.217000000000001,15.568 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1022,-0.2243,7.8021000000000003,0.21337999999999999,4.29,5.1909999999999998,6.3339999999999996,7.8019999999999996,9.7089999999999996,12.218999999999999,15.571 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1023,-0.22450000000000001,7.8022,0.21342,4.29,5.19,6.3339999999999996,7.8019999999999996,9.7100000000000009,12.22,15.574 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1024,-0.22459999999999999,7.8023999999999996,0.21346000000000001,4.2889999999999997,5.19,6.3339999999999996,7.8019999999999996,9.7100000000000009,12.222,15.577 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1025,-0.22470000000000001,7.8026,0.2135,4.2889999999999997,5.19,6.3339999999999996,7.8029999999999999,9.7110000000000003,12.223000000000001,15.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1026,-0.22489999999999999,7.8026999999999997,0.21354000000000001,4.2889999999999997,5.19,6.3339999999999996,7.8029999999999999,9.7110000000000003,12.225,15.584 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1027,-0.22500000000000001,7.8029000000000002,0.21357999999999999,4.2880000000000003,5.1890000000000001,6.3339999999999996,7.8029999999999999,9.7119999999999997,12.226000000000001,15.586 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1028,-0.22509999999999999,7.8029999999999999,0.21362,4.2880000000000003,5.1890000000000001,6.3339999999999996,7.8029999999999999,9.7129999999999992,12.228,15.589 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1029,-0.22520000000000001,7.8032000000000004,0.21365999999999999,4.2880000000000003,5.1890000000000001,6.3339999999999996,7.8029999999999999,9.7129999999999992,12.228999999999999,15.592000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1030,-0.22539999999999999,7.8033000000000001,0.2137,4.2880000000000003,5.1890000000000001,6.3330000000000002,7.8029999999999999,9.7140000000000004,12.231,15.595000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1031,-0.22550000000000001,7.8034999999999997,0.21374000000000001,4.2869999999999999,5.1890000000000001,6.3330000000000002,7.8040000000000003,9.7149999999999999,12.231999999999999,15.598000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1032,-0.22559999999999999,7.8036000000000003,0.21378,4.2869999999999999,5.1879999999999997,6.3330000000000002,7.8040000000000003,9.7149999999999999,12.234,15.601000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1033,-0.2258,7.8037999999999998,0.21382000000000001,4.2869999999999999,5.1879999999999997,6.3330000000000002,7.8040000000000003,9.7159999999999993,12.234999999999999,15.605 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1034,-0.22589999999999999,7.8038999999999996,0.21385999999999999,4.2869999999999999,5.1879999999999997,6.3330000000000002,7.8040000000000003,9.7159999999999993,12.237,15.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1035,-0.22600000000000001,7.8040000000000003,0.21390000000000001,4.2859999999999996,5.1879999999999997,6.3330000000000002,7.8040000000000003,9.7170000000000005,12.238,15.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1036,-0.2261,7.8041999999999998,0.21393999999999999,4.2859999999999996,5.1870000000000003,6.3330000000000002,7.8040000000000003,9.718,12.24,15.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1037,-0.2263,7.8042999999999996,0.21398,4.2859999999999996,5.1870000000000003,6.3330000000000002,7.8040000000000003,9.718,12.241,15.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1038,-0.22639999999999999,7.8045,0.21401999999999999,4.2850000000000001,5.1870000000000003,6.3330000000000002,7.8040000000000003,9.7189999999999994,12.243,15.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1039,-0.22650000000000001,7.8045999999999998,0.21406,4.2850000000000001,5.1870000000000003,6.3319999999999999,7.8049999999999997,9.7200000000000006,12.244,15.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1040,-0.22670000000000001,7.8047000000000004,0.21410000000000001,4.2850000000000001,5.1859999999999999,6.3319999999999999,7.8049999999999997,9.7200000000000006,12.246,15.625 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1041,-0.2268,7.8048000000000002,0.21414,4.2850000000000001,5.1859999999999999,6.3319999999999999,7.8049999999999997,9.7210000000000001,12.247,15.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1042,-0.22689999999999999,7.8049999999999997,0.21418000000000001,4.2839999999999998,5.1859999999999999,6.3319999999999999,7.8049999999999997,9.7210000000000001,12.247999999999999,15.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1043,-0.22700000000000001,7.8051000000000004,0.21421999999999999,4.2839999999999998,5.1859999999999999,6.3319999999999999,7.8049999999999997,9.7219999999999995,12.25,15.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1044,-0.22720000000000001,7.8052000000000001,0.21426000000000001,4.2839999999999998,5.1859999999999999,6.3319999999999999,7.8049999999999997,9.7219999999999995,12.250999999999999,15.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1045,-0.2273,7.8052999999999999,0.21429999999999999,4.2830000000000004,5.1849999999999996,6.3319999999999999,7.8049999999999997,9.7230000000000008,12.253,15.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1046,-0.22739999999999999,7.8055000000000003,0.21434,4.2830000000000004,5.1849999999999996,6.3319999999999999,7.806,9.7240000000000002,12.254,15.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1047,-0.22750000000000001,7.8056000000000001,0.21437999999999999,4.2830000000000004,5.1849999999999996,6.3310000000000004,7.806,9.7240000000000002,12.256,15.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1048,-0.22770000000000001,7.8056999999999999,0.21442,4.2830000000000004,5.1849999999999996,6.3310000000000004,7.806,9.7249999999999996,12.257,15.648999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1049,-0.2278,7.8057999999999996,0.21446000000000001,4.282,5.1840000000000002,6.3310000000000004,7.806,9.7249999999999996,12.257999999999999,15.651999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1050,-0.22789999999999999,7.8059000000000003,0.21451000000000001,4.282,5.1840000000000002,6.3310000000000004,7.806,9.7260000000000009,12.26,15.654999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1051,-0.2281,7.806,0.21454999999999999,4.282,5.1840000000000002,6.3310000000000004,7.806,9.7270000000000003,12.262,15.657999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1052,-0.22819999999999999,7.8060999999999998,0.21459,4.2809999999999997,5.1829999999999998,6.3310000000000004,7.806,9.7270000000000003,12.263,15.661 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1053,-0.2283,7.8063000000000002,0.21462999999999999,4.2809999999999997,5.1829999999999998,6.3310000000000004,7.806,9.7279999999999998,12.263999999999999,15.664 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1054,-0.22839999999999999,7.8064,0.21467,4.2809999999999997,5.1829999999999998,6.33,7.806,9.7279999999999998,12.266,15.667 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1055,-0.2286,7.8064999999999998,0.21471000000000001,4.28,5.1829999999999998,6.33,7.806,9.7289999999999992,12.266999999999999,15.67 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1056,-0.22869999999999999,7.8066000000000004,0.21475,4.28,5.1820000000000004,6.33,7.8070000000000004,9.73,12.269,15.673 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1057,-0.2288,7.8067000000000002,0.21479000000000001,4.28,5.1820000000000004,6.33,7.8070000000000004,9.73,12.27,15.676 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1058,-0.22889999999999999,7.8068,0.21482999999999999,4.2789999999999999,5.1820000000000004,6.33,7.8070000000000004,9.7309999999999999,12.272,15.678000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1059,-0.2291,7.8068999999999997,0.21487000000000001,4.2789999999999999,5.1820000000000004,6.33,7.8070000000000004,9.7309999999999999,12.273,15.682 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1060,-0.22919999999999999,7.8070000000000004,0.21490999999999999,4.2789999999999999,5.181,6.33,7.8070000000000004,9.7319999999999993,12.273999999999999,15.683999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1061,-0.2293,7.8070000000000004,0.21495,4.2789999999999999,5.181,6.3289999999999997,7.8070000000000004,9.7319999999999993,12.276,15.686999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1062,-0.22939999999999999,7.8071000000000002,0.215,4.2779999999999996,5.181,6.3289999999999997,7.8070000000000004,9.7330000000000005,12.276999999999999,15.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1063,-0.2296,7.8071999999999999,0.21504000000000001,4.2779999999999996,5.18,6.3289999999999997,7.8070000000000004,9.734,12.279,15.694000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1064,-0.22969999999999999,7.8072999999999997,0.21507999999999999,4.2779999999999996,5.18,6.3289999999999997,7.8070000000000004,9.734,12.28,15.696 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1065,-0.2298,7.8074000000000003,0.21512000000000001,4.2770000000000001,5.18,6.3289999999999997,7.8070000000000004,9.7349999999999994,12.282,15.699 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1066,-0.22989999999999999,7.8075000000000001,0.21515999999999999,4.2770000000000001,5.18,6.3289999999999997,7.8079999999999998,9.7349999999999994,12.282999999999999,15.702 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1067,-0.2301,7.8075999999999999,0.2152,4.2770000000000001,5.1790000000000003,6.3280000000000003,7.8079999999999998,9.7360000000000007,12.284000000000001,15.705 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1068,-0.23019999999999999,7.8076999999999996,0.21523999999999999,4.2759999999999998,5.1790000000000003,6.3280000000000003,7.8079999999999998,9.7360000000000007,12.286,15.708 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1069,-0.2303,7.8076999999999996,0.21529000000000001,4.2759999999999998,5.1790000000000003,6.3280000000000003,7.8079999999999998,9.7370000000000001,12.287000000000001,15.711 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1070,-0.23039999999999999,7.8078000000000003,0.21532999999999999,4.2759999999999998,5.1779999999999999,6.3280000000000003,7.8079999999999998,9.7370000000000001,12.289,15.714 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1071,-0.2306,7.8079000000000001,0.21537000000000001,4.2750000000000004,5.1779999999999999,6.3280000000000003,7.8079999999999998,9.7379999999999995,12.29,15.717000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1072,-0.23069999999999999,7.8079999999999998,0.21540999999999999,4.2750000000000004,5.1779999999999999,6.3280000000000003,7.8079999999999998,9.7390000000000008,12.292,15.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1073,-0.23080000000000001,7.8080999999999996,0.21545,4.2750000000000004,5.1779999999999999,6.327,7.8079999999999998,9.7390000000000008,12.292999999999999,15.723000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1074,-0.23089999999999999,7.8080999999999996,0.21548999999999999,4.274,5.1769999999999996,6.327,7.8079999999999998,9.74,12.294,15.726000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1075,-0.2311,7.8082000000000003,0.21553,4.274,5.1769999999999996,6.327,7.8079999999999998,9.74,12.295999999999999,15.728999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1076,-0.23119999999999999,7.8083,0.21557999999999999,4.274,5.1769999999999996,6.327,7.8079999999999998,9.7409999999999997,12.297000000000001,15.731999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1077,-0.23130000000000001,7.8083,0.21562000000000001,4.2729999999999997,5.1760000000000002,6.327,7.8079999999999998,9.7409999999999997,12.298999999999999,15.734999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1078,-0.23139999999999999,7.8083999999999998,0.21565999999999999,4.2729999999999997,5.1760000000000002,6.327,7.8079999999999998,9.7420000000000009,12.3,15.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1079,-0.2316,7.8085000000000004,0.2157,4.2729999999999997,5.1760000000000002,6.3259999999999996,7.8079999999999998,9.7420000000000009,12.301,15.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1080,-0.23169999999999999,7.8085000000000004,0.21573999999999999,4.2720000000000002,5.1760000000000002,6.3259999999999996,7.8079999999999998,9.7430000000000003,12.303000000000001,15.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1081,-0.23180000000000001,7.8086000000000002,0.21579000000000001,4.2720000000000002,5.1749999999999998,6.3259999999999996,7.8090000000000002,9.7430000000000003,12.304,15.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1082,-0.2319,7.8087,0.21582999999999999,4.2720000000000002,5.1749999999999998,6.3259999999999996,7.8090000000000002,9.7439999999999998,12.305999999999999,15.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1083,-0.2321,7.8087,0.21587000000000001,4.2709999999999999,5.1749999999999998,6.3259999999999996,7.8090000000000002,9.7449999999999992,12.307,15.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1084,-0.23219999999999999,7.8087999999999997,0.21590999999999999,4.2709999999999999,5.1740000000000004,6.3250000000000002,7.8090000000000002,9.7449999999999992,12.308,15.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1085,-0.23230000000000001,7.8087999999999997,0.21595,4.2709999999999999,5.1740000000000004,6.3250000000000002,7.8090000000000002,9.7460000000000004,12.31,15.757999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1086,-0.2324,7.8089000000000004,0.216,4.2699999999999996,5.1740000000000004,6.3250000000000002,7.8090000000000002,9.7460000000000004,12.311,15.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1087,-0.2326,7.8090000000000002,0.21604000000000001,4.2699999999999996,5.1740000000000004,6.3250000000000002,7.8090000000000002,9.7469999999999999,12.313000000000001,15.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1088,-0.23269999999999999,7.8090000000000002,0.21607999999999999,4.2699999999999996,5.173,6.3250000000000002,7.8090000000000002,9.7469999999999999,12.314,15.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1089,-0.23280000000000001,7.8090999999999999,0.21612000000000001,4.2690000000000001,5.173,6.3239999999999998,7.8090000000000002,9.7479999999999993,12.315,15.77 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1090,-0.2329,7.8090999999999999,0.21617,4.2690000000000001,5.173,6.3239999999999998,7.8090000000000002,9.7479999999999993,12.317,15.773999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1091,-0.2331,7.8091999999999997,0.21621000000000001,4.2690000000000001,5.1719999999999997,6.3239999999999998,7.8090000000000002,9.7490000000000006,12.318,15.776999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1092,-0.23319999999999999,7.8091999999999997,0.21625,4.2679999999999998,5.1719999999999997,6.3239999999999998,7.8090000000000002,9.7490000000000006,12.32,15.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1093,-0.23330000000000001,7.8093000000000004,0.21629000000000001,4.2679999999999998,5.1719999999999997,6.3239999999999998,7.8090000000000002,9.75,12.321,15.782 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1094,-0.2334,7.8093000000000004,0.21634,4.2670000000000003,5.1710000000000003,6.3230000000000004,7.8090000000000002,9.75,12.323,15.786 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1095,-0.2336,7.8094000000000001,0.21637999999999999,4.2670000000000003,5.1710000000000003,6.3230000000000004,7.8090000000000002,9.7509999999999994,12.324,15.789 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1096,-0.23369999999999999,7.8094000000000001,0.21642,4.2670000000000003,5.1710000000000003,6.3230000000000004,7.8090000000000002,9.7509999999999994,12.324999999999999,15.792 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1097,-0.23380000000000001,7.8094000000000001,0.21646000000000001,4.266,5.17,6.3230000000000004,7.8090000000000002,9.7520000000000007,12.327,15.794 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1098,-0.2339,7.8094999999999999,0.21651000000000001,4.266,5.17,6.3230000000000004,7.81,9.7530000000000001,12.327999999999999,15.798 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1099,-0.23400000000000001,7.8094999999999999,0.21654999999999999,4.266,5.17,6.3220000000000001,7.81,9.7530000000000001,12.329000000000001,15.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1100,-0.23419999999999999,7.8095999999999997,0.21659,4.2649999999999997,5.1689999999999996,6.3220000000000001,7.81,9.7539999999999996,12.331,15.804 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1101,-0.23430000000000001,7.8095999999999997,0.21662999999999999,4.2649999999999997,5.1689999999999996,6.3220000000000001,7.81,9.7539999999999996,12.332000000000001,15.805999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1102,-0.2344,7.8095999999999997,0.21668000000000001,4.2640000000000002,5.1689999999999996,6.3220000000000001,7.81,9.7550000000000008,12.334,15.808999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1103,-0.23449999999999999,7.8097000000000003,0.21672,4.2640000000000002,5.1680000000000001,6.3220000000000001,7.81,9.7550000000000008,12.335000000000001,15.811999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1104,-0.23469999999999999,7.8097000000000003,0.21676000000000001,4.2640000000000002,5.1680000000000001,6.3209999999999997,7.81,9.7560000000000002,12.336,15.815 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1105,-0.23480000000000001,7.8097000000000003,0.21681,4.2629999999999999,5.1680000000000001,6.3209999999999997,7.81,9.7560000000000002,12.337999999999999,15.819000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1106,-0.2349,7.8098000000000001,0.21684999999999999,4.2629999999999999,5.1669999999999998,6.3209999999999997,7.81,9.7569999999999997,12.339,15.821 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1107,-0.23499999999999999,7.8098000000000001,0.21689,4.2629999999999999,5.1669999999999998,6.3209999999999997,7.81,9.7569999999999997,12.340999999999999,15.824 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1108,-0.2351,7.8098000000000001,0.21693999999999999,4.2619999999999996,5.1669999999999998,6.32,7.81,9.7579999999999991,12.342000000000001,15.827 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1109,-0.23530000000000001,7.8098000000000001,0.21698000000000001,4.2619999999999996,5.1660000000000004,6.32,7.81,9.7579999999999991,12.343,15.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1110,-0.2354,7.8098999999999998,0.21701999999999999,4.2619999999999996,5.1660000000000004,6.32,7.81,9.7590000000000003,12.345000000000001,15.833 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1111,-0.23549999999999999,7.8098999999999998,0.21707000000000001,4.2610000000000001,5.1660000000000004,6.32,7.81,9.7590000000000003,12.346,15.836 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1112,-0.2356,7.8098999999999998,0.21711,4.2610000000000001,5.165,6.32,7.81,9.76,12.348000000000001,15.839 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1113,-0.23580000000000001,7.8098999999999998,0.21715000000000001,4.26,5.165,6.319,7.81,9.76,12.349,15.842000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1114,-0.2359,7.8098999999999998,0.2172,4.26,5.165,6.319,7.81,9.7609999999999992,12.351000000000001,15.845000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1115,-0.23599999999999999,7.81,0.21723999999999999,4.26,5.1639999999999997,6.319,7.81,9.7609999999999992,12.352,15.848000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1116,-0.2361,7.81,0.21728,4.2590000000000003,5.1639999999999997,6.319,7.81,9.7620000000000005,12.353,15.851000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1117,-0.23619999999999999,7.81,0.21733,4.2590000000000003,5.1639999999999997,6.3179999999999996,7.81,9.7620000000000005,12.355,15.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1118,-0.2364,7.81,0.21737000000000001,4.2590000000000003,5.1630000000000003,6.3179999999999996,7.81,9.7629999999999999,12.356,15.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1119,-0.23649999999999999,7.81,0.21740999999999999,4.258,5.1630000000000003,6.3179999999999996,7.81,9.7629999999999999,12.356999999999999,15.86 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1120,-0.2366,7.81,0.21745999999999999,4.258,5.1630000000000003,6.3179999999999996,7.81,9.7639999999999993,12.359,15.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1121,-0.23669999999999999,7.81,0.2175,4.2569999999999997,5.1619999999999999,6.3170000000000002,7.81,9.7639999999999993,12.36,15.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1122,-0.2369,7.8101000000000003,0.21754000000000001,4.2569999999999997,5.1619999999999999,6.3170000000000002,7.81,9.7650000000000006,12.362,15.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1123,-0.23699999999999999,7.8101000000000003,0.21759000000000001,4.2569999999999997,5.1619999999999999,6.3170000000000002,7.81,9.7650000000000006,12.363,15.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1124,-0.23710000000000001,7.8101000000000003,0.21762999999999999,4.2560000000000002,5.1609999999999996,6.3170000000000002,7.81,9.766,12.364000000000001,15.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1125,-0.23719999999999999,7.8101000000000003,0.21768000000000001,4.2560000000000002,5.1609999999999996,6.3170000000000002,7.81,9.766,12.366,15.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1126,-0.23730000000000001,7.8101000000000003,0.21772,4.2549999999999999,5.1609999999999996,6.3159999999999998,7.81,9.7669999999999995,12.367000000000001,15.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1127,-0.23749999999999999,7.8101000000000003,0.21776000000000001,4.2549999999999999,5.16,6.3159999999999998,7.81,9.7669999999999995,12.368,15.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1128,-0.23760000000000001,7.8101000000000003,0.21781,4.2549999999999999,5.16,6.3159999999999998,7.81,9.7680000000000007,12.37,15.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1129,-0.23769999999999999,7.8101000000000003,0.21784999999999999,4.2539999999999996,5.1589999999999998,6.3159999999999998,7.81,9.7680000000000007,12.371,15.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1130,-0.23780000000000001,7.8101000000000003,0.21790000000000001,4.2539999999999996,5.1589999999999998,6.3150000000000004,7.81,9.7690000000000001,12.372999999999999,15.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1131,-0.2379,7.8101000000000003,0.21793999999999999,4.2530000000000001,5.1589999999999998,6.3150000000000004,7.81,9.7690000000000001,12.374000000000001,15.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1132,-0.23810000000000001,7.8101000000000003,0.21798000000000001,4.2530000000000001,5.1580000000000004,6.3150000000000004,7.81,9.7690000000000001,12.375,15.898999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1133,-0.2382,7.8101000000000003,0.21803,4.2530000000000001,5.1580000000000004,6.3150000000000004,7.81,9.77,12.377000000000001,15.901999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1134,-0.23830000000000001,7.8101000000000003,0.21807000000000001,4.2519999999999998,5.1580000000000004,6.3140000000000001,7.81,9.77,12.378,15.904999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1135,-0.2384,7.8101000000000003,0.21812000000000001,4.2519999999999998,5.157,6.3140000000000001,7.81,9.7710000000000008,12.38,15.907999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1136,-0.23849999999999999,7.8101000000000003,0.21815999999999999,4.2510000000000003,5.157,6.3140000000000001,7.81,9.7710000000000008,12.381,15.911 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1137,-0.2387,7.8101000000000003,0.21820999999999999,4.2510000000000003,5.157,6.3140000000000001,7.81,9.7720000000000002,12.382,15.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1138,-0.23880000000000001,7.81,0.21825,4.2510000000000003,5.1559999999999997,6.3129999999999997,7.81,9.7720000000000002,12.384,15.917 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1139,-0.2389,7.81,0.21829999999999999,4.25,5.1559999999999997,6.3129999999999997,7.81,9.7729999999999997,12.385,15.92 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1140,-0.23899999999999999,7.81,0.21834000000000001,4.25,5.1550000000000002,6.3129999999999997,7.81,9.7729999999999997,12.385999999999999,15.923 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1141,-0.23910000000000001,7.81,0.21837999999999999,4.2489999999999997,5.1550000000000002,6.3129999999999997,7.81,9.7739999999999991,12.388,15.926 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1142,-0.23930000000000001,7.81,0.21843000000000001,4.2489999999999997,5.1550000000000002,6.3120000000000003,7.81,9.7739999999999991,12.388999999999999,15.929 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1143,-0.2394,7.81,0.21847,4.2489999999999997,5.1539999999999999,6.3120000000000003,7.81,9.7750000000000004,12.39,15.932 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1144,-0.23949999999999999,7.81,0.21851999999999999,4.2480000000000002,5.1539999999999999,6.3120000000000003,7.81,9.7750000000000004,12.391999999999999,15.935 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1145,-0.23960000000000001,7.8098999999999998,0.21856,4.2480000000000002,5.1539999999999999,6.3109999999999999,7.81,9.7759999999999998,12.393000000000001,15.938000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1146,-0.2397,7.8098999999999998,0.21861,4.2469999999999999,5.1529999999999996,6.3109999999999999,7.81,9.7759999999999998,12.395,15.941000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1147,-0.2399,7.8098999999999998,0.21865000000000001,4.2469999999999999,5.1529999999999996,6.3109999999999999,7.81,9.7769999999999992,12.396000000000001,15.944000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1148,-0.24,7.8098999999999998,0.21870000000000001,4.2460000000000004,5.1520000000000001,6.3109999999999999,7.81,9.7769999999999992,12.398,15.948 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1149,-0.24010000000000001,7.8098000000000001,0.21873999999999999,4.2460000000000004,5.1520000000000001,6.31,7.81,9.7769999999999992,12.398999999999999,15.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1150,-0.2402,7.8098000000000001,0.21879000000000001,4.2460000000000004,5.1520000000000001,6.31,7.81,9.7780000000000005,12.4,15.952999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1151,-0.24030000000000001,7.8098000000000001,0.21883,4.2450000000000001,5.1509999999999998,6.31,7.81,9.7780000000000005,12.401,15.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1152,-0.24049999999999999,7.8098000000000001,0.21887999999999999,4.2450000000000001,5.1509999999999998,6.31,7.81,9.7789999999999999,12.403,15.96 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1153,-0.24060000000000001,7.8097000000000003,0.21892,4.2439999999999998,5.15,6.3090000000000002,7.81,9.7789999999999999,12.404,15.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1154,-0.2407,7.8097000000000003,0.21897,4.2439999999999998,5.15,6.3090000000000002,7.81,9.7799999999999994,12.406000000000001,15.965 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1155,-0.24079999999999999,7.8097000000000003,0.21901000000000001,4.2439999999999998,5.15,6.3090000000000002,7.81,9.7799999999999994,12.407,15.968 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1156,-0.2409,7.8095999999999997,0.21906,4.2430000000000003,5.149,6.3079999999999998,7.81,9.7810000000000006,12.407999999999999,15.971 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1157,-0.24099999999999999,7.8095999999999997,0.21911,4.2430000000000003,5.149,6.3079999999999998,7.81,9.7810000000000006,12.41,15.975 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1158,-0.2412,7.8095999999999997,0.21915000000000001,4.242,5.149,6.3079999999999998,7.81,9.782,12.411,15.978 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1159,-0.24129999999999999,7.8094999999999999,0.21920000000000001,4.242,5.1479999999999997,6.3079999999999998,7.81,9.782,12.413,15.981 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1160,-0.2414,7.8094999999999999,0.21923999999999999,4.2409999999999997,5.1479999999999997,6.3070000000000004,7.81,9.7829999999999995,12.414,15.983000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1161,-0.24149999999999999,7.8094999999999999,0.21929000000000001,4.2409999999999997,5.1470000000000002,6.3070000000000004,7.81,9.7829999999999995,12.414999999999999,15.987 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1162,-0.24160000000000001,7.8094000000000001,0.21933,4.2409999999999997,5.1470000000000002,6.3070000000000004,7.8090000000000002,9.7829999999999995,12.416,15.989000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1163,-0.24179999999999999,7.8094000000000001,0.21937999999999999,4.24,5.1470000000000002,6.306,7.8090000000000002,9.7840000000000007,12.417999999999999,15.993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1164,-0.2419,7.8093000000000004,0.21942,4.24,5.1459999999999999,6.306,7.8090000000000002,9.7840000000000007,12.419,15.996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1165,-0.24199999999999999,7.8093000000000004,0.21947,4.2389999999999999,5.1459999999999999,6.306,7.8090000000000002,9.7850000000000001,12.420999999999999,15.999000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1166,-0.24210000000000001,7.8091999999999997,0.21951999999999999,4.2389999999999999,5.1449999999999996,6.3049999999999997,7.8090000000000002,9.7850000000000001,12.422000000000001,16.001999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1167,-0.2422,7.8091999999999997,0.21956000000000001,4.2380000000000004,5.1449999999999996,6.3049999999999997,7.8090000000000002,9.7859999999999996,12.423,16.004999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1168,-0.24229999999999999,7.8091999999999997,0.21961,4.2380000000000004,5.1440000000000001,6.3049999999999997,7.8090000000000002,9.7859999999999996,12.425000000000001,16.007999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1169,-0.24249999999999999,7.8090999999999999,0.21965000000000001,4.2380000000000004,5.1440000000000001,6.3049999999999997,7.8090000000000002,9.7870000000000008,12.426,16.010999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1170,-0.24260000000000001,7.8090999999999999,0.21970000000000001,4.2370000000000001,5.1440000000000001,6.3040000000000003,7.8090000000000002,9.7870000000000008,12.428000000000001,16.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1171,-0.2427,7.8090000000000002,0.21975,4.2370000000000001,5.1429999999999998,6.3040000000000003,7.8090000000000002,9.7870000000000008,12.429,16.016999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1172,-0.24279999999999999,7.8089000000000004,0.21979000000000001,4.2359999999999998,5.1429999999999998,6.3040000000000003,7.8090000000000002,9.7880000000000003,12.43,16.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1173,-0.2429,7.8089000000000004,0.21984000000000001,4.2359999999999998,5.1420000000000003,6.3029999999999999,7.8090000000000002,9.7880000000000003,12.432,16.023 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1174,-0.24310000000000001,7.8087999999999997,0.21987999999999999,4.2350000000000003,5.1420000000000003,6.3029999999999999,7.8090000000000002,9.7889999999999997,12.433,16.026 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1175,-0.2432,7.8087999999999997,0.21992999999999999,4.2350000000000003,5.1420000000000003,6.3029999999999999,7.8090000000000002,9.7889999999999997,12.433999999999999,16.029 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1176,-0.24329999999999999,7.8087,0.21998000000000001,4.234,5.141,6.3019999999999996,7.8090000000000002,9.7899999999999991,12.436,16.032 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1177,-0.24340000000000001,7.8087,0.22001999999999999,4.234,5.141,6.3019999999999996,7.8090000000000002,9.7899999999999991,12.436999999999999,16.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1178,-0.24349999999999999,7.8086000000000002,0.22006999999999999,4.2329999999999997,5.14,6.3019999999999996,7.8090000000000002,9.7899999999999991,12.438000000000001,16.038 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1179,-0.24360000000000001,7.8085000000000004,0.22012000000000001,4.2329999999999997,5.14,6.3019999999999996,7.8079999999999998,9.7910000000000004,12.44,16.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1180,-0.24379999999999999,7.8085000000000004,0.22015999999999999,4.2329999999999997,5.14,6.3010000000000002,7.8079999999999998,9.7910000000000004,12.441000000000001,16.045000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1181,-0.24390000000000001,7.8083999999999998,0.22020999999999999,4.2320000000000002,5.1390000000000002,6.3010000000000002,7.8079999999999998,9.7919999999999998,12.442,16.047999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1182,-0.24399999999999999,7.8083,0.22026000000000001,4.2320000000000002,5.1390000000000002,6.3010000000000002,7.8079999999999998,9.7919999999999998,12.444000000000001,16.050999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1183,-0.24410000000000001,7.8083,0.2203,4.2309999999999999,5.1379999999999999,6.3,7.8079999999999998,9.7929999999999993,12.445,16.053999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1184,-0.2442,7.8082000000000003,0.22034999999999999,4.2309999999999999,5.1379999999999999,6.3,7.8079999999999998,9.7929999999999993,12.446999999999999,16.056999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1185,-0.24429999999999999,7.8080999999999996,0.22040000000000001,4.2300000000000004,5.1369999999999996,6.3,7.8079999999999998,9.7929999999999993,12.448,16.059999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1186,-0.2445,7.8080999999999996,0.22044,4.2300000000000004,5.1369999999999996,6.2990000000000004,7.8079999999999998,9.7940000000000005,12.449,16.062999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1187,-0.24460000000000001,7.8079999999999998,0.22048999999999999,4.2290000000000001,5.1360000000000001,6.2990000000000004,7.8079999999999998,9.7940000000000005,12.451000000000001,16.065999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1188,-0.2447,7.8079000000000001,0.22054000000000001,4.2290000000000001,5.1360000000000001,6.2990000000000004,7.8079999999999998,9.7949999999999999,12.452,16.068999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1189,-0.24479999999999999,7.8078000000000003,0.22058,4.2279999999999998,5.1360000000000001,6.298,7.8079999999999998,9.7949999999999999,12.452999999999999,16.071999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1190,-0.24490000000000001,7.8078000000000003,0.22062999999999999,4.2279999999999998,5.1349999999999998,6.298,7.8079999999999998,9.7959999999999994,12.455,16.074999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1191,-0.245,7.8076999999999996,0.22067999999999999,4.2270000000000003,5.1349999999999998,6.298,7.8079999999999998,9.7959999999999994,12.456,16.077999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1192,-0.2452,7.8075999999999999,0.22072,4.2270000000000003,5.1340000000000003,6.2969999999999997,7.8079999999999998,9.7959999999999994,12.457000000000001,16.081 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1193,-0.24529999999999999,7.8075000000000001,0.22076999999999999,4.2270000000000003,5.1340000000000003,6.2969999999999997,7.8079999999999998,9.7970000000000006,12.459,16.084 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1194,-0.24540000000000001,7.8074000000000003,0.22081999999999999,4.226,5.133,6.2969999999999997,7.8070000000000004,9.7970000000000006,12.46,16.087 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1195,-0.2455,7.8072999999999997,0.22087000000000001,4.2249999999999996,5.133,6.2960000000000003,7.8070000000000004,9.798,12.461,16.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1196,-0.24560000000000001,7.8072999999999997,0.22091,4.2249999999999996,5.133,6.2960000000000003,7.8070000000000004,9.798,12.462999999999999,16.093 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1197,-0.2457,7.8071999999999999,0.22095999999999999,4.2249999999999996,5.1319999999999997,6.2960000000000003,7.8070000000000004,9.7989999999999995,12.464,16.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1198,-0.24579999999999999,7.8071000000000002,0.22101000000000001,4.2240000000000002,5.1319999999999997,6.2949999999999999,7.8070000000000004,9.7989999999999995,12.465,16.099 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1199,-0.246,7.8070000000000004,0.22106000000000001,4.2240000000000002,5.1310000000000002,6.2949999999999999,7.8070000000000004,9.7989999999999995,12.467000000000001,16.103000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1200,-0.24610000000000001,7.8068999999999997,0.22109999999999999,4.2229999999999999,5.1310000000000002,6.2949999999999999,7.8070000000000004,9.8000000000000007,12.468,16.106000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1201,-0.2462,7.8068,0.22115000000000001,4.2229999999999999,5.13,6.2939999999999996,7.8070000000000004,9.8000000000000007,12.468999999999999,16.109000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1202,-0.24629999999999999,7.8067000000000002,0.22120000000000001,4.2220000000000004,5.13,6.2939999999999996,7.8070000000000004,9.8010000000000002,12.471,16.111999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1203,-0.24640000000000001,7.8066000000000004,0.22125,4.2220000000000004,5.1289999999999996,6.2939999999999996,7.8070000000000004,9.8010000000000002,12.472,16.114999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1204,-0.2465,7.8064999999999998,0.22128999999999999,4.2210000000000001,5.1289999999999996,6.2930000000000001,7.806,9.8010000000000002,12.473000000000001,16.117999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1205,-0.2467,7.8064,0.22134000000000001,4.2210000000000001,5.1280000000000001,6.2930000000000001,7.806,9.8019999999999996,12.475,16.120999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1206,-0.24679999999999999,7.8063000000000002,0.22139,4.22,5.1280000000000001,6.2930000000000001,7.806,9.8019999999999996,12.476000000000001,16.123999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1207,-0.24690000000000001,7.8061999999999996,0.22144,4.22,5.1280000000000001,6.2919999999999998,7.806,9.8030000000000008,12.478,16.126999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1208,-0.247,7.8060999999999998,0.22148000000000001,4.2190000000000003,5.1269999999999998,6.2919999999999998,7.806,9.8030000000000008,12.478999999999999,16.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1209,-0.24709999999999999,7.806,0.22153,4.2190000000000003,5.1269999999999998,6.2919999999999998,7.806,9.8030000000000008,12.48,16.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1210,-0.2472,7.8059000000000003,0.22158,4.218,5.1260000000000003,6.2910000000000004,7.806,9.8040000000000003,12.481,16.135999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1211,-0.24729999999999999,7.8057999999999996,0.22162999999999999,4.218,5.1260000000000003,6.2910000000000004,7.806,9.8040000000000003,12.483000000000001,16.138999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1212,-0.2475,7.8056999999999999,0.22167999999999999,4.2169999999999996,5.125,6.2910000000000004,7.806,9.8049999999999997,12.484,16.143000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1213,-0.24759999999999999,7.8056000000000001,0.22172,4.2169999999999996,5.125,6.29,7.806,9.8049999999999997,12.486000000000001,16.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1214,-0.2477,7.8055000000000003,0.22176999999999999,4.2160000000000002,5.1239999999999997,6.29,7.806,9.8049999999999997,12.487,16.149000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1215,-0.24779999999999999,7.8053999999999997,0.22181999999999999,4.2160000000000002,5.1239999999999997,6.2889999999999997,7.8049999999999997,9.8059999999999992,12.488,16.152000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1216,-0.24790000000000001,7.8052999999999999,0.22187000000000001,4.2149999999999999,5.1230000000000002,6.2889999999999997,7.8049999999999997,9.8059999999999992,12.49,16.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1217,-0.248,7.8051000000000004,0.22192000000000001,4.2149999999999999,5.1230000000000002,6.2889999999999997,7.8049999999999997,9.8059999999999992,12.491,16.158000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1218,-0.24809999999999999,7.8049999999999997,0.22197,4.2140000000000004,5.1219999999999999,6.2880000000000003,7.8049999999999997,9.8070000000000004,12.492000000000001,16.161000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1219,-0.24829999999999999,7.8048999999999999,0.22201000000000001,4.2140000000000004,5.1219999999999999,6.2880000000000003,7.8049999999999997,9.8070000000000004,12.494,16.164000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1220,-0.24840000000000001,7.8048000000000002,0.22206000000000001,4.2130000000000001,5.1219999999999999,6.2880000000000003,7.8049999999999997,9.8079999999999998,12.494999999999999,16.167000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1221,-0.2485,7.8047000000000004,0.22211,4.2130000000000001,5.1210000000000004,6.2869999999999999,7.8049999999999997,9.8079999999999998,12.496,16.170000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1222,-0.24859999999999999,7.8045,0.22216,4.2119999999999997,5.12,6.2869999999999999,7.8040000000000003,9.8079999999999998,12.497999999999999,16.172999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1223,-0.2487,7.8044000000000002,0.22220999999999999,4.2119999999999997,5.12,6.2859999999999996,7.8040000000000003,9.8089999999999993,12.499000000000001,16.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1224,-0.24879999999999999,7.8042999999999996,0.22226000000000001,4.2110000000000003,5.12,6.2859999999999996,7.8040000000000003,9.8089999999999993,12.5,16.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1225,-0.24890000000000001,7.8041999999999998,0.2223,4.2110000000000003,5.1189999999999998,6.2859999999999996,7.8040000000000003,9.8089999999999993,12.500999999999999,16.181999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1226,-0.24909999999999999,7.8040000000000003,0.22234999999999999,4.21,5.1189999999999998,6.2850000000000001,7.8040000000000003,9.81,12.503,16.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1227,-0.2492,7.8038999999999996,0.22239999999999999,4.21,5.1180000000000003,6.2850000000000001,7.8040000000000003,9.81,12.504,16.189 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1228,-0.24929999999999999,7.8037999999999998,0.22245000000000001,4.2089999999999996,5.1180000000000003,6.2850000000000001,7.8040000000000003,9.8109999999999999,12.506,16.192 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1229,-0.24940000000000001,7.8036000000000003,0.2225,4.2089999999999996,5.117,6.2839999999999998,7.8040000000000003,9.8109999999999999,12.507,16.195 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1230,-0.2495,7.8034999999999997,0.22255,4.2080000000000002,5.117,6.2839999999999998,7.8040000000000003,9.8109999999999999,12.507999999999999,16.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1231,-0.24959999999999999,7.8033999999999999,0.22259999999999999,4.2080000000000002,5.1159999999999997,6.2830000000000004,7.8029999999999999,9.8119999999999994,12.51,16.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1232,-0.24970000000000001,7.8032000000000004,0.22264999999999999,4.2069999999999999,5.1159999999999997,6.2830000000000004,7.8029999999999999,9.8119999999999994,12.510999999999999,16.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1233,-0.24990000000000001,7.8030999999999997,0.22270000000000001,4.2069999999999999,5.1150000000000002,6.2830000000000004,7.8029999999999999,9.8130000000000006,12.512,16.207999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1234,-0.25,7.8029999999999999,0.22273999999999999,4.2060000000000004,5.1150000000000002,6.282,7.8029999999999999,9.8130000000000006,12.513,16.21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1235,-0.25009999999999999,7.8028000000000004,0.22278999999999999,4.2060000000000004,5.1139999999999999,6.282,7.8029999999999999,9.8130000000000006,12.515000000000001,16.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1236,-0.25019999999999998,7.8026999999999997,0.22284000000000001,4.2050000000000001,5.1139999999999999,6.282,7.8029999999999999,9.8140000000000001,12.516,16.216999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1237,-0.25030000000000002,7.8025000000000002,0.22289,4.2050000000000001,5.1130000000000004,6.2809999999999997,7.8019999999999996,9.8140000000000001,12.516999999999999,16.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1238,-0.25040000000000001,7.8023999999999996,0.22294,4.2039999999999997,5.1130000000000004,6.2809999999999997,7.8019999999999996,9.8140000000000001,12.519,16.222999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1239,-0.2505,7.8022,0.22298999999999999,4.2039999999999997,5.1120000000000001,6.28,7.8019999999999996,9.8149999999999995,12.52,16.225999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1240,-0.25059999999999999,7.8021000000000003,0.22303999999999999,4.2030000000000003,5.1120000000000001,6.28,7.8019999999999996,9.8149999999999995,12.521000000000001,16.228999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1241,-0.25080000000000002,7.8019999999999996,0.22309000000000001,4.2030000000000003,5.1109999999999998,6.28,7.8019999999999996,9.8149999999999995,12.523,16.233000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1242,-0.25090000000000001,7.8018000000000001,0.22314000000000001,4.202,5.1109999999999998,6.2789999999999999,7.8019999999999996,9.8160000000000007,12.523999999999999,16.236000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1243,-0.251,7.8015999999999996,0.22319,4.2009999999999996,5.1100000000000003,6.2789999999999999,7.8019999999999996,9.8160000000000007,12.525,16.239000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1244,-0.25109999999999999,7.8014999999999999,0.22323999999999999,4.2009999999999996,5.1100000000000003,6.2779999999999996,7.8019999999999996,9.8160000000000007,12.526999999999999,16.242000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1245,-0.25119999999999998,7.8013000000000003,0.22328999999999999,4.2,5.109,6.2779999999999996,7.8010000000000002,9.8170000000000002,12.528,16.245000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1246,-0.25130000000000002,7.8011999999999997,0.22334000000000001,4.2,5.109,6.2779999999999996,7.8010000000000002,9.8170000000000002,12.529,16.248000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1247,-0.25140000000000001,7.8010000000000002,0.22339000000000001,4.1989999999999998,5.1079999999999997,6.2770000000000001,7.8010000000000002,9.8170000000000002,12.531000000000001,16.251000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1248,-0.25159999999999999,7.8009000000000004,0.22344,4.1989999999999998,5.1079999999999997,6.2770000000000001,7.8010000000000002,9.8179999999999996,12.532,16.254999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1249,-0.25169999999999998,7.8007,0.22348999999999999,4.1980000000000004,5.1070000000000002,6.2759999999999998,7.8010000000000002,9.8179999999999996,12.532999999999999,16.257000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1250,-0.25180000000000002,7.8005000000000004,0.22353999999999999,4.1980000000000004,5.1070000000000002,6.2759999999999998,7.8,9.8179999999999996,12.535,16.260000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1251,-0.25190000000000001,7.8003999999999998,0.22359000000000001,4.1970000000000001,5.1059999999999999,6.2759999999999998,7.8,9.8190000000000008,12.536,16.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1252,-0.252,7.8002000000000002,0.22363,4.1970000000000001,5.1059999999999999,6.2750000000000004,7.8,9.8190000000000008,12.537000000000001,16.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1253,-0.25209999999999999,7.8000999999999996,0.22367999999999999,4.1959999999999997,5.1050000000000004,6.2750000000000004,7.8,9.82,12.538,16.268999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1254,-0.25219999999999998,7.7999000000000001,0.22373000000000001,4.1959999999999997,5.1050000000000004,6.274,7.8,9.82,12.54,16.271999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1255,-0.25230000000000002,7.7996999999999996,0.22378000000000001,4.1950000000000003,5.1040000000000001,6.274,7.8,9.82,12.541,16.274999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1256,-0.25240000000000001,7.7995000000000001,0.22383,4.194,5.1040000000000001,6.2729999999999997,7.8,9.82,12.542,16.277999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1257,-0.25259999999999999,7.7994000000000003,0.22388,4.194,5.1029999999999998,6.2729999999999997,7.7990000000000004,9.8209999999999997,12.544,16.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1258,-0.25269999999999998,7.7991999999999999,0.22392999999999999,4.1929999999999996,5.1029999999999998,6.2729999999999997,7.7990000000000004,9.8209999999999997,12.545,16.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1259,-0.25280000000000002,7.7990000000000004,0.22398999999999999,4.1929999999999996,5.1020000000000003,6.2720000000000002,7.7990000000000004,9.8219999999999992,12.545999999999999,16.288 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1260,-0.25290000000000001,7.7988999999999997,0.22403999999999999,4.1920000000000002,5.101,6.2720000000000002,7.7990000000000004,9.8219999999999992,12.548,16.292000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1261,-0.253,7.7987000000000002,0.22409000000000001,4.1920000000000002,5.101,6.2709999999999999,7.7990000000000004,9.8219999999999992,12.548999999999999,16.295000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1262,-0.25309999999999999,7.7984999999999998,0.22414000000000001,4.1909999999999998,5.0999999999999996,6.2709999999999999,7.798,9.8230000000000004,12.55,16.297999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1263,-0.25319999999999998,7.7983000000000002,0.22419,4.1909999999999998,5.0999999999999996,6.27,7.798,9.8230000000000004,12.552,16.300999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1264,-0.25330000000000003,7.7980999999999998,0.22423999999999999,4.1900000000000004,5.0990000000000002,6.27,7.798,9.8230000000000004,12.553000000000001,16.303999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1265,-0.2535,7.798,0.22428999999999999,4.1900000000000004,5.0990000000000002,6.27,7.798,9.8239999999999998,12.554,16.306999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1266,-0.25359999999999999,7.7977999999999996,0.22434000000000001,4.1890000000000001,5.0979999999999999,6.2690000000000001,7.798,9.8239999999999998,12.555999999999999,16.309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1267,-0.25369999999999998,7.7976000000000001,0.22439000000000001,4.1879999999999997,5.0979999999999999,6.2690000000000001,7.798,9.8239999999999998,12.557,16.312999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1268,-0.25380000000000003,7.7973999999999997,0.22444,4.1879999999999997,5.0970000000000004,6.2679999999999998,7.7969999999999997,9.8239999999999998,12.558,16.315999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1269,-0.25390000000000001,7.7972000000000001,0.22449,4.1870000000000003,5.0970000000000004,6.2679999999999998,7.7969999999999997,9.8249999999999993,12.558999999999999,16.318999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1270,-0.254,7.7969999999999997,0.22453999999999999,4.1870000000000003,5.0960000000000001,6.2670000000000003,7.7969999999999997,9.8249999999999993,12.561,16.321999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1271,-0.25409999999999999,7.7968000000000002,0.22459000000000001,4.1859999999999999,5.0960000000000001,6.2670000000000003,7.7969999999999997,9.8249999999999993,12.561999999999999,16.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1272,-0.25419999999999998,7.7965999999999998,0.22464000000000001,4.1859999999999999,5.0949999999999998,6.2670000000000003,7.7969999999999997,9.8260000000000005,12.563000000000001,16.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1273,-0.25430000000000003,7.7964000000000002,0.22469,4.1849999999999996,5.0940000000000003,6.266,7.7960000000000003,9.8260000000000005,12.564,16.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1274,-0.2545,7.7961999999999998,0.22474,4.1849999999999996,5.0940000000000003,6.266,7.7960000000000003,9.8260000000000005,12.566000000000001,16.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1275,-0.25459999999999999,7.7960000000000003,0.22478999999999999,4.1840000000000002,5.093,6.2649999999999997,7.7960000000000003,9.827,12.567,16.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1276,-0.25469999999999998,7.7957999999999998,0.22484000000000001,4.1829999999999998,5.093,6.2649999999999997,7.7960000000000003,9.827,12.568,16.341000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1277,-0.25480000000000003,7.7956000000000003,0.22489000000000001,4.1829999999999998,5.0919999999999996,6.2640000000000002,7.7960000000000003,9.827,12.569000000000001,16.344000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1278,-0.25490000000000002,7.7953999999999999,0.22495000000000001,4.1820000000000004,5.0919999999999996,6.2640000000000002,7.7949999999999999,9.8279999999999994,12.571,16.347999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1279,-0.255,7.7952000000000004,0.22500000000000001,4.1820000000000004,5.0910000000000002,6.2629999999999999,7.7949999999999999,9.8279999999999994,12.571999999999999,16.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1280,-0.25509999999999999,7.7949999999999999,0.22505,4.181,5.0910000000000002,6.2629999999999999,7.7949999999999999,9.8279999999999994,12.573,16.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1281,-0.25519999999999998,7.7948000000000004,0.22509999999999999,4.18,5.09,6.2629999999999999,7.7949999999999999,9.8279999999999994,12.574999999999999,16.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1282,-0.25530000000000003,7.7946,0.22514999999999999,4.18,5.09,6.2619999999999996,7.7949999999999999,9.8290000000000006,12.576000000000001,16.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1283,-0.25540000000000002,7.7944000000000004,0.22520000000000001,4.1790000000000003,5.0890000000000004,6.2619999999999996,7.7939999999999996,9.8290000000000006,12.577,16.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1284,-0.25559999999999999,7.7942,0.22525000000000001,4.1790000000000003,5.0890000000000004,6.2610000000000001,7.7939999999999996,9.8290000000000006,12.579000000000001,16.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1285,-0.25569999999999998,7.7939999999999996,0.2253,4.1779999999999999,5.0880000000000001,6.2610000000000001,7.7939999999999996,9.83,12.58,16.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1286,-0.25580000000000003,7.7938000000000001,0.22534999999999999,4.1779999999999999,5.0869999999999997,6.26,7.7939999999999996,9.83,12.581,16.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1287,-0.25590000000000002,7.7935999999999996,0.22541,4.1769999999999996,5.0869999999999997,6.26,7.7939999999999996,9.83,12.583,16.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1288,-0.25600000000000001,7.7933000000000003,0.22545999999999999,4.1760000000000002,5.0860000000000003,6.2590000000000003,7.7930000000000001,9.8309999999999995,12.584,16.379000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1289,-0.25609999999999999,7.7930999999999999,0.22550999999999999,4.1760000000000002,5.0860000000000003,6.2590000000000003,7.7930000000000001,9.8309999999999995,12.585000000000001,16.382000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1290,-0.25619999999999998,7.7929000000000004,0.22556000000000001,4.1749999999999998,5.085,6.258,7.7930000000000001,9.8309999999999995,12.586,16.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1291,-0.25629999999999997,7.7927,0.22561,4.1749999999999998,5.085,6.258,7.7930000000000001,9.8309999999999995,12.587,16.388000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1292,-0.25640000000000002,7.7925000000000004,0.22566,4.1740000000000004,5.0839999999999996,6.258,7.7919999999999998,9.8320000000000007,12.589,16.390999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1293,-0.25650000000000001,7.7922000000000002,0.22570999999999999,4.1740000000000004,5.0830000000000002,6.2569999999999997,7.7919999999999998,9.8320000000000007,12.59,16.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1294,-0.25669999999999998,7.7919999999999998,0.22575999999999999,4.173,5.0830000000000002,6.2569999999999997,7.7919999999999998,9.8320000000000007,12.590999999999999,16.396999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1295,-0.25679999999999997,7.7918000000000003,0.22581999999999999,4.1719999999999997,5.0819999999999999,6.2560000000000002,7.7919999999999998,9.8330000000000002,12.593,16.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1296,-0.25690000000000002,7.7915999999999999,0.22586999999999999,4.1719999999999997,5.0819999999999999,6.2560000000000002,7.7919999999999998,9.8330000000000002,12.593999999999999,16.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1297,-0.25700000000000001,7.7912999999999997,0.22592000000000001,4.1710000000000003,5.0810000000000004,6.2549999999999999,7.7910000000000004,9.8330000000000002,12.595000000000001,16.407 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1298,-0.2571,7.7911000000000001,0.22597,4.1710000000000003,5.0810000000000004,6.2549999999999999,7.7910000000000004,9.8330000000000002,12.596,16.41 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1299,-0.25719999999999998,7.7908999999999997,0.22602,4.17,5.08,6.2539999999999996,7.7910000000000004,9.8339999999999996,12.598000000000001,16.413 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1300,-0.25729999999999997,7.7906000000000004,0.22606999999999999,4.1689999999999996,5.0789999999999997,6.2539999999999996,7.7910000000000004,9.8339999999999996,12.599,16.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1301,-0.25740000000000002,7.7904,0.22613,4.1689999999999996,5.0789999999999997,6.2530000000000001,7.79,9.8339999999999996,12.6,16.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1302,-0.25750000000000001,7.7901999999999996,0.22617999999999999,4.1680000000000001,5.0780000000000003,6.2530000000000001,7.79,9.8350000000000009,12.601000000000001,16.422000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1303,-0.2576,7.7899000000000003,0.22622999999999999,4.1680000000000001,5.0780000000000003,6.2519999999999998,7.79,9.8350000000000009,12.603,16.425000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1304,-0.25779999999999997,7.7896999999999998,0.22628000000000001,4.1669999999999998,5.077,6.2519999999999998,7.79,9.8350000000000009,12.603999999999999,16.428999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1305,-0.25790000000000002,7.7895000000000003,0.22633,4.1669999999999998,5.077,6.2510000000000003,7.79,9.8350000000000009,12.605,16.431999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1306,-0.25800000000000001,7.7892000000000001,0.22639000000000001,4.1660000000000004,5.0759999999999996,6.2510000000000003,7.7889999999999997,9.8360000000000003,12.606999999999999,16.434999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1307,-0.2581,7.7889999999999997,0.22644,4.165,5.0750000000000002,6.25,7.7889999999999997,9.8360000000000003,12.608000000000001,16.437999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1308,-0.25819999999999999,7.7887000000000004,0.22649,4.165,5.0750000000000002,6.25,7.7889999999999997,9.8360000000000003,12.609,16.440999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1309,-0.25829999999999997,7.7885,0.22653999999999999,4.1639999999999997,5.0739999999999998,6.2489999999999997,7.7880000000000003,9.8360000000000003,12.61,16.443999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1310,-0.25840000000000002,7.7881999999999998,0.22659000000000001,4.1639999999999997,5.0739999999999998,6.2489999999999997,7.7880000000000003,9.8369999999999997,12.611000000000001,16.446999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1311,-0.25850000000000001,7.7880000000000003,0.22664999999999999,4.1630000000000003,5.0730000000000004,6.2480000000000002,7.7880000000000003,9.8369999999999997,12.613,16.451000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1312,-0.2586,7.7877000000000001,0.22670000000000001,4.1619999999999999,5.0720000000000001,6.2480000000000002,7.7880000000000003,9.8369999999999997,12.614000000000001,16.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1313,-0.25869999999999999,7.7874999999999996,0.22675000000000001,4.1619999999999999,5.0720000000000001,6.2469999999999999,7.7880000000000003,9.8369999999999997,12.615,16.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1314,-0.25879999999999997,7.7872000000000003,0.2268,4.1609999999999996,5.0709999999999997,6.2469999999999999,7.7869999999999999,9.8379999999999992,12.616,16.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1315,-0.25890000000000002,7.7869999999999999,0.22685,4.16,5.0709999999999997,6.2460000000000004,7.7869999999999999,9.8379999999999992,12.618,16.463000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1316,-0.2591,7.7866999999999997,0.22691,4.16,5.07,6.2460000000000004,7.7869999999999999,9.8379999999999992,12.619,16.466000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1317,-0.25919999999999999,7.7865000000000002,0.22696,4.1589999999999998,5.07,6.2450000000000001,7.7859999999999996,9.8379999999999992,12.62,16.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1318,-0.25929999999999997,7.7862,0.22700999999999999,4.1589999999999998,5.069,6.2450000000000001,7.7859999999999996,9.8390000000000004,12.621,16.472000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1319,-0.25940000000000002,7.7859999999999996,0.22706000000000001,4.1580000000000004,5.0679999999999996,6.2450000000000001,7.7859999999999996,9.8390000000000004,12.622999999999999,16.475000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1320,-0.25950000000000001,7.7857000000000003,0.22711999999999999,4.157,5.0679999999999996,6.2439999999999998,7.7859999999999996,9.8390000000000004,12.624000000000001,16.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1321,-0.2596,7.7854000000000001,0.22717000000000001,4.157,5.0670000000000002,6.2430000000000003,7.7850000000000001,9.8390000000000004,12.625,16.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1322,-0.25969999999999999,7.7851999999999997,0.22722000000000001,4.1559999999999997,5.0670000000000002,6.2430000000000003,7.7850000000000001,9.84,12.625999999999999,16.484999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1323,-0.25979999999999998,7.7849000000000004,0.22727,4.1559999999999997,5.0659999999999998,6.242,7.7850000000000001,9.84,12.628,16.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1324,-0.25990000000000002,7.7846000000000002,0.22733,4.1550000000000002,5.0650000000000004,6.242,7.7850000000000001,9.84,12.629,16.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1325,-0.26,7.7843999999999998,0.22738,4.1539999999999999,5.0650000000000004,6.2409999999999997,7.7839999999999998,9.84,12.63,16.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1326,-0.2601,7.7840999999999996,0.22742999999999999,4.1539999999999999,5.0640000000000001,6.2409999999999997,7.7839999999999998,9.8409999999999993,12.631,16.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1327,-0.26019999999999999,7.7838000000000003,0.22747999999999999,4.1529999999999996,5.0640000000000001,6.24,7.7839999999999998,9.8409999999999993,12.632,16.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1328,-0.26040000000000002,7.7835999999999999,0.22753999999999999,4.1529999999999996,5.0629999999999997,6.24,7.7839999999999998,9.8409999999999993,12.634,16.504000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1329,-0.26050000000000001,7.7832999999999997,0.22758999999999999,4.1520000000000001,5.0620000000000003,6.2389999999999999,7.7830000000000004,9.8409999999999993,12.635,16.507000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1330,-0.2606,7.7830000000000004,0.22764000000000001,4.1509999999999998,5.0620000000000003,6.2389999999999999,7.7830000000000004,9.8420000000000005,12.635999999999999,16.510000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1331,-0.26069999999999999,7.7827000000000002,0.22769,4.1509999999999998,5.0609999999999999,6.2380000000000004,7.7830000000000004,9.8420000000000005,12.637,16.513000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1332,-0.26079999999999998,7.7824999999999998,0.22775000000000001,4.1500000000000004,5.0599999999999996,6.2380000000000004,7.782,9.8420000000000005,12.638999999999999,16.516999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1333,-0.26090000000000002,7.7821999999999996,0.2278,4.149,5.0599999999999996,6.2370000000000001,7.782,9.8420000000000005,12.64,16.518999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1334,-0.26100000000000001,7.7819000000000003,0.22785,4.149,5.0590000000000002,6.2370000000000001,7.782,9.8420000000000005,12.641,16.521999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1335,-0.2611,7.7816000000000001,0.22789999999999999,4.1479999999999997,5.0590000000000002,6.2359999999999998,7.782,9.843,12.641999999999999,16.524999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1336,-0.26119999999999999,7.7812999999999999,0.22796,4.1470000000000002,5.0579999999999998,6.2359999999999998,7.7809999999999997,9.843,12.644,16.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1337,-0.26129999999999998,7.7809999999999997,0.22800999999999999,4.1470000000000002,5.0570000000000004,6.2350000000000003,7.7809999999999997,9.843,12.645,16.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1338,-0.26140000000000002,7.7808000000000002,0.22806000000000001,4.1459999999999999,5.0570000000000004,6.2350000000000003,7.7809999999999997,9.843,12.646000000000001,16.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1339,-0.26150000000000001,7.7805,0.22811999999999999,4.1459999999999999,5.056,6.234,7.78,9.8439999999999994,12.647,16.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1340,-0.2616,7.7801999999999998,0.22817000000000001,4.1449999999999996,5.056,6.234,7.78,9.8439999999999994,12.648999999999999,16.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1341,-0.26169999999999999,7.7798999999999996,0.22822000000000001,4.1440000000000001,5.0549999999999997,6.2329999999999997,7.78,9.8439999999999994,12.65,16.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1342,-0.26190000000000002,7.7796000000000003,0.22827,4.1440000000000001,5.0540000000000003,6.2329999999999997,7.78,9.8439999999999994,12.651,16.547000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1343,-0.26200000000000001,7.7793000000000001,0.22833000000000001,4.1429999999999998,5.0540000000000003,6.2320000000000002,7.7789999999999999,9.8439999999999994,12.651999999999999,16.550999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1344,-0.2621,7.7789999999999999,0.22838,4.1429999999999998,5.0529999999999999,6.2320000000000002,7.7789999999999999,9.8450000000000006,12.653,16.553999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1345,-0.26219999999999999,7.7786999999999997,0.22842999999999999,4.1420000000000003,5.0529999999999999,6.2309999999999999,7.7789999999999999,9.8450000000000006,12.654999999999999,16.556999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1346,-0.26229999999999998,7.7784000000000004,0.22849,4.141,5.0519999999999996,6.23,7.7779999999999996,9.8450000000000006,12.656000000000001,16.559999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1347,-0.26240000000000002,7.7781000000000002,0.22853999999999999,4.141,5.0510000000000002,6.23,7.7779999999999996,9.8450000000000006,12.657,16.562999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1348,-0.26250000000000001,7.7778,0.22858999999999999,4.1399999999999997,5.0510000000000002,6.2290000000000001,7.7779999999999996,9.8450000000000006,12.657999999999999,16.565999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1349,-0.2626,7.7774999999999999,0.22864999999999999,4.1390000000000002,5.05,6.2290000000000001,7.7779999999999996,9.8460000000000001,12.66,16.568999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1350,-0.26269999999999999,7.7771999999999997,0.22869999999999999,4.1390000000000002,5.0490000000000004,6.2279999999999998,7.7770000000000001,9.8460000000000001,12.661,16.571999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1351,-0.26279999999999998,7.7769000000000004,0.22875000000000001,4.1379999999999999,5.0490000000000004,6.2279999999999998,7.7770000000000001,9.8460000000000001,12.662000000000001,16.574999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1352,-0.26290000000000002,7.7766000000000002,0.22881000000000001,4.1369999999999996,5.048,6.2270000000000003,7.7770000000000001,9.8460000000000001,12.663,16.579000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1353,-0.26300000000000001,7.7763,0.22886000000000001,4.1369999999999996,5.0469999999999997,6.2270000000000003,7.7759999999999998,9.8469999999999995,12.664,16.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1354,-0.2631,7.7759999999999998,0.22891,4.1360000000000001,5.0469999999999997,6.226,7.7759999999999998,9.8469999999999995,12.664999999999999,16.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1355,-0.26319999999999999,7.7756999999999996,0.22897000000000001,4.1349999999999998,5.0460000000000003,6.226,7.7759999999999998,9.8469999999999995,12.667,16.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1356,-0.26329999999999998,7.7754000000000003,0.22902,4.1349999999999998,5.0460000000000003,6.2249999999999996,7.7750000000000004,9.8469999999999995,12.667999999999999,16.591000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1357,-0.26340000000000002,7.7751000000000001,0.22907,4.1340000000000003,5.0449999999999999,6.2249999999999996,7.7750000000000004,9.8469999999999995,12.669,16.594000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1358,-0.2636,7.7747999999999999,0.22913,4.1340000000000003,5.0439999999999996,6.2240000000000002,7.7750000000000004,9.8480000000000008,12.670999999999999,16.597999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1359,-0.26369999999999999,7.7744999999999997,0.22917999999999999,4.133,5.0439999999999996,6.2229999999999999,7.774,9.8480000000000008,12.672000000000001,16.600999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1360,-0.26379999999999998,7.7740999999999998,0.22922999999999999,4.1319999999999997,5.0430000000000001,6.2229999999999999,7.774,9.8480000000000008,12.673,16.603000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1361,-0.26390000000000002,7.7737999999999996,0.22928999999999999,4.1319999999999997,5.0419999999999998,6.2220000000000004,7.774,9.8480000000000008,12.673999999999999,16.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1362,-0.26400000000000001,7.7735000000000003,0.22933999999999999,4.1310000000000002,5.0419999999999998,6.2220000000000004,7.774,9.8480000000000008,12.675000000000001,16.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1363,-0.2641,7.7732000000000001,0.22939000000000001,4.13,5.0410000000000004,6.2210000000000001,7.7729999999999997,9.8480000000000008,12.676,16.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1364,-0.26419999999999999,7.7728999999999999,0.22944999999999999,4.13,5.04,6.2210000000000001,7.7729999999999997,9.8490000000000002,12.678000000000001,16.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1365,-0.26429999999999998,7.7725,0.22950000000000001,4.1289999999999996,5.04,6.22,7.7720000000000002,9.8490000000000002,12.679,16.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1366,-0.26440000000000002,7.7721999999999998,0.22955,4.1280000000000001,5.0389999999999997,6.22,7.7720000000000002,9.8490000000000002,12.68,16.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1367,-0.26450000000000001,7.7718999999999996,0.22961000000000001,4.1280000000000001,5.0389999999999997,6.2190000000000003,7.7720000000000002,9.8490000000000002,12.680999999999999,16.626000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1368,-0.2646,7.7716000000000003,0.22966,4.1269999999999998,5.0380000000000003,6.218,7.7720000000000002,9.8490000000000002,12.682,16.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1369,-0.26469999999999999,7.7712000000000003,0.22972000000000001,4.1260000000000003,5.0369999999999999,6.218,7.7709999999999999,9.85,12.683,16.632000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1370,-0.26479999999999998,7.7709000000000001,0.22977,4.1260000000000003,5.0369999999999999,6.2169999999999996,7.7709999999999999,9.85,12.685,16.635000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1371,-0.26490000000000002,7.7706,0.22982,4.125,5.0359999999999996,6.2169999999999996,7.7709999999999999,9.85,12.686,16.638000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1372,-0.26500000000000001,7.7702999999999998,0.22988,4.1239999999999997,5.0350000000000001,6.2160000000000002,7.77,9.85,12.686999999999999,16.640999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1373,-0.2651,7.7698999999999998,0.22993,4.1239999999999997,5.0350000000000001,6.2160000000000002,7.77,9.85,12.688000000000001,16.643999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1374,-0.26519999999999999,7.7695999999999996,0.22997999999999999,4.1230000000000002,5.0339999999999998,6.2149999999999999,7.77,9.85,12.689,16.646999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1375,-0.26529999999999998,7.7693000000000003,0.23003999999999999,4.1219999999999999,5.0330000000000004,6.2149999999999999,7.7690000000000001,9.8510000000000009,12.691000000000001,16.649999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1376,-0.26550000000000001,7.7689000000000004,0.23008999999999999,4.1219999999999999,5.0330000000000004,6.2140000000000004,7.7690000000000001,9.8510000000000009,12.692,16.654 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1377,-0.2656,7.7686000000000002,0.23014999999999999,4.1210000000000004,5.032,6.2130000000000001,7.7690000000000001,9.8510000000000009,12.693,16.657 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1378,-0.26569999999999999,7.7683,0.23019999999999999,4.1210000000000004,5.0309999999999997,6.2130000000000001,7.7679999999999998,9.8510000000000009,12.694000000000001,16.66 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1379,-0.26579999999999998,7.7679,0.23025000000000001,4.12,5.0309999999999997,6.2119999999999997,7.7679999999999998,9.8510000000000009,12.695,16.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1380,-0.26590000000000003,7.7675999999999998,0.23030999999999999,4.1189999999999998,5.03,6.2119999999999997,7.7679999999999998,9.8520000000000003,12.696999999999999,16.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1381,-0.26600000000000001,7.7671999999999999,0.23036000000000001,4.1189999999999998,5.0289999999999999,6.2110000000000003,7.7670000000000003,9.8520000000000003,12.696999999999999,16.669 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1382,-0.2661,7.7668999999999997,0.23042000000000001,4.1180000000000003,5.0289999999999999,6.21,7.7670000000000003,9.8520000000000003,12.699,16.672999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1383,-0.26619999999999999,7.7666000000000004,0.23047000000000001,4.117,5.0279999999999996,6.21,7.7670000000000003,9.8520000000000003,12.7,16.675999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1384,-0.26629999999999998,7.7662000000000004,0.23052,4.117,5.0270000000000001,6.2089999999999996,7.766,9.8520000000000003,12.701000000000001,16.678000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1385,-0.26640000000000003,7.7659000000000002,0.23058000000000001,4.1159999999999997,5.0270000000000001,6.2089999999999996,7.766,9.8520000000000003,12.702,16.681999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1386,-0.26650000000000001,7.7655000000000003,0.23063,4.1150000000000002,5.0259999999999998,6.2080000000000002,7.766,9.8520000000000003,12.702999999999999,16.684999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1387,-0.2666,7.7652000000000001,0.23069000000000001,4.1150000000000002,5.0250000000000004,6.2080000000000002,7.7649999999999997,9.8529999999999998,12.705,16.687999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1388,-0.26669999999999999,7.7648000000000001,0.23074,4.1139999999999999,5.0250000000000004,6.2069999999999999,7.7649999999999997,9.8529999999999998,12.706,16.690999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1389,-0.26679999999999998,7.7645,0.23079,4.1130000000000004,5.024,6.2069999999999999,7.7640000000000002,9.8529999999999998,12.707000000000001,16.693999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1390,-0.26690000000000003,7.7641,0.23085,4.1130000000000004,5.0229999999999997,6.2060000000000004,7.7640000000000002,9.8529999999999998,12.708,16.696999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1391,-0.26700000000000002,7.7637999999999998,0.23089999999999999,4.1120000000000001,5.0229999999999997,6.2050000000000001,7.7640000000000002,9.8529999999999998,12.709,16.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1392,-0.2671,7.7633999999999999,0.23096,4.1109999999999998,5.0220000000000002,6.2050000000000001,7.7629999999999999,9.8529999999999998,12.71,16.702999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1393,-0.26719999999999999,7.7630999999999997,0.23100999999999999,4.1109999999999998,5.0220000000000002,6.2039999999999997,7.7629999999999999,9.8539999999999992,12.712,16.706 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1394,-0.26729999999999998,7.7626999999999997,0.23105999999999999,4.1100000000000003,5.0209999999999999,6.2039999999999997,7.7629999999999999,9.8539999999999992,12.712,16.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1395,-0.26740000000000003,7.7622999999999998,0.23111999999999999,4.109,5.0199999999999996,6.2030000000000003,7.7619999999999996,9.8539999999999992,12.714,16.713000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1396,-0.26750000000000002,7.7619999999999996,0.23116999999999999,4.109,5.0199999999999996,6.202,7.7619999999999996,9.8539999999999992,12.715,16.715 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1397,-0.2676,7.7615999999999996,0.23122999999999999,4.1079999999999997,5.0190000000000001,6.202,7.7619999999999996,9.8539999999999992,12.715999999999999,16.719000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1398,-0.26779999999999998,7.7613000000000003,0.23128000000000001,4.1070000000000002,5.0179999999999998,6.2009999999999996,7.7610000000000001,9.8539999999999992,12.717000000000001,16.722000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1399,-0.26790000000000003,7.7609000000000004,0.23133999999999999,4.1070000000000002,5.0170000000000003,6.2009999999999996,7.7610000000000001,9.8539999999999992,12.718999999999999,16.725999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1400,-0.26800000000000002,7.7605000000000004,0.23139000000000001,4.1059999999999999,5.0170000000000003,6.2,7.76,9.8539999999999992,12.72,16.728000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1401,-0.2681,7.7602000000000002,0.23144000000000001,4.1050000000000004,5.016,6.1989999999999998,7.76,9.8550000000000004,12.721,16.731000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1402,-0.26819999999999999,7.7598000000000003,0.23150000000000001,4.1040000000000001,5.0149999999999997,6.1989999999999998,7.76,9.8550000000000004,12.722,16.734999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1403,-0.26829999999999998,7.7594000000000003,0.23155000000000001,4.1040000000000001,5.0149999999999997,6.1980000000000004,7.7590000000000003,9.8550000000000004,12.723000000000001,16.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1404,-0.26840000000000003,7.7591000000000001,0.23161000000000001,4.1029999999999998,5.0140000000000002,6.1980000000000004,7.7590000000000003,9.8550000000000004,12.724,16.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1405,-0.26850000000000002,7.7587000000000002,0.23166,4.1020000000000003,5.0129999999999999,6.1970000000000001,7.7590000000000003,9.8550000000000004,12.725,16.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1406,-0.26860000000000001,7.7583000000000002,0.23172000000000001,4.1020000000000003,5.0129999999999999,6.1959999999999997,7.758,9.8550000000000004,12.727,16.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1407,-0.26869999999999999,7.758,0.23177,4.101,5.0119999999999996,6.1959999999999997,7.758,9.8550000000000004,12.728,16.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1408,-0.26879999999999998,7.7576000000000001,0.23182,4.0999999999999996,5.0110000000000001,6.1950000000000003,7.758,9.8559999999999999,12.728999999999999,16.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1409,-0.26889999999999997,7.7572000000000001,0.23188,4.0999999999999996,5.0110000000000001,6.1950000000000003,7.7569999999999997,9.8559999999999999,12.73,16.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1410,-0.26900000000000002,7.7568999999999999,0.23193,4.0990000000000002,5.01,6.194,7.7569999999999997,9.8559999999999999,12.731,16.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1411,-0.26910000000000001,7.7565,0.23199,4.0979999999999999,5.0090000000000003,6.1929999999999996,7.7560000000000002,9.8559999999999999,12.731999999999999,16.763000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1412,-0.26919999999999999,7.7561,0.23204,4.0979999999999999,5.0090000000000003,6.1929999999999996,7.7560000000000002,9.8559999999999999,12.733000000000001,16.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1413,-0.26929999999999998,7.7557,0.2321,4.0970000000000004,5.008,6.1920000000000002,7.7560000000000002,9.8559999999999999,12.734,16.768999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1414,-0.26939999999999997,7.7553000000000001,0.23215,4.0960000000000001,5.0069999999999997,6.1920000000000002,7.7549999999999999,9.8559999999999999,12.734999999999999,16.771999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1415,-0.26950000000000002,7.7549999999999999,0.23221,4.0960000000000001,5.0069999999999997,6.1909999999999998,7.7549999999999999,9.8569999999999993,12.737,16.774999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1416,-0.26960000000000001,7.7545999999999999,0.23225999999999999,4.0949999999999998,5.0060000000000002,6.19,7.7549999999999999,9.8569999999999993,12.738,16.777999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1417,-0.2697,7.7542,0.23232,4.0940000000000003,5.0049999999999999,6.19,7.7539999999999996,9.8569999999999993,12.739000000000001,16.780999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1418,-0.26979999999999998,7.7538,0.23236999999999999,4.0940000000000003,5.0049999999999999,6.1890000000000001,7.7539999999999996,9.8569999999999993,12.74,16.783999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1419,-0.26989999999999997,7.7534000000000001,0.23241999999999999,4.093,5.0039999999999996,6.1890000000000001,7.7530000000000001,9.8569999999999993,12.741,16.786999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1420,-0.27,7.7530999999999999,0.23247999999999999,4.0919999999999996,5.0030000000000001,6.1879999999999997,7.7530000000000001,9.8569999999999993,12.742000000000001,16.791 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1421,-0.27010000000000001,7.7526999999999999,0.23252999999999999,4.0919999999999996,5.0030000000000001,6.1870000000000003,7.7530000000000001,9.8569999999999993,12.743,16.792999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1422,-0.2702,7.7523,0.23258999999999999,4.0910000000000002,5.0019999999999998,6.1870000000000003,7.7519999999999998,9.8569999999999993,12.744999999999999,16.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1423,-0.27029999999999998,7.7519,0.23264000000000001,4.09,5.0010000000000003,6.1859999999999999,7.7519999999999998,9.8569999999999993,12.746,16.798999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1424,-0.27039999999999997,7.7515000000000001,0.23269999999999999,4.0890000000000004,5,6.1859999999999999,7.7519999999999998,9.8569999999999993,12.747,16.803000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1425,-0.27050000000000002,7.7511000000000001,0.23275000000000001,4.0890000000000004,5,6.1849999999999996,7.7510000000000003,9.8580000000000005,12.747999999999999,16.806000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1426,-0.27060000000000001,7.7507000000000001,0.23280999999999999,4.0880000000000001,4.9989999999999997,6.1840000000000002,7.7510000000000003,9.8580000000000005,12.749000000000001,16.809000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1427,-0.2707,7.7503000000000002,0.23286000000000001,4.0869999999999997,4.9980000000000002,6.1840000000000002,7.75,9.8580000000000005,12.75,16.812000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1428,-0.27079999999999999,7.7499000000000002,0.23291999999999999,4.0869999999999997,4.9980000000000002,6.1829999999999998,7.75,9.8580000000000005,12.750999999999999,16.815000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1429,-0.27089999999999997,7.7495000000000003,0.23297000000000001,4.0860000000000003,4.9969999999999999,6.1820000000000004,7.75,9.8580000000000005,12.752000000000001,16.818000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1430,-0.27100000000000002,7.7492000000000001,0.23302999999999999,4.085,4.9960000000000004,6.1820000000000004,7.7489999999999997,9.8580000000000005,12.754,16.821999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1431,-0.27110000000000001,7.7488000000000001,0.23308000000000001,4.085,4.9960000000000004,6.181,7.7489999999999997,9.8580000000000005,12.755000000000001,16.824000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1432,-0.27129999999999999,7.7484000000000002,0.23313999999999999,4.0839999999999996,4.9950000000000001,6.181,7.7480000000000002,9.8580000000000005,12.756,16.827999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1433,-0.27139999999999997,7.7480000000000002,0.23319000000000001,4.0830000000000002,4.9939999999999998,6.18,7.7480000000000002,9.8580000000000005,12.757,16.831 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1434,-0.27150000000000002,7.7476000000000003,0.23325000000000001,4.0830000000000002,4.9939999999999998,6.1790000000000003,7.7480000000000002,9.859,12.757999999999999,16.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1435,-0.27160000000000001,7.7472000000000003,0.23330000000000001,4.0819999999999999,4.9930000000000003,6.1790000000000003,7.7469999999999999,9.859,12.759,16.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1436,-0.2717,7.7468000000000004,0.23336000000000001,4.0810000000000004,4.992,6.1779999999999999,7.7469999999999999,9.859,12.760999999999999,16.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1437,-0.27179999999999999,7.7464000000000004,0.23341000000000001,4.0810000000000004,4.9909999999999997,6.1779999999999999,7.7460000000000004,9.859,12.762,16.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1438,-0.27189999999999998,7.7460000000000004,0.23347000000000001,4.08,4.9909999999999997,6.1769999999999996,7.7460000000000004,9.859,12.763,16.847000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1439,-0.27200000000000002,7.7455999999999996,0.23352000000000001,4.0789999999999997,4.99,6.1760000000000002,7.7460000000000004,9.859,12.763999999999999,16.850000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1440,-0.27210000000000001,7.7450999999999999,0.23358000000000001,4.0780000000000003,4.9889999999999999,6.1760000000000002,7.7450000000000001,9.859,12.765000000000001,16.853000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1441,-0.2722,7.7446999999999999,0.23363,4.0780000000000003,4.9889999999999999,6.1749999999999998,7.7450000000000001,9.859,12.766,16.856000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1442,-0.27229999999999999,7.7443,0.23369000000000001,4.077,4.9880000000000004,6.1740000000000004,7.7439999999999998,9.859,12.766999999999999,16.859000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1443,-0.27239999999999998,7.7439,0.23374,4.0759999999999996,4.9870000000000001,6.1740000000000004,7.7439999999999998,9.859,12.768000000000001,16.861999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1444,-0.27250000000000002,7.7435,0.23380000000000001,4.0759999999999996,4.9859999999999998,6.173,7.7439999999999998,9.859,12.769,16.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1445,-0.27260000000000001,7.7431000000000001,0.23385,4.0750000000000002,4.9859999999999998,6.1719999999999997,7.7430000000000003,9.86,12.77,16.867999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1446,-0.2727,7.7427000000000001,0.23391000000000001,4.0739999999999998,4.9850000000000003,6.1719999999999997,7.7430000000000003,9.86,12.772,16.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1447,-0.27279999999999999,7.7423000000000002,0.23396,4.0739999999999998,4.984,6.1710000000000003,7.742,9.86,12.773,16.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1448,-0.27289999999999998,7.7419000000000002,0.23402000000000001,4.0730000000000004,4.984,6.1710000000000003,7.742,9.86,12.773999999999999,16.878 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1449,-0.27300000000000002,7.7415000000000003,0.23407,4.0720000000000001,4.9829999999999997,6.17,7.742,9.86,12.775,16.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1450,-0.27310000000000001,7.7409999999999997,0.23413,4.0709999999999997,4.9820000000000002,6.1689999999999996,7.7409999999999997,9.86,12.776,16.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1451,-0.2732,7.7405999999999997,0.23418,4.0709999999999997,4.9820000000000002,6.1689999999999996,7.7409999999999997,9.86,12.776999999999999,16.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1452,-0.27329999999999999,7.7401999999999997,0.23424,4.07,4.9809999999999999,6.1680000000000001,7.74,9.86,12.778,16.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1453,-0.27339999999999998,7.7397999999999998,0.23429,4.069,4.9800000000000004,6.1669999999999998,7.74,9.86,12.779,16.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1454,-0.27350000000000002,7.7393999999999998,0.23435,4.069,4.9790000000000001,6.1669999999999998,7.7389999999999999,9.86,12.78,16.896999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1455,-0.27360000000000001,7.7389999999999999,0.2344,4.0679999999999996,4.9790000000000001,6.1660000000000004,7.7389999999999999,9.86,12.781000000000001,16.899000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1456,-0.2737,7.7385000000000002,0.23446,4.0670000000000002,4.9779999999999998,6.165,7.7380000000000004,9.86,12.782,16.902999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1457,-0.27379999999999999,7.7381000000000002,0.23451,4.0659999999999998,4.9770000000000003,6.165,7.7380000000000004,9.86,12.782999999999999,16.905000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1458,-0.27389999999999998,7.7377000000000002,0.23457,4.0659999999999998,4.9770000000000003,6.1639999999999997,7.7380000000000004,9.8610000000000007,12.785,16.908999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1459,-0.27400000000000002,7.7373000000000003,0.23462,4.0650000000000004,4.976,6.1639999999999997,7.7370000000000001,9.8610000000000007,12.786,16.911999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1460,-0.27410000000000001,7.7369000000000003,0.23468,4.0640000000000001,4.9749999999999996,6.1630000000000003,7.7370000000000001,9.8610000000000007,12.787000000000001,16.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1461,-0.2742,7.7363999999999997,0.23472999999999999,4.0640000000000001,4.9749999999999996,6.1619999999999999,7.7359999999999998,9.8610000000000007,12.788,16.917999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1462,-0.27429999999999999,7.7359999999999998,0.23479,4.0629999999999997,4.9740000000000002,6.1619999999999999,7.7359999999999998,9.8610000000000007,12.789,16.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1463,-0.27439999999999998,7.7355999999999998,0.23483999999999999,4.0620000000000003,4.9729999999999999,6.1609999999999996,7.7359999999999998,9.8610000000000007,12.79,16.923999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1464,-0.27450000000000002,7.7351999999999999,0.2349,4.0620000000000003,4.9720000000000004,6.16,7.7350000000000003,9.8610000000000007,12.791,16.928000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1465,-0.27460000000000001,7.7347000000000001,0.23494999999999999,4.0609999999999999,4.9720000000000004,6.16,7.7350000000000003,9.8610000000000007,12.792,16.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1466,-0.2747,7.7343000000000002,0.23501,4.0599999999999996,4.9710000000000001,6.1589999999999998,7.734,9.8610000000000007,12.792999999999999,16.934000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1467,-0.27479999999999999,7.7339000000000002,0.23505999999999999,4.0590000000000002,4.97,6.1580000000000004,7.734,9.8610000000000007,12.794,16.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1468,-0.27489999999999998,7.7335000000000003,0.23512,4.0590000000000002,4.97,6.1580000000000004,7.734,9.8610000000000007,12.795999999999999,16.940000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1469,-0.27500000000000002,7.7329999999999997,0.23516999999999999,4.0579999999999998,4.9690000000000003,6.157,7.7329999999999997,9.8610000000000007,12.795999999999999,16.943000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1470,-0.27510000000000001,7.7325999999999997,0.23522999999999999,4.0570000000000004,4.968,6.157,7.7329999999999997,9.8610000000000007,12.798,16.946000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1471,-0.2752,7.7321999999999997,0.23527999999999999,4.0570000000000004,4.9669999999999996,6.1559999999999997,7.7320000000000002,9.8610000000000007,12.798999999999999,16.949000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1472,-0.27529999999999999,7.7317,0.23533999999999999,4.056,4.9669999999999996,6.1550000000000002,7.7320000000000002,9.8620000000000001,12.8,16.952000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1473,-0.27539999999999998,7.7313000000000001,0.2354,4.0549999999999997,4.9660000000000002,6.1550000000000002,7.7309999999999999,9.8620000000000001,12.801,16.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1474,-0.27550000000000002,7.7309000000000001,0.23544999999999999,4.0540000000000003,4.9649999999999999,6.1539999999999999,7.7309999999999999,9.8620000000000001,12.802,16.957999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1475,-0.27560000000000001,7.7305000000000001,0.23551,4.0540000000000003,4.9649999999999999,6.1529999999999996,7.73,9.8620000000000001,12.803000000000001,16.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1476,-0.2757,7.73,0.23555999999999999,4.0529999999999999,4.9640000000000004,6.1529999999999996,7.73,9.8620000000000001,12.804,16.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1477,-0.27579999999999999,7.7295999999999996,0.23562,4.0519999999999996,4.9630000000000001,6.1520000000000001,7.73,9.8620000000000001,12.805,16.968 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1478,-0.27589999999999998,7.7290999999999999,0.23566999999999999,4.0519999999999996,4.9619999999999997,6.1509999999999998,7.7290000000000001,9.8620000000000001,12.805999999999999,16.971 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1479,-0.27600000000000002,7.7286999999999999,0.23573,4.0510000000000002,4.9619999999999997,6.1509999999999998,7.7290000000000001,9.8620000000000001,12.807,16.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1480,-0.27610000000000001,7.7282999999999999,0.23577999999999999,4.05,4.9610000000000003,6.15,7.7279999999999998,9.8620000000000001,12.808,16.977 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1481,-0.2762,7.7278000000000002,0.23583999999999999,4.0490000000000004,4.96,6.149,7.7279999999999998,9.8620000000000001,12.81,16.98 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1482,-0.27629999999999999,7.7274000000000003,0.23588999999999999,4.0490000000000004,4.96,6.149,7.7270000000000003,9.8620000000000001,12.811,16.983000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1483,-0.27639999999999998,7.7270000000000003,0.23594999999999999,4.048,4.9589999999999996,6.1479999999999997,7.7270000000000003,9.8620000000000001,12.811999999999999,16.986999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1484,-0.27650000000000002,7.7264999999999997,0.23599999999999999,4.0469999999999997,4.9580000000000002,6.1470000000000002,7.726,9.8620000000000001,12.813000000000001,16.989000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1485,-0.27660000000000001,7.7260999999999997,0.23605999999999999,4.0469999999999997,4.9569999999999999,6.1470000000000002,7.726,9.8620000000000001,12.814,16.992999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1486,-0.2767,7.7256999999999998,0.23612,4.0460000000000003,4.9569999999999999,6.1459999999999999,7.726,9.8620000000000001,12.815,16.995999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1487,-0.27679999999999999,7.7252000000000001,0.23616999999999999,4.0449999999999999,4.9560000000000004,6.1449999999999996,7.7249999999999996,9.8620000000000001,12.816000000000001,16.998999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1488,-0.27689999999999998,7.7248000000000001,0.23623,4.0439999999999996,4.9550000000000001,6.1449999999999996,7.7249999999999996,9.8629999999999995,12.817,17.001999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1489,-0.27700000000000002,7.7243000000000004,0.23627999999999999,4.0439999999999996,4.9539999999999997,6.1440000000000001,7.7240000000000002,9.8620000000000001,12.818,17.004999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1490,-0.27710000000000001,7.7239000000000004,0.23633999999999999,4.0430000000000001,4.9539999999999997,6.1440000000000001,7.7240000000000002,9.8629999999999995,12.819000000000001,17.007999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1491,-0.2772,7.7233999999999998,0.23638999999999999,4.0419999999999998,4.9530000000000003,6.1429999999999998,7.7229999999999999,9.8629999999999995,12.82,17.010999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1492,-0.27729999999999999,7.7229999999999999,0.23644999999999999,4.0419999999999998,4.952,6.1420000000000003,7.7229999999999999,9.8629999999999995,12.821,17.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1493,-0.27739999999999998,7.7225999999999999,0.23649999999999999,4.0410000000000004,4.952,6.1420000000000003,7.7229999999999999,9.8629999999999995,12.821999999999999,17.016999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1494,-0.27750000000000002,7.7221000000000002,0.23655999999999999,4.04,4.9509999999999996,6.141,7.7220000000000004,9.8629999999999995,12.824,17.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1495,-0.27760000000000001,7.7217000000000002,0.23660999999999999,4.04,4.95,6.14,7.7220000000000004,9.8629999999999995,12.824999999999999,17.024000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1496,-0.2777,7.7211999999999996,0.23666999999999999,4.0389999999999997,4.9489999999999998,6.14,7.7210000000000001,9.8629999999999995,12.826000000000001,17.027000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1497,-0.27779999999999999,7.7207999999999997,0.23673,4.0380000000000003,4.9489999999999998,6.1390000000000002,7.7210000000000001,9.8629999999999995,12.827,17.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1498,-0.27789999999999998,7.7202999999999999,0.23677999999999999,4.0369999999999999,4.9480000000000004,6.1379999999999999,7.72,9.8629999999999995,12.827999999999999,17.033000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1499,-0.27800000000000002,7.7199,0.23683999999999999,4.0369999999999999,4.9470000000000001,6.1379999999999999,7.72,9.8629999999999995,12.829000000000001,17.036999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1500,-0.27810000000000001,7.7194000000000003,0.23688999999999999,4.0359999999999996,4.9459999999999997,6.1369999999999996,7.7190000000000003,9.8629999999999995,12.83,17.039000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1501,-0.2782,7.7190000000000003,0.23694999999999999,4.0350000000000001,4.9459999999999997,6.1360000000000001,7.7190000000000003,9.8629999999999995,12.831,17.042999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1502,-0.27829999999999999,7.7184999999999997,0.23699999999999999,4.0339999999999998,4.9450000000000003,6.1360000000000001,7.718,9.8629999999999995,12.832000000000001,17.045000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1503,-0.27839999999999998,7.7180999999999997,0.23705999999999999,4.0339999999999998,4.944,6.1349999999999998,7.718,9.8629999999999995,12.833,17.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1504,-0.27850000000000003,7.7176999999999998,0.23710999999999999,4.0330000000000004,4.944,6.1340000000000003,7.718,9.8629999999999995,12.834,17.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1505,-0.27860000000000001,7.7172000000000001,0.23716999999999999,4.032,4.9429999999999996,6.1340000000000003,7.7169999999999996,9.8629999999999995,12.835000000000001,17.055 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1506,-0.2787,7.7168000000000001,0.23723,4.032,4.9420000000000002,6.133,7.7169999999999996,9.8629999999999995,12.837,17.059000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1507,-0.27879999999999999,7.7163000000000004,0.23727999999999999,4.0309999999999997,4.9409999999999998,6.1319999999999997,7.7160000000000002,9.8629999999999995,12.837,17.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1508,-0.27889999999999998,7.7159000000000004,0.23734,4.03,4.9409999999999998,6.1319999999999997,7.7160000000000002,9.8640000000000008,12.839,17.065000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1509,-0.27900000000000003,7.7153999999999998,0.23738999999999999,4.0289999999999999,4.9400000000000004,6.1310000000000002,7.7149999999999999,9.8629999999999995,12.84,17.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1510,-0.27910000000000001,7.7149000000000001,0.23744999999999999,4.0289999999999999,4.9390000000000001,6.13,7.7149999999999999,9.8629999999999995,12.840999999999999,17.071000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1511,-0.2792,7.7145000000000001,0.23749999999999999,4.0279999999999996,4.9390000000000001,6.13,7.7140000000000004,9.8640000000000008,12.842000000000001,17.074000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1512,-0.27929999999999999,7.7140000000000004,0.23755999999999999,4.0270000000000001,4.9379999999999997,6.1289999999999996,7.7140000000000004,9.8640000000000008,12.843,17.077000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1513,-0.27939999999999998,7.7135999999999996,0.23760999999999999,4.0270000000000001,4.9370000000000003,6.1280000000000001,7.7140000000000004,9.8640000000000008,12.843999999999999,17.079999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1514,-0.27950000000000003,7.7130999999999998,0.23766999999999999,4.0259999999999998,4.9359999999999999,6.1280000000000001,7.7130000000000001,9.8640000000000008,12.845000000000001,17.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1515,-0.27960000000000002,7.7126999999999999,0.23773,4.0250000000000004,4.9359999999999999,6.1269999999999998,7.7130000000000001,9.8640000000000008,12.846,17.087 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1516,-0.2797,7.7122000000000002,0.23777999999999999,4.024,4.9349999999999996,6.1260000000000003,7.7119999999999997,9.8640000000000008,12.847,17.088999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1517,-0.27979999999999999,7.7118000000000002,0.23784,4.024,4.9340000000000002,6.1260000000000003,7.7119999999999997,9.8640000000000008,12.848000000000001,17.093 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1518,-0.27989999999999998,7.7112999999999996,0.23788999999999999,4.0229999999999997,4.9329999999999998,6.125,7.7110000000000003,9.8640000000000008,12.849,17.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1519,-0.28000000000000003,7.7108999999999996,0.23794999999999999,4.0220000000000002,4.9329999999999998,6.1239999999999997,7.7110000000000003,9.8640000000000008,12.85,17.099 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1520,-0.28010000000000002,7.7103999999999999,0.23799999999999999,4.0220000000000002,4.9320000000000004,6.1239999999999997,7.71,9.8640000000000008,12.851000000000001,17.102 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1521,-0.28010000000000002,7.71,0.23805999999999999,4.0209999999999999,4.931,6.1230000000000002,7.71,9.8640000000000008,12.852,17.105 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1522,-0.2802,7.7095000000000002,0.23812,4.0199999999999996,4.93,6.1219999999999999,7.71,9.8640000000000008,12.853,17.108000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1523,-0.28029999999999999,7.7089999999999996,0.23816999999999999,4.0190000000000001,4.93,6.1219999999999999,7.7089999999999996,9.8640000000000008,12.853999999999999,17.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1524,-0.28039999999999998,7.7085999999999997,0.23823,4.0190000000000001,4.9290000000000003,6.1210000000000004,7.7089999999999996,9.8640000000000008,12.856,17.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1525,-0.28050000000000003,7.7081,0.23827999999999999,4.0179999999999998,4.9279999999999999,6.12,7.7080000000000002,9.8640000000000008,12.856,17.117000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1526,-0.28060000000000002,7.7077,0.23834,4.0170000000000003,4.9279999999999999,6.12,7.7080000000000002,9.8640000000000008,12.858000000000001,17.120999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1527,-0.28070000000000001,7.7072000000000003,0.23838999999999999,4.016,4.9269999999999996,6.1189999999999998,7.7069999999999999,9.8640000000000008,12.859,17.123000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1528,-0.28079999999999999,7.7066999999999997,0.23845,4.016,4.9260000000000002,6.1180000000000003,7.7069999999999999,9.8640000000000008,12.86,17.126999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1529,-0.28089999999999998,7.7062999999999997,0.23851,4.0149999999999997,4.9249999999999998,6.1180000000000003,7.7060000000000004,9.8640000000000008,12.861000000000001,17.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1530,-0.28100000000000003,7.7058,0.23855999999999999,4.0140000000000002,4.9249999999999998,6.117,7.7060000000000004,9.8640000000000008,12.862,17.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1531,-0.28110000000000002,7.7054,0.23862,4.0140000000000002,4.9240000000000004,6.1159999999999997,7.7050000000000001,9.8640000000000008,12.863,17.135999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1532,-0.28120000000000001,7.7049000000000003,0.23866999999999999,4.0129999999999999,4.923,6.1159999999999997,7.7050000000000001,9.8640000000000008,12.864000000000001,17.138999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1533,-0.28129999999999999,7.7043999999999997,0.23873,4.0119999999999996,4.9219999999999997,6.1150000000000002,7.7039999999999997,9.8640000000000008,12.865,17.143000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1534,-0.28139999999999998,7.7039999999999997,0.23877999999999999,4.0110000000000001,4.9219999999999997,6.1139999999999999,7.7039999999999997,9.8640000000000008,12.866,17.145 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1535,-0.28149999999999997,7.7035,0.23884,4.0110000000000001,4.9210000000000003,6.1139999999999999,7.7039999999999997,9.8640000000000008,12.867000000000001,17.149000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1536,-0.28160000000000002,7.7031000000000001,0.2389,4.01,4.92,6.1130000000000004,7.7030000000000003,9.8640000000000008,12.868,17.152000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1537,-0.28170000000000001,7.7026000000000003,0.23895,4.0090000000000003,4.9189999999999996,6.1120000000000001,7.7030000000000003,9.8640000000000008,12.869,17.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1538,-0.28179999999999999,7.7020999999999997,0.23901,4.0090000000000003,4.9189999999999996,6.1120000000000001,7.702,9.8640000000000008,12.87,17.158000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1539,-0.28189999999999998,7.7016999999999998,0.23905999999999999,4.008,4.9180000000000001,6.1109999999999998,7.702,9.8640000000000008,12.871,17.161000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1540,-0.28199999999999997,7.7012,0.23912,4.0069999999999997,4.9169999999999998,6.11,7.7009999999999996,9.8640000000000008,12.872,17.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1541,-0.28210000000000002,7.7007000000000003,0.23918,4.0060000000000002,4.9160000000000004,6.11,7.7009999999999996,9.8650000000000002,12.874000000000001,17.167999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1542,-0.28220000000000001,7.7003000000000004,0.23923,4.0060000000000002,4.9160000000000004,6.109,7.7,9.8650000000000002,12.875,17.170999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1543,-0.2823,7.6997999999999998,0.23929,4.0049999999999999,4.915,6.1079999999999997,7.7,9.8650000000000002,12.875999999999999,17.173999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1544,-0.28239999999999998,7.6993999999999998,0.23934,4.0039999999999996,4.9139999999999997,6.1079999999999997,7.6989999999999998,9.8650000000000002,12.877000000000001,17.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1545,-0.28249999999999997,7.6989000000000001,0.2394,4.0039999999999996,4.9139999999999997,6.1070000000000002,7.6989999999999998,9.8650000000000002,12.878,17.181000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1546,-0.28260000000000002,7.6984000000000004,0.23945,4.0030000000000001,4.9130000000000003,6.1059999999999999,7.6980000000000004,9.8650000000000002,12.879,17.183 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1547,-0.28270000000000001,7.6980000000000004,0.23951,4.0019999999999998,4.9119999999999999,6.1059999999999999,7.6980000000000004,9.8650000000000002,12.88,17.187000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1548,-0.2828,7.6974999999999998,0.23957000000000001,4.0010000000000003,4.9109999999999996,6.1050000000000004,7.6980000000000004,9.8650000000000002,12.881,17.190000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1549,-0.28289999999999998,7.6970000000000001,0.23962,4.0010000000000003,4.9109999999999996,6.1040000000000001,7.6970000000000001,9.8650000000000002,12.882,17.193000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1550,-0.28299999999999997,7.6966000000000001,0.23968,4,4.91,6.1040000000000001,7.6970000000000001,9.8650000000000002,12.882999999999999,17.196999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1551,-0.28310000000000002,7.6961000000000004,0.23973,3.9990000000000001,4.9089999999999998,6.1029999999999998,7.6959999999999997,9.8650000000000002,12.884,17.199000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1552,-0.28320000000000001,7.6955999999999998,0.23979,3.9980000000000002,4.9080000000000004,6.1020000000000003,7.6959999999999997,9.8650000000000002,12.885,17.202999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1553,-0.2833,7.6951999999999998,0.23985000000000001,3.9980000000000002,4.9080000000000004,6.1020000000000003,7.6950000000000003,9.8650000000000002,12.887,17.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1554,-0.28339999999999999,7.6947000000000001,0.2399,3.9969999999999999,4.907,6.101,7.6950000000000003,9.8650000000000002,12.887,17.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1555,-0.28349999999999997,7.6942000000000004,0.23996000000000001,3.996,4.9059999999999997,6.1,7.694,9.8650000000000002,12.888999999999999,17.212 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1556,-0.28349999999999997,7.6938000000000004,0.24001,3.996,4.9059999999999997,6.1,7.694,9.8650000000000002,12.888999999999999,17.215 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1557,-0.28360000000000002,7.6932999999999998,0.24007000000000001,3.9950000000000001,4.9050000000000002,6.0990000000000002,7.6929999999999996,9.8650000000000002,12.89,17.218 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1558,-0.28370000000000001,7.6928000000000001,0.24013000000000001,3.9940000000000002,4.9039999999999999,6.0979999999999999,7.6929999999999996,9.8650000000000002,12.891999999999999,17.222000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1559,-0.2838,7.6924000000000001,0.24018,3.9929999999999999,4.9029999999999996,6.0979999999999999,7.6920000000000002,9.8650000000000002,12.893000000000001,17.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1560,-0.28389999999999999,7.6919000000000004,0.24024000000000001,3.9929999999999999,4.9029999999999996,6.0970000000000004,7.6920000000000002,9.8650000000000002,12.894,17.228000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1561,-0.28399999999999997,7.6913999999999998,0.24029,3.992,4.9020000000000001,6.0960000000000001,7.6909999999999998,9.8650000000000002,12.895,17.231000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1562,-0.28410000000000002,7.6909999999999998,0.24035000000000001,3.9910000000000001,4.9009999999999998,6.0960000000000001,7.6909999999999998,9.8650000000000002,12.896000000000001,17.234000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1563,-0.28420000000000001,7.6905000000000001,0.24041000000000001,3.99,4.9000000000000004,6.0949999999999998,7.69,9.8650000000000002,12.897,17.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1564,-0.2843,7.69,0.24046000000000001,3.99,4.9000000000000004,6.0940000000000003,7.69,9.8650000000000002,12.898,17.239999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1565,-0.28439999999999999,7.6896000000000004,0.24052000000000001,3.9889999999999999,4.899,6.093,7.69,9.8650000000000002,12.898999999999999,17.244 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1566,-0.28449999999999998,7.6890999999999998,0.24057000000000001,3.988,4.8979999999999997,6.093,7.6890000000000001,9.8650000000000002,12.9,17.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1567,-0.28460000000000002,7.6886000000000001,0.24063000000000001,3.988,4.8970000000000002,6.0919999999999996,7.6890000000000001,9.8650000000000002,12.901,17.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1568,-0.28470000000000001,7.6882000000000001,0.24068000000000001,3.9870000000000001,4.8970000000000002,6.0910000000000002,7.6879999999999997,9.8650000000000002,12.901999999999999,17.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1569,-0.2848,7.6877000000000004,0.24074000000000001,3.9860000000000002,4.8959999999999999,6.0910000000000002,7.6879999999999997,9.8650000000000002,12.903,17.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1570,-0.28489999999999999,7.6871999999999998,0.24079999999999999,3.9849999999999999,4.8949999999999996,6.09,7.6870000000000003,9.8650000000000002,12.904,17.260000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1571,-0.28499999999999998,7.6867000000000001,0.24085000000000001,3.9849999999999999,4.8940000000000001,6.0890000000000004,7.6870000000000003,9.8650000000000002,12.904999999999999,17.263000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1572,-0.28510000000000002,7.6863000000000001,0.24091000000000001,3.984,4.8940000000000001,6.0890000000000004,7.6859999999999999,9.8650000000000002,12.907,17.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1573,-0.28520000000000001,7.6858000000000004,0.24096999999999999,3.9830000000000001,4.8929999999999998,6.0880000000000001,7.6859999999999999,9.8650000000000002,12.907999999999999,17.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1574,-0.2853,7.6852999999999998,0.24102000000000001,3.9830000000000001,4.8920000000000003,6.0869999999999997,7.6849999999999996,9.8650000000000002,12.909000000000001,17.271999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1575,-0.28539999999999999,7.6848999999999998,0.24107999999999999,3.9820000000000002,4.8920000000000003,6.0869999999999997,7.6849999999999996,9.8650000000000002,12.91,17.276 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1576,-0.28549999999999998,7.6844000000000001,0.24113000000000001,3.9809999999999999,4.891,6.0860000000000003,7.6840000000000002,9.8650000000000002,12.911,17.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1577,-0.28560000000000002,7.6839000000000004,0.24118999999999999,3.98,4.8899999999999997,6.085,7.6840000000000002,9.8650000000000002,12.912000000000001,17.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1578,-0.28570000000000001,7.6835000000000004,0.24124999999999999,3.98,4.8890000000000002,6.085,7.6840000000000002,9.8650000000000002,12.913,17.286000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1579,-0.2858,7.6829999999999998,0.24129999999999999,3.9790000000000001,4.8890000000000002,6.0839999999999996,7.6829999999999998,9.8650000000000002,12.914,17.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1580,-0.2858,7.6825000000000001,0.24135999999999999,3.9780000000000002,4.8879999999999999,6.0830000000000002,7.6820000000000004,9.8650000000000002,12.914999999999999,17.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1581,-0.28589999999999999,7.6821000000000002,0.24141000000000001,3.9780000000000002,4.8869999999999996,6.0830000000000002,7.6820000000000004,9.8650000000000002,12.916,17.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1582,-0.28599999999999998,7.6816000000000004,0.24146999999999999,3.9769999999999999,4.8860000000000001,6.0819999999999999,7.6820000000000004,9.8650000000000002,12.917,17.297999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1583,-0.28610000000000002,7.6810999999999998,0.24152999999999999,3.976,4.8860000000000001,6.0810000000000004,7.681,9.8650000000000002,12.917999999999999,17.300999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1584,-0.28620000000000001,7.6806000000000001,0.24157999999999999,3.9750000000000001,4.8849999999999998,6.0810000000000004,7.681,9.8650000000000002,12.919,17.303999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1585,-0.2863,7.6802000000000001,0.24163999999999999,3.9750000000000001,4.8840000000000003,6.08,7.68,9.8659999999999997,12.92,17.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1586,-0.28639999999999999,7.6797000000000004,0.24168999999999999,3.9740000000000002,4.883,6.0789999999999997,7.68,9.8650000000000002,12.920999999999999,17.309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1587,-0.28649999999999998,7.6791999999999998,0.24174999999999999,3.9729999999999999,4.883,6.0789999999999997,7.6790000000000003,9.8659999999999997,12.922000000000001,17.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1588,-0.28660000000000002,7.6787999999999998,0.24181,3.972,4.8819999999999997,6.0780000000000003,7.6790000000000003,9.8659999999999997,12.923999999999999,17.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1589,-0.28670000000000001,7.6783000000000001,0.24185999999999999,3.972,4.8810000000000002,6.077,7.6779999999999999,9.8659999999999997,12.923999999999999,17.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1590,-0.2868,7.6778000000000004,0.24192,3.9710000000000001,4.8810000000000002,6.077,7.6779999999999999,9.8659999999999997,12.926,17.324000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1591,-0.28689999999999999,7.6772999999999998,0.24198,3.97,4.88,6.0759999999999996,7.6769999999999996,9.8659999999999997,12.927,17.327000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1592,-0.28699999999999998,7.6768999999999998,0.24203,3.97,4.8789999999999996,6.0750000000000002,7.6769999999999996,9.8659999999999997,12.928000000000001,17.329999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1593,-0.28710000000000002,7.6764000000000001,0.24209,3.9689999999999999,4.8780000000000001,6.0750000000000002,7.6760000000000002,9.8659999999999997,12.929,17.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1594,-0.28720000000000001,7.6759000000000004,0.24213999999999999,3.968,4.8780000000000001,6.0739999999999998,7.6760000000000002,9.8659999999999997,12.93,17.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1595,-0.2873,7.6755000000000004,0.2422,3.9670000000000001,4.8769999999999998,6.0730000000000004,7.6760000000000002,9.8659999999999997,12.930999999999999,17.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1596,-0.28739999999999999,7.6749999999999998,0.24226,3.9670000000000001,4.8760000000000003,6.0720000000000001,7.6749999999999998,9.8659999999999997,12.932,17.343 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1597,-0.28749999999999998,7.6745000000000001,0.24231,3.9660000000000002,4.875,6.0720000000000001,7.6740000000000004,9.8659999999999997,12.933,17.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1598,-0.28760000000000002,7.6740000000000004,0.24237,3.9649999999999999,4.875,6.0709999999999997,7.6740000000000004,9.8659999999999997,12.933999999999999,17.350000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1599,-0.28770000000000001,7.6736000000000004,0.24242,3.9649999999999999,4.8739999999999997,6.0709999999999997,7.6740000000000004,9.8659999999999997,12.935,17.353000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1600,-0.28770000000000001,7.6730999999999998,0.24248,3.964,4.8730000000000002,6.07,7.673,9.8659999999999997,12.936,17.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1601,-0.2878,7.6726000000000001,0.24254000000000001,3.9630000000000001,4.8719999999999999,6.069,7.673,9.8659999999999997,12.936999999999999,17.359000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1602,-0.28789999999999999,7.6722000000000001,0.24259,3.9620000000000002,4.8719999999999999,6.0679999999999996,7.6719999999999997,9.8659999999999997,12.938000000000001,17.361999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1603,-0.28799999999999998,7.6717000000000004,0.24265,3.9620000000000002,4.8710000000000004,6.0679999999999996,7.6719999999999997,9.8659999999999997,12.94,17.364999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1604,-0.28810000000000002,7.6711999999999998,0.24271000000000001,3.9609999999999999,4.87,6.0670000000000002,7.6710000000000003,9.8659999999999997,12.941000000000001,17.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1605,-0.28820000000000001,7.6707000000000001,0.24276,3.96,4.8689999999999998,6.0659999999999998,7.6710000000000003,9.8659999999999997,12.942,17.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1606,-0.2883,7.6703000000000001,0.24282000000000001,3.96,4.8689999999999998,6.0659999999999998,7.67,9.8659999999999997,12.943,17.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1607,-0.28839999999999999,7.6698000000000004,0.24287,3.9590000000000001,4.8680000000000003,6.0650000000000004,7.67,9.8659999999999997,12.944000000000001,17.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1608,-0.28849999999999998,7.6692999999999998,0.24293000000000001,3.9580000000000002,4.867,6.0640000000000001,7.6689999999999996,9.8659999999999997,12.945,17.382000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1609,-0.28860000000000002,7.6688999999999998,0.24299000000000001,3.9569999999999999,4.867,6.0640000000000001,7.6689999999999996,9.8659999999999997,12.946,17.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1610,-0.28870000000000001,7.6684000000000001,0.24304000000000001,3.9569999999999999,4.8659999999999997,6.0629999999999997,7.6680000000000001,9.8659999999999997,12.946999999999999,17.388000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1611,-0.2888,7.6679000000000004,0.24310000000000001,3.956,4.8650000000000002,6.0620000000000003,7.6680000000000001,9.8659999999999997,12.948,17.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1612,-0.28889999999999999,7.6673999999999998,0.24315999999999999,3.9550000000000001,4.8639999999999999,6.0620000000000003,7.6669999999999998,9.8659999999999997,12.949,17.395 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1613,-0.28899999999999998,7.6669999999999998,0.24321000000000001,3.9550000000000001,4.8639999999999999,6.0609999999999999,7.6669999999999998,9.8659999999999997,12.95,17.398 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1614,-0.28910000000000002,7.6665000000000001,0.24326999999999999,3.9540000000000002,4.8630000000000004,6.06,7.6660000000000004,9.8659999999999997,12.951000000000001,17.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1615,-0.28920000000000001,7.6660000000000004,0.24332999999999999,3.9529999999999998,4.8620000000000001,6.06,7.6660000000000004,9.8659999999999997,12.952999999999999,17.405000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1616,-0.2893,7.6656000000000004,0.24338000000000001,3.952,4.8609999999999998,6.0590000000000002,7.6660000000000004,9.8659999999999997,12.954000000000001,17.408000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1617,-0.2893,7.6650999999999998,0.24343999999999999,3.952,4.8609999999999998,6.0579999999999998,7.665,9.8659999999999997,12.955,17.411000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1618,-0.28939999999999999,7.6646000000000001,0.24349000000000001,3.9510000000000001,4.8600000000000003,6.0579999999999998,7.665,9.8659999999999997,12.955,17.414000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1619,-0.28949999999999998,7.6641000000000004,0.24354999999999999,3.95,4.859,6.0570000000000004,7.6639999999999997,9.8659999999999997,12.957000000000001,17.417000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1620,-0.28960000000000002,7.6637000000000004,0.24360999999999999,3.9489999999999998,4.8579999999999997,6.056,7.6639999999999997,9.8659999999999997,12.958,17.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1621,-0.28970000000000001,7.6631999999999998,0.24365999999999999,3.9489999999999998,4.8579999999999997,6.056,7.6630000000000003,9.8659999999999997,12.959,17.423999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1622,-0.2898,7.6627000000000001,0.24371999999999999,3.948,4.8570000000000002,6.0549999999999997,7.6630000000000003,9.8659999999999997,12.96,17.427 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1623,-0.28989999999999999,7.6623000000000001,0.24378,3.9470000000000001,4.8559999999999999,6.0540000000000003,7.6619999999999999,9.8659999999999997,12.961,17.431000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1624,-0.28999999999999998,7.6618000000000004,0.24382999999999999,3.9470000000000001,4.8559999999999999,6.0540000000000003,7.6619999999999999,9.8659999999999997,12.962,17.434000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1625,-0.29010000000000002,7.6612999999999998,0.24389,3.9460000000000002,4.8550000000000004,6.0529999999999999,7.6609999999999996,9.8659999999999997,12.962999999999999,17.437000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1626,-0.29020000000000001,7.6608000000000001,0.24395,3.9449999999999998,4.8540000000000001,6.0519999999999996,7.6609999999999996,9.8659999999999997,12.964,17.440999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1627,-0.2903,7.6604000000000001,0.24399999999999999,3.9449999999999998,4.8529999999999998,6.0519999999999996,7.66,9.8659999999999997,12.965,17.443999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1628,-0.29039999999999999,7.6599000000000004,0.24406,3.944,4.8529999999999998,6.0510000000000002,7.66,9.8659999999999997,12.967000000000001,17.446999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1629,-0.29049999999999998,7.6593999999999998,0.24410999999999999,3.9430000000000001,4.8520000000000003,6.05,7.6589999999999998,9.8659999999999997,12.967000000000001,17.45 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1630,-0.29060000000000002,7.6589999999999998,0.24417,3.9420000000000002,4.851,6.05,7.6589999999999998,9.8670000000000009,12.968999999999999,17.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1631,-0.29070000000000001,7.6585000000000001,0.24423,3.9420000000000002,4.8499999999999996,6.0490000000000004,7.6580000000000004,9.8670000000000009,12.97,17.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1632,-0.29070000000000001,7.6580000000000004,0.24428,3.9409999999999998,4.8499999999999996,6.048,7.6580000000000004,9.8659999999999997,12.971,17.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1633,-0.2908,7.6574999999999998,0.24434,3.94,4.8490000000000002,6.0469999999999997,7.6580000000000004,9.8659999999999997,12.972,17.463000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1634,-0.29089999999999999,7.6570999999999998,0.24440000000000001,3.9390000000000001,4.8479999999999999,6.0469999999999997,7.657,9.8670000000000009,12.973000000000001,17.466999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1635,-0.29099999999999998,7.6566000000000001,0.24445,3.9390000000000001,4.8479999999999999,6.0460000000000003,7.657,9.8670000000000009,12.974,17.469000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1636,-0.29110000000000003,7.6561000000000003,0.24451000000000001,3.9380000000000002,4.8470000000000004,6.0449999999999999,7.6559999999999997,9.8670000000000009,12.975,17.472999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1637,-0.29120000000000001,7.6557000000000004,0.24457000000000001,3.9369999999999998,4.8460000000000001,6.0449999999999999,7.6559999999999997,9.8670000000000009,12.976000000000001,17.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1638,-0.2913,7.6551999999999998,0.24462,3.9369999999999998,4.8449999999999998,6.0439999999999996,7.6550000000000002,9.8670000000000009,12.977,17.48 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1639,-0.29139999999999999,7.6547000000000001,0.24468000000000001,3.9359999999999999,4.8449999999999998,6.0430000000000001,7.6550000000000002,9.8670000000000009,12.978,17.483000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1640,-0.29149999999999998,7.6542000000000003,0.24474000000000001,3.9350000000000001,4.8440000000000003,6.0430000000000001,7.6539999999999999,9.8670000000000009,12.98,17.486999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1641,-0.29160000000000003,7.6538000000000004,0.24479000000000001,3.9340000000000002,4.843,6.0419999999999998,7.6539999999999999,9.8670000000000009,12.981,17.489999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1642,-0.29170000000000001,7.6532999999999998,0.24485000000000001,3.9340000000000002,4.8419999999999996,6.0410000000000004,7.6529999999999996,9.8670000000000009,12.981999999999999,17.492999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1643,-0.2918,7.6528,0.24490999999999999,3.9329999999999998,4.8419999999999996,6.0410000000000004,7.6529999999999996,9.8670000000000009,12.983000000000001,17.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1644,-0.29189999999999999,7.6524000000000001,0.24496000000000001,3.9319999999999999,4.8410000000000002,6.04,7.6520000000000001,9.8670000000000009,12.984,17.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1645,-0.29199999999999998,7.6519000000000004,0.24501999999999999,3.9319999999999999,4.84,6.0389999999999997,7.6520000000000001,9.8670000000000009,12.984999999999999,17.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1646,-0.29210000000000003,7.6513999999999998,0.24507000000000001,3.931,4.8390000000000004,6.0389999999999997,7.6509999999999998,9.8670000000000009,12.986000000000001,17.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1647,-0.29210000000000003,7.6509999999999998,0.24512999999999999,3.93,4.8390000000000004,6.0380000000000003,7.6509999999999998,9.8670000000000009,12.987,17.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1648,-0.29220000000000002,7.6505000000000001,0.24518999999999999,3.9289999999999998,4.8380000000000001,6.0369999999999999,7.65,9.8670000000000009,12.988,17.513000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1649,-0.2923,7.65,0.24524000000000001,3.9289999999999998,4.8369999999999997,6.0369999999999999,7.65,9.8670000000000009,12.989000000000001,17.515999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1650,-0.29239999999999999,7.6494999999999997,0.24529999999999999,3.9279999999999999,4.8360000000000003,6.0359999999999996,7.65,9.8670000000000009,12.99,17.518999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1651,-0.29249999999999998,7.6490999999999998,0.24535999999999999,3.927,4.8360000000000003,6.0350000000000001,7.649,9.8670000000000009,12.992000000000001,17.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1652,-0.29260000000000003,7.6486000000000001,0.24540999999999999,3.927,4.835,6.0350000000000001,7.649,9.8670000000000009,12.992000000000001,17.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1653,-0.29270000000000002,7.6481000000000003,0.24546999999999999,3.9260000000000002,4.8339999999999996,6.0339999999999998,7.6479999999999997,9.8670000000000009,12.994,17.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1654,-0.2928,7.6477000000000004,0.24553,3.9249999999999998,4.8339999999999996,6.0330000000000004,7.6479999999999997,9.8670000000000009,12.994999999999999,17.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1655,-0.29289999999999999,7.6471999999999998,0.24557999999999999,3.9239999999999999,4.8330000000000002,6.0330000000000004,7.6470000000000002,9.8670000000000009,12.996,17.536000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1656,-0.29299999999999998,7.6467000000000001,0.24564,3.9239999999999999,4.8319999999999999,6.032,7.6470000000000002,9.8670000000000009,12.997,17.539000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1657,-0.29310000000000003,7.6463000000000001,0.2457,3.923,4.8310000000000004,6.0309999999999997,7.6459999999999999,9.8670000000000009,12.997999999999999,17.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1658,-0.29320000000000002,7.6458000000000004,0.24575,3.9220000000000002,4.8310000000000004,6.0309999999999997,7.6459999999999999,9.8670000000000009,12.999000000000001,17.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1659,-0.29330000000000001,7.6452999999999998,0.24581,3.9220000000000002,4.83,6.03,7.6449999999999996,9.8670000000000009,13,17.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1660,-0.29330000000000001,7.6448999999999998,0.24587000000000001,3.9209999999999998,4.8289999999999997,6.0289999999999999,7.6449999999999996,9.8670000000000009,13.002000000000001,17.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1661,-0.29339999999999999,7.6444000000000001,0.24592,3.92,4.8289999999999997,6.0289999999999999,7.6440000000000001,9.8670000000000009,13.002000000000001,17.556000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1662,-0.29349999999999998,7.6439000000000004,0.24598,3.919,4.8280000000000003,6.0279999999999996,7.6440000000000001,9.8670000000000009,13.004,17.559000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1663,-0.29360000000000003,7.6435000000000004,0.24604000000000001,3.919,4.827,6.0270000000000001,7.6440000000000001,9.8670000000000009,13.005000000000001,17.562999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1664,-0.29370000000000002,7.6429999999999998,0.24609,3.9180000000000001,4.8259999999999996,6.0270000000000001,7.6429999999999998,9.8670000000000009,13.006,17.565999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1665,-0.29380000000000001,7.6425000000000001,0.24615000000000001,3.9169999999999998,4.8259999999999996,6.0259999999999998,7.6420000000000003,9.8670000000000009,13.007,17.568999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1666,-0.29389999999999999,7.6421000000000001,0.24621000000000001,3.9169999999999998,4.8250000000000002,6.0250000000000004,7.6420000000000003,9.8670000000000009,13.007999999999999,17.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1667,-0.29399999999999998,7.6416000000000004,0.24626000000000001,3.9159999999999999,4.8239999999999998,6.0250000000000004,7.6420000000000003,9.8670000000000009,13.009,17.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1668,-0.29409999999999997,7.6410999999999998,0.24632000000000001,3.915,4.8230000000000004,6.024,7.641,9.8670000000000009,13.01,17.579999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1669,-0.29420000000000002,7.6406999999999998,0.24637999999999999,3.9140000000000001,4.8230000000000004,6.0229999999999997,7.641,9.8680000000000003,13.012,17.582999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1670,-0.29430000000000001,7.6402000000000001,0.24643000000000001,3.9140000000000001,4.8220000000000001,6.0229999999999997,7.64,9.8680000000000003,13.012,17.585999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1671,-0.2944,7.6397000000000004,0.24648999999999999,3.9129999999999998,4.8209999999999997,6.0220000000000002,7.64,9.8680000000000003,13.013999999999999,17.59 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1672,-0.2944,7.6393000000000004,0.24654999999999999,3.9119999999999999,4.82,6.0209999999999999,7.6390000000000002,9.8680000000000003,13.015000000000001,17.593 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1673,-0.29449999999999998,7.6387999999999998,0.24660000000000001,3.9119999999999999,4.82,6.0209999999999999,7.6390000000000002,9.8680000000000003,13.016,17.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1674,-0.29459999999999997,7.6383000000000001,0.24665999999999999,3.911,4.819,6.02,7.6379999999999999,9.8680000000000003,13.016999999999999,17.599 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1675,-0.29470000000000002,7.6379000000000001,0.24671999999999999,3.91,4.8179999999999996,6.0190000000000001,7.6379999999999999,9.8680000000000003,13.018000000000001,17.603000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1676,-0.29480000000000001,7.6374000000000004,0.24676999999999999,3.91,4.8179999999999996,6.0190000000000001,7.6369999999999996,9.8680000000000003,13.019,17.606000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1677,-0.2949,7.6368999999999998,0.24682999999999999,3.9089999999999998,4.8170000000000002,6.0179999999999998,7.6369999999999996,9.8680000000000003,13.02,17.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1678,-0.29499999999999998,7.6364999999999998,0.24689,3.9079999999999999,4.8159999999999998,6.0170000000000003,7.6360000000000001,9.8680000000000003,13.022,17.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1679,-0.29509999999999997,7.6360000000000001,0.24693999999999999,3.907,4.8150000000000004,6.0170000000000003,7.6360000000000001,9.8680000000000003,13.022,17.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1680,-0.29520000000000002,7.6355000000000004,0.247,3.907,4.8150000000000004,6.016,7.6360000000000001,9.8680000000000003,13.023999999999999,17.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1681,-0.29530000000000001,7.6351000000000004,0.24706,3.9060000000000001,4.8140000000000001,6.0149999999999997,7.6349999999999998,9.8680000000000003,13.025,17.623999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1682,-0.2954,7.6345999999999998,0.24711,3.9049999999999998,4.8129999999999997,6.0149999999999997,7.6349999999999998,9.8680000000000003,13.026,17.626999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1683,-0.29549999999999998,7.6341000000000001,0.24717,3.9049999999999998,4.8129999999999997,6.0140000000000002,7.6340000000000003,9.8680000000000003,13.026999999999999,17.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1684,-0.29549999999999998,7.6337000000000002,0.24723000000000001,3.9039999999999999,4.8120000000000003,6.0129999999999999,7.6340000000000003,9.8680000000000003,13.028,17.632999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1685,-0.29559999999999997,7.6332000000000004,0.24729000000000001,3.903,4.8109999999999999,6.0119999999999996,7.633,9.8680000000000003,13.029,17.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1686,-0.29570000000000002,7.6327999999999996,0.24734,3.9020000000000001,4.8099999999999996,6.0119999999999996,7.633,9.8680000000000003,13.03,17.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1687,-0.29580000000000001,7.6322999999999999,0.24740000000000001,3.9020000000000001,4.8099999999999996,6.0110000000000001,7.6319999999999997,9.8680000000000003,13.032,17.643999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1688,-0.2959,7.6318000000000001,0.24746000000000001,3.9009999999999998,4.8090000000000002,6.01,7.6319999999999997,9.8680000000000003,13.032999999999999,17.646999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1689,-0.29599999999999999,7.6314000000000002,0.24751000000000001,3.9,4.8079999999999998,6.01,7.6310000000000002,9.8680000000000003,13.034000000000001,17.649999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1690,-0.29609999999999997,7.6308999999999996,0.24757000000000001,3.9,4.8070000000000004,6.0090000000000003,7.6310000000000002,9.8680000000000003,13.035,17.654 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1691,-0.29620000000000002,7.6303999999999998,0.24762999999999999,3.899,4.8070000000000004,6.008,7.63,9.8680000000000003,13.036,17.657 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1692,-0.29630000000000001,7.63,0.24768000000000001,3.8980000000000001,4.806,6.008,7.63,9.8680000000000003,13.037000000000001,17.661000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1693,-0.2964,7.6295000000000002,0.24773999999999999,3.8969999999999998,4.8049999999999997,6.0069999999999997,7.63,9.8680000000000003,13.038,17.664000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1694,-0.29649999999999999,7.6291000000000002,0.24779999999999999,3.8969999999999998,4.8049999999999997,6.0069999999999997,7.6289999999999996,9.8680000000000003,13.04,17.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1695,-0.29649999999999999,7.6285999999999996,0.24784999999999999,3.8959999999999999,4.8040000000000003,6.0060000000000002,7.6289999999999996,9.8680000000000003,13.04,17.670000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1696,-0.29659999999999997,7.6280999999999999,0.24790999999999999,3.895,4.8029999999999999,6.0049999999999999,7.6280000000000001,9.8680000000000003,13.042,17.673999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1697,-0.29670000000000002,7.6276999999999999,0.24797,3.895,4.8019999999999996,6.0049999999999999,7.6280000000000001,9.8689999999999998,13.042999999999999,17.678000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1698,-0.29680000000000001,7.6272000000000002,0.24801999999999999,3.8940000000000001,4.8019999999999996,6.0039999999999996,7.6269999999999998,9.8680000000000003,13.044,17.681000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1699,-0.2969,7.6266999999999996,0.24807999999999999,3.8929999999999998,4.8010000000000002,6.0030000000000001,7.6269999999999998,9.8680000000000003,13.045,17.684000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1700,-0.29699999999999999,7.6262999999999996,0.24814,3.8929999999999998,4.8,6.0030000000000001,7.6260000000000003,9.8689999999999998,13.045999999999999,17.687999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1701,-0.29709999999999998,7.6257999999999999,0.24818999999999999,3.8919999999999999,4.8,6.0019999999999998,7.6260000000000003,9.8689999999999998,13.047000000000001,17.690999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1702,-0.29720000000000002,7.6254,0.24825,3.891,4.7990000000000004,6.0010000000000003,7.625,9.8689999999999998,13.048,17.695 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1703,-0.29730000000000001,7.6249000000000002,0.24831,3.89,4.798,6.0010000000000003,7.625,9.8689999999999998,13.05,17.699000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1704,-0.2974,7.6243999999999996,0.24837000000000001,3.89,4.7969999999999997,6,7.6239999999999997,9.8689999999999998,13.051,17.702000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1705,-0.2974,7.6239999999999997,0.24842,3.8889999999999998,4.7969999999999997,5.9989999999999997,7.6239999999999997,9.8689999999999998,13.052,17.704999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1706,-0.29749999999999999,7.6234999999999999,0.24848000000000001,3.8879999999999999,4.7960000000000003,5.9989999999999997,7.6239999999999997,9.8689999999999998,13.053000000000001,17.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1707,-0.29759999999999998,7.6231,0.24854000000000001,3.8879999999999999,4.7949999999999999,5.9980000000000002,7.6230000000000002,9.8689999999999998,13.054,17.712 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1708,-0.29770000000000002,7.6226000000000003,0.24859000000000001,3.887,4.7939999999999996,5.9969999999999999,7.6230000000000002,9.8689999999999998,13.055,17.715 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1709,-0.29780000000000001,7.6220999999999997,0.24865000000000001,3.8860000000000001,4.7939999999999996,5.9969999999999999,7.6219999999999999,9.8689999999999998,13.055999999999999,17.719000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1710,-0.2979,7.6216999999999997,0.24870999999999999,3.8849999999999998,4.7930000000000001,5.9960000000000004,7.6219999999999999,9.8689999999999998,13.058,17.722000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1711,-0.29799999999999999,7.6212,0.24876000000000001,3.8849999999999998,4.7919999999999998,5.9950000000000001,7.6210000000000004,9.8689999999999998,13.058999999999999,17.725000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1712,-0.29809999999999998,7.6208,0.24882000000000001,3.8839999999999999,4.7919999999999998,5.9950000000000001,7.6210000000000004,9.8689999999999998,13.06,17.728999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1713,-0.29820000000000002,7.6203000000000003,0.24887999999999999,3.883,4.7910000000000004,5.9939999999999998,7.62,9.8689999999999998,13.061,17.733000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1714,-0.29830000000000001,7.6199000000000003,0.24893000000000001,3.883,4.79,5.9930000000000003,7.62,9.8689999999999998,13.061999999999999,17.736000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1715,-0.2984,7.6193999999999997,0.24898999999999999,3.8820000000000001,4.7889999999999997,5.9930000000000003,7.6189999999999998,9.8689999999999998,13.063000000000001,17.739999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1716,-0.2984,7.6189,0.24904999999999999,3.8809999999999998,4.7889999999999997,5.992,7.6189999999999998,9.8689999999999998,13.064,17.742999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1717,-0.29849999999999999,7.6185,0.24909999999999999,3.8809999999999998,4.7880000000000003,5.9909999999999997,7.6180000000000003,9.8689999999999998,13.065,17.745999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1718,-0.29859999999999998,7.6180000000000003,0.24915999999999999,3.88,4.7869999999999999,5.9909999999999997,7.6180000000000003,9.8689999999999998,13.067,17.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1719,-0.29870000000000002,7.6176000000000004,0.24922,3.879,4.7869999999999999,5.99,7.6180000000000003,9.8689999999999998,13.068,17.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1720,-0.29880000000000001,7.6170999999999998,0.24928,3.8780000000000001,4.7859999999999996,5.9889999999999999,7.617,9.8689999999999998,13.069000000000001,17.757000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1721,-0.2989,7.6166999999999998,0.24933,3.8780000000000001,4.7850000000000001,5.9889999999999999,7.617,9.8699999999999992,13.07,17.760000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1722,-0.29899999999999999,7.6162000000000001,0.24939,3.8769999999999998,4.7839999999999998,5.9880000000000004,7.6159999999999997,9.8699999999999992,13.071,17.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1723,-0.29909999999999998,7.6158000000000001,0.24945000000000001,3.8759999999999999,4.7839999999999998,5.9870000000000001,7.6159999999999997,9.8699999999999992,13.073,17.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1724,-0.29920000000000002,7.6153000000000004,0.2495,3.8759999999999999,4.7830000000000004,5.9870000000000001,7.6150000000000002,9.8699999999999992,13.074,17.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1725,-0.29920000000000002,7.6147999999999998,0.24956,3.875,4.782,5.9859999999999998,7.6150000000000002,9.8699999999999992,13.074999999999999,17.774000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1726,-0.29930000000000001,7.6143999999999998,0.24962000000000001,3.8740000000000001,4.782,5.9850000000000003,7.6139999999999999,9.8699999999999992,13.076000000000001,17.777999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1727,-0.2994,7.6139000000000001,0.24967,3.8740000000000001,4.7809999999999997,5.9850000000000003,7.6139999999999999,9.8699999999999992,13.077,17.780999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1728,-0.29949999999999999,7.6135000000000002,0.24973000000000001,3.8730000000000002,4.78,5.984,7.6139999999999999,9.8699999999999992,13.077999999999999,17.783999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1729,-0.29959999999999998,7.6130000000000004,0.24979000000000001,3.8719999999999999,4.7789999999999999,5.9829999999999997,7.6130000000000004,9.8699999999999992,13.079000000000001,17.788 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1730,-0.29970000000000002,7.6125999999999996,0.24984999999999999,3.871,4.7789999999999999,5.9829999999999997,7.6130000000000004,9.8699999999999992,13.081,17.792000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1731,-0.29980000000000001,7.6120999999999999,0.24990000000000001,3.871,4.7779999999999996,5.9820000000000002,7.6120000000000001,9.8699999999999992,13.082000000000001,17.795000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1732,-0.2999,7.6116999999999999,0.24995999999999999,3.87,4.7770000000000001,5.9809999999999999,7.6120000000000001,9.8699999999999992,13.083,17.798999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1733,-0.3,7.6112000000000002,0.25002000000000002,3.8690000000000002,4.7770000000000001,5.9809999999999999,7.6109999999999998,9.8699999999999992,13.084,17.803000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1734,-0.30009999999999998,7.6108000000000002,0.25007000000000001,3.8690000000000002,4.7759999999999998,5.98,7.6109999999999998,9.8699999999999992,13.085000000000001,17.806000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1735,-0.30009999999999998,7.6102999999999996,0.25013000000000002,3.8679999999999999,4.7750000000000004,5.9790000000000001,7.61,9.8699999999999992,13.086,17.809000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1736,-0.30020000000000002,7.6098999999999997,0.25019000000000002,3.867,4.774,5.9790000000000001,7.61,9.8699999999999992,13.087999999999999,17.812999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1737,-0.30030000000000001,7.6093999999999999,0.25024000000000002,3.867,4.774,5.9779999999999998,7.609,9.8699999999999992,13.087999999999999,17.815999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1738,-0.3004,7.609,0.25030000000000002,3.8660000000000001,4.7729999999999997,5.9770000000000003,7.609,9.8699999999999992,13.09,17.818999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1739,-0.30049999999999999,7.6085000000000003,0.25036000000000003,3.8650000000000002,4.7720000000000002,5.9770000000000003,7.6079999999999997,9.8699999999999992,13.090999999999999,17.823 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1740,-0.30059999999999998,7.6081000000000003,0.25041000000000002,3.8650000000000002,4.7720000000000002,5.976,7.6079999999999997,9.8699999999999992,13.092000000000001,17.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1741,-0.30070000000000002,7.6075999999999997,0.25047000000000003,3.8639999999999999,4.7709999999999999,5.9749999999999996,7.6079999999999997,9.8710000000000004,13.093,17.829999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1742,-0.30080000000000001,7.6071999999999997,0.25052999999999997,3.863,4.7699999999999996,5.9749999999999996,7.6070000000000002,9.8710000000000004,13.095000000000001,17.834 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1743,-0.3009,7.6067,0.25058999999999998,3.8620000000000001,4.7690000000000001,5.9740000000000002,7.6070000000000002,9.8710000000000004,13.096,17.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1744,-0.3009,7.6063000000000001,0.25063999999999997,3.8620000000000001,4.7690000000000001,5.9740000000000002,7.6059999999999999,9.8710000000000004,13.097,17.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1745,-0.30099999999999999,7.6058000000000003,0.25069999999999998,3.8610000000000002,4.7679999999999998,5.9729999999999999,7.6059999999999999,9.8710000000000004,13.098000000000001,17.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1746,-0.30109999999999998,7.6054000000000004,0.25075999999999998,3.86,4.7670000000000003,5.9720000000000004,7.6050000000000004,9.8710000000000004,13.099,17.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1747,-0.30120000000000002,7.6048999999999998,0.25080999999999998,3.86,4.7670000000000003,5.9720000000000004,7.6050000000000004,9.8710000000000004,13.1,17.850999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1748,-0.30130000000000001,7.6044999999999998,0.25086999999999998,3.859,4.766,5.9710000000000001,7.6040000000000001,9.8710000000000004,13.101000000000001,17.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1749,-0.3014,7.6040000000000001,0.25092999999999999,3.8580000000000001,4.7649999999999997,5.97,7.6040000000000001,9.8710000000000004,13.103,17.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1750,-0.30149999999999999,7.6036000000000001,0.25097999999999998,3.8580000000000001,4.7649999999999997,5.97,7.6040000000000001,9.8710000000000004,13.103999999999999,17.861999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1751,-0.30159999999999998,7.6031000000000004,0.25103999999999999,3.8570000000000002,4.7640000000000002,5.9690000000000003,7.6029999999999998,9.8710000000000004,13.105,17.864999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1752,-0.30170000000000002,7.6026999999999996,0.25109999999999999,3.8559999999999999,4.7629999999999999,5.968,7.6029999999999998,9.8710000000000004,13.106,17.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1753,-0.30170000000000002,7.6022999999999996,0.25115999999999999,3.8559999999999999,4.7619999999999996,5.968,7.6020000000000003,9.8710000000000004,13.106999999999999,17.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1754,-0.30180000000000001,7.6017999999999999,0.25120999999999999,3.855,4.7619999999999996,5.9669999999999996,7.6020000000000003,9.8710000000000004,13.108000000000001,17.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1755,-0.3019,7.6013999999999999,0.25126999999999999,3.8540000000000001,4.7610000000000001,5.9660000000000002,7.601,9.8710000000000004,13.11,17.879000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1756,-0.30199999999999999,7.6009000000000002,0.25133,3.8530000000000002,4.76,5.9660000000000002,7.601,9.8710000000000004,13.111000000000001,17.882999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1757,-0.30209999999999998,7.6005000000000003,0.25137999999999999,3.8530000000000002,4.76,5.9649999999999999,7.6,9.8710000000000004,13.112,17.885999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1758,-0.30220000000000002,7.6,0.25144,3.8519999999999999,4.7590000000000003,5.9640000000000004,7.6,9.8719999999999999,13.113,17.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1759,-0.30230000000000001,7.5995999999999997,0.2515,3.851,4.758,5.9640000000000004,7.6,9.8719999999999999,13.114000000000001,17.893999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1760,-0.3024,7.5991,0.25156000000000001,3.851,4.7569999999999997,5.9630000000000001,7.5990000000000002,9.8719999999999999,13.116,17.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1761,-0.30249999999999999,7.5987,0.25161,3.85,4.7569999999999997,5.9619999999999997,7.5990000000000002,9.8719999999999999,13.117000000000001,17.901 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1762,-0.30249999999999999,7.5983000000000001,0.25167,3.8490000000000002,4.7560000000000002,5.9619999999999997,7.5979999999999999,9.8719999999999999,13.118,17.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1763,-0.30259999999999998,7.5978000000000003,0.25173000000000001,3.8490000000000002,4.7549999999999999,5.9610000000000003,7.5979999999999999,9.8719999999999999,13.119,17.908000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1764,-0.30270000000000002,7.5974000000000004,0.25178,3.8479999999999999,4.7549999999999999,5.9610000000000003,7.5970000000000004,9.8719999999999999,13.12,17.911000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1765,-0.30280000000000001,7.5968999999999998,0.25184000000000001,3.847,4.7539999999999996,5.96,7.5970000000000004,9.8719999999999999,13.121,17.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1766,-0.3029,7.5964999999999998,0.25190000000000001,3.847,4.7530000000000001,5.9589999999999996,7.5960000000000001,9.8719999999999999,13.122999999999999,17.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1767,-0.30299999999999999,7.5960999999999999,0.25195000000000001,3.8460000000000001,4.7530000000000001,5.9589999999999996,7.5960000000000001,9.8719999999999999,13.124000000000001,17.922000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1768,-0.30309999999999998,7.5956000000000001,0.25201000000000001,3.8450000000000002,4.7519999999999998,5.9580000000000002,7.5960000000000001,9.8719999999999999,13.125,17.925999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1769,-0.30320000000000003,7.5952000000000002,0.25207000000000002,3.8450000000000002,4.7510000000000003,5.9569999999999999,7.5949999999999998,9.8719999999999999,13.125999999999999,17.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1770,-0.30320000000000003,7.5946999999999996,0.25213000000000002,3.8439999999999999,4.75,5.9569999999999999,7.5949999999999998,9.8719999999999999,13.127000000000001,17.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1771,-0.30330000000000001,7.5942999999999996,0.25218000000000002,3.843,4.75,5.9560000000000004,7.5940000000000003,9.8719999999999999,13.128,17.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1772,-0.3034,7.5938999999999997,0.25224000000000002,3.843,4.7489999999999997,5.9550000000000001,7.5940000000000003,9.8729999999999993,13.13,17.940000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1773,-0.30349999999999999,7.5933999999999999,0.25230000000000002,3.8420000000000001,4.7480000000000002,5.9550000000000001,7.593,9.8729999999999993,13.131,17.943999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1774,-0.30359999999999998,7.593,0.25235000000000002,3.8410000000000002,4.7480000000000002,5.9539999999999997,7.593,9.8729999999999993,13.132,17.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1775,-0.30370000000000003,7.5925000000000002,0.25241000000000002,3.84,4.7469999999999999,5.9530000000000003,7.5919999999999996,9.8729999999999993,13.132999999999999,17.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1776,-0.30380000000000001,7.5921000000000003,0.25247000000000003,3.84,4.7460000000000004,5.9530000000000003,7.5919999999999996,9.8729999999999993,13.135,17.954999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1777,-0.3039,7.5917000000000003,0.25252000000000002,3.839,4.7460000000000004,5.952,7.5919999999999996,9.8729999999999993,13.135999999999999,17.957999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1778,-0.30399999999999999,7.5911999999999997,0.25258000000000003,3.8380000000000001,4.7450000000000001,5.9509999999999996,7.5910000000000002,9.8729999999999993,13.137,17.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1779,-0.30399999999999999,7.5907999999999998,0.25263999999999998,3.8380000000000001,4.7439999999999998,5.9509999999999996,7.5910000000000002,9.8729999999999993,13.138,17.965 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1780,-0.30409999999999998,7.5903999999999998,0.25269999999999998,3.8370000000000002,4.7430000000000003,5.95,7.59,9.8729999999999993,13.14,17.969000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1781,-0.30420000000000003,7.5899000000000001,0.25274999999999997,3.8359999999999999,4.7430000000000003,5.95,7.59,9.8729999999999993,13.14,17.972000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1782,-0.30430000000000001,7.5895000000000001,0.25280999999999998,3.8359999999999999,4.742,5.9489999999999998,7.59,9.8729999999999993,13.141999999999999,17.975999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1783,-0.3044,7.5891000000000002,0.25286999999999998,3.835,4.7409999999999997,5.9480000000000004,7.5890000000000004,9.8729999999999993,13.143000000000001,17.98 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1784,-0.30449999999999999,7.5885999999999996,0.25291999999999998,3.8340000000000001,4.7409999999999997,5.9480000000000004,7.5890000000000004,9.8729999999999993,13.144,17.983000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1785,-0.30459999999999998,7.5881999999999996,0.25297999999999998,3.8340000000000001,4.74,5.9470000000000001,7.5880000000000001,9.8729999999999993,13.145,17.986999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1786,-0.30470000000000003,7.5877999999999997,0.25303999999999999,3.8330000000000002,4.7389999999999999,5.9459999999999997,7.5880000000000001,9.8740000000000006,13.147,17.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1787,-0.30470000000000003,7.5872999999999999,0.25308999999999998,3.8319999999999999,4.7389999999999999,5.9459999999999997,7.5869999999999997,9.8740000000000006,13.148,17.992999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1788,-0.30480000000000002,7.5869,0.25314999999999999,3.8319999999999999,4.7380000000000004,5.9450000000000003,7.5869999999999997,9.8740000000000006,13.148999999999999,17.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1789,-0.3049,7.5865,0.25320999999999999,3.831,4.7370000000000001,5.944,7.5860000000000003,9.8740000000000006,13.15,18.001000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1790,-0.30499999999999999,7.5860000000000003,0.25325999999999999,3.83,4.7359999999999998,5.944,7.5860000000000003,9.8740000000000006,13.151,18.004999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1791,-0.30509999999999998,7.5856000000000003,0.25331999999999999,3.83,4.7359999999999998,5.9429999999999996,7.5860000000000003,9.8740000000000006,13.153,18.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1792,-0.30520000000000003,7.5852000000000004,0.25337999999999999,3.8290000000000002,4.7350000000000003,5.9429999999999996,7.585,9.8740000000000006,13.154,18.013000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1793,-0.30530000000000002,7.5846999999999998,0.25344,3.8279999999999998,4.734,5.9420000000000002,7.585,9.8740000000000006,13.154999999999999,18.015999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1794,-0.30530000000000002,7.5842999999999998,0.25348999999999999,3.8279999999999998,4.734,5.9409999999999998,7.5839999999999996,9.8740000000000006,13.156000000000001,18.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1795,-0.3054,7.5838999999999999,0.25355,3.827,4.7329999999999997,5.9409999999999998,7.5839999999999996,9.8740000000000006,13.157,18.023 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1796,-0.30549999999999999,7.5834000000000001,0.25361,3.8260000000000001,4.7320000000000002,5.94,7.5830000000000002,9.8740000000000006,13.159000000000001,18.027000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1797,-0.30559999999999998,7.5830000000000002,0.25366,3.8260000000000001,4.7320000000000002,5.9390000000000001,7.5830000000000002,9.8740000000000006,13.16,18.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1798,-0.30570000000000003,7.5826000000000002,0.25372,3.8250000000000002,4.7309999999999999,5.9390000000000001,7.5830000000000002,9.875,13.161,18.033999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1799,-0.30580000000000002,7.5822000000000003,0.25378000000000001,3.8239999999999998,4.7300000000000004,5.9379999999999997,7.5819999999999999,9.875,13.162000000000001,18.038 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1800,-0.30590000000000001,7.5816999999999997,0.25383,3.8239999999999998,4.7300000000000004,5.9370000000000003,7.5819999999999999,9.875,13.163,18.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1801,-0.30599999999999999,7.5812999999999997,0.25389,3.823,4.7290000000000001,5.9370000000000003,7.5810000000000004,9.875,13.164999999999999,18.045000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1802,-0.30599999999999999,7.5808999999999997,0.25395000000000001,3.8220000000000001,4.7279999999999998,5.9359999999999999,7.5810000000000004,9.875,13.166,18.047999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1803,-0.30609999999999998,7.5804999999999998,0.25401000000000001,3.8220000000000001,4.7270000000000003,5.9359999999999999,7.58,9.875,13.167,18.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1804,-0.30620000000000003,7.58,0.25406000000000001,3.8210000000000002,4.7270000000000003,5.9349999999999996,7.58,9.875,13.167999999999999,18.056000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1805,-0.30630000000000002,7.5796000000000001,0.25412000000000001,3.82,4.726,5.9340000000000002,7.58,9.875,13.17,18.059999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1806,-0.30640000000000001,7.5792000000000002,0.25418000000000002,3.82,4.7249999999999996,5.9340000000000002,7.5789999999999997,9.875,13.170999999999999,18.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1807,-0.30649999999999999,7.5787000000000004,0.25423000000000001,3.819,4.7249999999999996,5.9329999999999998,7.5789999999999997,9.875,13.172000000000001,18.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1808,-0.30659999999999998,7.5782999999999996,0.25429000000000002,3.8180000000000001,4.7240000000000002,5.9320000000000004,7.5780000000000003,9.875,13.173,18.071000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1809,-0.30669999999999997,7.5778999999999996,0.25435000000000002,3.8180000000000001,4.7229999999999999,5.9320000000000004,7.5780000000000003,9.875,13.175000000000001,18.074999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1810,-0.30669999999999997,7.5774999999999997,0.25440000000000002,3.8170000000000002,4.7229999999999999,5.931,7.5780000000000003,9.875,13.176,18.077000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1811,-0.30680000000000002,7.577,0.25446000000000002,3.8159999999999998,4.7220000000000004,5.93,7.577,9.8759999999999994,13.177,18.081 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1812,-0.30690000000000001,7.5766,0.25452000000000002,3.8149999999999999,4.7210000000000001,5.93,7.577,9.8759999999999994,13.178000000000001,18.085000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1813,-0.307,7.5762,0.25457000000000002,3.8149999999999999,4.7210000000000001,5.9290000000000003,7.5759999999999996,9.8759999999999994,13.179,18.088999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1814,-0.30709999999999998,7.5758000000000001,0.25463000000000002,3.8140000000000001,4.72,5.9290000000000003,7.5759999999999996,9.8759999999999994,13.180999999999999,18.093 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1815,-0.30719999999999997,7.5754000000000001,0.25469000000000003,3.8140000000000001,4.7190000000000003,5.9279999999999999,7.5750000000000002,9.8759999999999994,13.182,18.097000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1816,-0.30730000000000002,7.5749000000000004,0.25474999999999998,3.8130000000000002,4.7190000000000003,5.9269999999999996,7.5750000000000002,9.8759999999999994,13.183,18.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1817,-0.30730000000000002,7.5744999999999996,0.25480000000000003,3.8119999999999998,4.718,5.9269999999999996,7.5739999999999998,9.8759999999999994,13.183999999999999,18.103000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1818,-0.30740000000000001,7.5740999999999996,0.25485999999999998,3.8109999999999999,4.7169999999999996,5.9260000000000002,7.5739999999999998,9.8759999999999994,13.186,18.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1819,-0.3075,7.5736999999999997,0.25491999999999998,3.8109999999999999,4.7160000000000002,5.9249999999999998,7.5739999999999998,9.8759999999999994,13.186999999999999,18.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1820,-0.30759999999999998,7.5731999999999999,0.25496999999999997,3.81,4.7160000000000002,5.9249999999999998,7.5730000000000004,9.8759999999999994,13.188000000000001,18.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1821,-0.30769999999999997,7.5728,0.25502999999999998,3.81,4.7149999999999999,5.9240000000000004,7.5730000000000004,9.8759999999999994,13.189,18.117999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1822,-0.30780000000000002,7.5724,0.25508999999999998,3.8090000000000002,4.7140000000000004,5.9240000000000004,7.5720000000000001,9.8770000000000007,13.191000000000001,18.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1823,-0.30790000000000001,7.5720000000000001,0.25513999999999998,3.8079999999999998,4.7140000000000004,5.923,7.5720000000000001,9.8770000000000007,13.192,18.126000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1824,-0.308,7.5716000000000001,0.25519999999999998,3.8079999999999998,4.7130000000000001,5.9219999999999997,7.5720000000000001,9.8770000000000007,13.193,18.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1825,-0.308,7.5712000000000002,0.25525999999999999,3.8069999999999999,4.7119999999999997,5.9219999999999997,7.5709999999999997,9.8770000000000007,13.194000000000001,18.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1826,-0.30809999999999998,7.5707000000000004,0.25530999999999998,3.806,4.7119999999999997,5.9210000000000003,7.5709999999999997,9.8770000000000007,13.195,18.135999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1827,-0.30819999999999997,7.5702999999999996,0.25536999999999999,3.806,4.7110000000000003,5.92,7.57,9.8770000000000007,13.196999999999999,18.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1828,-0.30830000000000002,7.5698999999999996,0.25542999999999999,3.8050000000000002,4.71,5.92,7.57,9.8770000000000007,13.198,18.143999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1829,-0.30840000000000001,7.5694999999999997,0.25548999999999999,3.8039999999999998,4.71,5.9189999999999996,7.57,9.8770000000000007,13.199,18.149000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1830,-0.3085,7.5690999999999997,0.25553999999999999,3.8039999999999998,4.7089999999999996,5.9189999999999996,7.569,9.8770000000000007,13.2,18.152000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1831,-0.30859999999999999,7.5686,0.25559999999999999,3.8029999999999999,4.7080000000000002,5.9180000000000001,7.569,9.8770000000000007,13.202,18.155999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1832,-0.30859999999999999,7.5682,0.25566,3.802,4.7080000000000002,5.9169999999999998,7.5679999999999996,9.8780000000000001,13.202999999999999,18.158999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1833,-0.30869999999999997,7.5678000000000001,0.25570999999999999,3.802,4.7069999999999999,5.9169999999999998,7.5679999999999996,9.8780000000000001,13.204000000000001,18.161999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1834,-0.30880000000000002,7.5674000000000001,0.25577,3.8010000000000002,4.7060000000000004,5.9160000000000004,7.5670000000000002,9.8780000000000001,13.205,18.167000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1835,-0.30890000000000001,7.5670000000000002,0.25583,3.8,4.7060000000000004,5.915,7.5670000000000002,9.8780000000000001,13.207000000000001,18.170999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1836,-0.309,7.5666000000000002,0.25588,3.8,4.7050000000000001,5.915,7.5670000000000002,9.8780000000000001,13.208,18.173999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1837,-0.30909999999999999,7.5662000000000003,0.25594,3.7989999999999999,4.7039999999999997,5.9139999999999997,7.5659999999999998,9.8780000000000001,13.209,18.178000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1838,-0.30919999999999997,7.5656999999999996,0.25600000000000001,3.798,4.7039999999999997,5.9139999999999997,7.5659999999999998,9.8780000000000001,13.21,18.181999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1839,-0.30919999999999997,7.5652999999999997,0.25605,3.798,4.7030000000000003,5.9130000000000003,7.5650000000000004,9.8780000000000001,13.211,18.184999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1840,-0.30930000000000002,7.5648999999999997,0.25611,3.7970000000000002,4.702,5.9119999999999999,7.5650000000000004,9.8780000000000001,13.212999999999999,18.189 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1841,-0.30940000000000001,7.5644999999999998,0.25617000000000001,3.7959999999999998,4.702,5.9119999999999999,7.5640000000000001,9.8780000000000001,13.214,18.193000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1842,-0.3095,7.5640999999999998,0.25622,3.7959999999999998,4.7009999999999996,5.9109999999999996,7.5640000000000001,9.8789999999999996,13.215,18.196000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1843,-0.30959999999999999,7.5636999999999999,0.25628000000000001,3.7949999999999999,4.7,5.9109999999999996,7.5640000000000001,9.8789999999999996,13.217000000000001,18.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1844,-0.30969999999999998,7.5632999999999999,0.25634000000000001,3.794,4.7,5.91,7.5629999999999997,9.8789999999999996,13.218,18.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1845,-0.30980000000000002,7.5628000000000002,0.25639000000000001,3.794,4.6989999999999998,5.9089999999999998,7.5629999999999997,9.8789999999999996,13.218999999999999,18.207999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1846,-0.30980000000000002,7.5624000000000002,0.25645000000000001,3.7930000000000001,4.6980000000000004,5.9089999999999998,7.5620000000000003,9.8789999999999996,13.22,18.210999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1847,-0.30990000000000001,7.5620000000000003,0.25651000000000002,3.7919999999999998,4.6980000000000004,5.9080000000000004,7.5620000000000003,9.8789999999999996,13.222,18.215 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1848,-0.31,7.5616000000000003,0.25656000000000001,3.7919999999999998,4.6970000000000001,5.907,7.5620000000000003,9.8789999999999996,13.223000000000001,18.218 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1849,-0.31009999999999999,7.5612000000000004,0.25662000000000001,3.7909999999999999,4.6959999999999997,5.907,7.5609999999999999,9.8789999999999996,13.224,18.222000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1850,-0.31019999999999998,7.5608000000000004,0.25668000000000002,3.79,4.6959999999999997,5.9059999999999997,7.5609999999999999,9.8789999999999996,13.225,18.227 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1851,-0.31030000000000002,7.5603999999999996,0.25674000000000002,3.79,4.6950000000000003,5.9059999999999997,7.56,9.8800000000000008,13.227,18.231000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1852,-0.31040000000000001,7.56,0.25679000000000002,3.7890000000000001,4.694,5.9050000000000002,7.56,9.8800000000000008,13.228,18.234000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1853,-0.31040000000000001,7.5595999999999997,0.25685000000000002,3.7879999999999998,4.694,5.9039999999999999,7.56,9.8800000000000008,13.228999999999999,18.236999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1854,-0.3105,7.5590999999999999,0.25691000000000003,3.7879999999999998,4.6929999999999996,5.9039999999999999,7.5590000000000002,9.8800000000000008,13.23,18.241 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1855,-0.31059999999999999,7.5587,0.25696000000000002,3.7869999999999999,4.6920000000000002,5.9029999999999996,7.5590000000000002,9.8800000000000008,13.231999999999999,18.245000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/triceps-skinfold-for-age/expanded-tables/tsfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1856,-0.31069999999999998,7.5583,0.25702000000000003,3.786,4.6909999999999998,5.9020000000000001,7.5579999999999998,9.8800000000000008,13.233000000000001,18.248999999999999 diff --git a/priv/growth/indicators/weight_for_age.csv b/priv/growth/indicators/weight_for_age.csv new file mode 100644 index 0000000..0fb0615 --- /dev/null +++ b/priv/growth/indicators/weight_for_age.csv @@ -0,0 +1,4105 @@ +source,category,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-13-weeks_zscores.xlsx,age,female,week,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-13-weeks_zscores.xlsx,age,female,week,1,0.2671,3.3388,0.14599999999999999,2.1,2.5,2.9,3.3,3.9,4.4000000000000004,5.0999999999999996 +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,age,female,week,2,0.23039999999999999,3.5693000000000001,0.14338999999999999,2.2999999999999998,2.7,3.1,3.6,4.0999999999999996,4.7,5.4 +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,age,female,week,3,0.2024,3.8351999999999999,0.1406,2.5,2.9,3.3,3.8,4.4000000000000004,5,5.7 +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,age,female,week,4,0.1789,4.0987,0.13805000000000001,2.7,3.1,3.6,4.0999999999999996,4.7,5.4,6.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,age,female,week,5,0.15820000000000001,4.3475999999999999,0.13583000000000001,2.9,3.3,3.8,4.3,5,5.7,6.5 +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,age,female,week,6,0.13950000000000001,4.5792999999999999,0.13392000000000001,3,3.5,4,4.5999999999999996,5.2,6,6.8 +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,age,female,week,7,0.12239999999999999,4.7949999999999999,0.13228000000000001,3.2,3.7,4.2,4.8,5.5,6.2,7.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,age,female,week,8,0.1065,4.9958999999999998,0.13086999999999999,3.3,3.8,4.4000000000000004,5,5.7,6.5,7.3 +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,age,female,week,9,0.091800000000000007,5.1841999999999997,0.12966,3.5,4,4.5999999999999996,5.2,5.9,6.7,7.6 +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,age,female,week,10,0.077899999999999997,5.3617999999999997,0.12861,3.6,4.0999999999999996,4.7,5.4,6.1,6.9,7.8 +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,age,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,age,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,age,female,week,13,0.0407,5.8392999999999997,0.12622,4,4.5,5.0999999999999996,5.8,6.6,7.5,8.5 +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,age,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,age,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,age,female,month,2,0.096199999999999994,5.1281999999999996,0.13,3.4,3.9,4.5,5.0999999999999996,5.8,6.6,7.5 +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,age,female,month,3,0.0402,5.8457999999999997,0.12619,4,4.5,5.2,5.8,6.6,7.5,8.5 +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,age,female,month,4,-0.0050000000000000001,6.4237000000000002,0.12402000000000001,4.4000000000000004,5,5.7,6.4,7.3,8.1999999999999993,9.3000000000000007 +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,age,female,month,5,-0.042999999999999997,6.8985000000000003,0.12274,4.8,5.4,6.1,6.9,7.8,8.8000000000000007,10 +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,age,female,month,6,-0.075600000000000001,7.2969999999999997,0.12204,5.0999999999999996,5.7,6.5,7.3,8.1999999999999993,9.3000000000000007,10.6 +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,age,female,month,7,-0.10390000000000001,7.6421999999999999,0.12178,5.3,6,6.8,7.6,8.6,9.8000000000000007,11.1 +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,age,female,month,8,-0.1288,7.9486999999999997,0.12181,5.6,6.3,7,7.9,9,10.199999999999999,11.6 +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,age,female,month,9,-0.1507,8.2254000000000005,0.12199,5.8,6.5,7.3,8.1999999999999993,9.3000000000000007,10.5,12 +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,age,female,month,10,-0.17,8.48,0.12223000000000001,5.9,6.7,7.5,8.5,9.6,10.9,12.4 +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,age,female,month,11,-0.18720000000000001,8.7192000000000007,0.12247,6.1,6.9,7.7,8.6999999999999993,9.9,11.2,12.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,age,female,month,12,-0.2024,8.9481000000000002,0.12268,6.3,7,7.9,8.9,10.1,11.5,13.1 +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,age,female,month,13,-0.21579999999999999,9.1699000000000002,0.12282999999999999,6.4,7.2,8.1,9.1999999999999993,10.4,11.8,13.5 +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,age,female,month,14,-0.2278,9.3870000000000005,0.12293999999999999,6.6,7.4,8.3000000000000007,9.4,10.6,12.1,13.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,age,female,month,15,-0.2384,9.6007999999999996,0.12299,6.7,7.6,8.5,9.6,10.9,12.4,14.1 +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,age,female,month,16,-0.24779999999999999,9.8124000000000002,0.12303,6.9,7.7,8.6999999999999993,9.8000000000000007,11.1,12.6,14.5 +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,age,female,month,17,-0.25619999999999998,10.022600000000001,0.12306,7,7.9,8.9,10,11.4,12.9,14.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,age,female,month,18,-0.26369999999999999,10.2315,0.12309,7.2,8.1,9.1,10.199999999999999,11.6,13.2,15.1 +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,age,female,month,19,-0.27029999999999998,10.439299999999999,0.12315,7.3,8.1999999999999993,9.1999999999999993,10.4,11.8,13.5,15.4 +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,age,female,month,20,-0.2762,10.6464,0.12323000000000001,7.5,8.4,9.4,10.6,12.1,13.7,15.7 +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,age,female,month,21,-0.28149999999999997,10.853400000000001,0.12335,7.6,8.6,9.6,10.9,12.3,14,16 +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,age,female,month,22,-0.28620000000000001,11.0608,0.1235,7.8,8.6999999999999993,9.8000000000000007,11.1,12.5,14.3,16.399999999999999 +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,age,female,month,23,-0.2903,11.268800000000001,0.12368999999999999,7.9,8.9,10,11.3,12.8,14.6,16.7 +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,age,female,month,24,-0.29409999999999997,11.477499999999999,0.1239,8.1,9,10.199999999999999,11.5,13,14.8,17 +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,age,female,month,25,-0.29749999999999999,11.686400000000001,0.12414,8.1999999999999993,9.1999999999999993,10.3,11.7,13.3,15.1,17.3 +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,age,female,month,26,-0.30049999999999999,11.8947,0.12441000000000001,8.4,9.4,10.5,11.9,13.5,15.4,17.7 +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,age,female,month,27,-0.30320000000000003,12.1015,0.12472,8.5,9.5,10.7,12.1,13.7,15.7,18 +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,age,female,month,28,-0.30570000000000003,12.305899999999999,0.12506,8.6,9.6999999999999993,10.9,12.3,14,16,18.3 +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,age,female,month,29,-0.308,12.507300000000001,0.12545000000000001,8.8000000000000007,9.8000000000000007,11.1,12.5,14.2,16.2,18.7 +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,age,female,month,30,-0.31009999999999999,12.705500000000001,0.12587000000000001,8.9,10,11.2,12.7,14.4,16.5,19 +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,age,female,month,31,-0.312,12.900600000000001,0.12633,9,10.1,11.4,12.9,14.7,16.8,19.3 +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,age,female,month,32,-0.31380000000000002,13.093,0.12683,9.1,10.3,11.6,13.1,14.9,17.100000000000001,19.600000000000001 +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,age,female,month,33,-0.3155,13.2837,0.12737000000000001,9.3000000000000007,10.4,11.7,13.3,15.1,17.3,20 +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,age,female,month,34,-0.31709999999999999,13.473100000000001,0.12794,9.4,10.5,11.9,13.5,15.4,17.600000000000001,20.3 +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,age,female,month,35,-0.31859999999999999,13.661799999999999,0.12855,9.5,10.7,12,13.7,15.6,17.899999999999999,20.6 +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,age,female,month,36,-0.3201,13.850300000000001,0.12919,9.6,10.8,12.2,13.9,15.8,18.100000000000001,20.9 +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,age,female,month,37,-0.3216,14.038500000000001,0.12988,9.6999999999999993,10.9,12.4,14,16,18.399999999999999,21.3 +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,age,female,month,38,-0.32300000000000001,14.2265,0.13059000000000001,9.8000000000000007,11.1,12.5,14.2,16.3,18.7,21.6 +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,age,female,month,39,-0.32429999999999998,14.414,0.13134999999999999,9.9,11.2,12.7,14.4,16.5,19,22 +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,age,female,month,40,-0.32569999999999999,14.601000000000001,0.13213,10.1,11.3,12.8,14.6,16.7,19.2,22.3 +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,age,female,month,41,-0.32700000000000001,14.7873,0.13292999999999999,10.199999999999999,11.5,13,14.8,16.899999999999999,19.5,22.7 +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,age,female,month,42,-0.32829999999999998,14.9727,0.13375999999999999,10.3,11.6,13.1,15,17.2,19.8,23 +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,age,female,month,43,-0.3296,15.157299999999999,0.1346,10.4,11.7,13.3,15.2,17.399999999999999,20.100000000000001,23.4 +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,age,female,month,44,-0.33090000000000003,15.340999999999999,0.13544999999999999,10.5,11.8,13.4,15.3,17.600000000000001,20.399999999999999,23.7 +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,age,female,month,45,-0.3322,15.523999999999999,0.1363,10.6,12,13.6,15.5,17.8,20.7,24.1 +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,age,female,month,46,-0.33350000000000002,15.7064,0.13716,10.7,12.1,13.7,15.7,18.100000000000001,20.9,24.5 +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,age,female,month,47,-0.33479999999999999,15.888199999999999,0.13800000000000001,10.8,12.2,13.9,15.9,18.3,21.2,24.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,age,female,month,48,-0.33610000000000001,16.069700000000001,0.13883999999999999,10.9,12.3,14,16.100000000000001,18.5,21.5,25.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,age,female,month,49,-0.33739999999999998,16.251100000000001,0.13968,11,12.4,14.2,16.3,18.8,21.8,25.5 +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,age,female,month,50,-0.3387,16.432200000000002,0.14051,11.1,12.6,14.3,16.399999999999999,19,22.1,25.9 +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,age,female,month,51,-0.34,16.613299999999999,0.14132,11.2,12.7,14.5,16.600000000000001,19.2,22.4,26.3 +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,age,female,month,52,-0.34139999999999998,16.7942,0.14213000000000001,11.3,12.8,14.6,16.8,19.399999999999999,22.6,26.6 +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,age,female,month,53,-0.3427,16.974799999999998,0.14293,11.4,12.9,14.8,17,19.7,22.9,27 +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,age,female,month,54,-0.34399999999999997,17.155100000000001,0.14371,11.5,13,14.9,17.2,19.899999999999999,23.2,27.4 +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,age,female,month,55,-0.3453,17.334700000000002,0.14448,11.6,13.2,15.1,17.3,20.100000000000001,23.5,27.7 +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,age,female,month,56,-0.34660000000000002,17.5136,0.14524999999999999,11.7,13.3,15.2,17.5,20.3,23.8,28.1 +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,age,female,month,57,-0.34789999999999999,17.691600000000001,0.14599999999999999,11.8,13.4,15.3,17.7,20.6,24.1,28.5 +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,age,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,age,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,age,female,month,60,-0.3518,18.2193,0.14821000000000001,12.1,13.7,15.8,18.2,21.2,24.9,29.5 +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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,male,week,2,0.2581,3.7528999999999999,0.14141999999999999,2.4,2.8,3.2,3.8,4.3,4.9000000000000004,5.6 +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,age,male,week,3,0.2442,4.0602999999999998,0.13807,2.6,3.1,3.5,4.0999999999999996,4.7,5.3,6 +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,age,male,week,4,0.2331,4.3670999999999998,0.13497000000000001,2.9,3.3,3.8,4.4000000000000004,5,5.7,6.4 +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,age,male,week,5,0.22370000000000001,4.6589999999999998,0.13214999999999999,3.1,3.5,4.0999999999999996,4.7,5.3,6,6.8 +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,age,male,week,6,0.2155,4.9302999999999999,0.12959999999999999,3.3,3.8,4.3,4.9000000000000004,5.6,6.3,7.2 +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,age,male,week,7,0.20810000000000001,5.1817000000000002,0.12728999999999999,3.5,4,4.5999999999999996,5.2,5.9,6.6,7.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,age,male,week,8,0.2014,5.4149000000000003,0.12520000000000001,3.7,4.2,4.8,5.4,6.1,6.9,7.8 +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,age,male,week,9,0.19520000000000001,5.6318999999999999,0.12330000000000001,3.8,4.4000000000000004,5,5.6,6.4,7.2,8 +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,age,male,week,10,0.18940000000000001,5.8346,0.12157,4,4.5,5.2,5.8,6.6,7.4,8.3000000000000007 +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,age,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,age,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,age,male,week,13,0.17399999999999999,6.3689999999999998,0.11731999999999999,4.4000000000000004,5,5.7,6.4,7.2,8,9 +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,age,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,age,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,age,male,month,2,0.19700000000000001,5.5674999999999999,0.12385,3.8,4.3,4.9000000000000004,5.6,6.3,7.1,8 +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,age,male,month,3,0.17380000000000001,6.3761999999999999,0.11727,4.4000000000000004,5,5.7,6.4,7.2,8,9 +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,age,male,month,4,0.15529999999999999,7.0023,0.11316,4.9000000000000004,5.6,6.2,7,7.8,8.6999999999999993,9.6999999999999993 +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,age,male,month,5,0.13950000000000001,7.5105000000000004,0.1108,5.3,6,6.7,7.5,8.4,9.3000000000000007,10.4 +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,age,male,month,6,0.12570000000000001,7.9340000000000002,0.10958,5.7,6.4,7.1,7.9,8.8000000000000007,9.8000000000000007,10.9 +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,age,male,month,7,0.1134,8.2970000000000006,0.10902000000000001,5.9,6.7,7.4,8.3000000000000007,9.1999999999999993,10.3,11.4 +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,age,male,month,8,0.1021,8.6151,0.10882,6.2,6.9,7.7,8.6,9.6,10.7,11.9 +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,age,male,month,9,0.091700000000000004,8.9014000000000006,0.10881,6.4,7.1,8,8.9,9.9,11,12.3 +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,age,male,month,10,0.082000000000000003,9.1648999999999994,0.10891000000000001,6.6,7.4,8.1999999999999993,9.1999999999999993,10.199999999999999,11.4,12.7 +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,age,male,month,11,0.072999999999999995,9.4122000000000003,0.10906,6.8,7.6,8.4,9.4,10.5,11.7,13 +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,age,male,month,12,0.064399999999999999,9.6478999999999999,0.10925,6.9,7.7,8.6,9.6,10.8,12,13.3 +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,age,male,month,13,0.056300000000000003,9.8749000000000002,0.10949,7.1,7.9,8.8000000000000007,9.9,11,12.3,13.7 +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,age,male,month,14,0.0487,10.0953,0.10976,7.2,8.1,9,10.1,11.3,12.6,14 +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,age,male,month,15,0.041300000000000003,10.3108,0.11007,7.4,8.3000000000000007,9.1999999999999993,10.3,11.5,12.8,14.3 +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,age,male,month,16,0.034299999999999997,10.5228,0.11040999999999999,7.5,8.4,9.4,10.5,11.7,13.1,14.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,age,male,month,17,0.0275,10.7319,0.11079,7.7,8.6,9.6,10.7,12,13.4,14.9 +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,age,male,month,18,0.021100000000000001,10.938499999999999,0.11119,7.8,8.8000000000000007,9.8000000000000007,10.9,12.2,13.7,15.3 +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,age,male,month,19,0.014800000000000001,11.143000000000001,0.11164,8,8.9,10,11.1,12.5,13.9,15.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,age,male,month,20,0.0086999999999999994,11.3462,0.11211,8.1,9.1,10.1,11.3,12.7,14.2,15.9 +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,age,male,month,21,0.0028999999999999998,11.5486,0.11261,8.1999999999999993,9.1999999999999993,10.3,11.5,12.9,14.5,16.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,age,male,month,22,-0.0028,11.750400000000001,0.11314,8.4,9.4,10.5,11.8,13.2,14.7,16.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,age,male,month,23,-0.0083000000000000001,11.9514,0.11369,8.5,9.5,10.7,12,13.4,15,16.8 +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,age,male,month,24,-0.0137,12.1515,0.11426,8.6,9.6999999999999993,10.8,12.2,13.6,15.3,17.100000000000001 +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,age,male,month,25,-0.0189,12.350199999999999,0.11484999999999999,8.8000000000000007,9.8000000000000007,11,12.4,13.9,15.5,17.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,age,male,month,26,-0.024,12.5466,0.11544,8.9,10,11.2,12.5,14.1,15.8,17.8 +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,age,male,month,27,-0.028899999999999999,12.7401,0.11604,9,10.1,11.3,12.7,14.3,16.100000000000001,18.100000000000001 +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,age,male,month,28,-0.033700000000000001,12.930300000000001,0.11663999999999999,9.1,10.199999999999999,11.5,12.9,14.5,16.3,18.399999999999999 +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,age,male,month,29,-0.0385,13.116899999999999,0.11723,9.1999999999999993,10.4,11.7,13.1,14.8,16.600000000000001,18.7 +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,age,male,month,30,-0.043099999999999999,13.3,0.11781,9.4,10.5,11.8,13.3,15,16.899999999999999,19 +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,age,male,month,31,-0.047600000000000003,13.479799999999999,0.11839,9.5,10.7,12,13.5,15.2,17.100000000000001,19.3 +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,age,male,month,32,-0.051999999999999998,13.656700000000001,0.11896,9.6,10.8,12.1,13.7,15.4,17.399999999999999,19.600000000000001 +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,age,male,month,33,-0.056399999999999999,13.8309,0.11953,9.6999999999999993,10.9,12.3,13.8,15.6,17.600000000000001,19.899999999999999 +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,age,male,month,34,-0.060600000000000001,14.0031,0.12008000000000001,9.8000000000000007,11,12.4,14,15.8,17.8,20.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,age,male,month,35,-0.064799999999999996,14.1736,0.12062,9.9,11.2,12.6,14.2,16,18.100000000000001,20.399999999999999 +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,age,male,month,36,-0.068900000000000003,14.3429,0.12116,10,11.3,12.7,14.3,16.2,18.3,20.7 +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,age,male,month,37,-0.072900000000000006,14.5113,0.12168,10.1,11.4,12.9,14.5,16.399999999999999,18.600000000000001,21 +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,age,male,month,38,-0.076899999999999996,14.6791,0.1222,10.199999999999999,11.5,13,14.7,16.600000000000001,18.8,21.3 +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,age,male,month,39,-0.080799999999999997,14.8466,0.12271,10.3,11.6,13.1,14.8,16.8,19,21.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,age,male,month,40,-0.084599999999999995,15.013999999999999,0.12322,10.4,11.8,13.3,15,17,19.3,21.9 +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,age,male,month,41,-0.088300000000000003,15.1813,0.12373000000000001,10.5,11.9,13.4,15.2,17.2,19.5,22.1 +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,age,male,month,42,-0.091999999999999998,15.348599999999999,0.12425,10.6,12,13.6,15.3,17.399999999999999,19.7,22.4 +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,age,male,month,43,-0.095699999999999993,15.5158,0.12478,10.7,12.1,13.7,15.5,17.600000000000001,20,22.7 +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,age,male,month,44,-0.099299999999999999,15.6828,0.12531,10.8,12.2,13.8,15.7,17.8,20.2,23 +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,age,male,month,45,-0.1028,15.8497,0.12586,10.9,12.4,14,15.8,18,20.5,23.3 +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,age,male,month,46,-0.10630000000000001,16.016300000000001,0.12642999999999999,11,12.5,14.1,16,18.2,20.7,23.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,age,male,month,47,-0.10970000000000001,16.182700000000001,0.127,11.1,12.6,14.3,16.2,18.399999999999999,20.9,23.9 +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,age,male,month,48,-0.11310000000000001,16.3489,0.12759000000000001,11.2,12.7,14.4,16.3,18.600000000000001,21.2,24.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,age,male,month,49,-0.11650000000000001,16.515000000000001,0.12819,11.3,12.8,14.5,16.5,18.8,21.4,24.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,age,male,month,50,-0.1198,16.681100000000001,0.1288,11.4,12.9,14.7,16.7,19,21.7,24.8 +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,age,male,month,51,-0.123,16.847100000000001,0.12942999999999999,11.5,13.1,14.8,16.8,19.2,21.9,25.1 +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,age,male,month,52,-0.12620000000000001,17.013200000000001,0.13005,11.6,13.2,15,17,19.399999999999999,22.2,25.4 +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,age,male,month,53,-0.12939999999999999,17.179200000000002,0.13069,11.7,13.3,15.1,17.2,19.600000000000001,22.4,25.7 +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,age,male,month,54,-0.13250000000000001,17.345199999999998,0.13133,11.8,13.4,15.2,17.3,19.8,22.7,26 +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,age,male,month,55,-0.1356,17.511099999999999,0.13197,11.9,13.5,15.4,17.5,20,22.9,26.3 +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,age,male,month,56,-0.13869999999999999,17.6768,0.13261000000000001,12,13.6,15.5,17.7,20.2,23.2,26.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,age,male,month,57,-0.14169999999999999,17.842199999999998,0.13325000000000001,12.1,13.7,15.6,17.8,20.399999999999999,23.4,26.9 +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,age,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,age,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,age,male,month,60,-0.15060000000000001,18.336600000000001,0.13517000000000001,12.4,14.1,16,18.3,21,24.2,27.9 +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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,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,age,male,month,120,-0.6764,31.1586,0.16305,20.420000000000002,23.206,26.693999999999999,31.158999999999999,37.034999999999997,45.037999999999997,56.433999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,0,0.38090000000000002,3.2322000000000002,0.14171,2.0329999999999999,2.395,2.794,3.2320000000000002,3.7109999999999999,4.2300000000000004,4.7930000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1,0.32590000000000002,3.1957,0.14577999999999999,1.994,2.3519999999999999,2.7519999999999998,3.1960000000000002,3.6850000000000001,4.2220000000000004,4.8099999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,2,0.31009999999999999,3.2103999999999999,0.14637,2.0019999999999998,2.3620000000000001,2.7639999999999998,3.21,3.7040000000000002,4.2489999999999997,4.8460000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,3,0.29859999999999998,3.2315,0.14657000000000001,2.0169999999999999,2.3780000000000001,2.782,3.2320000000000002,3.73,4.28,4.8849999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,4,0.28910000000000002,3.2557999999999998,0.14657999999999999,2.0339999999999998,2.3969999999999998,2.8029999999999999,3.2559999999999998,3.758,4.3140000000000001,4.9249999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,5,0.28100000000000003,3.2820999999999998,0.14646000000000001,2.0529999999999999,2.4180000000000001,2.8260000000000001,3.282,3.7890000000000001,4.3490000000000002,4.9669999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,6,0.2737,3.3098999999999998,0.14626,2.0739999999999998,2.44,2.851,3.31,3.82,4.3860000000000001,5.0090000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,7,0.2671,3.3388,0.14599999999999999,2.0960000000000001,2.464,2.8769999999999998,3.339,3.8530000000000002,4.423,5.0519999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,8,0.26090000000000002,3.3687,0.14568999999999999,2.1179999999999999,2.488,2.9039999999999999,3.3690000000000002,3.887,4.4610000000000003,5.0960000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,9,0.25509999999999999,3.3995000000000002,0.14534,2.141,2.5129999999999999,2.9319999999999999,3.4,3.9209999999999998,4.5,5.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,10,0.24970000000000001,3.4314,0.14498,2.165,2.54,2.96,3.431,3.9569999999999999,4.54,5.1859999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,11,0.24460000000000001,3.4643000000000002,0.14459,2.19,2.5670000000000002,2.99,3.464,3.9929999999999999,4.5810000000000004,5.2320000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,12,0.2397,3.4983,0.14419999999999999,2.2160000000000002,2.5950000000000002,3.0209999999999999,3.4980000000000002,4.0309999999999997,4.6230000000000002,5.28 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,13,0.2349,3.5333000000000001,0.14380000000000001,2.242,2.6230000000000002,3.052,3.5329999999999999,4.07,4.6669999999999998,5.3289999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,14,0.23039999999999999,3.5693000000000001,0.14338999999999999,2.2690000000000001,2.653,3.085,3.569,4.1100000000000003,4.7119999999999997,5.3789999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,15,0.22600000000000001,3.6063000000000001,0.14299000000000001,2.2970000000000002,2.6829999999999998,3.1179999999999999,3.6059999999999999,4.1509999999999998,4.758,5.431 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,16,0.2218,3.6438000000000001,0.14258000000000001,2.3250000000000002,2.714,3.1520000000000001,3.6440000000000001,4.1929999999999996,4.8040000000000003,5.4829999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,17,0.2177,3.6818,0.14218,2.3530000000000002,2.7450000000000001,3.1869999999999998,3.6819999999999999,4.2350000000000003,4.8520000000000003,5.5359999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,18,0.2137,3.7201,0.14177000000000001,2.3820000000000001,2.7770000000000001,3.2210000000000001,3.72,4.2779999999999996,4.899,5.5890000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,19,0.2099,3.7584,0.14138000000000001,2.41,2.8079999999999998,3.2559999999999998,3.758,4.32,4.9459999999999997,5.6420000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,20,0.20610000000000001,3.7968000000000002,0.14097999999999999,2.4390000000000001,2.84,3.2909999999999999,3.7970000000000002,4.3630000000000004,4.9939999999999998,5.6950000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,21,0.2024,3.8351999999999999,0.1406,2.468,2.871,3.3250000000000002,3.835,4.4059999999999997,5.0419999999999998,5.7489999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,22,0.19889999999999999,3.8734999999999999,0.14021,2.496,2.903,3.36,3.8740000000000001,4.4480000000000004,5.0890000000000004,5.8019999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,23,0.19539999999999999,3.9116,0.13983999999999999,2.5249999999999999,2.9340000000000002,3.395,3.9119999999999999,4.49,5.1360000000000001,5.8540000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,24,0.19189999999999999,3.9495,0.13947000000000001,2.5529999999999999,2.9649999999999999,3.4289999999999998,3.95,4.532,5.1829999999999998,5.9059999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,25,0.18859999999999999,3.9872000000000001,0.1391,2.5819999999999999,2.996,3.4630000000000001,3.9870000000000001,4.5739999999999998,5.2290000000000001,5.9580000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,26,0.18529999999999999,4.0247000000000002,0.13875000000000001,2.61,3.0270000000000001,3.4969999999999999,4.0250000000000004,4.6159999999999997,5.2750000000000004,6.01 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,27,0.18210000000000001,4.0617999999999999,0.1384,2.6379999999999999,3.0579999999999998,3.5310000000000001,4.0620000000000003,4.657,5.3209999999999997,6.0609999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,28,0.1789,4.0987,0.13805000000000001,2.665,3.0880000000000001,3.5640000000000001,4.0990000000000002,4.6980000000000004,5.3659999999999997,6.1120000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,29,0.17580000000000001,4.1353,0.13771,2.6930000000000001,3.1179999999999999,3.597,4.1349999999999998,4.7380000000000004,5.4109999999999996,6.1619999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,30,0.17269999999999999,4.1715999999999998,0.13738,2.72,3.1480000000000001,3.63,4.1719999999999997,4.7779999999999996,5.4560000000000004,6.2119999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,31,0.16969999999999999,4.2074999999999996,0.13705999999999999,2.7469999999999999,3.1779999999999999,3.6629999999999998,4.2080000000000002,4.8179999999999996,5.5,6.2610000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,32,0.1668,4.2431000000000001,0.13674,2.774,3.2069999999999999,3.6949999999999998,4.2430000000000003,4.8570000000000002,5.5439999999999996,6.31 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,33,0.1638,4.2782999999999998,0.13643,2.8010000000000002,3.2360000000000002,3.7269999999999999,4.2779999999999996,4.8959999999999999,5.5869999999999997,6.3579999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,34,0.161,4.3131000000000004,0.13613,2.827,3.2650000000000001,3.758,4.3129999999999997,4.9349999999999996,5.63,6.4059999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,35,0.15820000000000001,4.3475999999999999,0.13583000000000001,2.8530000000000002,3.294,3.79,4.3479999999999999,4.9729999999999999,5.6719999999999997,6.4530000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,36,0.15540000000000001,4.3818000000000001,0.13553999999999999,2.879,3.3220000000000001,3.8210000000000002,4.3819999999999997,5.0110000000000001,5.7140000000000004,6.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,37,0.15260000000000001,4.4154999999999998,0.13525999999999999,2.9039999999999999,3.35,3.851,4.4160000000000004,5.048,5.7560000000000002,6.5460000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,38,0.14990000000000001,4.4489999999999998,0.13497999999999999,2.93,3.3769999999999998,3.8820000000000001,4.4489999999999998,5.085,5.7969999999999997,6.5919999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,39,0.14729999999999999,4.4820000000000002,0.13469999999999999,2.9550000000000001,3.4049999999999998,3.9119999999999999,4.4820000000000002,5.1219999999999999,5.8369999999999997,6.6369999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,40,0.14460000000000001,4.5148000000000001,0.13444,2.98,3.4319999999999999,3.9420000000000002,4.5149999999999997,5.1580000000000004,5.8780000000000001,6.6820000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,41,0.14199999999999999,4.5472000000000001,0.13417999999999999,3.004,3.4590000000000001,3.9710000000000001,4.5469999999999997,5.194,5.9169999999999998,6.726 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,42,0.13950000000000001,4.5792999999999999,0.13392000000000001,3.0289999999999999,3.4849999999999999,4,4.5789999999999997,5.2290000000000001,5.9569999999999999,6.77 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,43,0.13689999999999999,4.6109999999999998,0.13367000000000001,3.0529999999999999,3.512,4.0289999999999999,4.6109999999999998,5.2640000000000002,5.9950000000000001,6.8129999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,44,0.13439999999999999,4.6425000000000001,0.13342000000000001,3.077,3.5379999999999998,4.0579999999999998,4.6420000000000003,5.2990000000000004,6.0339999999999998,6.8559999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,45,0.13200000000000001,4.6736000000000004,0.13317999999999999,3.1,3.5640000000000001,4.0860000000000003,4.6740000000000004,5.3330000000000002,6.0720000000000001,6.8979999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,46,0.1295,4.7043999999999997,0.13295000000000001,3.1240000000000001,3.589,4.1139999999999999,4.7039999999999997,5.367,6.11,6.9409999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,47,0.12709999999999999,4.7348999999999997,0.13272,3.1469999999999998,3.6139999999999999,4.1420000000000003,4.7350000000000003,5.4009999999999998,6.1470000000000002,6.9820000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,48,0.12470000000000001,4.7651000000000003,0.13250000000000001,3.17,3.6389999999999998,4.1689999999999996,4.7649999999999997,5.4340000000000002,6.1840000000000002,7.024 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,49,0.12239999999999999,4.7949999999999999,0.13228000000000001,3.1920000000000002,3.6640000000000001,4.1959999999999997,4.7949999999999999,5.4669999999999996,6.2210000000000001,7.0640000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,50,0.12,4.8244999999999996,0.13206000000000001,3.2149999999999999,3.6890000000000001,4.2229999999999999,4.8239999999999998,5.5,6.2569999999999997,7.1050000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,51,0.1177,4.8537999999999997,0.13184999999999999,3.2370000000000001,3.7130000000000001,4.25,4.8540000000000001,5.532,6.2930000000000001,7.1449999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,52,0.1154,4.8827999999999996,0.13164999999999999,3.2589999999999999,3.7370000000000001,4.2759999999999998,4.883,5.5640000000000001,6.3289999999999997,7.1849999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,53,0.1132,4.9115000000000002,0.13145000000000001,3.2810000000000001,3.7610000000000001,4.3019999999999996,4.9119999999999999,5.5960000000000001,6.3639999999999999,7.2240000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,54,0.1109,4.9398999999999997,0.13125000000000001,3.3029999999999999,3.7850000000000001,4.3280000000000003,4.9400000000000004,5.6269999999999998,6.399,7.2629999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,55,0.1087,4.968,0.13106000000000001,3.3239999999999998,3.8079999999999998,4.3540000000000001,4.968,5.6580000000000004,6.4329999999999998,7.3010000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,56,0.1065,4.9958999999999998,0.13086999999999999,3.3450000000000002,3.831,4.3789999999999996,4.9960000000000004,5.6890000000000001,6.4669999999999996,7.3390000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,57,0.10440000000000001,5.0235000000000003,0.13067999999999999,3.3660000000000001,3.8540000000000001,4.4039999999999999,5.024,5.72,6.5010000000000003,7.3769999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,58,0.1022,5.0509000000000004,0.1305,3.387,3.8769999999999998,4.4290000000000003,5.0510000000000002,5.75,6.5350000000000001,7.4139999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,59,0.10009999999999999,5.0780000000000003,0.13033,3.4079999999999999,3.899,4.4539999999999997,5.0780000000000003,5.78,6.5679999999999996,7.452 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,60,0.098000000000000004,5.1048999999999998,0.13014999999999999,3.4279999999999999,3.9220000000000002,4.4779999999999998,5.1050000000000004,5.81,6.601,7.4880000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,61,0.095899999999999999,5.1315,0.12998000000000001,3.4489999999999998,3.944,4.5019999999999998,5.1319999999999997,5.8390000000000004,6.6340000000000003,7.5250000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,62,0.093799999999999994,5.1580000000000004,0.12981999999999999,3.4689999999999999,3.9660000000000002,4.5259999999999998,5.1580000000000004,5.8680000000000003,6.6660000000000004,7.5609999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,63,0.091800000000000007,5.1841999999999997,0.12966,3.4889999999999999,3.9870000000000001,4.55,5.1840000000000002,5.8970000000000002,6.6989999999999998,7.5970000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,64,0.089700000000000002,5.2102000000000004,0.1295,3.508,4.0090000000000003,4.5739999999999998,5.21,5.9260000000000002,6.7309999999999999,7.633 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,65,0.0877,5.2359999999999998,0.12934000000000001,3.528,4.0309999999999997,4.5970000000000004,5.2359999999999998,5.9550000000000001,6.7619999999999996,7.6689999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,66,0.085699999999999998,5.2615999999999996,0.12919,3.548,4.0519999999999996,4.6210000000000004,5.2619999999999996,5.9829999999999997,6.7939999999999996,7.7039999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,67,0.083799999999999999,5.2869999999999999,0.12903999999999999,3.5670000000000002,4.0730000000000004,4.6440000000000001,5.2869999999999999,6.0110000000000001,6.8250000000000002,7.7389999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,68,0.081799999999999998,5.3121,0.12889,3.5859999999999999,4.0940000000000003,4.6669999999999998,5.3120000000000003,6.0389999999999997,6.8559999999999999,7.7729999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,69,0.079799999999999996,5.3369999999999997,0.12875,3.605,4.1139999999999999,4.6890000000000001,5.3369999999999997,6.0659999999999998,6.8860000000000001,7.8070000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,70,0.077899999999999997,5.3617999999999997,0.12861,3.6240000000000001,4.1349999999999998,4.7119999999999997,5.3620000000000001,6.0940000000000003,6.9169999999999998,7.8419999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,71,0.075999999999999998,5.3863000000000003,0.12847,3.6429999999999998,4.1550000000000002,4.734,5.3860000000000001,6.1210000000000004,6.9470000000000001,7.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,72,0.074099999999999999,5.4107000000000003,0.12834000000000001,3.661,4.1749999999999998,4.7560000000000002,5.4109999999999996,6.1479999999999997,6.9770000000000003,7.9089999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,73,0.0722,5.4348000000000001,0.12820999999999999,3.6789999999999998,4.1950000000000003,4.7779999999999996,5.4349999999999996,6.1749999999999998,7.0069999999999997,7.9420000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,74,0.070400000000000004,5.4587000000000003,0.12808,3.698,4.2149999999999999,4.8,5.4589999999999996,6.2009999999999996,7.0359999999999996,7.9749999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,75,0.068500000000000005,5.4824999999999999,0.12795000000000001,3.7160000000000002,4.2350000000000003,4.8209999999999997,5.4820000000000002,6.2270000000000003,7.0659999999999998,8.0079999999999991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,76,0.066699999999999995,5.5061,0.12783,3.734,4.2549999999999999,4.843,5.5060000000000002,6.2539999999999996,7.0949999999999998,8.0410000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,77,0.064799999999999996,5.5294999999999996,0.12770000000000001,3.7519999999999998,4.274,4.8639999999999999,5.53,6.2789999999999999,7.1239999999999997,8.0730000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,78,0.063,5.5526999999999997,0.12758,3.7690000000000001,4.2930000000000001,4.8849999999999998,5.5529999999999999,6.3049999999999997,7.1520000000000001,8.1050000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,79,0.061199999999999997,5.5757000000000003,0.12747,3.7869999999999999,4.3120000000000003,4.9059999999999997,5.5759999999999996,6.3310000000000004,7.181,8.1370000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,80,0.059499999999999997,5.5986000000000002,0.12734999999999999,3.8039999999999998,4.3310000000000004,4.9269999999999996,5.5990000000000002,6.3559999999999999,7.2089999999999996,8.1690000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,81,0.057700000000000001,5.6212999999999997,0.12723999999999999,3.8210000000000002,4.3499999999999996,4.9470000000000001,5.6210000000000004,6.3810000000000002,7.2370000000000001,8.1999999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,82,0.055899999999999998,5.6437999999999997,0.12712999999999999,3.8380000000000001,4.3689999999999998,4.968,5.6440000000000001,6.4059999999999997,7.2649999999999997,8.2309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,83,0.054199999999999998,5.6661999999999999,0.12701999999999999,3.855,4.3869999999999996,4.9880000000000004,5.6660000000000004,6.431,7.2919999999999998,8.2620000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,84,0.052499999999999998,5.6882999999999999,0.12691,3.8719999999999999,4.4059999999999997,5.008,5.6879999999999997,6.4550000000000001,7.32,8.2929999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,85,0.050799999999999998,5.7103999999999999,0.12681000000000001,3.8889999999999998,4.4240000000000004,5.0279999999999996,5.71,6.48,7.3470000000000004,8.3239999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,86,0.049000000000000002,5.7321999999999997,0.12670999999999999,3.9049999999999998,4.4420000000000002,5.048,5.7320000000000002,6.5039999999999996,7.3739999999999997,8.3539999999999992 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,87,0.047399999999999998,5.7538999999999998,0.12659999999999999,3.9220000000000002,4.46,5.0679999999999996,5.7539999999999996,6.5279999999999996,7.4009999999999998,8.3840000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,88,0.045699999999999998,5.7755000000000001,0.12651000000000001,3.9380000000000002,4.4779999999999998,5.0869999999999997,5.7759999999999998,6.5519999999999996,7.4279999999999999,8.4139999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,89,0.043999999999999997,5.7968999999999999,0.12640999999999999,3.9550000000000001,4.4960000000000004,5.1070000000000002,5.7969999999999997,6.5759999999999996,7.4539999999999997,8.4440000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,90,0.0424,5.8181000000000003,0.12631000000000001,3.9710000000000001,4.5129999999999999,5.1260000000000003,5.8179999999999996,6.5990000000000002,7.48,8.4730000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,91,0.0407,5.8392999999999997,0.12622,3.9870000000000001,4.5309999999999997,5.1449999999999996,5.8390000000000004,6.6230000000000002,7.5060000000000002,8.5030000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,92,0.039100000000000003,5.8601999999999999,0.12612999999999999,4.0030000000000001,4.548,5.1639999999999997,5.86,6.6459999999999999,7.532,8.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,93,0.037499999999999999,5.8810000000000002,0.12604000000000001,4.0179999999999998,4.5650000000000004,5.1829999999999998,5.8810000000000002,6.6689999999999996,7.5579999999999998,8.5609999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,94,0.035799999999999998,5.9016999999999999,0.12595000000000001,4.0339999999999998,4.5819999999999999,5.202,5.9020000000000001,6.6920000000000002,7.5839999999999996,8.59 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,95,0.034200000000000001,5.9222999999999999,0.12586,4.05,4.5990000000000002,5.2210000000000001,5.9219999999999997,6.7149999999999999,7.609,8.6180000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,96,0.0327,5.9427000000000003,0.12576999999999999,4.0650000000000004,4.6159999999999997,5.2389999999999999,5.9429999999999996,6.7370000000000001,7.6340000000000003,8.6470000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,97,0.031099999999999999,5.9629000000000003,0.12569,4.0810000000000004,4.633,5.2569999999999997,5.9630000000000001,6.76,7.66,8.6750000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,98,0.029499999999999998,5.9831000000000003,0.12561,4.0960000000000001,4.6500000000000004,5.2759999999999998,5.9829999999999997,6.782,7.6849999999999996,8.7029999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,99,0.027900000000000001,6.0030999999999999,0.12553,4.1109999999999998,4.6660000000000004,5.2939999999999996,6.0030000000000001,6.8049999999999997,7.71,8.7309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,100,0.0264,6.0228999999999999,0.12545000000000001,4.1260000000000003,4.6829999999999998,5.3120000000000003,6.0229999999999997,6.8259999999999996,7.734,8.7590000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,101,0.024899999999999999,6.0426000000000002,0.12537000000000001,4.141,4.6989999999999998,5.33,6.0430000000000001,6.8479999999999999,7.7590000000000003,8.7859999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,102,0.023300000000000001,6.0621999999999998,0.12529000000000001,4.1559999999999997,4.7149999999999999,5.3470000000000004,6.0620000000000003,6.87,7.7830000000000004,8.8140000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,103,0.0218,6.0816999999999997,0.12522,4.1710000000000003,4.7309999999999999,5.3650000000000002,6.0819999999999999,6.8920000000000003,7.8070000000000004,8.8409999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,104,0.020299999999999999,6.101,0.12514,4.1849999999999996,4.7469999999999999,5.383,6.101,6.9130000000000003,7.8310000000000004,8.8680000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,105,0.018800000000000001,6.1201999999999996,0.12506999999999999,4.2,4.7629999999999999,5.4,6.12,6.9349999999999996,7.8550000000000004,8.8949999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,106,0.017299999999999999,6.1393000000000004,0.125,4.2140000000000004,4.7789999999999999,5.4169999999999998,6.1390000000000002,6.9560000000000004,7.8789999999999996,8.9220000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,107,0.015800000000000002,6.1581999999999999,0.12493,4.2290000000000001,4.7939999999999996,5.4340000000000002,6.1580000000000004,6.9770000000000003,7.9020000000000001,8.9480000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,108,0.0144,6.1771000000000003,0.12486,4.2430000000000003,4.8099999999999996,5.4509999999999996,6.1769999999999996,6.9980000000000002,7.9260000000000002,8.9749999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,109,0.0129,6.1958000000000002,0.12479,4.2569999999999997,4.8250000000000002,5.468,6.1959999999999997,7.0190000000000001,7.9489999999999998,9.0009999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,110,0.0114,6.2142999999999997,0.12472,4.2709999999999999,4.8410000000000002,5.4850000000000003,6.2140000000000004,7.0389999999999997,7.9720000000000004,9.0269999999999992 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,111,0.01,6.2328000000000001,0.12466000000000001,4.2850000000000001,4.8559999999999999,5.5019999999999998,6.2329999999999997,7.06,7.9950000000000001,9.0530000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,112,0.0086,6.2511000000000001,0.12459000000000001,4.2990000000000004,4.8710000000000004,5.5179999999999998,6.2510000000000003,7.08,8.0180000000000007,9.0790000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,113,0.0071000000000000004,6.2693000000000003,0.12453,4.3129999999999997,4.8860000000000001,5.5350000000000001,6.2690000000000001,7.1,8.0410000000000004,9.1039999999999992 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,114,0.0057000000000000002,6.2873999999999999,0.12447,4.3259999999999996,4.9009999999999998,5.5510000000000002,6.2869999999999999,7.12,8.0630000000000006,9.1300000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,115,0.0043,6.3053999999999997,0.12441000000000001,4.34,4.9160000000000004,5.5679999999999996,6.3049999999999997,7.141,8.0860000000000003,9.1549999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,116,0.0028999999999999998,6.3231999999999999,0.12435,4.3529999999999998,4.93,5.5839999999999996,6.3230000000000004,7.16,8.1080000000000005,9.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,117,0.0015,6.3410000000000002,0.12429,4.367,4.9450000000000003,5.6,6.3410000000000002,7.18,8.1300000000000008,9.2059999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,118,0.0001,6.3586,0.12422999999999999,4.38,4.96,5.6159999999999997,6.359,7.2,8.1519999999999992,9.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,119,-0.0012999999999999999,6.3761000000000001,0.12417,4.3940000000000001,4.9740000000000002,5.6319999999999997,6.3760000000000003,7.2190000000000003,8.1739999999999995,9.2550000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,120,-0.0025999999999999999,6.3935000000000004,0.12411999999999999,4.407,4.9880000000000004,5.6470000000000002,6.3940000000000001,7.2389999999999999,8.1959999999999997,9.2799999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,121,-0.0040000000000000001,6.4108000000000001,0.12406,4.42,5.0030000000000001,5.6630000000000003,6.4109999999999996,7.258,8.2170000000000005,9.3040000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,122,-0.0053,6.4279999999999999,0.12401,4.4329999999999998,5.0170000000000003,5.6790000000000003,6.4279999999999999,7.2770000000000001,8.2390000000000008,9.3279999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,123,-0.0067000000000000002,6.4450000000000003,0.12395,4.4459999999999997,5.0309999999999997,5.694,6.4450000000000003,7.2960000000000003,8.26,9.3520000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,124,-0.0080000000000000002,6.4619999999999997,0.1239,4.4580000000000002,5.0449999999999999,5.7089999999999996,6.4619999999999997,7.3150000000000004,8.2810000000000006,9.3759999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,125,-0.0094000000000000004,6.4787999999999997,0.12385,4.4710000000000001,5.0590000000000002,5.7249999999999996,6.4790000000000001,7.3339999999999996,8.3019999999999996,9.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,126,-0.010699999999999999,6.4955999999999996,0.12379999999999999,4.484,5.0730000000000004,5.74,6.4960000000000004,7.3520000000000003,8.3230000000000004,9.4239999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,127,-0.012,6.5122,0.12375,4.4960000000000004,5.0860000000000003,5.7549999999999999,6.5119999999999996,7.3710000000000004,8.3439999999999994,9.4480000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,128,-0.013299999999999999,6.5288000000000004,0.1237,4.5090000000000003,5.0999999999999996,5.77,6.5289999999999999,7.3890000000000002,8.3650000000000002,9.4710000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,129,-0.0146,6.5452000000000004,0.12365,4.5209999999999999,5.1130000000000004,5.7850000000000001,6.5449999999999999,7.4080000000000004,8.3849999999999998,9.4939999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,130,-0.015900000000000001,6.5614999999999997,0.1236,4.5339999999999998,5.1269999999999998,5.7990000000000004,6.5620000000000003,7.4260000000000002,8.4060000000000006,9.5169999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,131,-0.0172,6.5777000000000001,0.12354999999999999,4.5460000000000003,5.14,5.8140000000000001,6.5780000000000003,7.444,8.4260000000000002,9.5399999999999991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,132,-0.018499999999999999,6.5938999999999997,0.12350999999999999,4.5579999999999998,5.1539999999999999,5.8289999999999997,6.5940000000000003,7.4619999999999997,8.4459999999999997,9.5630000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,133,-0.019800000000000002,6.6098999999999997,0.12346,4.57,5.1669999999999998,5.843,6.61,7.48,8.4659999999999993,9.5860000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,134,-0.021000000000000001,6.6257999999999999,0.12342,4.5819999999999999,5.18,5.8570000000000002,6.6260000000000003,7.4969999999999999,8.4860000000000007,9.609 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,135,-0.0223,6.6416000000000004,0.12336999999999999,4.5940000000000003,5.1929999999999996,5.8719999999999999,6.6420000000000003,7.5149999999999997,8.5060000000000002,9.6310000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,136,-0.0235,6.6573000000000002,0.12333,4.6059999999999999,5.2060000000000004,5.8860000000000001,6.657,7.532,8.5259999999999998,9.6539999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,137,-0.024799999999999999,6.6729000000000003,0.12329,4.6180000000000003,5.2190000000000003,5.9,6.673,7.55,8.5449999999999999,9.6760000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,138,-0.025999999999999999,6.6883999999999997,0.12325,4.6289999999999996,5.2309999999999999,5.9139999999999997,6.6879999999999997,7.5670000000000002,8.5649999999999995,9.6980000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,139,-0.027300000000000001,6.7039,0.12321,4.641,5.2439999999999998,5.9279999999999999,6.7039999999999997,7.585,8.5839999999999996,9.7200000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,140,-0.028500000000000001,6.7191999999999998,0.12317,4.6520000000000001,5.2569999999999997,5.9420000000000002,6.7190000000000003,7.6020000000000003,8.6039999999999992,9.7420000000000009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,141,-0.029700000000000001,6.7343999999999999,0.12313,4.6639999999999997,5.2690000000000001,5.9560000000000004,6.734,7.6189999999999998,8.6229999999999993,9.7639999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,142,-0.0309,6.7495000000000003,0.12309,4.6749999999999998,5.282,5.9690000000000003,6.75,7.6349999999999998,8.6419999999999995,9.7850000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,143,-0.032099999999999997,6.7645999999999997,0.12305000000000001,4.6870000000000003,5.2939999999999996,5.9829999999999997,6.7649999999999997,7.6520000000000001,8.6609999999999996,9.8070000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,144,-0.033300000000000003,6.7794999999999996,0.12300999999999999,4.6980000000000004,5.306,5.9960000000000004,6.78,7.6689999999999996,8.6790000000000003,9.8279999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,145,-0.034500000000000003,6.7944000000000004,0.12298000000000001,4.7089999999999996,5.3179999999999996,6.01,6.7939999999999996,7.6859999999999999,8.6980000000000004,9.8490000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,146,-0.035700000000000003,6.8090999999999999,0.12293999999999999,4.72,5.3310000000000004,6.0229999999999997,6.8090000000000002,7.702,8.7170000000000005,9.8699999999999992 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,147,-0.036900000000000002,6.8238000000000003,0.12291000000000001,4.7309999999999999,5.343,6.0359999999999996,6.8239999999999998,7.718,8.7349999999999994,9.8919999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,148,-0.038100000000000002,6.8384,0.12286999999999999,4.742,5.3550000000000004,6.0490000000000004,6.8380000000000001,7.7350000000000003,8.7530000000000001,9.9120000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,149,-0.039300000000000002,6.8529,0.12284,4.7530000000000001,5.3659999999999997,6.0629999999999997,6.8529999999999998,7.7510000000000003,8.7720000000000002,9.9329999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,150,-0.040399999999999998,6.8673000000000002,0.12281,4.7640000000000002,5.3780000000000001,6.0759999999999996,6.867,7.7670000000000003,8.7899999999999991,9.9540000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,151,-0.041599999999999998,6.8815999999999997,0.12277,4.7750000000000004,5.39,6.0880000000000001,6.8819999999999997,7.7830000000000004,8.8079999999999998,9.9740000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,152,-0.042799999999999998,6.8959000000000001,0.12274,4.7850000000000001,5.4020000000000001,6.101,6.8959999999999999,7.7990000000000004,8.8260000000000005,9.9949999999999992 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,153,-0.043900000000000002,6.91,0.12271,4.7960000000000003,5.4130000000000003,6.1139999999999999,6.91,7.8150000000000004,8.8439999999999994,10.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,154,-0.044999999999999998,6.9241000000000001,0.12268,4.8070000000000004,5.4249999999999998,6.1269999999999998,6.9240000000000004,7.8310000000000004,8.8620000000000001,10.036 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,155,-0.046199999999999998,6.9381000000000004,0.12265,4.8170000000000002,5.4359999999999999,6.1390000000000002,6.9379999999999997,7.8460000000000001,8.8789999999999996,10.055999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,156,-0.047300000000000002,6.952,0.12262000000000001,4.8280000000000003,5.4480000000000004,6.1520000000000001,6.952,7.8620000000000001,8.8970000000000002,10.076000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,157,-0.048399999999999999,6.9659000000000004,0.12259,4.8380000000000001,5.4589999999999996,6.1639999999999997,6.9660000000000002,7.8769999999999998,8.9139999999999997,10.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,158,-0.049599999999999998,6.9797000000000002,0.12256,4.8479999999999999,5.47,6.1769999999999996,6.98,7.8929999999999998,8.9320000000000004,10.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,159,-0.050700000000000002,6.9934000000000003,0.12254,4.859,5.4820000000000002,6.1890000000000001,6.9930000000000003,7.9080000000000004,8.9489999999999998,10.135999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,160,-0.051799999999999999,7.0069999999999997,0.12250999999999999,4.8689999999999998,5.4930000000000003,6.2009999999999996,7.0069999999999997,7.923,8.9670000000000005,10.154999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,161,-0.052900000000000003,7.0205000000000002,0.12248000000000001,4.8789999999999996,5.5039999999999996,6.2140000000000004,7.02,7.9379999999999997,8.984,10.175000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,162,-0.053999999999999999,7.0339999999999998,0.12246,4.8890000000000002,5.5149999999999997,6.226,7.0339999999999998,7.9539999999999997,9.0009999999999994,10.194000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,163,-0.055100000000000003,7.0473999999999997,0.12243,4.899,5.5259999999999998,6.2380000000000004,7.0469999999999997,7.9690000000000003,9.0180000000000007,10.214 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,164,-0.0562,7.0606999999999998,0.12241,4.9089999999999998,5.5369999999999999,6.25,7.0609999999999999,7.984,9.0350000000000001,10.233000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,165,-0.057299999999999997,7.0739999999999998,0.12238,4.9189999999999996,5.548,6.2619999999999996,7.0739999999999998,7.9980000000000002,9.0510000000000002,10.252000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,166,-0.058299999999999998,7.0872000000000002,0.12236,4.9290000000000003,5.5579999999999998,6.274,7.0869999999999997,8.0129999999999999,9.0679999999999996,10.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,167,-0.059400000000000001,7.1002999999999998,0.12234,4.9379999999999997,5.569,6.2850000000000001,7.1,8.0280000000000005,9.0850000000000009,10.29 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,168,-0.060499999999999998,7.1132999999999997,0.12231,4.9480000000000004,5.58,6.2969999999999997,7.1130000000000004,8.0419999999999998,9.1010000000000009,10.308999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,169,-0.061499999999999999,7.1262999999999996,0.12229,4.9580000000000002,5.59,6.3090000000000002,7.1260000000000003,8.0570000000000004,9.1180000000000003,10.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,170,-0.062600000000000003,7.1393000000000004,0.12227,4.968,5.601,6.3209999999999997,7.1390000000000002,8.0719999999999992,9.1340000000000003,10.347 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,171,-0.063700000000000007,7.1520999999999999,0.12225,4.9770000000000003,5.6109999999999998,6.3319999999999999,7.1520000000000001,8.0860000000000003,9.1509999999999998,10.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,172,-0.064699999999999994,7.1649000000000003,0.12223000000000001,4.9870000000000001,5.6219999999999999,6.3440000000000003,7.165,8.1,9.1669999999999998,10.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,173,-0.065799999999999997,7.1776,0.12221,4.9960000000000004,5.6319999999999997,6.3550000000000004,7.1779999999999999,8.1150000000000002,9.1829999999999998,10.403 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,174,-0.066799999999999998,7.1902999999999997,0.12218999999999999,5.0060000000000002,5.6420000000000003,6.3659999999999997,7.19,8.1289999999999996,9.1989999999999998,10.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,175,-0.067799999999999999,7.2028999999999996,0.12217,5.0149999999999997,5.6529999999999996,6.3780000000000001,7.2030000000000003,8.1430000000000007,9.2149999999999999,10.44 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,176,-0.068900000000000003,7.2153999999999998,0.12214999999999999,5.024,5.6630000000000003,6.3890000000000002,7.2149999999999999,8.157,9.2309999999999999,10.458 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,177,-0.069900000000000004,7.2279,0.12214,5.0339999999999998,5.673,6.4,7.2279999999999998,8.1709999999999994,9.2469999999999999,10.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,178,-0.070900000000000005,7.2403000000000004,0.12212000000000001,5.0430000000000001,5.6829999999999998,6.4109999999999996,7.24,8.1850000000000005,9.2629999999999999,10.494999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,179,-0.071900000000000006,7.2526999999999999,0.1221,5.0519999999999996,5.6929999999999996,6.4219999999999997,7.2530000000000001,8.1989999999999998,9.2789999999999999,10.513 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,180,-0.072900000000000006,7.2649999999999997,0.12207999999999999,5.0609999999999999,5.7030000000000003,6.4340000000000002,7.2649999999999997,8.2129999999999992,9.2949999999999999,10.531000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,181,-0.073899999999999993,7.2771999999999997,0.12207,5.07,5.7130000000000001,6.444,7.2770000000000001,8.2270000000000003,9.31,10.548999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,182,-0.074899999999999994,7.2893999999999997,0.12205000000000001,5.0789999999999997,5.7229999999999999,6.4550000000000001,7.2889999999999997,8.24,9.3260000000000005,10.566000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,183,-0.075899999999999995,7.3015999999999996,0.12204,5.0880000000000001,5.7329999999999997,6.4660000000000002,7.3019999999999996,8.2539999999999996,9.3409999999999993,10.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,184,-0.076899999999999996,7.3136000000000001,0.12202,5.0970000000000004,5.7430000000000003,6.4770000000000003,7.3140000000000001,8.2669999999999995,9.3569999999999993,10.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,185,-0.077899999999999997,7.3255999999999997,0.12200999999999999,5.1059999999999999,5.7530000000000001,6.4880000000000004,7.3259999999999996,8.2810000000000006,9.3719999999999999,10.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,186,-0.078899999999999998,7.3376000000000001,0.122,5.1150000000000002,5.7619999999999996,6.4989999999999997,7.3380000000000001,8.2949999999999999,9.3879999999999999,10.638 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,187,-0.079899999999999999,7.3494999999999999,0.12198000000000001,5.1239999999999997,5.7720000000000002,6.5090000000000003,7.35,8.3079999999999998,9.4030000000000005,10.654999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,188,-0.080799999999999997,7.3613999999999997,0.12197,5.133,5.782,6.52,7.3609999999999998,8.3209999999999997,9.4179999999999993,10.673 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,189,-0.081799999999999998,7.3731999999999998,0.12196,5.141,5.7910000000000004,6.5309999999999997,7.3730000000000002,8.3350000000000009,9.4329999999999998,10.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,190,-0.082799999999999999,7.3849,0.12195,5.15,5.8010000000000002,6.5410000000000004,7.3849999999999998,8.3480000000000008,9.4480000000000004,10.707000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,191,-0.083699999999999997,7.3966000000000003,0.12194000000000001,5.1589999999999998,5.81,6.5519999999999996,7.3970000000000002,8.3610000000000007,9.4629999999999992,10.725 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,192,-0.084699999999999998,7.4081999999999999,0.12192,5.1669999999999998,5.82,6.5620000000000003,7.4080000000000004,8.3740000000000006,9.4779999999999998,10.742000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,193,-0.085699999999999998,7.4198000000000004,0.12191,5.1760000000000002,5.8289999999999997,6.5720000000000001,7.42,8.3870000000000005,9.4930000000000003,10.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,194,-0.086599999999999996,7.4314,0.12189999999999999,5.1849999999999996,5.8380000000000001,6.5830000000000002,7.431,8.4,9.5079999999999991,10.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,195,-0.087499999999999994,7.4428999999999998,0.12189,5.1929999999999996,5.8479999999999999,6.593,7.4429999999999996,8.4130000000000003,9.5229999999999997,10.792999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,196,-0.088499999999999995,7.4542999999999999,0.12188,5.2009999999999996,5.8570000000000002,6.6029999999999998,7.4539999999999997,8.4260000000000002,9.5370000000000008,10.81 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,197,-0.089399999999999993,7.4657,0.12188,5.21,5.8659999999999997,6.6130000000000004,7.4660000000000002,8.4390000000000001,9.5519999999999996,10.827 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,198,-0.090399999999999994,7.4770000000000003,0.12187000000000001,5.218,5.875,6.6239999999999997,7.4770000000000003,8.452,9.5670000000000002,10.843999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,199,-0.091300000000000006,7.4882999999999997,0.12186,5.226,5.8840000000000003,6.6340000000000003,7.4880000000000004,8.4649999999999999,9.5809999999999995,10.861000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,200,-0.092200000000000004,7.4995000000000003,0.12185,5.2350000000000003,5.8929999999999998,6.6440000000000001,7.5,8.4770000000000003,9.5960000000000001,10.877000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,201,-0.093100000000000002,7.5106999999999999,0.12184,5.2430000000000003,5.9020000000000001,6.6539999999999999,7.5110000000000001,8.49,9.61,10.894 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,202,-0.094,7.5218999999999996,0.12184,5.2510000000000003,5.9109999999999996,6.6639999999999997,7.5220000000000002,8.5030000000000001,9.625,10.911 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,203,-0.095000000000000001,7.5330000000000004,0.12182999999999999,5.2590000000000003,5.92,6.6740000000000004,7.5330000000000004,8.5150000000000006,9.6389999999999993,10.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,204,-0.095899999999999999,7.5439999999999996,0.12182,5.2670000000000003,5.9290000000000003,6.6829999999999998,7.5439999999999996,8.5269999999999992,9.6530000000000005,10.944000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,205,-0.096799999999999997,7.5551000000000004,0.12182,5.2759999999999998,5.9379999999999997,6.6929999999999996,7.5549999999999997,8.5399999999999991,9.6679999999999993,10.961 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,206,-0.097699999999999995,7.5659999999999998,0.12181,5.2839999999999998,5.9470000000000001,6.7030000000000003,7.5659999999999998,8.5519999999999996,9.6820000000000004,10.977 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,207,-0.098599999999999993,7.5769000000000002,0.12181,5.2919999999999998,5.9560000000000004,6.7130000000000001,7.577,8.5649999999999995,9.6959999999999997,10.993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,208,-0.099500000000000005,7.5877999999999997,0.12180000000000001,5.3,5.9649999999999999,6.7229999999999999,7.5880000000000001,8.577,9.7100000000000009,11.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,209,-0.1003,7.5986000000000002,0.12180000000000001,5.3070000000000004,5.9729999999999999,6.7320000000000002,7.5990000000000002,8.5890000000000004,9.7240000000000002,11.026 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,210,-0.1012,7.6093999999999999,0.12179,5.3150000000000004,5.9820000000000002,6.742,7.609,8.6010000000000009,9.7379999999999995,11.042 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,211,-0.1021,7.6201999999999996,0.12179,5.3230000000000004,5.9909999999999997,6.7510000000000003,7.62,8.6140000000000008,9.7520000000000007,11.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,212,-0.10299999999999999,7.6308999999999996,0.12179,5.3310000000000004,5.9989999999999997,6.7610000000000001,7.6310000000000002,8.6259999999999994,9.766,11.074 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,213,-0.10390000000000001,7.6416000000000004,0.12178,5.3390000000000004,6.008,6.7709999999999999,7.6420000000000003,8.6379999999999999,9.7799999999999994,11.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,214,-0.1047,7.6521999999999997,0.12178,5.3470000000000004,6.016,6.78,7.6520000000000001,8.65,9.7929999999999993,11.106 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,215,-0.1056,7.6627999999999998,0.12178,5.3540000000000001,6.0250000000000004,6.7889999999999997,7.6630000000000003,8.6620000000000008,9.8070000000000004,11.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,216,-0.1065,7.6733000000000002,0.12177,5.3620000000000001,6.0330000000000004,6.7990000000000004,7.673,8.6739999999999995,9.8209999999999997,11.138 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,217,-0.10730000000000001,7.6837999999999997,0.12177,5.37,6.0419999999999998,6.8079999999999998,7.6840000000000002,8.6859999999999999,9.8339999999999996,11.154 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,218,-0.1082,7.6943000000000001,0.12177,5.3769999999999998,6.05,6.8179999999999996,7.694,8.6980000000000004,9.8480000000000008,11.17 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,219,-0.109,7.7046999999999999,0.12177,5.3849999999999998,6.0590000000000002,6.827,7.7050000000000001,8.7100000000000009,9.8620000000000001,11.185 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,220,-0.1099,7.7150999999999996,0.12177,5.3929999999999998,6.0670000000000002,6.8360000000000003,7.7149999999999999,8.7210000000000001,9.875,11.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,221,-0.11070000000000001,7.7253999999999996,0.12177,5.4,6.0750000000000002,6.8449999999999998,7.7249999999999996,8.7330000000000005,9.8889999999999993,11.217000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,222,-0.1116,7.7356999999999996,0.12177,5.407,6.0830000000000002,6.8540000000000001,7.7359999999999998,8.7449999999999992,9.9019999999999992,11.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,223,-0.1124,7.7460000000000004,0.12175999999999999,5.415,6.0919999999999996,6.8639999999999999,7.7460000000000004,8.7560000000000002,9.9149999999999991,11.247999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,224,-0.1132,7.7561999999999998,0.12175999999999999,5.423,6.1,6.8730000000000002,7.7560000000000002,8.7680000000000007,9.9290000000000003,11.263 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,225,-0.11409999999999999,7.7664,0.12175999999999999,5.43,6.1079999999999997,6.8819999999999997,7.766,8.7799999999999994,9.9420000000000002,11.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,226,-0.1149,7.7766000000000002,0.12175999999999999,5.4370000000000003,6.1159999999999997,6.891,7.7770000000000001,8.7910000000000004,9.9550000000000001,11.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,227,-0.1157,7.7866999999999997,0.12177,5.4450000000000003,6.1239999999999997,6.9,7.7869999999999999,8.8030000000000008,9.9689999999999994,11.31 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,228,-0.11650000000000001,7.7968000000000002,0.12177,5.452,6.1319999999999997,6.9089999999999998,7.7969999999999997,8.8140000000000001,9.9819999999999993,11.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,229,-0.1173,7.8068,0.12177,5.4589999999999996,6.14,6.9180000000000001,7.8070000000000004,8.8249999999999993,9.9949999999999992,11.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,230,-0.1181,7.8169000000000004,0.12177,5.4669999999999996,6.1479999999999997,6.9269999999999996,7.8170000000000002,8.8369999999999997,10.007999999999999,11.356 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,231,-0.11899999999999999,7.8268000000000004,0.12177,5.4740000000000002,6.1559999999999997,6.9359999999999999,7.827,8.8480000000000008,10.021000000000001,11.371 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,232,-0.1198,7.8368000000000002,0.12177,5.4809999999999999,6.1639999999999997,6.944,7.8369999999999997,8.86,10.034000000000001,11.385999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,233,-0.1206,7.8467000000000002,0.12177,5.4880000000000004,6.1719999999999997,6.9530000000000003,7.8470000000000004,8.8710000000000004,10.047000000000001,11.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,234,-0.12139999999999999,7.8566000000000003,0.12178,5.4950000000000001,6.18,6.9619999999999997,7.8570000000000002,8.8819999999999997,10.06,11.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,235,-0.1222,7.8663999999999996,0.12178,5.5019999999999998,6.1879999999999997,6.9710000000000001,7.8659999999999997,8.8930000000000007,10.073,11.430999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,236,-0.1229,7.8761999999999999,0.12178,5.5090000000000003,6.1959999999999997,6.9790000000000001,7.8760000000000003,8.9039999999999999,10.086,11.446 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,237,-0.1237,7.8860000000000001,0.12178,5.5170000000000003,6.2039999999999997,6.9880000000000004,7.8860000000000001,8.9160000000000004,10.099,11.461 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,238,-0.1245,7.8956999999999997,0.12179,5.524,6.2110000000000003,6.9969999999999999,7.8959999999999999,8.9269999999999996,10.111000000000001,11.476000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,239,-0.12529999999999999,7.9054000000000002,0.12179,5.5309999999999997,6.2190000000000003,7.0049999999999999,7.9050000000000002,8.9380000000000006,10.124000000000001,11.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,240,-0.12609999999999999,7.9150999999999998,0.12179,5.5380000000000003,6.2270000000000003,7.0140000000000002,7.915,8.9489999999999998,10.137,11.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,241,-0.12690000000000001,7.9246999999999996,0.12180000000000001,5.5439999999999996,6.234,7.0220000000000002,7.9249999999999998,8.9600000000000009,10.15,11.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,242,-0.12759999999999999,7.9343000000000004,0.12180000000000001,5.5510000000000002,6.242,7.0309999999999997,7.9340000000000002,8.9710000000000001,10.162000000000001,11.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,243,-0.12839999999999999,7.9439000000000002,0.12180000000000001,5.5579999999999998,6.25,7.04,7.944,8.9809999999999999,10.175000000000001,11.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,244,-0.12920000000000001,7.9534000000000002,0.12181,5.5650000000000004,6.2569999999999997,7.048,7.9530000000000003,8.9920000000000009,10.186999999999999,11.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,245,-0.12989999999999999,7.9629000000000003,0.12181,5.5720000000000001,6.2649999999999997,7.056,7.9630000000000001,9.0030000000000001,10.199999999999999,11.579000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,246,-0.13070000000000001,7.9724000000000004,0.12182,5.5789999999999997,6.2720000000000002,7.0650000000000004,7.9720000000000004,9.0139999999999993,10.212,11.593999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,247,-0.13139999999999999,7.9819000000000004,0.12182,5.5860000000000003,6.28,7.0730000000000004,7.9820000000000002,9.0250000000000004,10.225,11.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,248,-0.13220000000000001,7.9912999999999998,0.12182,5.593,6.2869999999999999,7.0819999999999999,7.9909999999999997,9.0359999999999996,10.237,11.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,249,-0.13289999999999999,8.0007000000000001,0.12182999999999999,5.5990000000000002,6.2949999999999999,7.09,8.0009999999999994,9.0459999999999994,10.249000000000001,11.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,250,-0.13370000000000001,8.01,0.12182999999999999,5.6059999999999999,6.3019999999999996,7.0979999999999999,8.01,9.0570000000000004,10.262,11.651 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,251,-0.13439999999999999,8.0192999999999994,0.12184,5.6130000000000004,6.31,7.1059999999999999,8.0190000000000001,9.0679999999999996,10.273999999999999,11.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,252,-0.13519999999999999,8.0286000000000008,0.12185,5.6189999999999998,6.3170000000000002,7.1150000000000002,8.0289999999999999,9.0779999999999994,10.286,11.68 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,253,-0.13589999999999999,8.0379000000000005,0.12185,5.6260000000000003,6.3239999999999998,7.1230000000000002,8.0380000000000003,9.0890000000000004,10.298,11.694000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,254,-0.13669999999999999,8.0471000000000004,0.12186,5.633,6.3319999999999999,7.1310000000000002,8.0470000000000006,9.0990000000000002,10.311,11.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,255,-0.13739999999999999,8.0563000000000002,0.12186,5.6390000000000002,6.3390000000000004,7.1390000000000002,8.0559999999999992,9.11,10.323,11.723000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,256,-0.1381,8.0655000000000001,0.12187000000000001,5.6459999999999999,6.3460000000000001,7.1470000000000002,8.0660000000000007,9.1199999999999992,10.335000000000001,11.737 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,257,-0.13880000000000001,8.0746000000000002,0.12187000000000001,5.6520000000000001,6.3540000000000001,7.1550000000000002,8.0749999999999993,9.1310000000000002,10.347,11.750999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,258,-0.1396,8.0837000000000003,0.12188,5.6589999999999998,6.3609999999999998,7.1630000000000003,8.0839999999999996,9.141,10.359,11.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,259,-0.14030000000000001,8.0928000000000004,0.12189,5.665,6.3680000000000003,7.1719999999999997,8.093,9.1519999999999992,10.371,11.779 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,260,-0.14099999999999999,8.1019000000000005,0.12189,5.6719999999999997,6.375,7.18,8.1020000000000003,9.1620000000000008,10.382999999999999,11.792999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,261,-0.14169999999999999,8.1109000000000009,0.12189999999999999,5.6779999999999999,6.3819999999999997,7.1879999999999997,8.1110000000000007,9.1720000000000006,10.395,11.807 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,262,-0.1424,8.1198999999999995,0.12189999999999999,5.6849999999999996,6.3890000000000002,7.1959999999999997,8.1199999999999992,9.1820000000000004,10.407,11.821 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,263,-0.1431,8.1288999999999998,0.12191,5.6909999999999998,6.3970000000000002,7.2030000000000003,8.1289999999999996,9.1929999999999996,10.419,11.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,264,-0.14380000000000001,8.1378000000000004,0.12192,5.6980000000000004,6.4039999999999999,7.2110000000000003,8.1379999999999999,9.2029999999999994,10.430999999999999,11.849 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,265,-0.14449999999999999,8.1468000000000007,0.12192,5.7039999999999997,6.4109999999999996,7.2190000000000003,8.1470000000000002,9.2129999999999992,10.442,11.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,266,-0.1452,8.1556999999999995,0.12193,5.7110000000000003,6.4180000000000001,7.2270000000000003,8.1560000000000006,9.2230000000000008,10.454000000000001,11.877000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,267,-0.1459,8.1645000000000003,0.12194000000000001,5.7169999999999996,6.4249999999999998,7.2350000000000003,8.1639999999999997,9.2330000000000005,10.465999999999999,11.891 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,268,-0.14660000000000001,8.1734000000000009,0.12194000000000001,5.7229999999999999,6.4320000000000004,7.2430000000000003,8.173,9.2439999999999998,10.478,11.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,269,-0.14729999999999999,8.1821999999999999,0.12195,5.73,6.4390000000000001,7.2510000000000003,8.1820000000000004,9.2539999999999996,10.489000000000001,11.917999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,270,-0.14799999999999999,8.1910000000000007,0.12196,5.7359999999999998,6.4459999999999997,7.258,8.1910000000000007,9.2639999999999993,10.500999999999999,11.932 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,271,-0.1487,8.1997999999999998,0.12197,5.742,6.4530000000000003,7.266,8.1999999999999993,9.2739999999999991,10.513,11.945 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,272,-0.14940000000000001,8.2085000000000008,0.12197,5.7480000000000002,6.46,7.274,8.2080000000000002,9.2840000000000007,10.523999999999999,11.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,273,-0.15010000000000001,8.2172000000000001,0.12198000000000001,5.7549999999999999,6.4660000000000002,7.282,8.2170000000000005,9.2940000000000005,10.536,11.972 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,274,-0.1507,8.2258999999999993,0.12199,5.7610000000000001,6.4729999999999999,7.2889999999999997,8.2260000000000009,9.3040000000000003,10.547000000000001,11.986000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,275,-0.15140000000000001,8.2346000000000004,0.12199,5.7670000000000003,6.48,7.2969999999999997,8.2349999999999994,9.3140000000000001,10.558999999999999,11.999000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,276,-0.15210000000000001,8.2431999999999999,0.122,5.7729999999999997,6.4870000000000001,7.3049999999999997,8.2430000000000003,9.3230000000000004,10.57,12.013 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,277,-0.15279999999999999,8.2518999999999991,0.12200999999999999,5.7789999999999999,6.4939999999999998,7.3120000000000003,8.2520000000000007,9.3330000000000002,10.582000000000001,12.026 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,278,-0.15340000000000001,8.2605000000000004,0.12202,5.7850000000000001,6.5010000000000003,7.32,8.26,9.343,10.593,12.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,279,-0.15409999999999999,8.2690000000000001,0.12202,5.7919999999999998,6.5069999999999997,7.327,8.2690000000000001,9.3529999999999998,10.603999999999999,12.053000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,280,-0.1547,8.2775999999999996,0.12203,5.798,6.5140000000000002,7.335,8.2780000000000005,9.3629999999999995,10.616,12.066000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,281,-0.15540000000000001,8.2860999999999994,0.12204,5.8040000000000003,6.5209999999999999,7.343,8.2859999999999996,9.3729999999999993,10.627000000000001,12.08 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,282,-0.15609999999999999,8.2946000000000009,0.12205000000000001,5.81,6.5279999999999996,7.35,8.2949999999999999,9.3819999999999997,10.638,12.093 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,283,-0.15670000000000001,8.3031000000000006,0.12206,5.8159999999999998,6.5339999999999998,7.3579999999999997,8.3030000000000008,9.3919999999999995,10.65,12.106 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,284,-0.15740000000000001,8.3116000000000003,0.12206,5.8220000000000001,6.5410000000000004,7.3650000000000002,8.3119999999999994,9.4019999999999992,10.661,12.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,285,-0.158,8.3201000000000001,0.12207,5.8280000000000003,6.548,7.3730000000000002,8.32,9.4120000000000008,10.672000000000001,12.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,286,-0.15870000000000001,8.3285,0.12207999999999999,5.8339999999999996,6.5540000000000003,7.38,8.3279999999999994,9.4209999999999994,10.683,12.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,287,-0.1593,8.3369,0.12209,5.84,6.5609999999999999,7.3869999999999996,8.3369999999999997,9.4309999999999992,10.695,12.159000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,288,-0.15989999999999999,8.3452999999999999,0.12209,5.8460000000000001,6.5679999999999996,7.3949999999999996,8.3450000000000006,9.44,10.706,12.172000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,289,-0.16059999999999999,8.3536000000000001,0.1221,5.8520000000000003,6.5739999999999998,7.4020000000000001,8.3539999999999992,9.4499999999999993,10.717000000000001,12.185 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,290,-0.16120000000000001,8.3620000000000001,0.12211,5.8579999999999997,6.5810000000000004,7.41,8.3620000000000001,9.4600000000000009,10.728,12.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,291,-0.1618,8.3703000000000003,0.12212000000000001,5.8639999999999999,6.5869999999999997,7.4169999999999998,8.3699999999999992,9.4689999999999994,10.739000000000001,12.211 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,292,-0.16250000000000001,8.3786000000000005,0.12213,5.87,6.5940000000000003,7.4240000000000004,8.3789999999999996,9.4789999999999992,10.75,12.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,293,-0.16309999999999999,8.3869000000000007,0.12213,5.8760000000000003,6.601,7.4320000000000004,8.3870000000000005,9.4879999999999995,10.760999999999999,12.237 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,294,-0.16370000000000001,8.3952000000000009,0.12214,5.8810000000000002,6.6070000000000002,7.4390000000000001,8.3949999999999996,9.4979999999999993,10.772,12.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,295,-0.1643,8.4034999999999993,0.12214999999999999,5.8869999999999996,6.6139999999999999,7.4459999999999997,8.4039999999999999,9.5069999999999997,10.782999999999999,12.263 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,296,-0.16500000000000001,8.4116999999999997,0.12216,5.8929999999999998,6.62,7.4530000000000003,8.4120000000000008,9.5169999999999995,10.794,12.276 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,297,-0.1656,8.4199000000000002,0.12217,5.899,6.6260000000000003,7.4610000000000003,8.42,9.5259999999999998,10.805,12.289 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,298,-0.16619999999999999,8.4281000000000006,0.12218,5.9050000000000002,6.633,7.468,8.4280000000000008,9.5350000000000001,10.816000000000001,12.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,299,-0.1668,8.4362999999999992,0.12218,5.9109999999999996,6.6390000000000002,7.4749999999999996,8.4359999999999999,9.5449999999999999,10.827,12.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,300,-0.16739999999999999,8.4444999999999997,0.12218999999999999,5.9169999999999998,6.6459999999999999,7.4820000000000002,8.4440000000000008,9.5540000000000003,10.837999999999999,12.327 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,301,-0.16800000000000001,8.4526000000000003,0.1222,5.9219999999999997,6.6520000000000001,7.49,8.4529999999999994,9.5630000000000006,10.849,12.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,302,-0.1686,8.4606999999999992,0.12221,5.9279999999999999,6.6589999999999998,7.4969999999999999,8.4610000000000003,9.5730000000000004,10.859,12.353 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,303,-0.16919999999999999,8.4687999999999999,0.12222,5.9340000000000002,6.665,7.5039999999999996,8.4689999999999994,9.5820000000000007,10.87,12.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,304,-0.16980000000000001,8.4769000000000005,0.12222,5.94,6.6710000000000003,7.5110000000000001,8.4770000000000003,9.5909999999999993,10.881,12.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,305,-0.1704,8.4849999999999994,0.12223000000000001,5.9450000000000003,6.6779999999999999,7.5179999999999998,8.4849999999999994,9.6010000000000009,10.891999999999999,12.391 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,306,-0.17100000000000001,8.4931000000000001,0.12224,5.9509999999999996,6.6840000000000002,7.5250000000000004,8.4930000000000003,9.61,10.901999999999999,12.403 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,307,-0.1716,8.5010999999999992,0.12225,5.9569999999999999,6.69,7.532,8.5009999999999994,9.6189999999999998,10.913,12.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,308,-0.17219999999999999,8.5091999999999999,0.12225999999999999,5.9619999999999997,6.6970000000000001,7.54,8.5090000000000003,9.6280000000000001,10.923999999999999,12.429 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,309,-0.17280000000000001,8.5172000000000008,0.12227,5.968,6.7030000000000003,7.5469999999999997,8.5169999999999995,9.6379999999999999,10.935,12.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,310,-0.1734,8.5251999999999999,0.12227,5.9740000000000002,6.71,7.5540000000000003,8.5250000000000004,9.6470000000000002,10.945,12.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,311,-0.17399999999999999,8.5332000000000008,0.12228,5.98,6.7160000000000002,7.5609999999999999,8.5329999999999995,9.6560000000000006,10.956,12.465999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,312,-0.17449999999999999,8.5411000000000001,0.12229,5.9850000000000003,6.7220000000000004,7.5679999999999996,8.5410000000000004,9.6649999999999991,10.965999999999999,12.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,313,-0.17510000000000001,8.5490999999999993,0.12230000000000001,5.9909999999999997,6.7279999999999998,7.5750000000000002,8.5489999999999995,9.6739999999999995,10.977,12.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,314,-0.1757,8.5570000000000004,0.12231,5.9960000000000004,6.734,7.5819999999999999,8.5570000000000004,9.6829999999999998,10.988,12.504 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,315,-0.17630000000000001,8.5649999999999995,0.12231,6.0019999999999998,6.7409999999999997,7.5890000000000004,8.5649999999999995,9.6920000000000002,10.997999999999999,12.516 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,316,-0.17680000000000001,8.5729000000000006,0.12232,6.008,6.7469999999999999,7.5960000000000001,8.5730000000000004,9.7010000000000005,11.009,12.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,317,-0.1774,8.5808,0.12232999999999999,6.0129999999999999,6.7530000000000001,7.6029999999999998,8.5809999999999995,9.7100000000000009,11.019,12.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,318,-0.17799999999999999,8.5886999999999993,0.12234,6.0190000000000001,6.7590000000000003,7.61,8.5890000000000004,9.7200000000000006,11.03,12.554 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,319,-0.17849999999999999,8.5965000000000007,0.12235,6.024,6.766,7.617,8.5960000000000001,9.7289999999999992,11.04,12.566000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,320,-0.17910000000000001,8.6044,0.12235,6.03,6.7720000000000002,7.6239999999999997,8.6039999999999992,9.7370000000000001,11.051,12.577999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,321,-0.1797,8.6121999999999996,0.12236,6.0359999999999996,6.7779999999999996,7.63,8.6120000000000001,9.7460000000000004,11.061,12.59 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,322,-0.1802,8.6201000000000008,0.12237000000000001,6.0410000000000004,6.7839999999999998,7.6369999999999996,8.6199999999999992,9.7560000000000002,11.071999999999999,12.603 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,323,-0.18079999999999999,8.6279000000000003,0.12238,6.0469999999999997,6.79,7.6440000000000001,8.6280000000000001,9.7650000000000006,11.082000000000001,12.615 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,324,-0.18129999999999999,8.6356999999999999,0.12239,6.0519999999999996,6.7960000000000003,7.6509999999999998,8.6359999999999992,9.7729999999999997,11.093,12.627000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,325,-0.18190000000000001,8.6434999999999995,0.12239,6.0579999999999998,6.8029999999999999,7.6580000000000004,8.6440000000000001,9.782,11.103,12.638999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,326,-0.18240000000000001,8.6511999999999993,0.12239999999999999,6.0629999999999997,6.8090000000000002,7.665,8.6509999999999998,9.7910000000000004,11.113,12.651 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,327,-0.183,8.6590000000000007,0.12241,6.069,6.8150000000000004,7.6719999999999997,8.6590000000000007,9.8000000000000007,11.124000000000001,12.664 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,328,-0.1835,8.6667000000000005,0.12242,6.0739999999999998,6.8209999999999997,7.6779999999999999,8.6669999999999998,9.8089999999999993,11.134,12.676 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,329,-0.18410000000000001,8.6745000000000001,0.12243,6.08,6.827,7.6849999999999996,8.6739999999999995,9.8179999999999996,11.144,12.688000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,330,-0.18459999999999999,8.6821999999999999,0.12243,6.085,6.8330000000000002,7.6920000000000002,8.6820000000000004,9.827,11.154,12.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,331,-0.18509999999999999,8.6898999999999997,0.12243999999999999,6.0910000000000002,6.8390000000000004,7.6989999999999998,8.69,9.8360000000000003,11.164999999999999,12.712 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,332,-0.1857,8.6975999999999996,0.12245,6.0960000000000001,6.8449999999999998,7.7060000000000004,8.6980000000000004,9.8439999999999994,11.175000000000001,12.724 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,333,-0.1862,8.7052999999999994,0.12246,6.1020000000000003,6.851,7.7130000000000001,8.7050000000000001,9.8529999999999998,11.185,12.737 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,334,-0.1867,8.7129999999999992,0.12246,6.1070000000000002,6.8570000000000002,7.7190000000000003,8.7129999999999992,9.8620000000000001,11.196,12.747999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,335,-0.18729999999999999,8.7207000000000008,0.12247,6.1130000000000004,6.8630000000000004,7.726,8.7210000000000001,9.8710000000000004,11.206,12.760999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,336,-0.18779999999999999,8.7283000000000008,0.12248000000000001,6.1180000000000003,6.8689999999999998,7.7329999999999997,8.7279999999999998,9.8800000000000008,11.215999999999999,12.773 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,337,-0.1883,8.7360000000000007,0.12249,6.1239999999999997,6.875,7.74,8.7360000000000007,9.8889999999999993,11.226000000000001,12.785 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,338,-0.18890000000000001,8.7436000000000007,0.12249,6.1289999999999996,6.8819999999999997,7.7460000000000004,8.7439999999999998,9.8970000000000002,11.236000000000001,12.795999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,339,-0.18940000000000001,8.7512000000000008,0.1225,6.1340000000000003,6.8869999999999996,7.7530000000000001,8.7509999999999994,9.9060000000000006,11.247,12.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,340,-0.18990000000000001,8.7588000000000008,0.12250999999999999,6.14,6.8929999999999998,7.76,8.7590000000000003,9.9149999999999991,11.257,12.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,341,-0.19040000000000001,8.7664000000000009,0.12252,6.1449999999999996,6.899,7.766,8.766,9.923,11.266999999999999,12.833 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,342,-0.19089999999999999,8.7739999999999991,0.12252,6.1509999999999998,6.9050000000000002,7.7729999999999997,8.7739999999999991,9.9320000000000004,11.276999999999999,12.843999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,343,-0.19139999999999999,8.7815999999999992,0.12253,6.1559999999999997,6.9109999999999996,7.78,8.782,9.9410000000000007,11.287000000000001,12.856 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,344,-0.192,8.7891999999999992,0.12254,6.1609999999999996,6.9169999999999998,7.7869999999999999,8.7889999999999997,9.9499999999999993,11.297000000000001,12.868 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,345,-0.1925,8.7967999999999993,0.12254,6.1669999999999998,6.923,7.7930000000000001,8.7970000000000006,9.9580000000000002,11.307,12.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,346,-0.193,8.8042999999999996,0.12255000000000001,6.1719999999999997,6.9290000000000003,7.8,8.8040000000000003,9.9670000000000005,11.317,12.891999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,347,-0.19350000000000001,8.8118999999999996,0.12256,6.1769999999999996,6.9349999999999996,7.8070000000000004,8.8119999999999994,9.9760000000000009,11.327,12.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,348,-0.19400000000000001,8.8193999999999999,0.12256,6.1829999999999998,6.9409999999999998,7.8129999999999997,8.8190000000000008,9.984,11.337,12.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,349,-0.19450000000000001,8.8269000000000002,0.12257,6.1879999999999997,6.9470000000000001,7.82,8.827,9.9930000000000003,11.347,12.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,350,-0.19500000000000001,8.8344000000000005,0.12257999999999999,6.1929999999999996,6.9530000000000003,7.8259999999999996,8.8339999999999996,10.000999999999999,11.356999999999999,12.939 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,351,-0.19550000000000001,8.8420000000000005,0.12259,6.1989999999999998,6.9589999999999996,7.8330000000000002,8.8420000000000005,10.01,11.368,12.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,352,-0.19600000000000001,8.8495000000000008,0.12259,6.2039999999999997,6.9649999999999999,7.84,8.85,10.019,11.377000000000001,12.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,353,-0.19650000000000001,8.8568999999999996,0.1226,6.2089999999999996,6.9710000000000001,7.8460000000000001,8.8569999999999993,10.026999999999999,11.387,12.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,354,-0.19700000000000001,8.8643999999999998,0.12261,6.2149999999999999,6.9770000000000003,7.8529999999999998,8.8640000000000008,10.036,11.397,12.986000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,355,-0.19739999999999999,8.8719000000000001,0.12261,6.22,6.9829999999999997,7.86,8.8719999999999999,10.044,11.407,12.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,356,-0.19789999999999999,8.8794000000000004,0.12262000000000001,6.2249999999999996,6.9880000000000004,7.8659999999999997,8.8789999999999996,10.053000000000001,11.417,13.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,357,-0.19839999999999999,8.8867999999999991,0.12262000000000001,6.2309999999999999,6.9939999999999998,7.8730000000000002,8.8870000000000005,10.061,11.427,13.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,358,-0.19889999999999999,8.8942999999999994,0.12263,6.2359999999999998,7,7.8789999999999996,8.8940000000000001,10.07,11.436999999999999,13.032999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,359,-0.19939999999999999,8.9016999999999999,0.12264,6.2409999999999997,7.0060000000000002,7.8860000000000001,8.9019999999999992,10.079000000000001,11.446999999999999,13.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,360,-0.19989999999999999,8.9092000000000002,0.12264,6.2469999999999999,7.0119999999999996,7.8929999999999998,8.9090000000000007,10.087,11.457000000000001,13.055999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,361,-0.20030000000000001,8.9166000000000007,0.12265,6.2519999999999998,7.0179999999999998,7.899,8.9169999999999998,10.096,11.467000000000001,13.068 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,362,-0.20080000000000001,8.9239999999999995,0.12266000000000001,6.2569999999999997,7.024,7.9059999999999997,8.9239999999999995,10.103999999999999,11.477,13.079000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,363,-0.20130000000000001,8.9314,0.12266000000000001,6.2629999999999999,7.03,7.9119999999999999,8.9309999999999992,10.113,11.486000000000001,13.090999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,364,-0.20180000000000001,8.9388000000000005,0.12267,6.2679999999999998,7.0350000000000001,7.9189999999999996,8.9390000000000001,10.121,11.496,13.102 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,365,-0.20219999999999999,8.9461999999999993,0.12267,6.2729999999999997,7.0410000000000004,7.9249999999999998,8.9459999999999997,10.129,11.506,13.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,366,-0.20269999999999999,8.9535999999999998,0.12268,6.2779999999999996,7.0469999999999997,7.9320000000000004,8.9540000000000006,10.138,11.516,13.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,367,-0.20319999999999999,8.9610000000000003,0.12268999999999999,6.2830000000000004,7.0529999999999999,7.9379999999999997,8.9610000000000003,10.146000000000001,11.526,13.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,368,-0.2036,8.9684000000000008,0.12268999999999999,6.2889999999999997,7.0590000000000002,7.9450000000000003,8.968,10.154999999999999,11.535,13.148 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,369,-0.2041,8.9756999999999998,0.1227,6.2939999999999996,7.0640000000000001,7.9509999999999996,8.9760000000000009,10.163,11.545,13.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,370,-0.2046,8.9831000000000003,0.1227,6.2990000000000004,7.07,7.9580000000000002,8.9830000000000005,10.172000000000001,11.555,13.170999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,371,-0.20499999999999999,8.9903999999999993,0.12271,6.3040000000000003,7.0759999999999996,7.9640000000000004,8.99,10.18,11.565,13.183 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,372,-0.20549999999999999,8.9977999999999998,0.12272,6.31,7.0819999999999999,7.9710000000000001,8.9979999999999993,10.189,11.574999999999999,13.195 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,373,-0.2059,9.0051000000000005,0.12272,6.3150000000000004,7.0880000000000001,7.9770000000000003,9.0050000000000008,10.196999999999999,11.584,13.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,374,-0.2064,9.0124999999999993,0.12273000000000001,6.32,7.093,7.984,9.0120000000000005,10.205,11.593999999999999,13.218 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,375,-0.20680000000000001,9.0198,0.12273000000000001,6.3250000000000002,7.0990000000000002,7.99,9.02,10.214,11.603999999999999,13.228999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,376,-0.20730000000000001,9.0271000000000008,0.12274,6.3310000000000004,7.1050000000000004,7.9969999999999999,9.0269999999999992,10.222,11.614000000000001,13.24 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,377,-0.2077,9.0343999999999998,0.12274,6.3360000000000003,7.1109999999999998,8.0030000000000001,9.0340000000000007,10.23,11.622999999999999,13.250999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,378,-0.2082,9.0417000000000005,0.12275,6.3410000000000002,7.1159999999999997,8.01,9.0419999999999998,10.239000000000001,11.632999999999999,13.263 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,379,-0.20860000000000001,9.0489999999999995,0.12275,6.3460000000000001,7.1219999999999999,8.016,9.0489999999999995,10.247,11.643000000000001,13.273999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,380,-0.20910000000000001,9.0563000000000002,0.12275999999999999,6.351,7.1280000000000001,8.0220000000000002,9.0559999999999992,10.256,11.651999999999999,13.286 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,381,-0.20949999999999999,9.0635999999999992,0.12275999999999999,6.3570000000000002,7.1340000000000003,8.0289999999999999,9.0640000000000001,10.263999999999999,11.662000000000001,13.297000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,382,-0.21,9.0709,0.12277,6.3620000000000001,7.14,8.0350000000000001,9.0709999999999997,10.272,11.672000000000001,13.308999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,383,-0.2104,9.0782000000000007,0.12277,6.367,7.1449999999999996,8.0419999999999998,9.0779999999999994,10.281000000000001,11.680999999999999,13.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,384,-0.21079999999999999,9.0853999999999999,0.12278,6.3719999999999999,7.1509999999999998,8.048,9.0850000000000009,10.289,11.691000000000001,13.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,385,-0.21129999999999999,9.0927000000000007,0.12278,6.3769999999999998,7.157,8.0549999999999997,9.093,10.297000000000001,11.701000000000001,13.342000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,386,-0.2117,9.0998999999999999,0.12279,6.3819999999999997,7.1619999999999999,8.0609999999999999,9.1,10.305,11.71,13.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,387,-0.21210000000000001,9.1072000000000006,0.12279,6.3879999999999999,7.1680000000000001,8.0679999999999996,9.1069999999999993,10.314,11.72,13.365 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,388,-0.21260000000000001,9.1143999999999998,0.12280000000000001,6.3929999999999998,7.1740000000000004,8.0739999999999998,9.1140000000000008,10.321999999999999,11.728999999999999,13.375999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,389,-0.21299999999999999,9.1217000000000006,0.12280000000000001,6.3979999999999997,7.18,8.08,9.1219999999999999,10.33,11.739000000000001,13.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,390,-0.21340000000000001,9.1288999999999998,0.12281,6.4029999999999996,7.1849999999999996,8.0869999999999997,9.1289999999999996,10.339,11.749000000000001,13.398999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,391,-0.21390000000000001,9.1361000000000008,0.12281,6.4080000000000004,7.1909999999999998,8.093,9.1359999999999992,10.347,11.757999999999999,13.41 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,392,-0.21429999999999999,9.1433999999999997,0.12282,6.4130000000000003,7.1970000000000001,8.0990000000000002,9.1430000000000007,10.355,11.768000000000001,13.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,393,-0.2147,9.1506000000000007,0.12282,6.4189999999999996,7.2030000000000003,8.1059999999999999,9.1509999999999998,10.363,11.776999999999999,13.432 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,394,-0.21510000000000001,9.1577999999999999,0.12282,6.4240000000000004,7.2080000000000002,8.1120000000000001,9.1579999999999995,10.372,11.787000000000001,13.443 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,395,-0.2155,9.1649999999999991,0.12282999999999999,6.4290000000000003,7.2140000000000004,8.1189999999999998,9.1649999999999991,10.38,11.795999999999999,13.455 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,396,-0.216,9.1722000000000001,0.12282999999999999,6.4340000000000002,7.22,8.125,9.1720000000000006,10.388,11.805999999999999,13.465999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,397,-0.21640000000000001,9.1793999999999993,0.12284,6.4390000000000001,7.2249999999999996,8.1310000000000002,9.1790000000000003,10.396000000000001,11.816000000000001,13.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,398,-0.21679999999999999,9.1866000000000003,0.12284,6.444,7.2309999999999999,8.1379999999999999,9.1869999999999994,10.404999999999999,11.824999999999999,13.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,399,-0.2172,9.1937999999999995,0.12285,6.4489999999999998,7.2370000000000001,8.1440000000000001,9.1940000000000008,10.413,11.835000000000001,13.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,400,-0.21759999999999999,9.2009000000000007,0.12285,6.4550000000000001,7.242,8.15,9.2010000000000005,10.420999999999999,11.843999999999999,13.510999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,401,-0.218,9.2081,0.12285,6.46,7.2480000000000002,8.157,9.2080000000000002,10.429,11.853,13.522 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,402,-0.21840000000000001,9.2152999999999992,0.12286,6.4649999999999999,7.2539999999999996,8.1630000000000003,9.2149999999999999,10.436999999999999,11.863,13.532999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,403,-0.21879999999999999,9.2225000000000001,0.12286,6.47,7.2590000000000003,8.17,9.2219999999999995,10.446,11.872,13.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,404,-0.21920000000000001,9.2295999999999996,0.12286999999999999,6.4749999999999996,7.2649999999999997,8.1760000000000002,9.23,10.454000000000001,11.882,13.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,405,-0.21959999999999999,9.2368000000000006,0.12286999999999999,6.48,7.2709999999999999,8.1820000000000004,9.2370000000000001,10.462,11.891,13.566000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,406,-0.22,9.2439,0.12286999999999999,6.4850000000000003,7.2759999999999998,8.1880000000000006,9.2439999999999998,10.47,11.901,13.577 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,407,-0.22040000000000001,9.2510999999999992,0.12288,6.49,7.282,8.1950000000000003,9.2509999999999994,10.478,11.91,13.587999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,408,-0.2208,9.2582000000000004,0.12288,6.4950000000000001,7.2880000000000003,8.2010000000000005,9.2579999999999991,10.486000000000001,11.92,13.599 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,409,-0.22120000000000001,9.2653999999999996,0.12288,6.5010000000000003,7.2930000000000001,8.2070000000000007,9.2650000000000006,10.494999999999999,11.929,13.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,410,-0.22159999999999999,9.2725000000000009,0.12289,6.5060000000000002,7.2990000000000004,8.2140000000000004,9.2720000000000002,10.503,11.939,13.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,411,-0.222,9.2796000000000003,0.12289,6.5110000000000001,7.3049999999999997,8.2200000000000006,9.2799999999999994,10.510999999999999,11.948,13.632 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,412,-0.22239999999999999,9.2866999999999997,0.12289,6.516,7.31,8.2260000000000009,9.2870000000000008,10.519,11.957000000000001,13.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,413,-0.2228,9.2939000000000007,0.1229,6.5209999999999999,7.3159999999999998,8.2330000000000005,9.2940000000000005,10.526999999999999,11.967000000000001,13.654999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,414,-0.22320000000000001,9.3010000000000002,0.1229,6.5259999999999998,7.3220000000000001,8.2390000000000008,9.3010000000000002,10.535,11.976000000000001,13.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,415,-0.22359999999999999,9.3080999999999996,0.1229,6.5309999999999997,7.327,8.2449999999999992,9.3079999999999998,10.542999999999999,11.986000000000001,13.676 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,416,-0.224,9.3152000000000008,0.12291000000000001,6.5359999999999996,7.3330000000000002,8.2520000000000007,9.3149999999999995,10.552,11.994999999999999,13.688000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,417,-0.2243,9.3223000000000003,0.12291000000000001,6.5410000000000004,7.3380000000000001,8.2579999999999991,9.3219999999999992,10.56,12.004,13.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,418,-0.22470000000000001,9.3293999999999997,0.12291000000000001,6.5460000000000003,7.3440000000000003,8.2639999999999993,9.3290000000000006,10.568,12.013999999999999,13.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,419,-0.22509999999999999,9.3364999999999991,0.12292,6.5510000000000002,7.35,8.27,9.3360000000000003,10.576000000000001,12.023,13.721 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,420,-0.22550000000000001,9.3436000000000003,0.12292,6.5570000000000004,7.3550000000000004,8.2769999999999992,9.3439999999999994,10.584,12.032,13.731 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,421,-0.22589999999999999,9.3506999999999998,0.12292,6.5620000000000003,7.3609999999999998,8.2829999999999995,9.3510000000000009,10.592000000000001,12.042,13.742000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,422,-0.22620000000000001,9.3577999999999992,0.12292,6.5670000000000002,7.367,8.2889999999999997,9.3580000000000005,10.6,12.051,13.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,423,-0.2266,9.3649000000000004,0.12293,6.5720000000000001,7.3719999999999999,8.2959999999999994,9.3650000000000002,10.608000000000001,12.061,13.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,424,-0.22700000000000001,9.3719999999999999,0.12293,6.577,7.3780000000000001,8.3019999999999996,9.3719999999999999,10.616,12.07,13.775 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,425,-0.22739999999999999,9.3789999999999996,0.12293,6.5819999999999999,7.383,8.3079999999999998,9.3789999999999996,10.624000000000001,12.079000000000001,13.786 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,426,-0.22770000000000001,9.3861000000000008,0.12293999999999999,6.5869999999999997,7.3890000000000002,8.3140000000000001,9.3859999999999992,10.632999999999999,12.089,13.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,427,-0.2281,9.3932000000000002,0.12293999999999999,6.5919999999999996,7.3949999999999996,8.3209999999999997,9.3930000000000007,10.641,12.098000000000001,13.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,428,-0.22850000000000001,9.4001999999999999,0.12293999999999999,6.5970000000000004,7.4,8.327,9.4,10.648999999999999,12.106999999999999,13.819000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,429,-0.2288,9.4072999999999993,0.12293999999999999,6.6020000000000003,7.4059999999999997,8.3330000000000002,9.407,10.657,12.116,13.829000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,430,-0.22919999999999999,9.4144000000000005,0.12295,6.6070000000000002,7.4109999999999996,8.3390000000000004,9.4139999999999997,10.664999999999999,12.125999999999999,13.840999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,431,-0.2296,9.4214000000000002,0.12295,6.6120000000000001,7.4169999999999998,8.3460000000000001,9.4209999999999994,10.673,12.135,13.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,432,-0.22989999999999999,9.4284999999999997,0.12295,6.617,7.423,8.3520000000000003,9.4280000000000008,10.680999999999999,12.144,13.862 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,433,-0.2303,9.4354999999999993,0.12295,6.6219999999999999,7.4279999999999999,8.3580000000000005,9.4359999999999999,10.689,12.153,13.872999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,434,-0.23069999999999999,9.4426000000000005,0.12295,6.6280000000000001,7.4340000000000002,8.3640000000000008,9.4429999999999996,10.696999999999999,12.163,13.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,435,-0.23100000000000001,9.4496000000000002,0.12296,6.6319999999999997,7.4390000000000001,8.3710000000000004,9.4499999999999993,10.705,12.172000000000001,13.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,436,-0.23139999999999999,9.4566999999999997,0.12296,6.6379999999999999,7.4450000000000003,8.3770000000000007,9.4570000000000007,10.712999999999999,12.180999999999999,13.906000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,437,-0.23169999999999999,9.4636999999999993,0.12296,6.6429999999999998,7.4509999999999996,8.3829999999999991,9.4640000000000004,10.721,12.191000000000001,13.916 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,438,-0.2321,9.4707000000000008,0.12296,6.6479999999999997,7.4560000000000004,8.3889999999999993,9.4710000000000001,10.728999999999999,12.2,13.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,439,-0.2324,9.4778000000000002,0.12296,6.6529999999999996,7.4619999999999997,8.3960000000000008,9.4779999999999998,10.737,12.209,13.938000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,440,-0.23280000000000001,9.4847999999999999,0.12297,6.6580000000000004,7.4669999999999996,8.4019999999999992,9.4849999999999994,10.744999999999999,12.218999999999999,13.949 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,441,-0.2331,9.4917999999999996,0.12297,6.6630000000000003,7.4729999999999999,8.4079999999999995,9.4920000000000009,10.753,12.228,13.96 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,442,-0.23350000000000001,9.4987999999999992,0.12297,6.6680000000000001,7.4779999999999998,8.4139999999999997,9.4990000000000006,10.760999999999999,12.237,13.97 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,443,-0.23380000000000001,9.5058000000000007,0.12297,6.673,7.484,8.42,9.5060000000000002,10.769,12.246,13.981 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,444,-0.23419999999999999,9.5129000000000001,0.12297,6.6779999999999999,7.49,8.4269999999999996,9.5129999999999999,10.776999999999999,12.255000000000001,13.992000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,445,-0.23449999999999999,9.5198999999999998,0.12298000000000001,6.6829999999999998,7.4950000000000001,8.4329999999999998,9.52,10.785,12.265000000000001,14.003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,446,-0.2349,9.5268999999999995,0.12298000000000001,6.6879999999999997,7.5010000000000003,8.4390000000000001,9.5269999999999992,10.792999999999999,12.273999999999999,14.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,447,-0.23519999999999999,9.5338999999999992,0.12298000000000001,6.6929999999999996,7.5060000000000002,8.4450000000000003,9.5340000000000007,10.801,12.282999999999999,14.023999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,448,-0.23549999999999999,9.5409000000000006,0.12298000000000001,6.6980000000000004,7.5119999999999996,8.452,9.5410000000000004,10.808999999999999,12.292,14.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,449,-0.2359,9.5479000000000003,0.12298000000000001,6.7030000000000003,7.5170000000000003,8.4580000000000002,9.548,10.817,12.301,14.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,450,-0.23619999999999999,9.5548999999999999,0.12298000000000001,6.7080000000000002,7.5229999999999997,8.4640000000000004,9.5549999999999997,10.824999999999999,12.31,14.055999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,451,-0.2366,9.5618999999999996,0.12299,6.7130000000000001,7.5289999999999999,8.4700000000000006,9.5619999999999994,10.833,12.32,14.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,452,-0.2369,9.5688999999999993,0.12299,6.718,7.5339999999999998,8.4760000000000009,9.5690000000000008,10.840999999999999,12.329000000000001,14.077999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,453,-0.23719999999999999,9.5759000000000007,0.12299,6.7229999999999999,7.54,8.4830000000000005,9.5760000000000005,10.849,12.337999999999999,14.089 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,454,-0.23760000000000001,9.5829000000000004,0.12299,6.7279999999999998,7.5449999999999999,8.4890000000000008,9.5830000000000002,10.856999999999999,12.347,14.099 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,455,-0.2379,9.5898000000000003,0.12299,6.7329999999999997,7.5510000000000002,8.4949999999999992,9.59,10.865,12.356,14.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,456,-0.2382,9.5968,0.12299,6.7380000000000004,7.556,8.5009999999999994,9.5969999999999995,10.872999999999999,12.366,14.121 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,457,-0.23849999999999999,9.6037999999999997,0.12299,6.7430000000000003,7.5620000000000003,8.5069999999999997,9.6039999999999992,10.881,12.375,14.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,458,-0.2389,9.6107999999999993,0.123,6.7480000000000002,7.5670000000000002,8.5139999999999993,9.6110000000000007,10.888999999999999,12.384,14.141999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,459,-0.2392,9.6178000000000008,0.123,6.7530000000000001,7.5730000000000004,8.52,9.6180000000000003,10.897,12.393000000000001,14.153 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,460,-0.23949999999999999,9.6247000000000007,0.123,6.758,7.5780000000000003,8.5259999999999998,9.625,10.904999999999999,12.401999999999999,14.163 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,461,-0.23980000000000001,9.6317000000000004,0.123,6.7629999999999999,7.5839999999999996,8.532,9.6319999999999997,10.913,12.411,14.173999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,462,-0.2402,9.6387,0.123,6.7679999999999998,7.59,8.5380000000000003,9.6389999999999993,10.92,12.420999999999999,14.185 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,463,-0.24049999999999999,9.6456999999999997,0.123,6.7729999999999997,7.5949999999999998,8.5449999999999999,9.6460000000000008,10.928000000000001,12.43,14.195 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,464,-0.24079999999999999,9.6525999999999996,0.123,6.7779999999999996,7.601,8.5510000000000002,9.6530000000000005,10.936,12.439,14.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,465,-0.24110000000000001,9.6595999999999993,0.123,6.7830000000000004,7.6059999999999999,8.5570000000000004,9.66,10.944000000000001,12.448,14.217000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,466,-0.2414,9.6664999999999992,0.12300999999999999,6.7880000000000003,7.6120000000000001,8.5630000000000006,9.6660000000000004,10.952,12.457000000000001,14.228 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,467,-0.24179999999999999,9.6735000000000007,0.12300999999999999,6.7930000000000001,7.617,8.5690000000000008,9.6739999999999995,10.96,12.465999999999999,14.238 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,468,-0.24210000000000001,9.6805000000000003,0.12300999999999999,6.798,7.6230000000000002,8.5749999999999993,9.68,10.968,12.475,14.249000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,469,-0.2424,9.6874000000000002,0.12300999999999999,6.8029999999999999,7.6280000000000001,8.5820000000000007,9.6869999999999994,10.976000000000001,12.484,14.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,470,-0.2427,9.6943999999999999,0.12300999999999999,6.8079999999999998,7.6340000000000003,8.5879999999999992,9.6940000000000008,10.984,12.494,14.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,471,-0.24299999999999999,9.7012999999999998,0.12300999999999999,6.8129999999999997,7.6390000000000002,8.5939999999999994,9.7010000000000005,10.992000000000001,12.503,14.281000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,472,-0.24329999999999999,9.7082999999999995,0.12300999999999999,6.8179999999999996,7.6449999999999996,8.6,9.7080000000000002,11,12.512,14.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,473,-0.24360000000000001,9.7151999999999994,0.12300999999999999,6.8230000000000004,7.65,8.6059999999999999,9.7149999999999999,11.007999999999999,12.521000000000001,14.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,474,-0.24390000000000001,9.7222000000000008,0.12300999999999999,6.8280000000000003,7.6559999999999997,8.6120000000000001,9.7219999999999995,11.016,12.53,14.311999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,475,-0.2442,9.7291000000000007,0.12302,6.8330000000000002,7.6609999999999996,8.6189999999999998,9.7289999999999992,11.023,12.539,14.323 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,476,-0.24460000000000001,9.7361000000000004,0.12302,6.8380000000000001,7.6669999999999998,8.625,9.7360000000000007,11.031000000000001,12.548,14.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,477,-0.24490000000000001,9.7430000000000003,0.12302,6.843,7.6719999999999997,8.6310000000000002,9.7430000000000003,11.039,12.557,14.343999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,478,-0.2452,9.75,0.12302,6.8479999999999999,7.6779999999999999,8.6370000000000005,9.75,11.047000000000001,12.567,14.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,479,-0.2455,9.7568999999999999,0.12302,6.8529999999999998,7.6840000000000002,8.6430000000000007,9.7569999999999997,11.055,12.576000000000001,14.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,480,-0.24579999999999999,9.7637999999999998,0.12302,6.8579999999999997,7.6890000000000001,8.6489999999999991,9.7639999999999993,11.063000000000001,12.585000000000001,14.375999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,481,-0.24610000000000001,9.7707999999999995,0.12302,6.8630000000000004,7.6950000000000003,8.6560000000000006,9.7710000000000008,11.071,12.593999999999999,14.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,482,-0.24640000000000001,9.7776999999999994,0.12302,6.8680000000000003,7.7,8.6620000000000008,9.7780000000000005,11.079000000000001,12.603,14.397 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,483,-0.2467,9.7845999999999993,0.12302,6.8730000000000002,7.7060000000000004,8.6679999999999993,9.7850000000000001,11.087,12.612,14.407999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,484,-0.247,9.7916000000000007,0.12302,6.8780000000000001,7.7110000000000003,8.6739999999999995,9.7919999999999998,11.095000000000001,12.621,14.417999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,485,-0.2472,9.7985000000000007,0.12303,6.883,7.7169999999999996,8.68,9.798,11.102,12.63,14.429 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,486,-0.2475,9.8054000000000006,0.12303,6.8879999999999999,7.7220000000000004,8.6859999999999999,9.8049999999999997,11.11,12.638999999999999,14.44 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,487,-0.24779999999999999,9.8124000000000002,0.12303,6.8929999999999998,7.7279999999999998,8.6920000000000002,9.8119999999999994,11.118,12.648,14.45 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,488,-0.24809999999999999,9.8193000000000001,0.12303,6.8979999999999997,7.7329999999999997,8.6989999999999998,9.8190000000000008,11.125999999999999,12.657,14.461 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,489,-0.24840000000000001,9.8262,0.12303,6.9029999999999996,7.7389999999999999,8.7050000000000001,9.8260000000000005,11.134,12.666,14.471 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,490,-0.2487,9.8331,0.12303,6.9080000000000004,7.7439999999999998,8.7110000000000003,9.8330000000000002,11.141999999999999,12.675000000000001,14.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,491,-0.249,9.8400999999999996,0.12303,6.9130000000000003,7.75,8.7170000000000005,9.84,11.15,12.685,14.493 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,492,-0.24929999999999999,9.8469999999999995,0.12303,6.9180000000000001,7.7549999999999999,8.7230000000000008,9.8469999999999995,11.157999999999999,12.694000000000001,14.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,493,-0.24959999999999999,9.8538999999999994,0.12303,6.923,7.7610000000000001,8.7289999999999992,9.8539999999999992,11.164999999999999,12.702999999999999,14.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,494,-0.24990000000000001,9.8607999999999993,0.12303,6.9279999999999999,7.766,8.7349999999999994,9.8610000000000007,11.173,12.712,14.523999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,495,-0.25009999999999999,9.8676999999999992,0.12303,6.9329999999999998,7.7720000000000002,8.7420000000000009,9.8680000000000003,11.180999999999999,12.721,14.534000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,496,-0.25040000000000001,9.8745999999999992,0.12304,6.9370000000000003,7.7770000000000001,8.7479999999999993,9.875,11.189,12.73,14.545 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,497,-0.25069999999999998,9.8816000000000006,0.12304,6.9420000000000002,7.7830000000000004,8.7539999999999996,9.8819999999999997,11.196999999999999,12.739000000000001,14.555999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,498,-0.251,9.8885000000000005,0.12304,6.9470000000000001,7.7880000000000003,8.76,9.8879999999999999,11.205,12.747999999999999,14.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,499,-0.25130000000000002,9.8954000000000004,0.12304,6.952,7.7939999999999996,8.766,9.8949999999999996,11.212999999999999,12.757,14.577 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,500,-0.2515,9.9023000000000003,0.12304,6.9569999999999999,7.7990000000000004,8.7720000000000002,9.9019999999999992,11.221,12.766,14.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,501,-0.25180000000000002,9.9092000000000002,0.12304,6.9619999999999997,7.8049999999999997,8.7780000000000005,9.9090000000000007,11.228,12.775,14.598000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,502,-0.25209999999999999,9.9161000000000001,0.12304,6.9669999999999996,7.81,8.7850000000000001,9.9160000000000004,11.236000000000001,12.784000000000001,14.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,503,-0.25240000000000001,9.923,0.12304,6.9720000000000004,7.8159999999999998,8.7910000000000004,9.923,11.244,12.792999999999999,14.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,504,-0.25259999999999999,9.9298999999999999,0.12304,6.9770000000000003,7.8209999999999997,8.7970000000000006,9.93,11.252000000000001,12.802,14.629 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,505,-0.25290000000000001,9.9367999999999999,0.12304,6.9820000000000002,7.827,8.8030000000000008,9.9369999999999994,11.26,12.811,14.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,506,-0.25319999999999998,9.9436999999999998,0.12304,6.9870000000000001,7.8319999999999999,8.8089999999999993,9.9440000000000008,11.268000000000001,12.82,14.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,507,-0.2535,9.9505999999999997,0.12305000000000001,6.992,7.8369999999999997,8.8149999999999995,9.9510000000000005,11.276,12.829000000000001,14.661 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,508,-0.25369999999999998,9.9574999999999996,0.12305000000000001,6.9969999999999999,7.843,8.8209999999999997,9.9580000000000002,11.282999999999999,12.837999999999999,14.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,509,-0.254,9.9643999999999995,0.12305000000000001,7.0019999999999998,7.8479999999999999,8.827,9.9640000000000004,11.291,12.847,14.682 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,510,-0.25430000000000003,9.9712999999999994,0.12305000000000001,7.0069999999999997,7.8540000000000001,8.8330000000000002,9.9710000000000001,11.298999999999999,12.856,14.693 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,511,-0.2545,9.9781999999999993,0.12305000000000001,7.0119999999999996,7.859,8.84,9.9779999999999998,11.307,12.865,14.702999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,512,-0.25480000000000003,9.9850999999999992,0.12305000000000001,7.0170000000000003,7.8650000000000002,8.8460000000000001,9.9849999999999994,11.315,12.874000000000001,14.714 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,513,-0.25509999999999999,9.9920000000000009,0.12305000000000001,7.0220000000000002,7.87,8.8520000000000003,9.9920000000000009,11.323,12.884,14.724 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,514,-0.25530000000000003,9.9989000000000008,0.12305000000000001,7.0270000000000001,7.8760000000000003,8.8580000000000005,9.9990000000000006,11.331,12.893000000000001,14.734999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,515,-0.25559999999999999,10.005800000000001,0.12305000000000001,7.032,7.8810000000000002,8.8640000000000008,10.006,11.337999999999999,12.901999999999999,14.744999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,516,-0.25580000000000003,10.012700000000001,0.12305000000000001,7.0359999999999996,7.8869999999999996,8.8699999999999992,10.013,11.346,12.911,14.755000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,517,-0.25609999999999999,10.019600000000001,0.12305000000000001,7.0410000000000004,7.8920000000000003,8.8759999999999994,10.02,11.353999999999999,12.92,14.766 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,518,-0.25640000000000002,10.0265,0.12306,7.0460000000000003,7.8979999999999997,8.8819999999999997,10.026,11.362,12.929,14.776999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,519,-0.25659999999999999,10.0334,0.12306,7.0510000000000002,7.9029999999999996,8.8889999999999993,10.032999999999999,11.37,12.938000000000001,14.787000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,520,-0.25690000000000002,10.0402,0.12306,7.056,7.9089999999999998,8.8949999999999996,10.039999999999999,11.378,12.946999999999999,14.798 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,521,-0.2571,10.0471,0.12306,7.0609999999999999,7.9139999999999997,8.9009999999999998,10.047000000000001,11.385,12.956,14.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,522,-0.25740000000000002,10.054,0.12306,7.0659999999999998,7.92,8.907,10.054,11.393000000000001,12.965,14.819000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,523,-0.25769999999999998,10.0609,0.12306,7.0709999999999997,7.9249999999999998,8.9130000000000003,10.061,11.401,12.974,14.829000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,524,-0.25790000000000002,10.0678,0.12306,7.0759999999999996,7.931,8.9190000000000005,10.068,11.409000000000001,12.983000000000001,14.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,525,-0.25819999999999999,10.0746,0.12306,7.0810000000000004,7.9359999999999999,8.9250000000000007,10.074999999999999,11.417,12.992000000000001,14.85 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,526,-0.25840000000000002,10.0815,0.12306,7.0860000000000003,7.9409999999999998,8.9309999999999992,10.082000000000001,11.425000000000001,13.000999999999999,14.86 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,527,-0.25869999999999999,10.0884,0.12307,7.0910000000000002,7.9470000000000001,8.9369999999999994,10.087999999999999,11.432,13.01,14.871 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,528,-0.25890000000000002,10.0953,0.12307,7.0949999999999998,7.952,8.9429999999999996,10.095000000000001,11.44,13.019,14.882 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,529,-0.25919999999999999,10.1021,0.12307,7.1,7.9580000000000002,8.9489999999999998,10.102,11.448,13.028,14.891999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,530,-0.25940000000000002,10.109,0.12307,7.1050000000000004,7.9630000000000001,8.9559999999999995,10.109,11.456,13.037000000000001,14.903 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,531,-0.25969999999999999,10.1159,0.12307,7.11,7.9690000000000003,8.9619999999999997,10.116,11.464,13.045999999999999,14.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,532,-0.25990000000000002,10.1227,0.12307,7.1150000000000002,7.9740000000000002,8.968,10.122999999999999,11.471,13.055,14.923 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,533,-0.2601,10.1296,0.12307,7.12,7.98,8.9740000000000002,10.130000000000001,11.478999999999999,13.064,14.933999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,534,-0.26040000000000002,10.1365,0.12307,7.125,7.9850000000000003,8.98,10.135999999999999,11.487,13.073,14.944000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,535,-0.2606,10.1433,0.12307999999999999,7.13,7.99,8.9860000000000007,10.143000000000001,11.494999999999999,13.082000000000001,14.955 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,536,-0.26090000000000002,10.1502,0.12307999999999999,7.1349999999999998,7.9960000000000004,8.9920000000000009,10.15,11.503,13.090999999999999,14.965999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,537,-0.2611,10.157,0.12307999999999999,7.14,8.0009999999999994,8.9979999999999993,10.157,11.510999999999999,13.1,14.976000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,538,-0.26140000000000002,10.1639,0.12307999999999999,7.1449999999999996,8.0069999999999997,9.0039999999999996,10.164,11.518000000000001,13.109,14.986000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,539,-0.2616,10.1707,0.12307999999999999,7.149,8.0120000000000005,9.01,10.170999999999999,11.526,13.118,14.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,540,-0.26179999999999998,10.1776,0.12307999999999999,7.1539999999999999,8.0180000000000007,9.016,10.178000000000001,11.534000000000001,13.127000000000001,15.007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,541,-0.2621,10.1845,0.12307999999999999,7.1589999999999998,8.0229999999999997,9.0229999999999997,10.183999999999999,11.542,13.135999999999999,15.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,542,-0.26229999999999998,10.1913,0.12309,7.1639999999999997,8.0280000000000005,9.0289999999999999,10.191000000000001,11.55,13.145,15.028 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,543,-0.26250000000000001,10.1982,0.12309,7.1689999999999996,8.0340000000000007,9.0350000000000001,10.198,11.557,13.154,15.039 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,544,-0.26279999999999998,10.205,0.12309,7.1740000000000004,8.0389999999999997,9.0410000000000004,10.205,11.565,13.163,15.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,545,-0.26300000000000001,10.2119,0.12309,7.1790000000000003,8.0449999999999999,9.0470000000000006,10.212,11.573,13.172000000000001,15.058999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,546,-0.26319999999999999,10.2187,0.12309,7.1840000000000002,8.0500000000000007,9.0530000000000008,10.218999999999999,11.581,13.18,15.07 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,547,-0.26350000000000001,10.2255,0.12309,7.1890000000000001,8.0559999999999992,9.0589999999999993,10.226000000000001,11.589,13.189,15.08 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,548,-0.26369999999999999,10.2324,0.12309,7.194,8.0609999999999999,9.0649999999999995,10.231999999999999,11.596,13.198,15.090999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,549,-0.26390000000000002,10.2392,0.1231,7.1980000000000004,8.0660000000000007,9.0709999999999997,10.239000000000001,11.603999999999999,13.208,15.101000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,550,-0.26419999999999999,10.2461,0.1231,7.2030000000000003,8.0719999999999992,9.077,10.246,11.612,13.217000000000001,15.112 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,551,-0.26440000000000002,10.2529,0.1231,7.2080000000000002,8.077,9.0830000000000002,10.253,11.62,13.225,15.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,552,-0.2646,10.2597,0.1231,7.2130000000000001,8.0830000000000002,9.0890000000000004,10.26,11.628,13.234,15.132 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,553,-0.26490000000000002,10.2666,0.1231,7.218,8.0879999999999992,9.0950000000000006,10.266999999999999,11.635,13.243,15.143000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,554,-0.2651,10.273400000000001,0.1231,7.2229999999999999,8.093,9.1010000000000009,10.273,11.643000000000001,13.252000000000001,15.153 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,555,-0.26529999999999998,10.2803,0.12311,7.2270000000000003,8.0990000000000002,9.1069999999999993,10.28,11.651,13.260999999999999,15.164 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,556,-0.26550000000000001,10.287100000000001,0.12311,7.2320000000000002,8.1039999999999992,9.1129999999999995,10.287000000000001,11.659000000000001,13.27,15.173999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,557,-0.26579999999999998,10.293900000000001,0.12311,7.2370000000000001,8.11,9.1189999999999998,10.294,11.666,13.279,15.185 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,558,-0.26600000000000001,10.300800000000001,0.12311,7.242,8.1150000000000002,9.1259999999999994,10.301,11.673999999999999,13.288,15.195 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,559,-0.26619999999999999,10.307600000000001,0.12311,7.2469999999999999,8.1210000000000004,9.1319999999999997,10.308,11.682,13.297000000000001,15.205 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,560,-0.26640000000000003,10.314399999999999,0.12311,7.2519999999999998,8.1259999999999994,9.1379999999999999,10.314,11.69,13.305999999999999,15.215999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,561,-0.2666,10.321300000000001,0.12311999999999999,7.2569999999999997,8.1310000000000002,9.1440000000000001,10.321,11.698,13.315,15.227 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,562,-0.26690000000000003,10.328099999999999,0.12311999999999999,7.2619999999999996,8.1370000000000005,9.15,10.327999999999999,11.705,13.324,15.237 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,563,-0.2671,10.334899999999999,0.12311999999999999,7.266,8.1419999999999995,9.1560000000000006,10.335000000000001,11.712999999999999,13.333,15.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,564,-0.26729999999999998,10.341699999999999,0.12311999999999999,7.2709999999999999,8.1470000000000002,9.1620000000000008,10.342000000000001,11.721,13.342000000000001,15.257999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,565,-0.26750000000000002,10.348599999999999,0.12311999999999999,7.2759999999999998,8.1530000000000005,9.1679999999999993,10.349,11.728999999999999,13.351000000000001,15.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,566,-0.26769999999999999,10.355399999999999,0.12313,7.2809999999999997,8.1579999999999995,9.1739999999999995,10.355,11.737,13.36,15.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,567,-0.26790000000000003,10.3622,0.12313,7.2859999999999996,8.1639999999999997,9.18,10.362,11.744,13.369,15.289 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,568,-0.26819999999999999,10.369,0.12313,7.2910000000000004,8.1690000000000005,9.1859999999999999,10.369,11.752000000000001,13.378,15.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,569,-0.26840000000000003,10.3759,0.12313,7.2960000000000003,8.1750000000000007,9.1920000000000002,10.375999999999999,11.76,13.387,15.31 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,570,-0.26860000000000001,10.3827,0.12313,7.3010000000000002,8.18,9.1980000000000004,10.382999999999999,11.768000000000001,13.396000000000001,15.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,571,-0.26879999999999998,10.3895,0.12314,7.3049999999999997,8.1850000000000005,9.2040000000000006,10.39,11.775,13.404999999999999,15.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,572,-0.26900000000000002,10.3963,0.12314,7.31,8.1910000000000007,9.2100000000000009,10.396000000000001,11.782999999999999,13.414,15.340999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,573,-0.26919999999999999,10.4031,0.12314,7.3150000000000004,8.1959999999999997,9.2159999999999993,10.403,11.791,13.422000000000001,15.351000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,574,-0.26939999999999997,10.41,0.12314,7.32,8.2010000000000005,9.2219999999999995,10.41,11.798999999999999,13.430999999999999,15.362 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,575,-0.26960000000000001,10.4168,0.12314,7.3250000000000002,8.2070000000000007,9.2279999999999998,10.417,11.807,13.44,15.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,576,-0.26979999999999998,10.4236,0.12315,7.3289999999999997,8.2119999999999997,9.234,10.423999999999999,11.814,13.449,15.382999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,577,-0.27,10.430400000000001,0.12315,7.3339999999999996,8.218,9.24,10.43,11.821999999999999,13.458,15.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,578,-0.2702,10.437200000000001,0.12315,7.3390000000000004,8.2230000000000008,9.2460000000000004,10.436999999999999,11.83,13.467000000000001,15.403 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,579,-0.27050000000000002,10.444000000000001,0.12315,7.3440000000000003,8.2279999999999998,9.2520000000000007,10.444000000000001,11.837999999999999,13.476000000000001,15.414 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,580,-0.2707,10.450799999999999,0.12316000000000001,7.3490000000000002,8.234,9.2579999999999991,10.451000000000001,11.845000000000001,13.484999999999999,15.425000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,581,-0.27089999999999997,10.457700000000001,0.12316000000000001,7.3540000000000001,8.2390000000000008,9.2639999999999993,10.458,11.853,13.494,15.435 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,582,-0.27110000000000001,10.464499999999999,0.12316000000000001,7.359,8.2439999999999998,9.2710000000000008,10.464,11.861000000000001,13.503,15.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,583,-0.27129999999999999,10.471299999999999,0.12316000000000001,7.3630000000000004,8.25,9.2769999999999992,10.471,11.869,13.512,15.456 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,584,-0.27150000000000002,10.4781,0.12316000000000001,7.3680000000000003,8.2550000000000008,9.2829999999999995,10.478,11.875999999999999,13.521000000000001,15.465999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,585,-0.2717,10.4849,0.12317,7.3730000000000002,8.2609999999999992,9.2889999999999997,10.484999999999999,11.884,13.53,15.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,586,-0.27189999999999998,10.4917,0.12317,7.3780000000000001,8.266,9.2949999999999999,10.492000000000001,11.891999999999999,13.539,15.487 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,587,-0.27210000000000001,10.4985,0.12317,7.383,8.2710000000000008,9.3010000000000002,10.497999999999999,11.9,13.548,15.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,588,-0.27229999999999999,10.5053,0.12317,7.3879999999999999,8.2769999999999992,9.3070000000000004,10.505000000000001,11.907,13.557,15.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,589,-0.27250000000000002,10.5121,0.12318,7.3920000000000003,8.282,9.3130000000000006,10.512,11.914999999999999,13.566000000000001,15.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,590,-0.2727,10.5189,0.12318,7.3970000000000002,8.2870000000000008,9.3190000000000008,10.519,11.923,13.574999999999999,15.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,591,-0.27289999999999998,10.525700000000001,0.12318,7.4020000000000001,8.2929999999999993,9.3249999999999993,10.526,11.930999999999999,13.583,15.539 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,592,-0.27300000000000002,10.532500000000001,0.12318999999999999,7.407,8.298,9.3309999999999995,10.532,11.939,13.593,15.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,593,-0.2732,10.539300000000001,0.12318999999999999,7.4109999999999996,8.3030000000000008,9.3369999999999997,10.539,11.946,13.601000000000001,15.56 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,594,-0.27339999999999998,10.546099999999999,0.12318999999999999,7.4160000000000004,8.3089999999999993,9.343,10.545999999999999,11.954000000000001,13.61,15.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,595,-0.27360000000000001,10.552899999999999,0.12318999999999999,7.4210000000000003,8.3140000000000001,9.3490000000000002,10.553000000000001,11.962,13.619,15.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,596,-0.27379999999999999,10.559699999999999,0.1232,7.4260000000000002,8.3190000000000008,9.3550000000000004,10.56,11.97,13.628,15.590999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,597,-0.27400000000000002,10.5665,0.1232,7.431,8.3249999999999993,9.3610000000000007,10.566000000000001,11.977,13.637,15.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,598,-0.2742,10.5733,0.1232,7.4359999999999999,8.33,9.3670000000000009,10.573,11.984999999999999,13.646000000000001,15.612 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,599,-0.27439999999999998,10.5801,0.1232,7.4409999999999998,8.3360000000000003,9.3729999999999993,10.58,11.993,13.654999999999999,15.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,600,-0.27460000000000001,10.5869,0.12321,7.4450000000000003,8.3409999999999993,9.3789999999999996,10.587,12.000999999999999,13.664,15.632999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,601,-0.27479999999999999,10.5937,0.12321,7.45,8.3460000000000001,9.3849999999999998,10.593999999999999,12.007999999999999,13.673,15.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,602,-0.27500000000000002,10.6005,0.12321,7.4550000000000001,8.3520000000000003,9.391,10.6,12.016,13.682,15.654 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,603,-0.27510000000000001,10.6073,0.12322,7.46,8.3569999999999993,9.3970000000000002,10.606999999999999,12.023999999999999,13.691000000000001,15.664 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,604,-0.27529999999999999,10.614100000000001,0.12322,7.4640000000000004,8.3620000000000001,9.4030000000000005,10.614000000000001,12.032,13.7,15.673999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,605,-0.27550000000000002,10.620900000000001,0.12322,7.4690000000000003,8.3680000000000003,9.4090000000000007,10.621,12.039,13.709,15.685 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,606,-0.2757,10.627700000000001,0.12323000000000001,7.4740000000000002,8.3729999999999993,9.4149999999999991,10.628,12.047000000000001,13.718,15.696 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,607,-0.27589999999999998,10.634499999999999,0.12323000000000001,7.4790000000000001,8.3780000000000001,9.4209999999999994,10.634,12.055,13.727,15.706 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,608,-0.27610000000000001,10.641299999999999,0.12323000000000001,7.484,8.3840000000000003,9.4269999999999996,10.641,12.063000000000001,13.736000000000001,15.715999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,609,-0.27629999999999999,10.648099999999999,0.12324,7.4880000000000004,8.3889999999999993,9.4329999999999998,10.648,12.071,13.744999999999999,15.727 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,610,-0.27639999999999998,10.6549,0.12324,7.4930000000000003,8.3940000000000001,9.4390000000000001,10.654999999999999,12.077999999999999,13.754,15.737 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,611,-0.27660000000000001,10.6617,0.12324,7.4980000000000002,8.4,9.4450000000000003,10.662000000000001,12.086,13.762,15.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,612,-0.27679999999999999,10.6685,0.12325,7.5030000000000001,8.4049999999999994,9.4510000000000005,10.667999999999999,12.093999999999999,13.772,15.757999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,613,-0.27700000000000002,10.6753,0.12325,7.508,8.4109999999999996,9.4570000000000007,10.675000000000001,12.102,13.78,15.769 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,614,-0.2772,10.6821,0.12325,7.5119999999999996,8.4160000000000004,9.4629999999999992,10.682,12.109,13.789,15.779 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,615,-0.27729999999999999,10.6889,0.12325999999999999,7.5170000000000003,8.4209999999999994,9.4689999999999994,10.689,12.117000000000001,13.798,15.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,616,-0.27750000000000002,10.6957,0.12325999999999999,7.5220000000000002,8.4269999999999996,9.4749999999999996,10.696,12.125,13.807,15.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,617,-0.2777,10.702500000000001,0.12325999999999999,7.5270000000000001,8.4320000000000004,9.4809999999999999,10.702,12.132999999999999,13.816000000000001,15.81 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,618,-0.27789999999999998,10.709300000000001,0.12327,7.532,8.4369999999999994,9.4870000000000001,10.709,12.14,13.824999999999999,15.821 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,619,-0.27800000000000002,10.716100000000001,0.12327,7.5359999999999996,8.4429999999999996,9.4930000000000003,10.715999999999999,12.148,13.834,15.831 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,620,-0.2782,10.722899999999999,0.12327,7.5410000000000004,8.4480000000000004,9.4990000000000006,10.723000000000001,12.156000000000001,13.843,15.840999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,621,-0.27839999999999998,10.729699999999999,0.12328,7.5460000000000003,8.4529999999999994,9.5050000000000008,10.73,12.164,13.852,15.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,622,-0.27860000000000001,10.736499999999999,0.12328,7.5510000000000002,8.4589999999999996,9.5109999999999992,10.736000000000001,12.170999999999999,13.861000000000001,15.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,623,-0.2787,10.7433,0.12328,7.556,8.4640000000000004,9.5169999999999995,10.743,12.179,13.87,15.872999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,624,-0.27889999999999998,10.7501,0.12329,7.56,8.4689999999999994,9.5229999999999997,10.75,12.186999999999999,13.879,15.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,625,-0.27910000000000001,10.7569,0.12329,7.5650000000000004,8.4749999999999996,9.5289999999999999,10.757,12.195,13.888,15.894 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,626,-0.27929999999999999,10.7637,0.12330000000000001,7.57,8.48,9.5350000000000001,10.763999999999999,12.202999999999999,13.897,15.904999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,627,-0.27939999999999998,10.7705,0.12330000000000001,7.5750000000000002,8.4849999999999994,9.5410000000000004,10.77,12.21,13.906000000000001,15.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,628,-0.27960000000000002,10.7773,0.12330000000000001,7.5789999999999997,8.4909999999999997,9.5470000000000006,10.776999999999999,12.218,13.914999999999999,15.925000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,629,-0.27979999999999999,10.7841,0.12331,7.5839999999999996,8.4960000000000004,9.5530000000000008,10.784000000000001,12.226000000000001,13.923999999999999,15.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,630,-0.27989999999999998,10.790900000000001,0.12331,7.5890000000000004,8.5009999999999994,9.5589999999999993,10.791,12.234,13.933,15.946 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,631,-0.28010000000000002,10.797700000000001,0.12332,7.5940000000000003,8.5069999999999997,9.5649999999999995,10.798,12.242000000000001,13.942,15.957000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,632,-0.28029999999999999,10.804500000000001,0.12332,7.5990000000000002,8.5120000000000005,9.5709999999999997,10.804,12.249000000000001,13.951000000000001,15.967000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,633,-0.28039999999999998,10.811299999999999,0.12332,7.6029999999999998,8.5169999999999995,9.577,10.811,12.257,13.96,15.977 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,634,-0.28060000000000002,10.818099999999999,0.12333,7.6079999999999997,8.5229999999999997,9.5830000000000002,10.818,12.265000000000001,13.968999999999999,15.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,635,-0.28079999999999999,10.8249,0.12333,7.6130000000000004,8.5280000000000005,9.5890000000000004,10.824999999999999,12.273,13.978,15.999000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,636,-0.28089999999999998,10.8317,0.12334000000000001,7.6180000000000003,8.5329999999999995,9.5950000000000006,10.832000000000001,12.28,13.987,16.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,637,-0.28110000000000002,10.8385,0.12334000000000001,7.6219999999999999,8.5389999999999997,9.6010000000000009,10.837999999999999,12.288,13.996,16.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,638,-0.28129999999999999,10.8453,0.12335,7.6269999999999998,8.5440000000000005,9.6069999999999993,10.845000000000001,12.295999999999999,14.005000000000001,16.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,639,-0.28139999999999998,10.8521,0.12335,7.6319999999999997,8.5489999999999995,9.6129999999999995,10.852,12.304,14.013999999999999,16.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,640,-0.28160000000000002,10.8589,0.12336,7.6369999999999996,8.5549999999999997,9.6189999999999998,10.859,12.311999999999999,14.023,16.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,641,-0.28179999999999999,10.8657,0.12336,7.641,8.56,9.625,10.866,12.319000000000001,14.032,16.062000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,642,-0.28189999999999998,10.8725,0.12336,7.6459999999999999,8.5649999999999995,9.6310000000000002,10.872,12.327,14.041,16.071999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,643,-0.28210000000000002,10.879300000000001,0.12336999999999999,7.6509999999999998,8.5709999999999997,9.6370000000000005,10.879,12.335000000000001,14.05,16.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,644,-0.28220000000000001,10.886100000000001,0.12336999999999999,7.6559999999999997,8.5760000000000005,9.6430000000000007,10.885999999999999,12.343,14.058999999999999,16.093 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,645,-0.28239999999999998,10.892899999999999,0.12338,7.66,8.5809999999999995,9.6489999999999991,10.893000000000001,12.35,14.068,16.103999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,646,-0.28260000000000002,10.899699999999999,0.12338,7.665,8.5869999999999997,9.6549999999999994,10.9,12.358000000000001,14.077,16.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,647,-0.28270000000000001,10.906499999999999,0.12339,7.67,8.5920000000000005,9.6609999999999996,10.906000000000001,12.366,14.086,16.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,648,-0.28289999999999998,10.9133,0.12339,7.6749999999999998,8.5969999999999995,9.6669999999999998,10.913,12.374000000000001,14.095000000000001,16.135000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,649,-0.28299999999999997,10.920199999999999,0.1234,7.6790000000000003,8.6020000000000003,9.673,10.92,12.382,14.103999999999999,16.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,650,-0.28320000000000001,10.927,0.1234,7.6840000000000002,8.6080000000000005,9.6790000000000003,10.927,12.388999999999999,14.113,16.155999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,651,-0.28339999999999999,10.9338,0.12341000000000001,7.6890000000000001,8.6129999999999995,9.6850000000000005,10.933999999999999,12.397,14.122,16.167000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,652,-0.28349999999999997,10.9406,0.12341000000000001,7.694,8.6189999999999998,9.6910000000000007,10.941000000000001,12.404999999999999,14.131,16.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,653,-0.28370000000000001,10.9474,0.12342,7.6989999999999998,8.6240000000000006,9.6969999999999992,10.946999999999999,12.413,14.14,16.187999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,654,-0.2838,10.9542,0.12342,7.7030000000000003,8.6289999999999996,9.7029999999999994,10.954000000000001,12.420999999999999,14.148999999999999,16.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,655,-0.28399999999999997,10.961,0.12343,7.7080000000000002,8.6340000000000003,9.7089999999999996,10.961,12.428000000000001,14.157999999999999,16.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,656,-0.28410000000000002,10.9679,0.12343,7.7130000000000001,8.64,9.7149999999999999,10.968,12.436,14.167,16.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,657,-0.2843,10.9747,0.12343999999999999,7.718,8.6449999999999996,9.7210000000000001,10.975,12.444000000000001,14.176,16.231000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,658,-0.28439999999999999,10.9815,0.12343999999999999,7.7220000000000004,8.65,9.7270000000000003,10.981999999999999,12.452,14.185,16.241 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,659,-0.28460000000000002,10.988300000000001,0.12345,7.7270000000000003,8.6560000000000006,9.7330000000000005,10.988,12.46,14.194000000000001,16.251999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,660,-0.28470000000000001,10.995100000000001,0.12345,7.7320000000000002,8.6609999999999996,9.7390000000000008,10.994999999999999,12.467000000000001,14.202999999999999,16.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,661,-0.28489999999999999,11.001899999999999,0.12346,7.7370000000000001,8.6660000000000004,9.7449999999999992,11.002000000000001,12.475,14.212,16.273 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,662,-0.28499999999999998,11.008800000000001,0.12346,7.7409999999999997,8.6720000000000006,9.7509999999999994,11.009,12.483000000000001,14.221,16.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,663,-0.28520000000000001,11.015599999999999,0.12347,7.7460000000000004,8.6769999999999996,9.7569999999999997,11.016,12.491,14.23,16.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,664,-0.2853,11.022399999999999,0.12347,7.7510000000000003,8.6820000000000004,9.7629999999999999,11.022,12.499000000000001,14.239000000000001,16.303999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,665,-0.28549999999999998,11.029199999999999,0.12348000000000001,7.7560000000000002,8.6880000000000006,9.7690000000000001,11.029,12.507,14.247999999999999,16.315000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,666,-0.28560000000000002,11.036,0.12348000000000001,7.76,8.6929999999999996,9.7750000000000004,11.036,12.513999999999999,14.257,16.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,667,-0.2858,11.042899999999999,0.12349,7.7649999999999997,8.6980000000000004,9.7810000000000006,11.042999999999999,12.522,14.266999999999999,16.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,668,-0.28589999999999999,11.0497,0.1235,7.77,8.7040000000000006,9.7870000000000008,11.05,12.53,14.276,16.347000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,669,-0.28610000000000002,11.0565,0.1235,7.7750000000000004,8.7089999999999996,9.7929999999999993,11.055999999999999,12.538,14.285,16.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,670,-0.28620000000000001,11.0633,0.12350999999999999,7.7789999999999999,8.7140000000000004,9.7989999999999995,11.063000000000001,12.545999999999999,14.294,16.367999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,671,-0.28639999999999999,11.0702,0.12350999999999999,7.7839999999999998,8.7200000000000006,9.8049999999999997,11.07,12.554,14.303000000000001,16.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,672,-0.28649999999999998,11.077,0.12352,7.7889999999999997,8.7249999999999996,9.8109999999999999,11.077,12.561,14.311999999999999,16.388999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,673,-0.28660000000000002,11.0838,0.12352,7.7939999999999996,8.73,9.8170000000000002,11.084,12.569000000000001,14.321,16.399000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,674,-0.2868,11.0906,0.12353,7.798,8.7360000000000007,9.8230000000000004,11.090999999999999,12.577,14.33,16.41 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,675,-0.28689999999999999,11.0975,0.12353,7.8029999999999999,8.7409999999999997,9.8290000000000006,11.098000000000001,12.585000000000001,14.339,16.420000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,676,-0.28710000000000002,11.1043,0.12354,7.8079999999999998,8.7460000000000004,9.8350000000000009,11.103999999999999,12.593,14.348000000000001,16.431000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,677,-0.28720000000000001,11.1111,0.12354999999999999,7.8129999999999997,8.7509999999999994,9.8409999999999993,11.111000000000001,12.601000000000001,14.356999999999999,16.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,678,-0.28739999999999999,11.118,0.12354999999999999,7.8170000000000002,8.7569999999999997,9.8469999999999995,11.118,12.608000000000001,14.366,16.452999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,679,-0.28749999999999998,11.1248,0.12356,7.8220000000000001,8.7620000000000005,9.8529999999999998,11.125,12.616,14.375,16.463000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,680,-0.28760000000000002,11.131600000000001,0.12356,7.827,8.7680000000000007,9.859,11.132,12.624000000000001,14.384,16.474 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,681,-0.2878,11.138400000000001,0.12357,7.8319999999999999,8.7729999999999997,9.8650000000000002,11.138,12.632,14.393000000000001,16.484000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,682,-0.28789999999999999,11.145300000000001,0.12358,7.8360000000000003,8.7780000000000005,9.8710000000000004,11.145,12.64,14.403,16.495000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,683,-0.28810000000000002,11.152100000000001,0.12358,7.8410000000000002,8.7829999999999995,9.8770000000000007,11.151999999999999,12.648,14.412000000000001,16.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,684,-0.28820000000000001,11.158899999999999,0.12359000000000001,7.8460000000000001,8.7889999999999997,9.8829999999999991,11.159000000000001,12.654999999999999,14.420999999999999,16.515999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,685,-0.2883,11.165800000000001,0.12359000000000001,7.851,8.7940000000000005,9.8889999999999993,11.166,12.663,14.43,16.527000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,686,-0.28849999999999998,11.172599999999999,0.1236,7.8550000000000004,8.7989999999999995,9.8949999999999996,11.173,12.670999999999999,14.439,16.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,687,-0.28860000000000002,11.179500000000001,0.12361,7.86,8.8049999999999997,9.9009999999999998,11.18,12.679,14.448,16.547999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,688,-0.28870000000000001,11.186299999999999,0.12361,7.8650000000000002,8.81,9.907,11.186,12.686999999999999,14.457000000000001,16.559000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,689,-0.28889999999999999,11.193099999999999,0.12361999999999999,7.8689999999999998,8.8149999999999995,9.9130000000000003,11.193,12.695,14.465999999999999,16.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,690,-0.28899999999999998,11.2,0.12361999999999999,7.8739999999999997,8.8209999999999997,9.9190000000000005,11.2,12.702,14.475,16.579999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,691,-0.28910000000000002,11.206799999999999,0.12363,7.8789999999999996,8.8260000000000005,9.9250000000000007,11.207000000000001,12.71,14.484,16.591000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,692,-0.2893,11.213699999999999,0.12364,7.8840000000000003,8.8309999999999995,9.9309999999999992,11.214,12.718,14.494,16.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,693,-0.28939999999999999,11.220499999999999,0.12364,7.8890000000000002,8.8369999999999997,9.9369999999999994,11.22,12.726000000000001,14.502000000000001,16.611999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,694,-0.28949999999999998,11.2273,0.12365,7.8929999999999998,8.8420000000000005,9.9429999999999996,11.227,12.734,14.512,16.623000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,695,-0.28970000000000001,11.2342,0.12366000000000001,7.8979999999999997,8.8469999999999995,9.9489999999999998,11.234,12.742000000000001,14.521000000000001,16.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,696,-0.2898,11.241,0.12366000000000001,7.9029999999999996,8.8529999999999998,9.9550000000000001,11.241,12.75,14.53,16.643999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,697,-0.28989999999999999,11.2479,0.12367,7.907,8.8580000000000005,9.9610000000000003,11.247999999999999,12.757999999999999,14.539,16.655000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,698,-0.29010000000000002,11.2547,0.12367,7.9119999999999999,8.8629999999999995,9.9670000000000005,11.255000000000001,12.765000000000001,14.548,16.664999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,699,-0.29020000000000001,11.2616,0.12368,7.9169999999999998,8.8689999999999998,9.9730000000000008,11.262,12.773,14.557,16.675999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,700,-0.2903,11.2684,0.12368999999999999,7.9219999999999997,8.8740000000000006,9.9789999999999992,11.268000000000001,12.781000000000001,14.566000000000001,16.687000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,701,-0.29049999999999998,11.2753,0.12368999999999999,7.9269999999999996,8.8789999999999996,9.9849999999999994,11.275,12.789,14.574999999999999,16.696999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,702,-0.29060000000000002,11.2821,0.1237,7.931,8.8840000000000003,9.9909999999999997,11.282,12.797000000000001,14.585000000000001,16.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,703,-0.29070000000000001,11.2889,0.12371,7.9359999999999999,8.89,9.9969999999999999,11.289,12.805,14.593999999999999,16.719000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,704,-0.29089999999999999,11.2958,0.12371,7.9409999999999998,8.8949999999999996,10.003,11.295999999999999,12.813000000000001,14.603,16.728999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,705,-0.29099999999999998,11.3026,0.12372,7.9450000000000003,8.9,10.009,11.303000000000001,12.82,14.612,16.739999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,706,-0.29110000000000003,11.3095,0.12373000000000001,7.95,8.9060000000000006,10.015000000000001,11.31,12.827999999999999,14.621,16.751000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,707,-0.29120000000000001,11.3163,0.12373000000000001,7.9550000000000001,8.9109999999999996,10.021000000000001,11.316000000000001,12.836,14.63,16.760999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,708,-0.29139999999999999,11.3232,0.12374,7.96,8.9160000000000004,10.026999999999999,11.323,12.843999999999999,14.638999999999999,16.771999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,709,-0.29149999999999998,11.33,0.12375,7.9640000000000004,8.9220000000000006,10.032999999999999,11.33,12.852,14.648,16.783000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,710,-0.29160000000000003,11.3369,0.12375,7.9690000000000003,8.9269999999999996,10.039,11.337,12.86,14.657,16.792999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,711,-0.29170000000000001,11.3438,0.12376,7.9740000000000002,8.9320000000000004,10.045,11.343999999999999,12.868,14.667,16.803999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,712,-0.29189999999999999,11.3506,0.12377000000000001,7.9779999999999998,8.9380000000000006,10.051,11.351000000000001,12.875999999999999,14.676,16.815000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,713,-0.29199999999999998,11.3575,0.12377000000000001,7.9829999999999997,8.9429999999999996,10.057,11.358000000000001,12.882999999999999,14.685,16.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,714,-0.29210000000000003,11.3643,0.12378,7.9880000000000004,8.9480000000000004,10.063000000000001,11.364000000000001,12.891,14.694000000000001,16.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,715,-0.29220000000000002,11.3712,0.12379,7.9930000000000003,8.9540000000000006,10.069000000000001,11.371,12.898999999999999,14.702999999999999,16.847000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,716,-0.29239999999999999,11.378,0.12379,7.9969999999999999,8.9589999999999996,10.074999999999999,11.378,12.907,14.712,16.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,717,-0.29249999999999998,11.3849,0.12379999999999999,8.0020000000000007,8.9640000000000004,10.081,11.385,12.914999999999999,14.722,16.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,718,-0.29260000000000003,11.3917,0.12381,8.0069999999999997,8.9689999999999994,10.087,11.391999999999999,12.923,14.731,16.879000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,719,-0.29270000000000002,11.3986,0.12382,8.0109999999999992,8.9749999999999996,10.093,11.398999999999999,12.930999999999999,14.74,16.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,720,-0.2928,11.4055,0.12382,8.016,8.98,10.099,11.406000000000001,12.939,14.749000000000001,16.901 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,721,-0.29299999999999998,11.4123,0.12383,8.0210000000000008,8.9849999999999994,10.105,11.412000000000001,12.946,14.757999999999999,16.911999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,722,-0.29310000000000003,11.4192,0.12384000000000001,8.0259999999999998,8.9909999999999997,10.111000000000001,11.419,12.954000000000001,14.766999999999999,16.922000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,723,-0.29320000000000002,11.426,0.12384000000000001,8.0310000000000006,8.9960000000000004,10.117000000000001,11.426,12.962,14.776,16.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,724,-0.29330000000000001,11.4329,0.12385,8.0350000000000001,9.0009999999999994,10.122999999999999,11.433,12.97,14.786,16.943999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,725,-0.29339999999999999,11.4397,0.12386,8.0399999999999991,9.0069999999999997,10.129,11.44,12.978,14.795,16.954000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,726,-0.29360000000000003,11.4466,0.12386999999999999,8.0449999999999999,9.0120000000000005,10.135,11.446999999999999,12.986000000000001,14.804,16.965 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,727,-0.29370000000000002,11.4535,0.12386999999999999,8.0489999999999995,9.0169999999999995,10.141,11.454000000000001,12.994,14.813000000000001,16.975999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,728,-0.29380000000000001,11.4603,0.12388,8.0540000000000003,9.0229999999999997,10.147,11.46,13.002000000000001,14.821999999999999,16.986999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,729,-0.29389999999999999,11.4672,0.12389,8.0589999999999993,9.0280000000000005,10.153,11.467000000000001,13.01,14.832000000000001,16.998000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,730,-0.29399999999999998,11.4741,0.12389,8.0640000000000001,9.0329999999999995,10.159000000000001,11.474,13.018000000000001,14.840999999999999,17.007999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,731,-0.29420000000000002,11.4809,0.1239,8.0679999999999996,9.0389999999999997,10.164999999999999,11.481,13.025,14.85,17.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,732,-0.29430000000000001,11.4878,0.12391000000000001,8.0730000000000004,9.0440000000000005,10.170999999999999,11.488,13.032999999999999,14.859,17.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,733,-0.2944,11.4946,0.12392,8.0779999999999994,9.0489999999999995,10.177,11.494999999999999,13.041,14.868,17.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,734,-0.29449999999999998,11.5015,0.12392,8.0820000000000007,9.0549999999999997,10.183,11.502000000000001,13.048999999999999,14.877000000000001,17.050999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,735,-0.29459999999999997,11.5084,0.12393,8.0869999999999997,9.06,10.189,11.507999999999999,13.057,14.885999999999999,17.062000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,736,-0.29470000000000002,11.5152,0.12393999999999999,8.0920000000000005,9.0649999999999995,10.195,11.515000000000001,13.065,14.896000000000001,17.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,737,-0.29480000000000001,11.5221,0.12395,8.0960000000000001,9.07,10.201000000000001,11.522,13.073,14.904999999999999,17.084 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,738,-0.29499999999999998,11.529,0.12395,8.1010000000000009,9.0760000000000005,10.208,11.529,13.081,14.914,17.094000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,739,-0.29509999999999997,11.5358,0.12396,8.1059999999999999,9.0809999999999995,10.212999999999999,11.536,13.089,14.923,17.105 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,740,-0.29520000000000002,11.5427,0.12397,8.1110000000000007,9.0860000000000003,10.220000000000001,11.542999999999999,13.097,14.932,17.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,741,-0.29530000000000001,11.5496,0.12398000000000001,8.1150000000000002,9.0920000000000005,10.226000000000001,11.55,13.105,14.942,17.126999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,742,-0.2954,11.5564,0.12399,8.1199999999999992,9.0969999999999995,10.231,11.555999999999999,13.112,14.951000000000001,17.138000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,743,-0.29549999999999998,11.5633,0.12399,8.125,9.1020000000000003,10.238,11.563000000000001,13.12,14.96,17.148 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,744,-0.29559999999999997,11.5702,0.124,8.1300000000000008,9.1080000000000005,10.244,11.57,13.128,14.968999999999999,17.158999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,745,-0.29570000000000002,11.577,0.12401,8.1340000000000003,9.1129999999999995,10.25,11.577,13.135999999999999,14.978,17.170000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,746,-0.2959,11.5839,0.12402000000000001,8.1389999999999993,9.1180000000000003,10.256,11.584,13.144,14.988,17.181000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,747,-0.29599999999999999,11.5907,0.12402000000000001,8.1440000000000001,9.1229999999999993,10.262,11.590999999999999,13.151999999999999,14.997,17.190999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,748,-0.29609999999999997,11.5976,0.12403,8.1479999999999997,9.1289999999999996,10.268000000000001,11.598000000000001,13.16,15.006,17.202000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,749,-0.29620000000000002,11.6045,0.12404,8.1530000000000005,9.1340000000000003,10.273999999999999,11.603999999999999,13.167999999999999,15.015000000000001,17.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,750,-0.29630000000000001,11.6113,0.12404999999999999,8.1579999999999995,9.1389999999999993,10.28,11.611000000000001,13.176,15.023999999999999,17.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,751,-0.2964,11.6182,0.12406,8.1620000000000008,9.1440000000000001,10.286,11.618,13.183999999999999,15.034000000000001,17.234999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,752,-0.29649999999999999,11.6251,0.12406,8.1669999999999998,9.15,10.292,11.625,13.191000000000001,15.042999999999999,17.245000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,753,-0.29659999999999997,11.6319,0.12407,8.1720000000000006,9.1549999999999994,10.298,11.632,13.199,15.052,17.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,754,-0.29670000000000002,11.6388,0.12408,8.1760000000000002,9.16,10.304,11.638999999999999,13.207000000000001,15.061,17.266999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,755,-0.29680000000000001,11.6456,0.12409000000000001,8.1809999999999992,9.1660000000000004,10.31,11.646000000000001,13.215,15.07,17.277999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,756,-0.2969,11.6525,0.1241,8.1859999999999999,9.1709999999999994,10.316000000000001,11.651999999999999,13.223000000000001,15.08,17.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,757,-0.29699999999999999,11.6594,0.1241,8.1910000000000007,9.1760000000000002,10.321999999999999,11.659000000000001,13.231,15.089,17.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,758,-0.29720000000000002,11.6662,0.12411,8.1950000000000003,9.1820000000000004,10.327999999999999,11.666,13.239000000000001,15.098000000000001,17.309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,759,-0.29730000000000001,11.6731,0.12411999999999999,8.1999999999999993,9.1869999999999994,10.334,11.673,13.247,15.106999999999999,17.321000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,760,-0.2974,11.6799,0.12413,8.2050000000000001,9.1920000000000002,10.34,11.68,13.255000000000001,15.116,17.332000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,761,-0.29749999999999999,11.6868,0.12414,8.2089999999999996,9.1969999999999992,10.346,11.686999999999999,13.263,15.125999999999999,17.343 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,762,-0.29759999999999998,11.6937,0.12415,8.2140000000000004,9.2029999999999994,10.352,11.694000000000001,13.271000000000001,15.135,17.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,763,-0.29770000000000002,11.7005,0.12415,8.2189999999999994,9.2080000000000002,10.358000000000001,11.7,13.278,15.144,17.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,764,-0.29780000000000001,11.7074,0.12416000000000001,8.2230000000000008,9.2129999999999992,10.364000000000001,11.707000000000001,13.286,15.153,17.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,765,-0.2979,11.7142,0.12417,8.2279999999999998,9.2189999999999994,10.37,11.714,13.294,15.162000000000001,17.385999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,766,-0.29799999999999999,11.7211,0.12418,8.2330000000000005,9.2240000000000002,10.375999999999999,11.721,13.302,15.172000000000001,17.396999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,767,-0.29809999999999998,11.7279,0.12418999999999999,8.2370000000000001,9.2289999999999992,10.381,11.728,13.31,15.180999999999999,17.408000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,768,-0.29820000000000002,11.7348,0.1242,8.2420000000000009,9.234,10.388,11.734999999999999,13.318,15.19,17.417999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,769,-0.29830000000000001,11.7416,0.12421,8.2469999999999999,9.24,10.393000000000001,11.742000000000001,13.326000000000001,15.199,17.428999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,770,-0.2984,11.7485,0.12421,8.2509999999999994,9.2449999999999992,10.4,11.747999999999999,13.334,15.208,17.440000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,771,-0.29849999999999999,11.7553,0.12422,8.2560000000000002,9.25,10.404999999999999,11.755000000000001,13.342000000000001,15.217000000000001,17.451000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,772,-0.29859999999999998,11.7622,0.12422999999999999,8.2609999999999992,9.2550000000000008,10.411,11.762,13.35,15.227,17.460999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,773,-0.29870000000000002,11.769,0.12424,8.2650000000000006,9.2609999999999992,10.417,11.769,13.356999999999999,15.236000000000001,17.472000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,774,-0.29880000000000001,11.7759,0.12425,8.27,9.266,10.423,11.776,13.365,15.244999999999999,17.483000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,775,-0.2989,11.7827,0.12426,8.2750000000000004,9.2710000000000008,10.429,11.782999999999999,13.372999999999999,15.254,17.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,776,-0.29899999999999999,11.7896,0.12427000000000001,8.2789999999999999,9.2759999999999998,10.435,11.79,13.381,15.263999999999999,17.504999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,777,-0.29909999999999998,11.7964,0.12428,8.2840000000000007,9.282,10.441000000000001,11.795999999999999,13.388999999999999,15.273,17.515999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,778,-0.29920000000000002,11.8033,0.12429,8.2889999999999997,9.2870000000000008,10.446999999999999,11.803000000000001,13.397,15.282,17.527000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,779,-0.29930000000000001,11.8101,0.12429,8.2929999999999993,9.2919999999999998,10.452999999999999,11.81,13.404999999999999,15.291,17.536999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,780,-0.2994,11.817,0.12429999999999999,8.298,9.298,10.459,11.817,13.413,15.3,17.547999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,781,-0.29949999999999999,11.8238,0.12431,8.3030000000000008,9.3030000000000008,10.465,11.824,13.420999999999999,15.31,17.559000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,782,-0.29959999999999998,11.8307,0.12432,8.3070000000000004,9.3079999999999998,10.471,11.831,13.429,15.319000000000001,17.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,783,-0.29970000000000002,11.8375,0.12433,8.3119999999999994,9.3130000000000006,10.477,11.837999999999999,13.436999999999999,15.327999999999999,17.581 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,784,-0.29980000000000001,11.8443,0.12434000000000001,8.3170000000000002,9.3179999999999996,10.483000000000001,11.843999999999999,13.444000000000001,15.337,17.591999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,785,-0.2999,11.8512,0.12435,8.3209999999999997,9.3239999999999998,10.489000000000001,11.851000000000001,13.452,15.347,17.603000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,786,-0.3,11.858000000000001,0.12436,8.3260000000000005,9.3290000000000006,10.494999999999999,11.858000000000001,13.46,15.356,17.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,787,-0.30009999999999998,11.864800000000001,0.12436999999999999,8.33,9.3339999999999996,10.500999999999999,11.865,13.468,15.365,17.623999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,788,-0.30020000000000002,11.871700000000001,0.12438,8.3350000000000009,9.3390000000000004,10.507,11.872,13.476000000000001,15.374000000000001,17.635000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,789,-0.30030000000000001,11.878500000000001,0.12439,8.34,9.3450000000000006,10.513,11.878,13.484,15.382999999999999,17.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,790,-0.3004,11.885300000000001,0.1244,8.3439999999999994,9.35,10.519,11.885,13.492000000000001,15.393000000000001,17.657 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,791,-0.30049999999999999,11.892200000000001,0.12441000000000001,8.3490000000000002,9.3550000000000004,10.525,11.891999999999999,13.5,15.401999999999999,17.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,792,-0.30059999999999998,11.898999999999999,0.12441000000000001,8.3539999999999992,9.3610000000000007,10.531000000000001,11.898999999999999,13.507999999999999,15.411,17.678000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,793,-0.30070000000000002,11.905799999999999,0.12442,8.3580000000000005,9.3659999999999997,10.537000000000001,11.906000000000001,13.515000000000001,15.42,17.689 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,794,-0.30070000000000002,11.912599999999999,0.12443,8.3629999999999995,9.3710000000000004,10.542999999999999,11.913,13.523,15.429,17.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,795,-0.30080000000000001,11.9194,0.12444,8.3680000000000003,9.3759999999999994,10.548999999999999,11.919,13.531000000000001,15.438000000000001,17.710999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,796,-0.3009,11.926299999999999,0.12445000000000001,8.3719999999999999,9.3810000000000002,10.555,11.926,13.539,15.448,17.722000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,797,-0.30099999999999999,11.9331,0.12446,8.3770000000000007,9.3870000000000005,10.561,11.933,13.547000000000001,15.457000000000001,17.731999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,798,-0.30109999999999998,11.9399,0.12447,8.3810000000000002,9.3919999999999995,10.567,11.94,13.555,15.465999999999999,17.742999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,799,-0.30120000000000002,11.9467,0.12447999999999999,8.3859999999999992,9.3970000000000002,10.571999999999999,11.946999999999999,13.563000000000001,15.475,17.754000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,800,-0.30130000000000001,11.9535,0.12449,8.391,9.4019999999999992,10.577999999999999,11.954000000000001,13.571,15.484,17.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,801,-0.3014,11.9603,0.1245,8.3949999999999996,9.407,10.584,11.96,13.579000000000001,15.494,17.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,802,-0.30149999999999999,11.9671,0.12451,8.4,9.4130000000000003,10.59,11.967000000000001,13.586,15.503,17.786999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,803,-0.30159999999999998,11.9739,0.12452000000000001,8.4039999999999999,9.4179999999999993,10.596,11.974,13.593999999999999,15.512,17.797999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,804,-0.30170000000000002,11.9808,0.12453,8.4090000000000007,9.423,10.602,11.981,13.602,15.521000000000001,17.809000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,805,-0.30180000000000001,11.9876,0.12454,8.4139999999999997,9.4280000000000008,10.608000000000001,11.988,13.61,15.531000000000001,17.818999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,806,-0.3019,11.994400000000001,0.12454999999999999,8.4179999999999993,9.4329999999999998,10.614000000000001,11.994,13.618,15.54,17.829999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,807,-0.3019,12.001099999999999,0.12456,8.423,9.4390000000000001,10.62,12.000999999999999,13.625999999999999,15.548999999999999,17.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,808,-0.30199999999999999,12.007899999999999,0.12457,8.4269999999999996,9.4440000000000008,10.625999999999999,12.007999999999999,13.634,15.558,17.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,809,-0.30209999999999998,12.014699999999999,0.12458,8.4320000000000004,9.4489999999999998,10.632,12.015000000000001,13.641,15.567,17.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,810,-0.30220000000000002,12.0215,0.12459000000000001,8.4369999999999994,9.4540000000000006,10.638,12.022,13.648999999999999,15.576000000000001,17.873000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,811,-0.30230000000000001,12.0283,0.1246,8.4410000000000007,9.4589999999999996,10.644,12.028,13.657,15.586,17.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,812,-0.3024,12.0351,0.12461,8.4459999999999997,9.4649999999999999,10.648999999999999,12.035,13.664999999999999,15.595000000000001,17.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,813,-0.30249999999999999,12.0419,0.12461999999999999,8.4499999999999993,9.4700000000000006,10.654999999999999,12.042,13.673,15.603999999999999,17.905999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,814,-0.30259999999999998,12.0487,0.12463,8.4550000000000001,9.4749999999999996,10.661,12.048999999999999,13.680999999999999,15.613,17.917000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,815,-0.30270000000000002,12.055400000000001,0.12465,8.4589999999999996,9.48,10.667,12.055,13.689,15.622999999999999,17.928000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,816,-0.30270000000000002,12.062200000000001,0.12466000000000001,8.4640000000000004,9.4849999999999994,10.673,12.061999999999999,13.696999999999999,15.632,17.939 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,817,-0.30280000000000001,12.069000000000001,0.12467,8.468,9.49,10.679,12.069000000000001,13.705,15.641,17.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,818,-0.3029,12.075799999999999,0.12468,8.4730000000000008,9.4949999999999992,10.685,12.076000000000001,13.712,15.65,17.960999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,819,-0.30299999999999999,12.0825,0.12469,8.4770000000000003,9.5009999999999994,10.691000000000001,12.082000000000001,13.72,15.659000000000001,17.971 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,820,-0.30309999999999998,12.0893,0.12470000000000001,8.4819999999999993,9.5060000000000002,10.696999999999999,12.089,13.728,15.667999999999999,17.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,821,-0.30320000000000003,12.0961,0.12471,8.4870000000000001,9.5109999999999992,10.702,12.096,13.736000000000001,15.678000000000001,17.992999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,822,-0.30330000000000001,12.1028,0.12472,8.4909999999999997,9.516,10.708,12.103,13.744,15.686999999999999,18.004000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,823,-0.30330000000000001,12.1096,0.12472999999999999,8.4960000000000004,9.5210000000000008,10.714,12.11,13.752000000000001,15.696,18.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,824,-0.3034,12.116300000000001,0.12474,8.5,9.5259999999999998,10.72,12.116,13.759,15.705,18.024999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,825,-0.30349999999999999,12.123100000000001,0.12475,8.5050000000000008,9.532,10.726000000000001,12.122999999999999,13.766999999999999,15.714,18.036000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,826,-0.30359999999999998,12.129799999999999,0.12476,8.5090000000000003,9.5370000000000008,10.731999999999999,12.13,13.775,15.723000000000001,18.047000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,827,-0.30370000000000003,12.1366,0.12477000000000001,8.5139999999999993,9.5419999999999998,10.738,12.137,13.782999999999999,15.731999999999999,18.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,828,-0.30380000000000001,12.1433,0.12479,8.5180000000000007,9.5470000000000006,10.743,12.143000000000001,13.791,15.742000000000001,18.068999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,829,-0.3039,12.15,0.12479999999999999,8.5229999999999997,9.5519999999999996,10.749000000000001,12.15,13.798,15.750999999999999,18.079999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,830,-0.3039,12.1568,0.12481,8.5269999999999992,9.5570000000000004,10.755000000000001,12.157,13.805999999999999,15.76,18.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,831,-0.30399999999999999,12.163500000000001,0.12482,8.532,9.5619999999999994,10.760999999999999,12.164,13.814,15.769,18.100999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,832,-0.30409999999999998,12.170199999999999,0.12483,8.5359999999999996,9.5670000000000002,10.766999999999999,12.17,13.821999999999999,15.778,18.111999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,833,-0.30420000000000003,12.177,0.12484000000000001,8.5410000000000004,9.5730000000000004,10.773,12.177,13.83,15.788,18.123000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,834,-0.30430000000000001,12.1837,0.12485,8.5449999999999999,9.5779999999999994,10.779,12.183999999999999,13.837999999999999,15.797000000000001,18.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,835,-0.3044,12.1904,0.12486,8.5500000000000007,9.5830000000000002,10.784000000000001,12.19,13.845000000000001,15.805999999999999,18.143999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,836,-0.3044,12.197100000000001,0.12486999999999999,8.5540000000000003,9.5879999999999992,10.79,12.196999999999999,13.853,15.815,18.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,837,-0.30449999999999999,12.203900000000001,0.12489,8.5589999999999993,9.593,10.795999999999999,12.204000000000001,13.861000000000001,15.824,18.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,838,-0.30459999999999998,12.210599999999999,0.1249,8.5630000000000006,9.5980000000000008,10.802,12.211,13.869,15.833,18.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,839,-0.30470000000000003,12.2173,0.12490999999999999,8.5679999999999996,9.6029999999999998,10.808,12.217000000000001,13.877000000000001,15.842000000000001,18.187999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,840,-0.30480000000000002,12.224,0.12492,8.5719999999999992,9.6080000000000005,10.814,12.224,13.884,15.852,18.199000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,841,-0.30480000000000002,12.230700000000001,0.12493,8.577,9.6129999999999995,10.819000000000001,12.231,13.891999999999999,15.861000000000001,18.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,842,-0.3049,12.237399999999999,0.12494,8.5809999999999995,9.6180000000000003,10.824999999999999,12.237,13.9,15.87,18.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,843,-0.30499999999999999,12.2441,0.12495000000000001,8.5860000000000003,9.6240000000000006,10.831,12.244,13.907999999999999,15.879,18.231000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,844,-0.30509999999999998,12.2508,0.12497,8.59,9.6280000000000001,10.837,12.250999999999999,13.916,15.888,18.242000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,845,-0.30520000000000003,12.2575,0.12497999999999999,8.5950000000000006,9.6340000000000003,10.843,12.257999999999999,13.923,15.897,18.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,846,-0.30520000000000003,12.264200000000001,0.12499,8.5990000000000002,9.6389999999999993,10.848000000000001,12.263999999999999,13.930999999999999,15.906000000000001,18.263000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,847,-0.30530000000000002,12.270899999999999,0.125,8.6039999999999992,9.6440000000000001,10.853999999999999,12.271000000000001,13.939,15.914999999999999,18.274000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,848,-0.3054,12.2775,0.12501000000000001,8.6080000000000005,9.6489999999999991,10.86,12.278,13.946,15.923999999999999,18.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,849,-0.30549999999999999,12.2842,0.12503,8.6120000000000001,9.6539999999999999,10.866,12.284000000000001,13.954000000000001,15.933999999999999,18.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,850,-0.30559999999999998,12.290900000000001,0.12504000000000001,8.6170000000000009,9.6590000000000007,10.872,12.291,13.962,15.943,18.306999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,851,-0.30559999999999998,12.297599999999999,0.12504999999999999,8.6210000000000004,9.6639999999999997,10.877000000000001,12.298,13.97,15.952,18.318000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,852,-0.30570000000000003,12.3042,0.12506,8.6259999999999994,9.6690000000000005,10.882999999999999,12.304,13.978,15.961,18.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,853,-0.30580000000000002,12.3109,0.12506999999999999,8.6300000000000008,9.6739999999999995,10.888999999999999,12.311,13.984999999999999,15.97,18.338999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,854,-0.30590000000000001,12.317600000000001,0.12509000000000001,8.6349999999999998,9.6790000000000003,10.895,12.318,13.993,15.978999999999999,18.350000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,855,-0.30590000000000001,12.324199999999999,0.12509999999999999,8.6389999999999993,9.6839999999999993,10.9,12.324,14.000999999999999,15.988,18.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,856,-0.30599999999999999,12.3309,0.12511,8.6440000000000001,9.6890000000000001,10.906000000000001,12.331,14.009,15.997,18.370999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,857,-0.30609999999999998,12.3375,0.12512000000000001,8.6479999999999997,9.6940000000000008,10.912000000000001,12.337999999999999,14.016,16.006,18.382000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,858,-0.30620000000000003,12.344200000000001,0.12512999999999999,8.6519999999999992,9.6989999999999998,10.917999999999999,12.343999999999999,14.023999999999999,16.015000000000001,18.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,859,-0.30630000000000002,12.3508,0.12515000000000001,8.657,9.7040000000000006,10.923,12.351000000000001,14.032,16.024999999999999,18.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,860,-0.30630000000000002,12.3575,0.12515999999999999,8.6609999999999996,9.7089999999999996,10.929,12.358000000000001,14.04,16.033999999999999,18.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,861,-0.30640000000000001,12.364100000000001,0.12517,8.6660000000000004,9.7140000000000004,10.935,12.364000000000001,14.047000000000001,16.042999999999999,18.425000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,862,-0.30649999999999999,12.370699999999999,0.12518000000000001,8.67,9.7189999999999994,10.941000000000001,12.371,14.055,16.052,18.436 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,863,-0.30659999999999998,12.3774,0.12520000000000001,8.6739999999999995,9.7240000000000002,10.946,12.377000000000001,14.063000000000001,16.061,18.446999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,864,-0.30659999999999998,12.384,0.12520999999999999,8.6790000000000003,9.7289999999999992,10.952,12.384,14.071,16.07,18.457999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,865,-0.30669999999999997,12.390599999999999,0.12522,8.6829999999999998,9.734,10.958,12.391,14.077999999999999,16.079000000000001,18.468 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,866,-0.30680000000000002,12.3973,0.12523000000000001,8.6880000000000006,9.7390000000000008,10.964,12.397,14.086,16.088000000000001,18.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,867,-0.30690000000000001,12.4039,0.12525,8.6920000000000002,9.7439999999999998,10.968999999999999,12.404,14.093999999999999,16.097000000000001,18.489999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,868,-0.30690000000000001,12.410500000000001,0.12526000000000001,8.6959999999999997,9.7490000000000006,10.975,12.41,14.101000000000001,16.106000000000002,18.501000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,869,-0.307,12.4171,0.12526999999999999,8.7010000000000005,9.7539999999999996,10.981,12.417,14.109,16.114999999999998,18.510999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,870,-0.30709999999999998,12.4237,0.12528,8.7050000000000001,9.7590000000000003,10.987,12.423999999999999,14.117000000000001,16.123999999999999,18.521999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,871,-0.30719999999999997,12.430300000000001,0.12529999999999999,8.7089999999999996,9.7639999999999993,10.992000000000001,12.43,14.125,16.134,18.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,872,-0.30719999999999997,12.4369,0.12531,8.7140000000000004,9.7690000000000001,10.997999999999999,12.436999999999999,14.132,16.143000000000001,18.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,873,-0.30730000000000002,12.4435,0.12531999999999999,8.718,9.7739999999999991,11.004,12.444000000000001,14.14,16.152000000000001,18.553999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,874,-0.30740000000000001,12.450100000000001,0.12533,8.7230000000000008,9.7789999999999999,11.009,12.45,14.147,16.161000000000001,18.565000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,875,-0.30740000000000001,12.4567,0.12534999999999999,8.7270000000000003,9.7840000000000007,11.015000000000001,12.457000000000001,14.154999999999999,16.170000000000002,18.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,876,-0.3075,12.4633,0.12536,8.7309999999999999,9.7889999999999997,11.021000000000001,12.462999999999999,14.163,16.178999999999998,18.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,877,-0.30759999999999998,12.469900000000001,0.12537000000000001,8.7360000000000007,9.7940000000000005,11.026999999999999,12.47,14.170999999999999,16.187999999999999,18.597000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,878,-0.30769999999999997,12.4765,0.12539,8.74,9.7989999999999995,11.032,12.476000000000001,14.178000000000001,16.196999999999999,18.609000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,879,-0.30769999999999997,12.4831,0.12540000000000001,8.7439999999999998,9.8040000000000003,11.038,12.483000000000001,14.186,16.206,18.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,880,-0.30780000000000002,12.489599999999999,0.12540999999999999,8.7490000000000006,9.8089999999999993,11.044,12.49,14.194000000000001,16.215,18.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,881,-0.30790000000000001,12.4962,0.12543000000000001,8.7530000000000001,9.8140000000000001,11.048999999999999,12.496,14.201000000000001,16.224,18.640999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,882,-0.308,12.502800000000001,0.12544,8.7569999999999997,9.8190000000000008,11.055,12.503,14.209,16.233000000000001,18.652000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,883,-0.308,12.5093,0.12545000000000001,8.7620000000000005,9.8239999999999998,11.061,12.509,14.217000000000001,16.242000000000001,18.661999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,884,-0.30809999999999998,12.5159,0.12547,8.766,9.8290000000000006,11.066000000000001,12.516,14.224,16.251000000000001,18.672999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,885,-0.30819999999999997,12.522500000000001,0.12548000000000001,8.77,9.8339999999999996,11.071999999999999,12.522,14.231999999999999,16.260000000000002,18.684000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,886,-0.30819999999999997,12.529,0.12548999999999999,8.7750000000000004,9.8379999999999992,11.077999999999999,12.529,14.24,16.268999999999998,18.693999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,887,-0.30830000000000002,12.535600000000001,0.12551000000000001,8.7789999999999999,9.843,11.083,12.536,14.247,16.277999999999999,18.704999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,888,-0.30840000000000001,12.5421,0.12551999999999999,8.7829999999999995,9.8480000000000008,11.089,12.542,14.255000000000001,16.286999999999999,18.716000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,889,-0.3085,12.5487,0.12553,8.7880000000000003,9.8529999999999998,11.095000000000001,12.548999999999999,14.263,16.295999999999999,18.727 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,890,-0.3085,12.555199999999999,0.12554999999999999,8.7919999999999998,9.8580000000000005,11.1,12.555,14.27,16.305,18.736999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,891,-0.30859999999999999,12.5617,0.12556,8.7959999999999994,9.8629999999999995,11.106,12.561999999999999,14.278,16.314,18.748000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,892,-0.30869999999999997,12.568300000000001,0.12556999999999999,8.8010000000000002,9.8680000000000003,11.111000000000001,12.568,14.286,16.323,18.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,893,-0.30869999999999997,12.5748,0.12559000000000001,8.8049999999999997,9.8729999999999993,11.117000000000001,12.574999999999999,14.292999999999999,16.332000000000001,18.77 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,894,-0.30880000000000002,12.581300000000001,0.12559999999999999,8.8089999999999993,9.8780000000000001,11.122999999999999,12.581,14.301,16.341000000000001,18.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,895,-0.30890000000000001,12.587899999999999,0.12561,8.8130000000000006,9.8829999999999991,11.128,12.587999999999999,14.308,16.350000000000001,18.791 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,896,-0.30890000000000001,12.5944,0.12562999999999999,8.8170000000000002,9.8870000000000005,11.134,12.593999999999999,14.316000000000001,16.359000000000002,18.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,897,-0.309,12.600899999999999,0.12564,8.8219999999999992,9.8919999999999995,11.14,12.601000000000001,14.324,16.367999999999999,18.812000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,898,-0.30909999999999999,12.6074,0.12565999999999999,8.8260000000000005,9.8970000000000002,11.145,12.606999999999999,14.331,16.376999999999999,18.823 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,899,-0.30909999999999999,12.613899999999999,0.12567,8.83,9.9019999999999992,11.151,12.614000000000001,14.339,16.385999999999999,18.834 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,900,-0.30919999999999997,12.6204,0.12567999999999999,8.8350000000000009,9.907,11.156000000000001,12.62,14.346,16.395,18.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,901,-0.30930000000000002,12.626899999999999,0.12570000000000001,8.8390000000000004,9.9120000000000008,11.162000000000001,12.627000000000001,14.353999999999999,16.404,18.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,902,-0.30930000000000002,12.6334,0.12570999999999999,8.843,9.9169999999999998,11.167999999999999,12.632999999999999,14.362,16.413,18.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,903,-0.30940000000000001,12.639900000000001,0.12573000000000001,8.8469999999999995,9.9209999999999994,11.173,12.64,14.369,16.422000000000001,18.876999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,904,-0.3095,12.6464,0.12573999999999999,8.8520000000000003,9.9260000000000002,11.179,12.646000000000001,14.377000000000001,16.431000000000001,18.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,905,-0.3095,12.652900000000001,0.12575,8.8559999999999999,9.9309999999999992,11.183999999999999,12.653,14.384,16.440000000000001,18.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,906,-0.30959999999999999,12.6594,0.12576999999999999,8.86,9.9359999999999999,11.19,12.659000000000001,14.391999999999999,16.449000000000002,18.908999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,907,-0.30969999999999998,12.665900000000001,0.12578,8.8640000000000008,9.9410000000000007,11.196,12.666,14.4,16.457999999999998,18.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,908,-0.30969999999999998,12.6723,0.1258,8.8680000000000003,9.9459999999999997,11.201000000000001,12.672000000000001,14.407,16.466999999999999,18.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,909,-0.30980000000000002,12.678800000000001,0.12581000000000001,8.8729999999999993,9.9510000000000005,11.207000000000001,12.679,14.414999999999999,16.475999999999999,18.940999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,910,-0.30990000000000001,12.6853,0.12583,8.8770000000000007,9.9550000000000001,11.212,12.685,14.423,16.484999999999999,18.952000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,911,-0.30990000000000001,12.691800000000001,0.12584000000000001,8.8810000000000002,9.9600000000000009,11.218,12.692,14.43,16.494,18.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,912,-0.31,12.6982,0.12584999999999999,8.8849999999999998,9.9649999999999999,11.223000000000001,12.698,14.438000000000001,16.503,18.972999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,913,-0.31009999999999999,12.704700000000001,0.12587000000000001,8.89,9.9700000000000006,11.228999999999999,12.705,14.445,16.512,18.984000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,914,-0.31009999999999999,12.7111,0.12587999999999999,8.8940000000000001,9.9749999999999996,11.234999999999999,12.711,14.452999999999999,16.521000000000001,18.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,915,-0.31019999999999998,12.717599999999999,0.12590000000000001,8.8979999999999997,9.98,11.24,12.718,14.46,16.53,19.004999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,916,-0.31030000000000002,12.724,0.12590999999999999,8.9019999999999992,9.984,11.246,12.724,14.468,16.539000000000001,19.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,917,-0.31030000000000002,12.730499999999999,0.12592999999999999,8.9060000000000006,9.9890000000000008,11.250999999999999,12.73,14.475,16.547999999999998,19.027000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,918,-0.31040000000000001,12.7369,0.12594,8.9109999999999996,9.9939999999999998,11.257,12.737,14.483000000000001,16.556000000000001,19.036999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,919,-0.3105,12.743399999999999,0.12595999999999999,8.9149999999999991,9.9990000000000006,11.262,12.743,14.491,16.565999999999999,19.047999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,920,-0.3105,12.7498,0.12597,8.9190000000000005,10.004,11.268000000000001,12.75,14.497999999999999,16.574000000000002,19.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,921,-0.31059999999999999,12.7563,0.12598999999999999,8.923,10.007999999999999,11.273,12.756,14.506,16.584,19.068999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,922,-0.31069999999999998,12.762700000000001,0.126,8.9269999999999996,10.013,11.279,12.763,14.513,16.591999999999999,19.079999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,923,-0.31069999999999998,12.7691,0.12601999999999999,8.9309999999999992,10.018000000000001,11.284000000000001,12.769,14.521000000000001,16.600999999999999,19.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,924,-0.31080000000000002,12.775499999999999,0.12603,8.9359999999999999,10.023,11.29,12.776,14.528,16.61,19.100999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,925,-0.31090000000000001,12.782,0.12605,8.94,10.026999999999999,11.295,12.782,14.536,16.619,19.111999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,926,-0.31090000000000001,12.788399999999999,0.12606000000000001,8.9440000000000008,10.032,11.301,12.788,14.542999999999999,16.628,19.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,927,-0.311,12.7948,0.12608,8.9480000000000004,10.037000000000001,11.305999999999999,12.795,14.551,16.637,19.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,928,-0.311,12.8012,0.12609000000000001,8.952,10.042,11.311999999999999,12.801,14.558,16.646000000000001,19.143999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,929,-0.31109999999999999,12.807600000000001,0.12611,8.9559999999999995,10.047000000000001,11.317,12.808,14.566000000000001,16.655000000000001,19.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,930,-0.31119999999999998,12.814,0.12612000000000001,8.9610000000000003,10.051,11.323,12.814,14.573,16.664000000000001,19.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,931,-0.31119999999999998,12.820399999999999,0.12614,8.9649999999999999,10.055999999999999,11.327999999999999,12.82,14.581,16.672999999999998,19.175999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,932,-0.31130000000000002,12.8268,0.12615000000000001,8.9689999999999994,10.061,11.334,12.827,14.587999999999999,16.681000000000001,19.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,933,-0.31140000000000001,12.8332,0.12617,8.9730000000000008,10.066000000000001,11.339,12.833,14.596,16.690999999999999,19.196999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,934,-0.31140000000000001,12.839600000000001,0.12617999999999999,8.9770000000000003,10.07,11.345000000000001,12.84,14.603,16.699000000000002,19.207999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,935,-0.3115,12.846,0.12620000000000001,8.9809999999999999,10.074999999999999,11.35,12.846,14.611000000000001,16.707999999999998,19.219000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,936,-0.31159999999999999,12.852399999999999,0.12620999999999999,8.9860000000000007,10.08,11.356,12.852,14.619,16.716999999999999,19.228999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,937,-0.31159999999999999,12.8588,0.12623000000000001,8.99,10.085000000000001,11.361000000000001,12.859,14.625999999999999,16.725999999999999,19.239999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,938,-0.31169999999999998,12.8651,0.12625,8.9939999999999998,10.089,11.367000000000001,12.865,14.634,16.734999999999999,19.251000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,939,-0.31169999999999998,12.871499999999999,0.12626000000000001,8.9979999999999993,10.093999999999999,11.372,12.872,14.641,16.744,19.260999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,940,-0.31180000000000002,12.8779,0.12628,9.0020000000000007,10.099,11.378,12.878,14.648999999999999,16.753,19.271999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,941,-0.31190000000000001,12.8843,0.12629000000000001,9.0060000000000002,10.103999999999999,11.382999999999999,12.884,14.656000000000001,16.762,19.283000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,942,-0.31190000000000001,12.890599999999999,0.12631000000000001,9.01,10.108000000000001,11.388999999999999,12.891,14.664,16.771000000000001,19.292999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,943,-0.312,12.897,0.12631999999999999,9.0139999999999993,10.113,11.394,12.897,14.670999999999999,16.779,19.303999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,944,-0.312,12.9033,0.12634000000000001,9.0180000000000007,10.118,11.4,12.903,14.678000000000001,16.788,19.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,945,-0.31209999999999999,12.909700000000001,0.12636,9.0220000000000002,10.122,11.404999999999999,12.91,14.686,16.797000000000001,19.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,946,-0.31219999999999998,12.9161,0.12637000000000001,9.0269999999999992,10.127000000000001,11.41,12.916,14.693,16.806000000000001,19.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,947,-0.31219999999999998,12.9224,0.12639,9.0299999999999994,10.132,11.416,12.922000000000001,14.701000000000001,16.815000000000001,19.347000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,948,-0.31230000000000002,12.928800000000001,0.12640000000000001,9.0350000000000001,10.135999999999999,11.420999999999999,12.929,14.708,16.824000000000002,19.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,949,-0.31230000000000002,12.9351,0.12642,9.0389999999999997,10.141,11.427,12.935,14.715999999999999,16.832999999999998,19.367999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,950,-0.31240000000000001,12.9415,0.12644,9.0429999999999993,10.146000000000001,11.432,12.942,14.723000000000001,16.841999999999999,19.379000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,951,-0.3125,12.947800000000001,0.12645000000000001,9.0470000000000006,10.15,11.438000000000001,12.948,14.731,16.850000000000001,19.388999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,952,-0.3125,12.9541,0.12647,9.0510000000000002,10.154999999999999,11.443,12.954000000000001,14.738,16.859000000000002,19.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,953,-0.31259999999999999,12.9605,0.12648000000000001,9.0549999999999997,10.16,11.449,12.96,14.746,16.867999999999999,19.41 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,954,-0.31259999999999999,12.966799999999999,0.1265,9.0589999999999993,10.164,11.454000000000001,12.967000000000001,14.753,16.876999999999999,19.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,955,-0.31269999999999998,12.9732,0.12651999999999999,9.0630000000000006,10.169,11.459,12.973000000000001,14.760999999999999,16.885999999999999,19.431999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,956,-0.31280000000000002,12.9795,0.12653,9.0670000000000002,10.173999999999999,11.465,12.98,14.768000000000001,16.895,19.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,957,-0.31280000000000002,12.985799999999999,0.12655,9.0709999999999997,10.178000000000001,11.47,12.986000000000001,14.776,16.904,19.452999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,958,-0.31290000000000001,12.992100000000001,0.12656000000000001,9.0749999999999993,10.183,11.476000000000001,12.992000000000001,14.782999999999999,16.911999999999999,19.463000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,959,-0.31290000000000001,12.9985,0.12658,9.0790000000000006,10.188000000000001,11.481,12.997999999999999,14.791,16.920999999999999,19.474 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,960,-0.313,13.004799999999999,0.12659999999999999,9.0830000000000002,10.192,11.486000000000001,13.005000000000001,14.798,16.93,19.484999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,961,-0.31309999999999999,13.011100000000001,0.12661,9.0879999999999992,10.196999999999999,11.492000000000001,13.010999999999999,14.805,16.939,19.495999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,962,-0.31309999999999999,13.0174,0.12662999999999999,9.0920000000000005,10.202,11.497,13.016999999999999,14.813000000000001,16.948,19.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,963,-0.31319999999999998,13.0237,0.12665000000000001,9.0960000000000001,10.206,11.503,13.023999999999999,14.82,16.957000000000001,19.516999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,964,-0.31319999999999998,13.03,0.12665999999999999,9.1,10.211,11.507999999999999,13.03,14.827999999999999,16.966000000000001,19.527000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,965,-0.31330000000000002,13.036300000000001,0.12667999999999999,9.1039999999999992,10.215999999999999,11.513,13.036,14.835000000000001,16.975000000000001,19.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,966,-0.31340000000000001,13.0427,0.12670000000000001,9.1080000000000005,10.220000000000001,11.519,13.042999999999999,14.843,16.984000000000002,19.548999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,967,-0.31340000000000001,13.048999999999999,0.12670999999999999,9.1120000000000001,10.225,11.523999999999999,13.048999999999999,14.85,16.992000000000001,19.559000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,968,-0.3135,13.055300000000001,0.12673000000000001,9.1159999999999997,10.23,11.53,13.055,14.858000000000001,17.001000000000001,19.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,969,-0.3135,13.0616,0.12675,9.1199999999999992,10.234,11.535,13.061999999999999,14.865,17.010000000000002,19.581 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,970,-0.31359999999999999,13.0679,0.12676000000000001,9.1240000000000006,10.239000000000001,11.54,13.068,14.872,17.018999999999998,19.591000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,971,-0.31359999999999999,13.074199999999999,0.12678,9.1280000000000001,10.244,11.545999999999999,13.074,14.88,17.027999999999999,19.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,972,-0.31369999999999998,13.080399999999999,0.1268,9.1319999999999997,10.247999999999999,11.551,13.08,14.887,17.036999999999999,19.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,973,-0.31380000000000002,13.0867,0.12681000000000001,9.1359999999999992,10.253,11.555999999999999,13.087,14.895,17.045000000000002,19.623000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,974,-0.31380000000000002,13.093,0.12683,9.14,10.257,11.561999999999999,13.093,14.901999999999999,17.053999999999998,19.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,975,-0.31390000000000001,13.099299999999999,0.12684999999999999,9.1440000000000001,10.262,11.567,13.099,14.91,17.062999999999999,19.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,976,-0.31390000000000001,13.105600000000001,0.12687000000000001,9.1479999999999997,10.266999999999999,11.571999999999999,13.106,14.917,17.071999999999999,19.655999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,977,-0.314,13.1119,0.12687999999999999,9.1519999999999992,10.271000000000001,11.577999999999999,13.112,14.923999999999999,17.081,19.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,978,-0.314,13.1182,0.12690000000000001,9.1560000000000006,10.276,11.583,13.118,14.932,17.09,19.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,979,-0.31409999999999999,13.124499999999999,0.12692000000000001,9.16,10.281000000000001,11.589,13.124000000000001,14.939,17.099,19.687999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,980,-0.31419999999999998,13.130699999999999,0.12692999999999999,9.1639999999999997,10.285,11.593999999999999,13.131,14.946999999999999,17.106999999999999,19.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,981,-0.31419999999999998,13.137,0.12695000000000001,9.1679999999999993,10.29,11.599,13.137,14.954000000000001,17.116,19.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,982,-0.31430000000000002,13.1433,0.12697,9.1720000000000006,10.294,11.605,13.143000000000001,14.962,17.125,19.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,983,-0.31430000000000002,13.1496,0.12698999999999999,9.1760000000000002,10.298999999999999,11.61,13.15,14.968999999999999,17.134,19.731000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,984,-0.31440000000000001,13.155799999999999,0.127,9.18,10.304,11.615,13.156000000000001,14.976000000000001,17.143000000000001,19.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,985,-0.31440000000000001,13.162100000000001,0.12701999999999999,9.1839999999999993,10.308,11.621,13.162000000000001,14.984,17.152000000000001,19.751999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,986,-0.3145,13.1684,0.12703999999999999,9.1880000000000006,10.313000000000001,11.625999999999999,13.167999999999999,14.991,17.161000000000001,19.763000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,987,-0.3145,13.1746,0.12706000000000001,9.1920000000000002,10.317,11.631,13.175000000000001,14.999000000000001,17.170000000000002,19.773 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,988,-0.31459999999999999,13.180899999999999,0.12706999999999999,9.1959999999999997,10.321999999999999,11.637,13.180999999999999,15.006,17.178000000000001,19.783000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,989,-0.31469999999999998,13.187200000000001,0.12709000000000001,9.1999999999999993,10.327,11.641999999999999,13.186999999999999,15.013,17.187000000000001,19.794 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,990,-0.31469999999999998,13.1934,0.12711,9.2040000000000006,10.331,11.647,13.193,15.021000000000001,17.196000000000002,19.805 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,991,-0.31480000000000002,13.1997,0.12712999999999999,9.2070000000000007,10.336,11.653,13.2,15.028,17.204999999999998,19.815999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,992,-0.31480000000000002,13.2059,0.12714,9.2119999999999997,10.34,11.657999999999999,13.206,15.036,17.213999999999999,19.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,993,-0.31490000000000001,13.212199999999999,0.12716,9.2159999999999993,10.345000000000001,11.663,13.212,15.042999999999999,17.222999999999999,19.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,994,-0.31490000000000001,13.218500000000001,0.12717999999999999,9.2189999999999994,10.349,11.669,13.218,15.051,17.231999999999999,19.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,995,-0.315,13.2247,0.12720000000000001,9.2230000000000008,10.353999999999999,11.673999999999999,13.225,15.058,17.239999999999998,19.859000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,996,-0.315,13.231,0.12720999999999999,9.2270000000000003,10.359,11.68,13.231,15.065,17.248999999999999,19.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,997,-0.31509999999999999,13.2372,0.12723000000000001,9.2309999999999999,10.363,11.685,13.237,15.073,17.257999999999999,19.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,998,-0.31519999999999998,13.243499999999999,0.12725,9.2349999999999994,10.368,11.69,13.244,15.08,17.266999999999999,19.890999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,999,-0.31519999999999998,13.249700000000001,0.12726999999999999,9.2390000000000008,10.372,11.695,13.25,15.087999999999999,17.276,19.901 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1000,-0.31530000000000002,13.256,0.12728999999999999,9.2430000000000003,10.377000000000001,11.701000000000001,13.256,15.095000000000001,17.285,19.911999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1001,-0.31530000000000002,13.2622,0.1273,9.2469999999999999,10.381,11.706,13.262,15.102,17.292999999999999,19.922000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1002,-0.31540000000000001,13.2684,0.12731999999999999,9.2509999999999994,10.385999999999999,11.711,13.268000000000001,15.11,17.302,19.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1003,-0.31540000000000001,13.274699999999999,0.12734000000000001,9.2550000000000008,10.391,11.717000000000001,13.275,15.117000000000001,17.311,19.943999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1004,-0.3155,13.280900000000001,0.12736,9.2590000000000003,10.395,11.722,13.281000000000001,15.125,17.32,19.954999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1005,-0.3155,13.2872,0.12737999999999999,9.2629999999999999,10.4,11.727,13.287000000000001,15.132,17.329000000000001,19.966000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1006,-0.31559999999999999,13.2934,0.12739,9.2669999999999995,10.404,11.733000000000001,13.292999999999999,15.138999999999999,17.338000000000001,19.975999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1007,-0.31559999999999999,13.2996,0.12741,9.2710000000000008,10.409000000000001,11.738,13.3,15.147,17.346,19.986999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1008,-0.31569999999999998,13.305899999999999,0.12742999999999999,9.2750000000000004,10.413,11.743,13.305999999999999,15.154,17.355,19.998000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1009,-0.31580000000000003,13.312099999999999,0.12745000000000001,9.2789999999999999,10.417999999999999,11.747999999999999,13.311999999999999,15.161,17.364000000000001,20.007999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1010,-0.31580000000000003,13.318300000000001,0.12747,9.282,10.422000000000001,11.754,13.318,15.169,17.373000000000001,20.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1011,-0.31590000000000001,13.3246,0.12748999999999999,9.2859999999999996,10.427,11.759,13.324999999999999,15.176,17.382000000000001,20.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1012,-0.31590000000000001,13.3308,0.1275,9.2899999999999991,10.430999999999999,11.763999999999999,13.331,15.183999999999999,17.390999999999998,20.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1013,-0.316,13.337,0.12751999999999999,9.2940000000000005,10.436,11.77,13.337,15.191000000000001,17.399999999999999,20.050999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1014,-0.316,13.343299999999999,0.12753999999999999,9.298,10.441000000000001,11.775,13.343,15.198,17.408999999999999,20.062000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1015,-0.31609999999999999,13.349500000000001,0.12756000000000001,9.3019999999999996,10.445,11.78,13.35,15.206,17.417000000000002,20.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1016,-0.31609999999999999,13.355700000000001,0.12758,9.3059999999999992,10.449,11.785,13.356,15.212999999999999,17.425999999999998,20.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1017,-0.31619999999999998,13.3619,0.12759999999999999,9.31,10.454000000000001,11.791,13.362,15.221,17.434999999999999,20.094000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1018,-0.31619999999999998,13.3682,0.12762000000000001,9.3140000000000001,10.459,11.795999999999999,13.368,15.228,17.443999999999999,20.105 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1019,-0.31630000000000003,13.3744,0.12762999999999999,9.3179999999999996,10.462999999999999,11.801,13.374000000000001,15.234999999999999,17.452999999999999,20.114999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1020,-0.31630000000000003,13.380599999999999,0.12765000000000001,9.3219999999999992,10.468,11.807,13.381,15.243,17.462,20.126000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1021,-0.31640000000000001,13.386799999999999,0.12767000000000001,9.3249999999999993,10.472,11.811999999999999,13.387,15.25,17.471,20.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1022,-0.31640000000000001,13.3931,0.12769,9.3290000000000006,10.477,11.817,13.393000000000001,15.257999999999999,17.48,20.148 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1023,-0.3165,13.3993,0.12770999999999999,9.3330000000000002,10.481,11.823,13.398999999999999,15.265000000000001,17.488,20.158999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1024,-0.3165,13.4055,0.12773000000000001,9.3369999999999997,10.486000000000001,11.827999999999999,13.406000000000001,15.272,17.497,20.169 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1025,-0.31659999999999999,13.4117,0.12775,9.3409999999999993,10.49,11.833,13.412000000000001,15.28,17.506,20.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1026,-0.31669999999999998,13.417899999999999,0.12776999999999999,9.3450000000000006,10.494999999999999,11.837999999999999,13.417999999999999,15.287000000000001,17.515000000000001,20.190999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1027,-0.31669999999999998,13.424200000000001,0.12778999999999999,9.3490000000000002,10.499000000000001,11.843999999999999,13.423999999999999,15.295,17.524000000000001,20.202000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1028,-0.31680000000000003,13.430400000000001,0.12781000000000001,9.3529999999999998,10.504,11.849,13.43,15.302,17.533000000000001,20.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1029,-0.31680000000000003,13.4366,0.12781999999999999,9.3569999999999993,10.507999999999999,11.853999999999999,13.436999999999999,15.308999999999999,17.541,20.222999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1030,-0.31690000000000002,13.4428,0.12784000000000001,9.36,10.513,11.859,13.443,15.317,17.55,20.234000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1031,-0.31690000000000002,13.449,0.12786,9.3640000000000008,10.516999999999999,11.865,13.449,15.324,17.559000000000001,20.244 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1032,-0.317,13.4552,0.12787999999999999,9.3680000000000003,10.522,11.87,13.455,15.332000000000001,17.568000000000001,20.254999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1033,-0.317,13.461399999999999,0.12790000000000001,9.3719999999999999,10.526,11.875,13.461,15.339,17.577000000000002,20.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1034,-0.31709999999999999,13.467700000000001,0.12792000000000001,9.3759999999999994,10.531000000000001,11.881,13.468,15.346,17.585999999999999,20.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1035,-0.31709999999999999,13.4739,0.12794,9.3800000000000008,10.535,11.885999999999999,13.474,15.353999999999999,17.594999999999999,20.288 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1036,-0.31719999999999998,13.4801,0.12795999999999999,9.3840000000000003,10.54,11.891,13.48,15.361000000000001,17.603999999999999,20.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1037,-0.31719999999999998,13.4863,0.12798000000000001,9.3870000000000005,10.544,11.896000000000001,13.486000000000001,15.369,17.613,20.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1038,-0.31730000000000003,13.4925,0.128,9.391,10.548999999999999,11.901999999999999,13.492000000000001,15.375999999999999,17.622,20.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1039,-0.31730000000000003,13.498699999999999,0.12801999999999999,9.3949999999999996,10.553000000000001,11.907,13.499000000000001,15.382999999999999,17.631,20.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1040,-0.31740000000000002,13.504899999999999,0.12803999999999999,9.3989999999999991,10.558,11.912000000000001,13.505000000000001,15.391,17.638999999999999,20.341999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1041,-0.31740000000000002,13.511100000000001,0.12806000000000001,9.4030000000000005,10.561999999999999,11.917,13.510999999999999,15.398,17.648,20.353000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1042,-0.3175,13.517300000000001,0.12808,9.407,10.567,11.922000000000001,13.516999999999999,15.406000000000001,17.657,20.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1043,-0.3175,13.5235,0.12809999999999999,9.41,10.571,11.928000000000001,13.523999999999999,15.413,17.666,20.373999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1044,-0.31759999999999999,13.5297,0.12812000000000001,9.4139999999999997,10.576000000000001,11.933,13.53,15.42,17.675000000000001,20.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1045,-0.31759999999999999,13.5359,0.12814,9.4179999999999993,10.58,11.938000000000001,13.536,15.428000000000001,17.684000000000001,20.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1046,-0.31769999999999998,13.5421,0.12816,9.4220000000000006,10.584,11.943,13.542,15.435,17.693000000000001,20.407 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1047,-0.31769999999999998,13.548299999999999,0.12817999999999999,9.4260000000000002,10.589,11.949,13.548,15.443,17.702000000000002,20.417999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1048,-0.31780000000000003,13.554500000000001,0.12819,9.43,10.593999999999999,11.954000000000001,13.554,15.45,17.71,20.428000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1049,-0.31780000000000003,13.560700000000001,0.12820999999999999,9.4339999999999993,10.598000000000001,11.959,13.561,15.457000000000001,17.719000000000001,20.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1050,-0.31790000000000002,13.5669,0.12823000000000001,9.4380000000000006,10.603,11.965,13.567,15.465,17.728000000000002,20.449000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1051,-0.31790000000000002,13.5731,0.12825,9.4410000000000007,10.606999999999999,11.97,13.573,15.472,17.736999999999998,20.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1052,-0.318,13.5793,0.12827,9.4450000000000003,10.611000000000001,11.975,13.579000000000001,15.478999999999999,17.745999999999999,20.471 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1053,-0.318,13.5855,0.12828999999999999,9.4489999999999998,10.616,11.98,13.586,15.487,17.754999999999999,20.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1054,-0.31809999999999999,13.591699999999999,0.12831999999999999,9.4529999999999994,10.62,11.984999999999999,13.592000000000001,15.494,17.763999999999999,20.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1055,-0.31809999999999999,13.597899999999999,0.12834000000000001,9.4570000000000007,10.625,11.991,13.598000000000001,15.502000000000001,17.773,20.504000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1056,-0.31819999999999998,13.604100000000001,0.12836,9.4600000000000009,10.629,11.996,13.603999999999999,15.509,17.782,20.515000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1057,-0.31819999999999998,13.610300000000001,0.12837999999999999,9.4640000000000004,10.634,12.000999999999999,13.61,15.516,17.791,20.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1058,-0.31830000000000003,13.6165,0.12839999999999999,9.468,10.638,12.006,13.616,15.523999999999999,17.8,20.536999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1059,-0.31830000000000003,13.6227,0.12842000000000001,9.4719999999999995,10.643000000000001,12.012,13.622999999999999,15.531000000000001,17.809000000000001,20.547999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1060,-0.31840000000000002,13.6289,0.12844,9.4760000000000009,10.647,12.016999999999999,13.629,15.539,17.818000000000001,20.559000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1061,-0.31840000000000002,13.6351,0.12845999999999999,9.48,10.651,12.022,13.635,15.545999999999999,17.827000000000002,20.568999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1062,-0.31850000000000001,13.641299999999999,0.12848000000000001,9.4830000000000005,10.656000000000001,12.026999999999999,13.641,15.553000000000001,17.835000000000001,20.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1063,-0.31850000000000001,13.647500000000001,0.1285,9.4870000000000001,10.66,12.032999999999999,13.648,15.561,17.844000000000001,20.591000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1064,-0.31859999999999999,13.653700000000001,0.12852,9.4909999999999997,10.664999999999999,12.038,13.654,15.568,17.853000000000002,20.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1065,-0.31859999999999999,13.6599,0.12853999999999999,9.4949999999999992,10.669,12.042999999999999,13.66,15.576000000000001,17.861999999999998,20.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1066,-0.31869999999999998,13.6661,0.12856000000000001,9.4990000000000006,10.673999999999999,12.048,13.666,15.583,17.870999999999999,20.623999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1067,-0.31869999999999998,13.6723,0.12858,9.5030000000000001,10.678000000000001,12.054,13.672000000000001,15.59,17.88,20.635000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1068,-0.31879999999999997,13.6785,0.12859999999999999,9.5060000000000002,10.683,12.058999999999999,13.678000000000001,15.598000000000001,17.888999999999999,20.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1069,-0.31879999999999997,13.684699999999999,0.12862000000000001,9.51,10.686999999999999,12.064,13.685,15.605,17.898,20.655999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1070,-0.31890000000000002,13.690899999999999,0.12864,9.5139999999999993,10.692,12.069000000000001,13.691000000000001,15.613,17.907,20.667000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1071,-0.31890000000000002,13.697100000000001,0.12866,9.5180000000000007,10.696,12.074,13.696999999999999,15.62,17.916,20.678000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1072,-0.31900000000000001,13.7033,0.12867999999999999,9.5220000000000002,10.701000000000001,12.08,13.702999999999999,15.628,17.925000000000001,20.689 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1073,-0.31900000000000001,13.7095,0.12870999999999999,9.5250000000000004,10.705,12.085000000000001,13.71,15.635,17.934000000000001,20.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1074,-0.31909999999999999,13.7157,0.12873000000000001,9.5289999999999999,10.709,12.09,13.715999999999999,15.641999999999999,17.943000000000001,20.710999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1075,-0.31909999999999999,13.7218,0.12875,9.5329999999999995,10.714,12.095000000000001,13.722,15.65,17.952000000000002,20.722000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1076,-0.31919999999999998,13.728,0.12877,9.5370000000000008,10.718,12.1,13.728,15.657,17.960999999999999,20.733000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1077,-0.31919999999999998,13.7342,0.12878999999999999,9.5410000000000004,10.723000000000001,12.106,13.734,15.664999999999999,17.97,20.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1078,-0.31929999999999997,13.740399999999999,0.12881000000000001,9.5440000000000005,10.727,12.111000000000001,13.74,15.672000000000001,17.978000000000002,20.754999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1079,-0.31929999999999997,13.746600000000001,0.12883,9.548,10.731,12.116,13.747,15.679,17.986999999999998,20.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1080,-0.31940000000000002,13.752800000000001,0.12884999999999999,9.5519999999999996,10.736000000000001,12.121,13.753,15.686999999999999,17.995999999999999,20.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1081,-0.31940000000000002,13.759,0.12887000000000001,9.5559999999999992,10.74,12.127000000000001,13.759,15.694000000000001,18.004999999999999,20.786999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1082,-0.31950000000000001,13.7652,0.12889999999999999,9.5589999999999993,10.744999999999999,12.132,13.765000000000001,15.702,18.015000000000001,20.798999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1083,-0.31950000000000001,13.7714,0.12892000000000001,9.5630000000000006,10.749000000000001,12.137,13.771000000000001,15.709,18.023,20.81 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1084,-0.3196,13.7776,0.12894,9.5670000000000002,10.754,12.141999999999999,13.778,15.717000000000001,18.032,20.821000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1085,-0.3196,13.783799999999999,0.12895999999999999,9.5709999999999997,10.757999999999999,12.147,13.784000000000001,15.724,18.041,20.832000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1086,-0.31969999999999998,13.789899999999999,0.12898000000000001,9.5749999999999993,10.762,12.153,13.79,15.731,18.05,20.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1087,-0.31969999999999998,13.796099999999999,0.129,9.5779999999999994,10.766999999999999,12.157999999999999,13.795999999999999,15.739000000000001,18.059000000000001,20.853000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1088,-0.31979999999999997,13.802300000000001,0.12902,9.5820000000000007,10.771000000000001,12.163,13.802,15.746,18.068000000000001,20.864000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1089,-0.31979999999999997,13.8085,0.12905,9.5860000000000003,10.776,12.167999999999999,13.808,15.754,18.077000000000002,20.876000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1090,-0.31979999999999997,13.8147,0.12906999999999999,9.59,10.78,12.173,13.815,15.760999999999999,18.085999999999999,20.885999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1091,-0.31990000000000002,13.8209,0.12909000000000001,9.5939999999999994,10.785,12.179,13.821,15.768000000000001,18.094999999999999,20.896999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1092,-0.31990000000000002,13.8271,0.12911,9.5969999999999995,10.789,12.183999999999999,13.827,15.776,18.103999999999999,20.908000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1093,-0.32,13.833299999999999,0.12912999999999999,9.6010000000000009,10.792999999999999,12.189,13.833,15.782999999999999,18.113,20.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1094,-0.32,13.839499999999999,0.12914999999999999,9.6050000000000004,10.798,12.194000000000001,13.84,15.791,18.122,20.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1095,-0.3201,13.845599999999999,0.12917999999999999,9.6080000000000005,10.802,12.199,13.846,15.798,18.131,20.942 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1096,-0.3201,13.851800000000001,0.12920000000000001,9.6120000000000001,10.805999999999999,12.205,13.852,15.805999999999999,18.14,20.952000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1097,-0.32019999999999998,13.858000000000001,0.12922,9.6159999999999997,10.811,12.21,13.858000000000001,15.813000000000001,18.149000000000001,20.963000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1098,-0.32019999999999998,13.8642,0.12923999999999999,9.6199999999999992,10.815,12.215,13.864000000000001,15.82,18.158000000000001,20.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1099,-0.32029999999999997,13.8704,0.12926000000000001,9.6240000000000006,10.82,12.22,13.87,15.827999999999999,18.167000000000002,20.984999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1100,-0.32029999999999997,13.8766,0.12928999999999999,9.6270000000000007,10.824,12.225,13.877000000000001,15.835000000000001,18.175999999999998,20.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1101,-0.32040000000000002,13.8828,0.12931000000000001,9.6310000000000002,10.829000000000001,12.231,13.882999999999999,15.843,18.184999999999999,21.007999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1102,-0.32040000000000002,13.8889,0.12933,9.6349999999999998,10.833,12.236000000000001,13.888999999999999,15.85,18.193999999999999,21.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1103,-0.32050000000000001,13.895099999999999,0.12934999999999999,9.6389999999999993,10.837,12.241,13.895,15.858000000000001,18.202999999999999,21.029 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1104,-0.32050000000000001,13.901300000000001,0.12937000000000001,9.6419999999999995,10.842000000000001,12.246,13.901,15.865,18.212,21.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1105,-0.3206,13.907500000000001,0.12939999999999999,9.6460000000000008,10.846,12.250999999999999,13.907999999999999,15.872999999999999,18.221,21.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1106,-0.3206,13.9137,0.12942000000000001,9.65,10.851000000000001,12.257,13.914,15.88,18.23,21.062999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1107,-0.32069999999999999,13.9199,0.12944,9.6539999999999999,10.855,12.262,13.92,15.887,18.239000000000001,21.074000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1108,-0.32069999999999999,13.9261,0.12945999999999999,9.657,10.859,12.266999999999999,13.926,15.895,18.248000000000001,21.085000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1109,-0.32079999999999997,13.9322,0.12948000000000001,9.6609999999999996,10.864000000000001,12.272,13.932,15.901999999999999,18.257000000000001,21.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1110,-0.32079999999999997,13.9384,0.12950999999999999,9.6649999999999991,10.868,12.276999999999999,13.938000000000001,15.91,18.265999999999998,21.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1111,-0.32079999999999997,13.944599999999999,0.12953000000000001,9.6690000000000005,10.872,12.282999999999999,13.945,15.917,18.274999999999999,21.117999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1112,-0.32090000000000002,13.950799999999999,0.12955,9.6720000000000006,10.877000000000001,12.288,13.951000000000001,15.923999999999999,18.283999999999999,21.129000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1113,-0.32090000000000002,13.957000000000001,0.12956999999999999,9.6760000000000002,10.881,12.292999999999999,13.957000000000001,15.932,18.292999999999999,21.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1114,-0.32100000000000001,13.963200000000001,0.12959999999999999,9.68,10.885999999999999,12.298,13.962999999999999,15.939,18.303000000000001,21.152000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1115,-0.32100000000000001,13.9693,0.12962000000000001,9.6839999999999993,10.89,12.303000000000001,13.968999999999999,15.946999999999999,18.311,21.161999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1116,-0.3211,13.9755,0.12964000000000001,9.6869999999999994,10.894,12.308999999999999,13.976000000000001,15.954000000000001,18.32,21.172999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1117,-0.3211,13.9817,0.12967000000000001,9.6910000000000007,10.898999999999999,12.314,13.981999999999999,15.962,18.329999999999998,21.184999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1118,-0.32119999999999999,13.9879,0.12969,9.6950000000000003,10.903,12.319000000000001,13.988,15.968999999999999,18.338999999999999,21.196000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1119,-0.32119999999999999,13.9941,0.12970999999999999,9.6980000000000004,10.907999999999999,12.324,13.994,15.977,18.347999999999999,21.207000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1120,-0.32129999999999997,14.000299999999999,0.12973000000000001,9.702,10.912000000000001,12.329000000000001,14,15.984,18.356999999999999,21.218 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1121,-0.32129999999999997,14.006399999999999,0.12975999999999999,9.7059999999999995,10.916,12.334,14.006,15.991,18.366,21.228999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1122,-0.32140000000000002,14.012600000000001,0.12978000000000001,9.7100000000000009,10.920999999999999,12.34,14.013,15.999000000000001,18.375,21.24 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1123,-0.32140000000000002,14.018800000000001,0.1298,9.7129999999999992,10.925000000000001,12.345000000000001,14.019,16.006,18.384,21.251000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1124,-0.32150000000000001,14.025,0.12981999999999999,9.7170000000000005,10.93,12.35,14.025,16.013999999999999,18.393000000000001,21.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1125,-0.32150000000000001,14.0312,0.12984999999999999,9.7210000000000001,10.933999999999999,12.355,14.031000000000001,16.021000000000001,18.402000000000001,21.274000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1126,-0.3216,14.0373,0.12987000000000001,9.7249999999999996,10.938000000000001,12.36,14.037000000000001,16.029,18.411000000000001,21.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1127,-0.3216,14.0435,0.12989000000000001,9.7279999999999998,10.943,12.365,14.044,16.036000000000001,18.420000000000002,21.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1128,-0.3216,14.0497,0.12992000000000001,9.7319999999999993,10.946999999999999,12.371,14.05,16.044,18.428999999999998,21.306999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1129,-0.32169999999999999,14.055899999999999,0.12994,9.7360000000000007,10.951000000000001,12.375999999999999,14.055999999999999,16.050999999999998,18.437999999999999,21.318000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1130,-0.32169999999999999,14.062099999999999,0.12995999999999999,9.7390000000000008,10.956,12.381,14.061999999999999,16.058,18.446999999999999,21.329000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1131,-0.32179999999999997,14.068199999999999,0.12998999999999999,9.7430000000000003,10.96,12.385999999999999,14.068,16.065999999999999,18.457000000000001,21.341000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1132,-0.32179999999999997,14.074400000000001,0.13000999999999999,9.7469999999999999,10.964,12.391,14.074,16.073,18.465,21.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1133,-0.32190000000000002,14.0806,0.13003000000000001,9.7509999999999994,10.968999999999999,12.397,14.081,16.081,18.475000000000001,21.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1134,-0.32190000000000002,14.0868,0.13006000000000001,9.7539999999999996,10.973000000000001,12.401999999999999,14.087,16.088000000000001,18.484000000000002,21.373999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1135,-0.32200000000000001,14.093,0.13008,9.7579999999999991,10.977,12.407,14.093,16.096,18.492999999999999,21.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1136,-0.32200000000000001,14.0991,0.13009999999999999,9.7620000000000005,10.981999999999999,12.412000000000001,14.099,16.103000000000002,18.501999999999999,21.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1137,-0.3221,14.1053,0.13013,9.7650000000000006,10.986000000000001,12.417,14.105,16.111000000000001,18.510999999999999,21.408000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1138,-0.3221,14.111499999999999,0.13014999999999999,9.7690000000000001,10.99,12.422000000000001,14.112,16.117999999999999,18.52,21.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1139,-0.32219999999999999,14.117699999999999,0.13017000000000001,9.7729999999999997,10.994999999999999,12.428000000000001,14.118,16.126000000000001,18.529,21.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1140,-0.32219999999999999,14.123799999999999,0.13020000000000001,9.7759999999999998,10.999000000000001,12.433,14.124000000000001,16.132999999999999,18.538,21.440999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1141,-0.32219999999999999,14.13,0.13022,9.7799999999999994,11.003,12.438000000000001,14.13,16.14,18.547000000000001,21.452000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1142,-0.32229999999999998,14.136200000000001,0.13023999999999999,9.7840000000000007,11.007999999999999,12.443,14.135999999999999,16.148,18.556000000000001,21.463000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1143,-0.32229999999999998,14.1424,0.13027,9.7870000000000008,11.012,12.448,14.141999999999999,16.155999999999999,18.565999999999999,21.475000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1144,-0.32240000000000002,14.1485,0.13028999999999999,9.7910000000000004,11.016999999999999,12.452999999999999,14.148,16.163,18.574000000000002,21.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1145,-0.32240000000000002,14.1547,0.13031999999999999,9.7949999999999999,11.021000000000001,12.458,14.154999999999999,16.170000000000002,18.584,21.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1146,-0.32250000000000001,14.1609,0.13034000000000001,9.798,11.025,12.464,14.161,16.178000000000001,18.593,21.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1147,-0.32250000000000001,14.1671,0.13036,9.8019999999999996,11.03,12.468999999999999,14.167,16.184999999999999,18.602,21.518999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1148,-0.3226,14.1732,0.13039000000000001,9.8059999999999992,11.034000000000001,12.474,14.173,16.193000000000001,18.611000000000001,21.530999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1149,-0.3226,14.179399999999999,0.13041,9.8089999999999993,11.038,12.478999999999999,14.179,16.2,18.62,21.542000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1150,-0.32269999999999999,14.185600000000001,0.13042999999999999,9.8130000000000006,11.042999999999999,12.484,14.186,16.207999999999998,18.629000000000001,21.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1151,-0.32269999999999999,14.191700000000001,0.13045999999999999,9.8170000000000002,11.047000000000001,12.489000000000001,14.192,16.215,18.638000000000002,21.565000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1152,-0.32269999999999999,14.197900000000001,0.13048000000000001,9.8209999999999997,11.051,12.494,14.198,16.222999999999999,18.646999999999998,21.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1153,-0.32279999999999998,14.2041,0.13050999999999999,9.8239999999999998,11.055,12.5,14.204000000000001,16.23,18.657,21.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1154,-0.32279999999999998,14.2103,0.13053000000000001,9.8279999999999994,11.06,12.505000000000001,14.21,16.238,18.666,21.597999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1155,-0.32290000000000002,14.2164,0.13055,9.8320000000000007,11.064,12.51,14.215999999999999,16.245000000000001,18.675000000000001,21.609000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1156,-0.32290000000000002,14.2226,0.13058,9.8350000000000009,11.068,12.515000000000001,14.223000000000001,16.251999999999999,18.684000000000001,21.620999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1157,-0.32300000000000001,14.2288,0.13059999999999999,9.8390000000000004,11.073,12.52,14.228999999999999,16.260000000000002,18.693000000000001,21.632000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1158,-0.32300000000000001,14.2349,0.13063,9.8420000000000005,11.077,12.525,14.234999999999999,16.266999999999999,18.702000000000002,21.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1159,-0.3231,14.241099999999999,0.13064999999999999,9.8460000000000001,11.082000000000001,12.53,14.241,16.274999999999999,18.710999999999999,21.655000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1160,-0.3231,14.247299999999999,0.13067999999999999,9.85,11.086,12.536,14.247,16.282,18.721,21.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1161,-0.32319999999999999,14.253399999999999,0.13070000000000001,9.8529999999999998,11.09,12.541,14.253,16.29,18.73,21.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1162,-0.32319999999999999,14.259600000000001,0.13072,9.8569999999999993,11.095000000000001,12.545999999999999,14.26,16.297000000000001,18.739000000000001,21.687999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1163,-0.32319999999999999,14.2658,0.13075000000000001,9.8610000000000007,11.099,12.551,14.266,16.305,18.748000000000001,21.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1164,-0.32329999999999998,14.2719,0.13077,9.8640000000000008,11.103,12.555999999999999,14.272,16.312000000000001,18.757000000000001,21.710999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1165,-0.32329999999999998,14.2781,0.1308,9.8680000000000003,11.106999999999999,12.561,14.278,16.32,18.765999999999998,21.722000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1166,-0.32340000000000002,14.2843,0.13081999999999999,9.8719999999999999,11.112,12.566000000000001,14.284000000000001,16.327000000000002,18.774999999999999,21.734000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1167,-0.32340000000000002,14.2904,0.13084999999999999,9.875,11.116,12.571,14.29,16.335000000000001,18.783999999999999,21.745000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1168,-0.32350000000000001,14.2966,0.13086999999999999,9.8789999999999996,11.12,12.577,14.297000000000001,16.341999999999999,18.792999999999999,21.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1169,-0.32350000000000001,14.3028,0.13089999999999999,9.8829999999999991,11.125,12.582000000000001,14.303000000000001,16.350000000000001,18.803000000000001,21.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1170,-0.3236,14.3089,0.13092000000000001,9.8859999999999992,11.129,12.587,14.308999999999999,16.356999999999999,18.812000000000001,21.779 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1171,-0.3236,14.315099999999999,0.13095000000000001,9.89,11.132999999999999,12.592000000000001,14.315,16.364999999999998,18.821000000000002,21.791 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1172,-0.32369999999999999,14.321300000000001,0.13097,9.8940000000000001,11.138,12.597,14.321,16.372,18.829999999999998,21.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1173,-0.32369999999999999,14.327400000000001,0.13099,9.8970000000000002,11.141999999999999,12.602,14.327,16.379000000000001,18.838999999999999,21.812000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1174,-0.32369999999999999,14.333600000000001,0.13102,9.9009999999999998,11.146000000000001,12.606999999999999,14.334,16.387,18.847999999999999,21.824000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1175,-0.32379999999999998,14.339700000000001,0.13103999999999999,9.9049999999999994,11.15,12.613,14.34,16.393999999999998,18.856999999999999,21.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1176,-0.32379999999999998,14.3459,0.13106999999999999,9.9079999999999995,11.154999999999999,12.618,14.346,16.402000000000001,18.867000000000001,21.847000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1177,-0.32390000000000002,14.3521,0.13109000000000001,9.9120000000000008,11.159000000000001,12.622999999999999,14.352,16.408999999999999,18.876000000000001,21.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1178,-0.32390000000000002,14.3582,0.13111999999999999,9.9149999999999991,11.163,12.628,14.358000000000001,16.417000000000002,18.885000000000002,21.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1179,-0.32400000000000001,14.3644,0.13114000000000001,9.9190000000000005,11.167999999999999,12.632999999999999,14.364000000000001,16.423999999999999,18.893999999999998,21.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1180,-0.32400000000000001,14.3705,0.13117000000000001,9.923,11.172000000000001,12.638,14.37,16.431999999999999,18.902999999999999,21.891999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1181,-0.3241,14.3767,0.13119,9.9260000000000002,11.176,12.643000000000001,14.377000000000001,16.439,18.911999999999999,21.902999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1182,-0.3241,14.382899999999999,0.13122,9.93,11.18,12.648,14.382999999999999,16.446999999999999,18.922000000000001,21.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1183,-0.3241,14.388999999999999,0.13124,9.9339999999999993,11.185,12.654,14.388999999999999,16.454000000000001,18.931000000000001,21.925999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1184,-0.32419999999999999,14.395200000000001,0.13127,9.9369999999999994,11.189,12.659000000000001,14.395,16.462,18.940000000000001,21.937999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1185,-0.32419999999999999,14.401300000000001,0.13128999999999999,9.9410000000000007,11.193,12.664,14.401,16.469000000000001,18.949000000000002,21.949000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1186,-0.32429999999999998,14.407500000000001,0.13131999999999999,9.9440000000000008,11.198,12.669,14.407999999999999,16.477,18.959,21.960999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1187,-0.32429999999999998,14.413600000000001,0.13134000000000001,9.9480000000000004,11.202,12.673999999999999,14.414,16.484000000000002,18.966999999999999,21.971 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1188,-0.32440000000000002,14.4198,0.13136999999999999,9.952,11.206,12.679,14.42,16.492000000000001,18.977,21.983000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1189,-0.32440000000000002,14.4259,0.13139999999999999,9.9550000000000001,11.21,12.683999999999999,14.426,16.498999999999999,18.986000000000001,21.995000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1190,-0.32450000000000001,14.4321,0.13142000000000001,9.9589999999999996,11.215,12.689,14.432,16.507000000000001,18.995000000000001,22.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1191,-0.32450000000000001,14.4382,0.13145000000000001,9.9619999999999997,11.218999999999999,12.694000000000001,14.438000000000001,16.513999999999999,19.004000000000001,22.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1192,-0.32450000000000001,14.4444,0.13147,9.9659999999999993,11.223000000000001,12.7,14.444000000000001,16.521999999999998,19.013000000000002,22.029 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1193,-0.3246,14.4505,0.13150000000000001,9.9689999999999994,11.227,12.705,14.45,16.529,19.023,22.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1194,-0.3246,14.4567,0.13152,9.9730000000000008,11.231999999999999,12.71,14.457000000000001,16.536000000000001,19.032,22.050999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1195,-0.32469999999999999,14.4628,0.13155,9.9770000000000003,11.236000000000001,12.715,14.462999999999999,16.544,19.041,22.062999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1196,-0.32469999999999999,14.468999999999999,0.13156999999999999,9.98,11.24,12.72,14.468999999999999,16.550999999999998,19.05,22.074000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1197,-0.32479999999999998,14.475099999999999,0.13159999999999999,9.984,11.244,12.725,14.475,16.559000000000001,19.059000000000001,22.085999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1198,-0.32479999999999998,14.481299999999999,0.13161999999999999,9.9879999999999995,11.249000000000001,12.73,14.481,16.565999999999999,19.068000000000001,22.097000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1199,-0.32490000000000002,14.487399999999999,0.13164999999999999,9.9909999999999997,11.253,12.734999999999999,14.487,16.574000000000002,19.077999999999999,22.109000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1200,-0.32490000000000002,14.493600000000001,0.13167000000000001,9.9949999999999992,11.257,12.74,14.494,16.581,19.087,22.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1201,-0.32490000000000002,14.499700000000001,0.13170000000000001,9.9979999999999993,11.262,12.744999999999999,14.5,16.588999999999999,19.096,22.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1202,-0.32500000000000001,14.5059,0.13173000000000001,10.002000000000001,11.266,12.75,14.506,16.596,19.106000000000002,22.143000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1203,-0.32500000000000001,14.512,0.13175000000000001,10.005000000000001,11.27,12.756,14.512,16.603999999999999,19.114999999999998,22.154 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1204,-0.3251,14.5181,0.13178000000000001,10.009,11.273999999999999,12.760999999999999,14.518000000000001,16.611000000000001,19.123999999999999,22.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1205,-0.3251,14.5243,0.1318,10.013,11.279,12.766,14.523999999999999,16.619,19.132999999999999,22.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1206,-0.32519999999999999,14.5304,0.13183,10.016,11.282999999999999,12.771000000000001,14.53,16.626000000000001,19.141999999999999,22.189 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1207,-0.32519999999999999,14.5366,0.13184999999999999,10.02,11.287000000000001,12.776,14.537000000000001,16.634,19.151,22.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1208,-0.32529999999999998,14.5427,0.13188,10.023,11.291,12.781000000000001,14.542999999999999,16.640999999999998,19.161000000000001,22.210999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1209,-0.32529999999999998,14.5488,0.13191,10.026999999999999,11.295,12.786,14.548999999999999,16.649000000000001,19.170000000000002,22.222999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1210,-0.32529999999999998,14.555,0.13192999999999999,10.029999999999999,11.3,12.791,14.555,16.655999999999999,19.178999999999998,22.234000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1211,-0.32540000000000002,14.5611,0.13195999999999999,10.034000000000001,11.304,12.795999999999999,14.561,16.664000000000001,19.187999999999999,22.245999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1212,-0.32540000000000002,14.567299999999999,0.13197999999999999,10.038,11.308,12.801,14.567,16.670999999999999,19.196999999999999,22.257000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1213,-0.32550000000000001,14.573399999999999,0.13200999999999999,10.041,11.313000000000001,12.805999999999999,14.573,16.678999999999998,19.207000000000001,22.268999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1214,-0.32550000000000001,14.579499999999999,0.13203999999999999,10.045,11.317,12.811,14.58,16.686,19.216000000000001,22.28 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1215,-0.3256,14.585699999999999,0.13206000000000001,10.048,11.321,12.817,14.586,16.693999999999999,19.225000000000001,22.292000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1216,-0.3256,14.591799999999999,0.13209000000000001,10.052,11.324999999999999,12.821999999999999,14.592000000000001,16.701000000000001,19.234000000000002,22.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1217,-0.32569999999999999,14.597899999999999,0.13211000000000001,10.055,11.33,12.827,14.598000000000001,16.707999999999998,19.242999999999999,22.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1218,-0.32569999999999999,14.604100000000001,0.13214000000000001,10.058999999999999,11.334,12.832000000000001,14.603999999999999,16.716000000000001,19.253,22.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1219,-0.32569999999999999,14.610200000000001,0.13217000000000001,10.061999999999999,11.337999999999999,12.837,14.61,16.724,19.262,22.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1220,-0.32579999999999998,14.616300000000001,0.13219,10.066000000000001,11.342000000000001,12.842000000000001,14.616,16.731000000000002,19.271000000000001,22.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1221,-0.32579999999999998,14.6225,0.13222,10.07,11.346,12.847,14.622,16.739000000000001,19.28,22.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1222,-0.32590000000000002,14.6286,0.13225000000000001,10.073,11.351000000000001,12.852,14.629,16.745999999999999,19.29,22.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1223,-0.32590000000000002,14.6347,0.13227,10.077,11.355,12.856999999999999,14.635,16.753,19.298999999999999,22.382999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1224,-0.32600000000000001,14.6408,0.1323,10.08,11.359,12.862,14.641,16.760999999999999,19.308,22.395 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1225,-0.32600000000000001,14.647,0.13231999999999999,10.084,11.363,12.867000000000001,14.647,16.768000000000001,19.317,22.405999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1226,-0.3261,14.6531,0.13235,10.087,11.368,12.872,14.653,16.776,19.327000000000002,22.417999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1227,-0.3261,14.6592,0.13238,10.090999999999999,11.372,12.877000000000001,14.659000000000001,16.783000000000001,19.335999999999999,22.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1228,-0.3261,14.6653,0.13239999999999999,10.093999999999999,11.375999999999999,12.882,14.664999999999999,16.791,19.344999999999999,22.440999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1229,-0.32619999999999999,14.6715,0.13242999999999999,10.098000000000001,11.38,12.887,14.672000000000001,16.797999999999998,19.353999999999999,22.452999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1230,-0.32619999999999999,14.6776,0.13245999999999999,10.101000000000001,11.384,12.891999999999999,14.678000000000001,16.806000000000001,19.364000000000001,22.463999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1231,-0.32629999999999998,14.6837,0.13247999999999999,10.105,11.388999999999999,12.898,14.683999999999999,16.812999999999999,19.373000000000001,22.475000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1232,-0.32629999999999998,14.6898,0.13250999999999999,10.108000000000001,11.393000000000001,12.903,14.69,16.821000000000002,19.382000000000001,22.486999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1233,-0.32640000000000002,14.696,0.13253999999999999,10.112,11.397,12.907999999999999,14.696,16.827999999999999,19.390999999999998,22.498999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1234,-0.32640000000000002,14.7021,0.13256000000000001,10.116,11.401,12.913,14.702,16.835999999999999,19.399999999999999,22.51 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1235,-0.32640000000000002,14.7082,0.13259000000000001,10.119,11.404999999999999,12.917999999999999,14.708,16.843,19.41,22.521999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1236,-0.32650000000000001,14.7143,0.13261999999999999,10.122999999999999,11.409000000000001,12.923,14.714,16.850999999999999,19.419,22.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1237,-0.32650000000000001,14.7204,0.13264000000000001,10.125999999999999,11.414,12.928000000000001,14.72,16.858000000000001,19.428000000000001,22.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1238,-0.3266,14.7265,0.13267000000000001,10.130000000000001,11.417999999999999,12.933,14.726000000000001,16.866,19.437000000000001,22.556000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1239,-0.3266,14.732699999999999,0.13269,10.132999999999999,11.422000000000001,12.938000000000001,14.733000000000001,16.873000000000001,19.446000000000002,22.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1240,-0.32669999999999999,14.738799999999999,0.13272,10.137,11.426,12.943,14.739000000000001,16.881,19.456,22.579000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1241,-0.32669999999999999,14.744899999999999,0.13275000000000001,10.14,11.430999999999999,12.948,14.744999999999999,16.888000000000002,19.465,22.591000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1242,-0.32679999999999998,14.750999999999999,0.13278000000000001,10.144,11.435,12.952999999999999,14.750999999999999,16.896000000000001,19.475000000000001,22.603000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1243,-0.32679999999999998,14.757099999999999,0.1328,10.147,11.439,12.958,14.757,16.902999999999999,19.483000000000001,22.614000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1244,-0.32679999999999998,14.763199999999999,0.13283,10.151,11.443,12.962999999999999,14.763,16.911000000000001,19.492999999999999,22.625 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1245,-0.32690000000000002,14.769299999999999,0.13286000000000001,10.154,11.446999999999999,12.968,14.769,16.917999999999999,19.501999999999999,22.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1246,-0.32690000000000002,14.775399999999999,0.13288,10.157999999999999,11.451000000000001,12.973000000000001,14.775,16.925000000000001,19.510999999999999,22.648 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1247,-0.32700000000000001,14.781599999999999,0.13291,10.161,11.456,12.978,14.782,16.933,19.521000000000001,22.66 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1248,-0.32700000000000001,14.787699999999999,0.13294,10.164999999999999,11.46,12.983000000000001,14.788,16.940999999999999,19.53,22.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1249,-0.3271,14.793799999999999,0.13295999999999999,10.167999999999999,11.464,12.988,14.794,16.948,19.539000000000001,22.683 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1250,-0.3271,14.799899999999999,0.13299,10.172000000000001,11.468,12.993,14.8,16.954999999999998,19.547999999999998,22.695 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1251,-0.3271,14.805999999999999,0.13302,10.175000000000001,11.472,12.997999999999999,14.805999999999999,16.963000000000001,19.558,22.707000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1252,-0.32719999999999999,14.812099999999999,0.13303999999999999,10.179,11.477,13.004,14.811999999999999,16.97,19.567,22.718 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1253,-0.32719999999999999,14.818199999999999,0.13306999999999999,10.182,11.481,13.007999999999999,14.818,16.978000000000002,19.576000000000001,22.728999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1254,-0.32729999999999998,14.824299999999999,0.1331,10.186,11.484999999999999,13.013,14.824,16.984999999999999,19.585000000000001,22.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1255,-0.32729999999999998,14.830399999999999,0.13311999999999999,10.189,11.489000000000001,13.019,14.83,16.992999999999999,19.594000000000001,22.751999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1256,-0.32740000000000002,14.836499999999999,0.13314999999999999,10.193,11.493,13.023999999999999,14.836,17,19.603999999999999,22.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1257,-0.32740000000000002,14.842599999999999,0.13317999999999999,10.196,11.497,13.029,14.843,17.007999999999999,19.613,22.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1258,-0.32740000000000002,14.848699999999999,0.13321,10.199999999999999,11.500999999999999,13.034000000000001,14.849,17.015000000000001,19.622,22.788 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1259,-0.32750000000000001,14.854799999999999,0.13322999999999999,10.202999999999999,11.506,13.039,14.855,17.023,19.631,22.798999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1260,-0.32750000000000001,14.860900000000001,0.13325999999999999,10.207000000000001,11.51,13.044,14.861000000000001,17.03,19.640999999999998,22.81 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1261,-0.3276,14.867000000000001,0.13328999999999999,10.210000000000001,11.513999999999999,13.048999999999999,14.867000000000001,17.038,19.649999999999999,22.821999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1262,-0.3276,14.873100000000001,0.13331000000000001,10.214,11.518000000000001,13.054,14.872999999999999,17.045000000000002,19.658999999999999,22.832999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1263,-0.32769999999999999,14.879200000000001,0.13333999999999999,10.217000000000001,11.522,13.058999999999999,14.879,17.053000000000001,19.669,22.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1264,-0.32769999999999999,14.885300000000001,0.13336999999999999,10.221,11.526999999999999,13.064,14.885,17.059999999999999,19.678000000000001,22.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1265,-0.32779999999999998,14.891299999999999,0.13339000000000001,10.224,11.531000000000001,13.069000000000001,14.891,17.067,19.687000000000001,22.867999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1266,-0.32779999999999998,14.897399999999999,0.13342000000000001,10.228,11.535,13.074,14.897,17.074999999999999,19.696000000000002,22.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1267,-0.32779999999999998,14.903499999999999,0.13345000000000001,10.231,11.539,13.079000000000001,14.904,17.082000000000001,19.706,22.891999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1268,-0.32790000000000002,14.909599999999999,0.13347999999999999,10.234,11.542999999999999,13.084,14.91,17.09,19.715,22.902999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1269,-0.32790000000000002,14.915699999999999,0.13350000000000001,10.238,11.547000000000001,13.089,14.916,17.097000000000001,19.724,22.914000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1270,-0.32800000000000001,14.921799999999999,0.13353000000000001,10.242000000000001,11.552,13.093999999999999,14.922000000000001,17.105,19.733000000000001,22.925999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1271,-0.32800000000000001,14.927899999999999,0.13356000000000001,10.244999999999999,11.555999999999999,13.099,14.928000000000001,17.111999999999998,19.742999999999999,22.937999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1272,-0.3281,14.933999999999999,0.13358999999999999,10.247999999999999,11.56,13.103999999999999,14.933999999999999,17.12,19.751999999999999,22.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1273,-0.3281,14.94,0.13361000000000001,10.252000000000001,11.564,13.109,14.94,17.126999999999999,19.760999999999999,22.960999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1274,-0.3281,14.946099999999999,0.13364000000000001,10.255000000000001,11.568,13.114000000000001,14.946,17.135000000000002,19.77,22.972999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1275,-0.32819999999999999,14.952199999999999,0.13367000000000001,10.259,11.571999999999999,13.119,14.952,17.141999999999999,19.78,22.984999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1276,-0.32819999999999999,14.958299999999999,0.13369,10.262,11.576000000000001,13.124000000000001,14.958,17.149999999999999,19.789000000000001,22.995999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1277,-0.32829999999999998,14.964399999999999,0.13372000000000001,10.266,11.581,13.129,14.964,17.157,19.797999999999998,23.007999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1278,-0.32829999999999998,14.9704,0.13375000000000001,10.269,11.585000000000001,13.134,14.97,17.164999999999999,19.806999999999999,23.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1279,-0.32840000000000003,14.9765,0.13378000000000001,10.273,11.589,13.138999999999999,14.976000000000001,17.172000000000001,19.817,23.030999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1280,-0.32840000000000003,14.9826,0.1338,10.276,11.593,13.144,14.983000000000001,17.18,19.826000000000001,23.042000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1281,-0.32840000000000003,14.9887,0.13383,10.28,11.597,13.148999999999999,14.989000000000001,17.187000000000001,19.835000000000001,23.053999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1282,-0.32850000000000001,14.9948,0.13386000000000001,10.282999999999999,11.601000000000001,13.154,14.994999999999999,17.195,19.844999999999999,23.065999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1283,-0.32850000000000001,15.0008,0.13389000000000001,10.286,11.605,13.159000000000001,15.000999999999999,17.202000000000002,19.853999999999999,23.077999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1284,-0.3286,15.0069,0.13391,10.29,11.61,13.164,15.007,17.209,19.863,23.088999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1285,-0.3286,15.013,0.13394,10.292999999999999,11.614000000000001,13.169,15.013,17.216999999999999,19.872,23.100999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1286,-0.32869999999999999,15.019,0.13397000000000001,10.297000000000001,11.618,13.173999999999999,15.019,17.224,19.882000000000001,23.111999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1287,-0.32869999999999999,15.0251,0.13400000000000001,10.3,11.622,13.179,15.025,17.231999999999999,19.890999999999998,23.123999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1288,-0.32869999999999999,15.0312,0.13402,10.304,11.625999999999999,13.183999999999999,15.031000000000001,17.239000000000001,19.899999999999999,23.135000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1289,-0.32879999999999998,15.0373,0.13405,10.307,11.63,13.189,15.037000000000001,17.247,19.908999999999999,23.146999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1290,-0.32879999999999998,15.0433,0.13408,10.31,11.634,13.193,15.042999999999999,17.254000000000001,19.919,23.158999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1291,-0.32890000000000003,15.0494,0.13411000000000001,10.314,11.638,13.198,15.048999999999999,17.262,19.928000000000001,23.170999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1292,-0.32890000000000003,15.0555,0.13413,10.318,11.643000000000001,13.204000000000001,15.055999999999999,17.268999999999998,19.937000000000001,23.181999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1293,-0.32900000000000001,15.061500000000001,0.13416,10.321,11.647,13.208,15.061999999999999,17.277000000000001,19.946000000000002,23.193999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1294,-0.32900000000000001,15.067600000000001,0.13419,10.324,11.651,13.212999999999999,15.068,17.283999999999999,19.956,23.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1295,-0.32900000000000001,15.073600000000001,0.13422000000000001,10.327999999999999,11.654999999999999,13.218,15.074,17.292000000000002,19.965,23.216999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1296,-0.3291,15.079700000000001,0.13425000000000001,10.331,11.659000000000001,13.223000000000001,15.08,17.298999999999999,19.975000000000001,23.228999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1297,-0.3291,15.085800000000001,0.13427,10.335000000000001,11.663,13.228,15.086,17.306000000000001,19.984000000000002,23.24 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1298,-0.32919999999999999,15.091799999999999,0.1343,10.337999999999999,11.667,13.233000000000001,15.092000000000001,17.314,19.992999999999999,23.251999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1299,-0.32919999999999999,15.097899999999999,0.13433,10.340999999999999,11.670999999999999,13.238,15.098000000000001,17.321000000000002,20.001999999999999,23.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1300,-0.32929999999999998,15.103899999999999,0.13436000000000001,10.345000000000001,11.675000000000001,13.243,15.103999999999999,17.329000000000001,20.012,23.276 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1301,-0.32929999999999998,15.11,0.13438,10.348000000000001,11.679,13.247999999999999,15.11,17.335999999999999,20.021000000000001,23.286999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1302,-0.32929999999999998,15.116099999999999,0.13441,10.352,11.683999999999999,13.253,15.116,17.344000000000001,20.03,23.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1303,-0.32940000000000003,15.1221,0.13444,10.355,11.688000000000001,13.257999999999999,15.122,17.350999999999999,20.039000000000001,23.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1304,-0.32940000000000003,15.1282,0.13447000000000001,10.358000000000001,11.692,13.263,15.128,17.359000000000002,20.048999999999999,23.321999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1305,-0.32950000000000002,15.1342,0.13449,10.362,11.696,13.268000000000001,15.134,17.366,20.058,23.332999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1306,-0.32950000000000002,15.1403,0.13452,10.365,11.7,13.273,15.14,17.373999999999999,20.067,23.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1307,-0.3296,15.1463,0.13455,10.369,11.704000000000001,13.278,15.146000000000001,17.381,20.076000000000001,23.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1308,-0.3296,15.1524,0.13458000000000001,10.372,11.708,13.282999999999999,15.151999999999999,17.388999999999999,20.085999999999999,23.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1309,-0.3296,15.1584,0.13461000000000001,10.375,11.712,13.288,15.157999999999999,17.396000000000001,20.094999999999999,23.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1310,-0.32969999999999999,15.1645,0.13463,10.379,11.715999999999999,13.292999999999999,15.164,17.402999999999999,20.103999999999999,23.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1311,-0.32969999999999999,15.170500000000001,0.13466,10.382,11.72,13.298,15.17,17.411000000000001,20.113,23.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1312,-0.32979999999999998,15.176600000000001,0.13469,10.385999999999999,11.724,13.303000000000001,15.177,17.417999999999999,20.123000000000001,23.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1313,-0.32979999999999998,15.182600000000001,0.13472000000000001,10.388999999999999,11.728,13.308,15.183,17.425999999999998,20.132000000000001,23.427 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1314,-0.32990000000000003,15.188700000000001,0.13474,10.393000000000001,11.733000000000001,13.313000000000001,15.189,17.433,20.140999999999998,23.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1315,-0.32990000000000003,15.194699999999999,0.13477,10.396000000000001,11.737,13.318,15.195,17.440999999999999,20.151,23.45 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1316,-0.32990000000000003,15.200799999999999,0.1348,10.398999999999999,11.741,13.323,15.201000000000001,17.448,20.16,23.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1317,-0.33,15.206799999999999,0.13483000000000001,10.403,11.744999999999999,13.327,15.207000000000001,17.456,20.169,23.474 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1318,-0.33,15.2128,0.13486000000000001,10.406000000000001,11.749000000000001,13.332000000000001,15.212999999999999,17.463000000000001,20.178999999999998,23.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1319,-0.3301,15.2189,0.13488,10.41,11.753,13.337,15.218999999999999,17.47,20.187999999999999,23.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1320,-0.3301,15.2249,0.13491,10.413,11.757,13.342000000000001,15.225,17.478000000000002,20.196999999999999,23.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1321,-0.33019999999999999,15.231,0.13494,10.416,11.760999999999999,13.347,15.231,17.484999999999999,20.206,23.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1322,-0.33019999999999999,15.237,0.13497000000000001,10.42,11.765000000000001,13.352,15.237,17.492999999999999,20.216000000000001,23.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1323,-0.33019999999999999,15.243,0.13500000000000001,10.423,11.769,13.356999999999999,15.243,17.5,20.225000000000001,23.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1324,-0.33029999999999998,15.2491,0.13502,10.427,11.773999999999999,13.362,15.249000000000001,17.507999999999999,20.234000000000002,23.556000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1325,-0.33029999999999998,15.255100000000001,0.13505,10.43,11.776999999999999,13.367000000000001,15.255000000000001,17.515000000000001,20.242999999999999,23.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1326,-0.33040000000000003,15.261100000000001,0.13508000000000001,10.433,11.782,13.372,15.260999999999999,17.523,20.253,23.579000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1327,-0.33040000000000003,15.267200000000001,0.13511000000000001,10.436999999999999,11.786,13.377000000000001,15.266999999999999,17.53,20.262,23.591000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1328,-0.33050000000000002,15.273199999999999,0.13514000000000001,10.44,11.79,13.382,15.273,17.538,20.271999999999998,23.603000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1329,-0.33050000000000002,15.279199999999999,0.13516,10.443,11.794,13.387,15.279,17.545000000000002,20.28,23.614000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1330,-0.33050000000000002,15.285299999999999,0.13519,10.446999999999999,11.798,13.391999999999999,15.285,17.552,20.29,23.626000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1331,-0.3306,15.2913,0.13522000000000001,10.45,11.802,13.397,15.291,17.559999999999999,20.298999999999999,23.638000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1332,-0.3306,15.2973,0.13525000000000001,10.452999999999999,11.805999999999999,13.401,15.297000000000001,17.567,20.309000000000001,23.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1333,-0.33069999999999999,15.3034,0.13527,10.457000000000001,11.81,13.407,15.303000000000001,17.574999999999999,20.318000000000001,23.661000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1334,-0.33069999999999999,15.3094,0.1353,10.46,11.814,13.411,15.308999999999999,17.582000000000001,20.327000000000002,23.672999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1335,-0.33079999999999998,15.3154,0.13533000000000001,10.464,11.818,13.416,15.315,17.59,20.335999999999999,23.684999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1336,-0.33079999999999998,15.321400000000001,0.13536000000000001,10.467000000000001,11.821999999999999,13.420999999999999,15.321,17.597000000000001,20.346,23.696000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1337,-0.33079999999999998,15.327500000000001,0.13539000000000001,10.47,11.826000000000001,13.426,15.327999999999999,17.605,20.355,23.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1338,-0.33090000000000003,15.333500000000001,0.13541,10.474,11.83,13.430999999999999,15.334,17.611999999999998,20.364000000000001,23.719000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1339,-0.33090000000000003,15.339499999999999,0.13544,10.477,11.834,13.436,15.34,17.619,20.373000000000001,23.731000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1340,-0.33100000000000002,15.345499999999999,0.13547000000000001,10.481,11.837999999999999,13.441000000000001,15.346,17.626999999999999,20.382999999999999,23.742999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1341,-0.33100000000000002,15.351599999999999,0.13550000000000001,10.484,11.842000000000001,13.446,15.352,17.634,20.391999999999999,23.754999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1342,-0.33110000000000001,15.3576,0.13553000000000001,10.487,11.846,13.451000000000001,15.358000000000001,17.641999999999999,20.402000000000001,23.766999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1343,-0.33110000000000001,15.3636,0.13555,10.491,11.851000000000001,13.456,15.364000000000001,17.649000000000001,20.41,23.777999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1344,-0.33110000000000001,15.3696,0.13558000000000001,10.494,11.855,13.461,15.37,17.657,20.420000000000002,23.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1345,-0.33119999999999999,15.3756,0.13561000000000001,10.497,11.859,13.465,15.375999999999999,17.664000000000001,20.428999999999998,23.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1346,-0.33119999999999999,15.3817,0.13564000000000001,10.500999999999999,11.863,13.47,15.382,17.672000000000001,20.439,23.814 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1347,-0.33129999999999998,15.387700000000001,0.13567000000000001,10.504,11.867000000000001,13.475,15.388,17.678999999999998,20.448,23.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1348,-0.33129999999999998,15.393700000000001,0.13569000000000001,10.507999999999999,11.871,13.48,15.394,17.686,20.457000000000001,23.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1349,-0.33139999999999997,15.399699999999999,0.13572000000000001,10.510999999999999,11.875,13.484999999999999,15.4,17.693999999999999,20.466000000000001,23.849 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1350,-0.33139999999999997,15.4057,0.13575000000000001,10.513999999999999,11.879,13.49,15.406000000000001,17.701000000000001,20.475999999999999,23.86 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1351,-0.33139999999999997,15.4117,0.13578000000000001,10.516999999999999,11.882999999999999,13.494999999999999,15.412000000000001,17.709,20.484999999999999,23.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1352,-0.33150000000000002,15.4178,0.13580999999999999,10.521000000000001,11.887,13.5,15.417999999999999,17.716000000000001,20.495000000000001,23.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1353,-0.33150000000000002,15.4238,0.13583999999999999,10.523999999999999,11.891,13.505000000000001,15.423999999999999,17.724,20.504000000000001,23.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1354,-0.33160000000000001,15.4298,0.13586000000000001,10.528,11.895,13.51,15.43,17.731000000000002,20.513000000000002,23.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1355,-0.33160000000000001,15.4358,0.13589000000000001,10.531000000000001,11.898999999999999,13.515000000000001,15.436,17.738,20.521999999999998,23.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1356,-0.33169999999999999,15.441800000000001,0.13592000000000001,10.534000000000001,11.903,13.519,15.442,17.745999999999999,20.532,23.931000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1357,-0.33169999999999999,15.447800000000001,0.13594999999999999,10.538,11.907,13.523999999999999,15.448,17.753,20.541,23.943000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1358,-0.33169999999999999,15.453799999999999,0.13597999999999999,10.541,11.911,13.529,15.454000000000001,17.760999999999999,20.55,23.954999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1359,-0.33179999999999998,15.4598,0.13600000000000001,10.544,11.914999999999999,13.534000000000001,15.46,17.768000000000001,20.559000000000001,23.966000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1360,-0.33179999999999998,15.4658,0.13603000000000001,10.548,11.919,13.539,15.465999999999999,17.776,20.568999999999999,23.978000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1361,-0.33189999999999997,15.4719,0.13605999999999999,10.551,11.923,13.544,15.472,17.783000000000001,20.577999999999999,23.99 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1362,-0.33189999999999997,15.4779,0.13608999999999999,10.554,11.927,13.548999999999999,15.478,17.791,20.587,24.001999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1363,-0.33200000000000002,15.4839,0.13611999999999999,10.558,11.930999999999999,13.554,15.484,17.797999999999998,20.597000000000001,24.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1364,-0.33200000000000002,15.4899,0.13614000000000001,10.561,11.936,13.558999999999999,15.49,17.805,20.606000000000002,24.024999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1365,-0.33200000000000002,15.495900000000001,0.13617000000000001,10.564,11.94,13.564,15.496,17.812999999999999,20.614999999999998,24.036999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1366,-0.33210000000000001,15.501899999999999,0.13619999999999999,10.568,11.944000000000001,13.569000000000001,15.502000000000001,17.82,20.625,24.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1367,-0.33210000000000001,15.507899999999999,0.13622999999999999,10.571,11.946999999999999,13.573,15.507999999999999,17.827999999999999,20.634,24.06 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1368,-0.3322,15.5139,0.13625999999999999,10.574,11.951000000000001,13.577999999999999,15.513999999999999,17.835000000000001,20.643000000000001,24.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1369,-0.3322,15.5199,0.13628000000000001,10.577999999999999,11.956,13.583,15.52,17.843,20.652000000000001,24.084 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1370,-0.3322,15.5259,0.13630999999999999,10.581,11.96,13.587999999999999,15.526,17.850000000000001,20.661999999999999,24.094999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1371,-0.33229999999999998,15.5319,0.13633999999999999,10.584,11.964,13.593,15.532,17.856999999999999,20.670999999999999,24.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1372,-0.33229999999999998,15.5379,0.13636999999999999,10.587999999999999,11.968,13.598000000000001,15.538,17.864999999999998,20.68,24.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1373,-0.33239999999999997,15.543900000000001,0.13639999999999999,10.590999999999999,11.972,13.603,15.544,17.872,20.69,24.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1374,-0.33239999999999997,15.549899999999999,0.13642000000000001,10.595000000000001,11.976000000000001,13.608000000000001,15.55,17.88,20.699000000000002,24.141999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1375,-0.33250000000000002,15.555899999999999,0.13644999999999999,10.598000000000001,11.98,13.613,15.555999999999999,17.887,20.707999999999998,24.154 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1376,-0.33250000000000002,15.5619,0.13647999999999999,10.601000000000001,11.984,13.617000000000001,15.561999999999999,17.895,20.716999999999999,24.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1377,-0.33250000000000002,15.5679,0.13650999999999999,10.603999999999999,11.988,13.622,15.568,17.902000000000001,20.727,24.178000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1378,-0.33260000000000001,15.5739,0.13653999999999999,10.608000000000001,11.992000000000001,13.627000000000001,15.574,17.91,20.736000000000001,24.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1379,-0.33260000000000001,15.5799,0.13655999999999999,10.611000000000001,11.996,13.632,15.58,17.917000000000002,20.745000000000001,24.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1380,-0.3327,15.585900000000001,0.13658999999999999,10.615,12,13.637,15.586,17.923999999999999,20.754999999999999,24.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1381,-0.3327,15.591799999999999,0.13661999999999999,10.618,12.004,13.641999999999999,15.592000000000001,17.931999999999999,20.763999999999999,24.225000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1382,-0.33279999999999998,15.597799999999999,0.13664999999999999,10.621,12.007999999999999,13.647,15.598000000000001,17.939,20.773,24.236999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1383,-0.33279999999999998,15.6038,0.13668,10.624000000000001,12.012,13.651999999999999,15.603999999999999,17.946999999999999,20.783000000000001,24.248999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1384,-0.33279999999999998,15.6098,0.13669999999999999,10.628,12.016,13.657,15.61,17.954000000000001,20.792000000000002,24.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1385,-0.33289999999999997,15.6158,0.13672999999999999,10.631,12.02,13.661,15.616,17.960999999999999,20.800999999999998,24.271999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1386,-0.33289999999999997,15.6218,0.13675999999999999,10.634,12.023999999999999,13.666,15.622,17.969000000000001,20.81,24.283999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1387,-0.33300000000000002,15.627800000000001,0.13678999999999999,10.638,12.028,13.670999999999999,15.628,17.975999999999999,20.82,24.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1388,-0.33300000000000002,15.633800000000001,0.13682,10.641,12.032,13.676,15.634,17.984000000000002,20.829000000000001,24.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1389,-0.33310000000000001,15.639799999999999,0.13683999999999999,10.645,12.036,13.680999999999999,15.64,17.991,20.838000000000001,24.318999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1390,-0.33310000000000001,15.645799999999999,0.13686999999999999,10.648,12.04,13.686,15.646000000000001,17.998999999999999,20.847999999999999,24.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1391,-0.33310000000000001,15.6517,0.13689999999999999,10.651,12.044,13.691000000000001,15.651999999999999,18.006,20.856999999999999,24.343 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1392,-0.3332,15.6577,0.13693,10.654,12.048,13.695,15.657999999999999,18.013000000000002,20.866,24.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1393,-0.3332,15.6637,0.13696,10.657,12.052,13.7,15.664,18.021000000000001,20.876000000000001,24.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1394,-0.33329999999999999,15.669700000000001,0.13697999999999999,10.661,12.055999999999999,13.705,15.67,18.027999999999999,20.885000000000002,24.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1395,-0.33329999999999999,15.675700000000001,0.13700999999999999,10.664,12.06,13.71,15.676,18.036000000000001,20.893999999999998,24.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1396,-0.33339999999999997,15.681699999999999,0.13704,10.667999999999999,12.064,13.715,15.682,18.042999999999999,20.902999999999999,24.402000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1397,-0.33339999999999997,15.6877,0.13707,10.670999999999999,12.068,13.72,15.688000000000001,18.050999999999998,20.913,24.414000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1398,-0.33339999999999997,15.6936,0.1371,10.673999999999999,12.071999999999999,13.725,15.694000000000001,18.058,20.922000000000001,24.425999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1399,-0.33350000000000002,15.6996,0.13711999999999999,10.678000000000001,12.076000000000001,13.73,15.7,18.065000000000001,20.931000000000001,24.437000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1400,-0.33350000000000002,15.7056,0.13714999999999999,10.680999999999999,12.08,13.734999999999999,15.706,18.073,20.940999999999999,24.449000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1401,-0.33360000000000001,15.711600000000001,0.13718,10.683999999999999,12.084,13.739000000000001,15.712,18.079999999999998,20.95,24.460999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1402,-0.33360000000000001,15.717599999999999,0.13721,10.686999999999999,12.087999999999999,13.744,15.718,18.088000000000001,20.959,24.472999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1403,-0.3337,15.723599999999999,0.13724,10.691000000000001,12.092000000000001,13.749000000000001,15.724,18.094999999999999,20.969000000000001,24.484999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1404,-0.3337,15.7295,0.13725999999999999,10.694000000000001,12.096,13.754,15.73,18.102,20.978000000000002,24.495999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1405,-0.3337,15.7355,0.13729,10.696999999999999,12.1,13.759,15.736000000000001,18.11,20.986999999999998,24.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1406,-0.33379999999999999,15.7415,0.13732,10.701000000000001,12.103999999999999,13.763999999999999,15.742000000000001,18.117000000000001,20.997,24.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1407,-0.33379999999999999,15.7475,0.13735,10.704000000000001,12.108000000000001,13.769,15.747999999999999,18.125,21.006,24.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1408,-0.33389999999999997,15.753399999999999,0.13736999999999999,10.707000000000001,12.112,13.773,15.753,18.132000000000001,21.015000000000001,24.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1409,-0.33389999999999997,15.759399999999999,0.13739999999999999,10.711,12.116,13.778,15.759,18.138999999999999,21.024000000000001,24.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1410,-0.33389999999999997,15.7654,0.13743,10.714,12.12,13.782999999999999,15.765000000000001,18.146999999999998,21.033999999999999,24.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1411,-0.33400000000000002,15.7714,0.13746,10.717000000000001,12.124000000000001,13.788,15.771000000000001,18.154,21.042999999999999,24.579000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1412,-0.33400000000000002,15.7774,0.13749,10.72,12.128,13.792999999999999,15.776999999999999,18.161999999999999,21.052,24.591000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1413,-0.33410000000000001,15.783300000000001,0.13750999999999999,10.724,12.132,13.798,15.782999999999999,18.169,21.061,24.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1414,-0.33410000000000001,15.789300000000001,0.13754,10.727,12.135999999999999,13.803000000000001,15.789,18.177,21.071000000000002,24.614000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1415,-0.3342,15.795299999999999,0.13757,10.731,12.14,13.807,15.795,18.184000000000001,21.08,24.626000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1416,-0.3342,15.801299999999999,0.1376,10.734,12.144,13.811999999999999,15.801,18.192,21.09,24.638000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1417,-0.3342,15.8072,0.13763,10.737,12.148,13.817,15.807,18.199000000000002,21.099,24.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1418,-0.33429999999999999,15.8132,0.13764999999999999,10.74,12.151999999999999,13.821999999999999,15.813000000000001,18.206,21.108000000000001,24.661000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1419,-0.33429999999999999,15.8192,0.13768,10.744,12.156000000000001,13.827,15.819000000000001,18.213999999999999,21.117000000000001,24.672999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1420,-0.33439999999999998,15.825200000000001,0.13771,10.747,12.16,13.832000000000001,15.824999999999999,18.221,21.126999999999999,24.684999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1421,-0.33439999999999998,15.831099999999999,0.13774,10.75,12.164,13.837,15.831,18.228999999999999,21.135999999999999,24.696999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1422,-0.33450000000000002,15.8371,0.13775999999999999,10.754,12.167999999999999,13.842000000000001,15.837,18.236000000000001,21.145,24.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1423,-0.33450000000000002,15.8431,0.13779,10.757,12.172000000000001,13.846,15.843,18.242999999999999,21.155000000000001,24.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1424,-0.33450000000000002,15.849,0.13782,10.76,12.176,13.851000000000001,15.849,18.251000000000001,21.164000000000001,24.731999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1425,-0.33460000000000001,15.855,0.13785,10.763,12.18,13.856,15.855,18.257999999999999,21.172999999999998,24.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1426,-0.33460000000000001,15.861000000000001,0.13788,10.766999999999999,12.183999999999999,13.861000000000001,15.861000000000001,18.265999999999998,21.183,24.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1427,-0.3347,15.866899999999999,0.13789999999999999,10.77,12.188000000000001,13.866,15.867000000000001,18.273,21.192,24.766999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1428,-0.3347,15.8729,0.13793,10.773,12.192,13.871,15.872999999999999,18.28,21.201000000000001,24.779 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1429,-0.33479999999999999,15.8789,0.13796,10.776999999999999,12.196,13.875,15.879,18.288,21.210999999999999,24.792000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1430,-0.33479999999999999,15.8849,0.13799,10.78,12.2,13.88,15.885,18.295000000000002,21.22,24.803999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1431,-0.33479999999999999,15.8908,0.13800999999999999,10.782999999999999,12.204000000000001,13.885,15.891,18.303000000000001,21.228999999999999,24.815000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1432,-0.33489999999999998,15.896800000000001,0.13804,10.787000000000001,12.208,13.89,15.897,18.309999999999999,21.238,24.827000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1433,-0.33489999999999998,15.902799999999999,0.13807,10.79,12.212,13.895,15.903,18.318000000000001,21.248000000000001,24.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1434,-0.33500000000000002,15.9087,0.1381,10.792999999999999,12.215999999999999,13.9,15.909000000000001,18.324999999999999,21.257000000000001,24.850999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1435,-0.33500000000000002,15.9147,0.13813,10.795999999999999,12.218999999999999,13.904999999999999,15.914999999999999,18.332000000000001,21.266999999999999,24.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1436,-0.33510000000000001,15.9207,0.13815,10.8,12.224,13.91,15.920999999999999,18.34,21.276,24.873999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1437,-0.33510000000000001,15.926600000000001,0.13818,10.803000000000001,12.228,13.914,15.927,18.347000000000001,21.285,24.885999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1438,-0.33510000000000001,15.932600000000001,0.13821,10.805999999999999,12.231,13.919,15.933,18.355,21.294,24.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1439,-0.3352,15.938599999999999,0.13824,10.81,12.234999999999999,13.923999999999999,15.939,18.361999999999998,21.303999999999998,24.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1440,-0.3352,15.9445,0.13825999999999999,10.813000000000001,12.24,13.929,15.944000000000001,18.369,21.312999999999999,24.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1441,-0.33529999999999999,15.9505,0.13829,10.816000000000001,12.243,13.933999999999999,15.95,18.376999999999999,21.321999999999999,24.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1442,-0.33529999999999999,15.9565,0.13832,10.819000000000001,12.247,13.939,15.956,18.384,21.332000000000001,24.945 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1443,-0.33539999999999998,15.962400000000001,0.13835,10.823,12.250999999999999,13.943,15.962,18.391999999999999,21.341000000000001,24.957000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1444,-0.33539999999999998,15.968400000000001,0.13838,10.826000000000001,12.255000000000001,13.948,15.968,18.399000000000001,21.35,24.969000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1445,-0.33539999999999998,15.974399999999999,0.1384,10.829000000000001,12.259,13.952999999999999,15.974,18.405999999999999,21.359000000000002,24.981000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1446,-0.33550000000000002,15.9803,0.13843,10.833,12.263,13.958,15.98,18.414000000000001,21.369,24.992999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1447,-0.33550000000000002,15.9863,0.13846,10.836,12.266999999999999,13.962999999999999,15.986000000000001,18.420999999999999,21.378,25.004999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1448,-0.33560000000000001,15.9922,0.13849,10.839,12.271000000000001,13.967000000000001,15.992000000000001,18.428999999999998,21.388000000000002,25.016999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1449,-0.33560000000000001,15.998200000000001,0.13850999999999999,10.843,12.275,13.972,15.997999999999999,18.436,21.396999999999998,25.027999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1450,-0.3357,16.004200000000001,0.13854,10.846,12.279,13.977,16.004000000000001,18.443999999999999,21.405999999999999,25.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1451,-0.3357,16.010100000000001,0.13857,10.849,12.282999999999999,13.981999999999999,16.010000000000002,18.451000000000001,21.414999999999999,25.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1452,-0.3357,16.016100000000002,0.1386,10.852,12.287000000000001,13.987,16.015999999999998,18.457999999999998,21.425000000000001,25.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1453,-0.33579999999999999,16.022099999999998,0.13861999999999999,10.856,12.291,13.992000000000001,16.021999999999998,18.466000000000001,21.434000000000001,25.074999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1454,-0.33579999999999999,16.027999999999999,0.13865,10.859,12.295,13.997,16.027999999999999,18.472999999999999,21.443000000000001,25.087 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1455,-0.33589999999999998,16.033999999999999,0.13868,10.862,12.298999999999999,14.002000000000001,16.033999999999999,18.481000000000002,21.452999999999999,25.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1456,-0.33589999999999998,16.039899999999999,0.13871,10.865,12.303000000000001,14.006,16.04,18.488,21.462,25.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1457,-0.33589999999999998,16.0459,0.13872999999999999,10.869,12.307,14.010999999999999,16.045999999999999,18.495000000000001,21.471,25.123000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1458,-0.33600000000000002,16.0519,0.13875999999999999,10.872,12.311,14.016,16.052,18.503,21.481000000000002,25.135000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1459,-0.33600000000000002,16.0578,0.13879,10.875,12.315,14.021000000000001,16.058,18.510000000000002,21.49,25.146999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1460,-0.33610000000000001,16.063800000000001,0.13882,10.879,12.319000000000001,14.026,16.064,18.518000000000001,21.498999999999999,25.158999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1461,-0.33610000000000001,16.069700000000001,0.13883999999999999,10.882,12.323,14.031000000000001,16.07,18.524999999999999,21.507999999999999,25.17 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1462,-0.3362,16.075700000000001,0.13886999999999999,10.885,12.327,14.035,16.076000000000001,18.532,21.518000000000001,25.181999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1463,-0.3362,16.081700000000001,0.1389,10.888,12.331,14.04,16.082000000000001,18.54,21.527000000000001,25.193999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1464,-0.3362,16.087599999999998,0.13893,10.891999999999999,12.335000000000001,14.045,16.088000000000001,18.547000000000001,21.536999999999999,25.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1465,-0.33629999999999999,16.093599999999999,0.13894999999999999,10.895,12.339,14.05,16.094000000000001,18.555,21.545999999999999,25.218 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1466,-0.33629999999999999,16.099499999999999,0.13897999999999999,10.898,12.343,14.055,16.099,18.562000000000001,21.555,25.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1467,-0.33639999999999998,16.105499999999999,0.13900999999999999,10.901999999999999,12.347,14.06,16.106000000000002,18.57,21.565000000000001,25.242000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1468,-0.33639999999999998,16.111499999999999,0.13904,10.904999999999999,12.351000000000001,14.064,16.111999999999998,18.577000000000002,21.574000000000002,25.254000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1469,-0.33650000000000002,16.1174,0.13907,10.907999999999999,12.353999999999999,14.069000000000001,16.117000000000001,18.585000000000001,21.584,25.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1470,-0.33650000000000002,16.1234,0.13908999999999999,10.911,12.359,14.074,16.123000000000001,18.591999999999999,21.591999999999999,25.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1471,-0.33650000000000002,16.129300000000001,0.13911999999999999,10.914999999999999,12.362,14.079000000000001,16.129000000000001,18.599,21.602,25.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1472,-0.33660000000000001,16.135300000000001,0.13915,10.917999999999999,12.366,14.084,16.135000000000002,18.606999999999999,21.611000000000001,25.300999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1473,-0.33660000000000001,16.141300000000001,0.13918,10.920999999999999,12.37,14.089,16.140999999999998,18.614000000000001,21.620999999999999,25.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1474,-0.3367,16.147200000000002,0.13919999999999999,10.925000000000001,12.374000000000001,14.093,16.146999999999998,18.620999999999999,21.63,25.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1475,-0.3367,16.153199999999998,0.13922999999999999,10.928000000000001,12.378,14.098000000000001,16.152999999999999,18.629000000000001,21.638999999999999,25.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1476,-0.33679999999999999,16.159099999999999,0.13925999999999999,10.930999999999999,12.382,14.103,16.158999999999999,18.635999999999999,21.649000000000001,25.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1477,-0.33679999999999999,16.165099999999999,0.13927999999999999,10.933999999999999,12.385999999999999,14.108000000000001,16.164999999999999,18.643999999999998,21.658000000000001,25.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1478,-0.33679999999999999,16.170999999999999,0.13930999999999999,10.938000000000001,12.39,14.113,16.170999999999999,18.651,21.667000000000002,25.372 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1479,-0.33689999999999998,16.177,0.13933999999999999,10.941000000000001,12.394,14.118,16.177,18.658999999999999,21.677,25.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1480,-0.33689999999999998,16.1829,0.13936999999999999,10.944000000000001,12.398,14.122,16.183,18.666,21.686,25.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1481,-0.33700000000000002,16.1889,0.13938999999999999,10.948,12.401999999999999,14.127000000000001,16.189,18.672999999999998,21.695,25.408000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1482,-0.33700000000000002,16.194900000000001,0.13941999999999999,10.951000000000001,12.406000000000001,14.132,16.195,18.681000000000001,21.704999999999998,25.42 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1483,-0.33710000000000001,16.200800000000001,0.13944999999999999,10.954000000000001,12.41,14.137,16.201000000000001,18.687999999999999,21.713999999999999,25.431999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1484,-0.33710000000000001,16.206800000000001,0.13947999999999999,10.957000000000001,12.414,14.141999999999999,16.207000000000001,18.696000000000002,21.722999999999999,25.443999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1485,-0.33710000000000001,16.212700000000002,0.13950000000000001,10.961,12.417999999999999,14.147,16.213000000000001,18.702999999999999,21.731999999999999,25.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1486,-0.3372,16.218699999999998,0.13952999999999999,10.964,12.422000000000001,14.151,16.219000000000001,18.71,21.742000000000001,25.468 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1487,-0.3372,16.224599999999999,0.13955999999999999,10.967000000000001,12.426,14.156000000000001,16.225000000000001,18.718,21.751000000000001,25.48 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1488,-0.33729999999999999,16.230599999999999,0.13958999999999999,10.97,12.43,14.161,16.231000000000002,18.725000000000001,21.760999999999999,25.492000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1489,-0.33729999999999999,16.236499999999999,0.13961000000000001,10.974,12.433999999999999,14.166,16.236000000000001,18.733000000000001,21.77,25.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1490,-0.33739999999999998,16.2425,0.13963999999999999,10.977,12.438000000000001,14.170999999999999,16.242000000000001,18.739999999999998,21.779,25.515000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1491,-0.33739999999999998,16.2485,0.13966999999999999,10.98,12.442,14.176,16.248000000000001,18.748000000000001,21.789000000000001,25.527000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1492,-0.33739999999999998,16.2544,0.13969999999999999,10.983000000000001,12.446,14.18,16.254000000000001,18.754999999999999,21.797999999999998,25.539000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1493,-0.33750000000000002,16.260400000000001,0.13972000000000001,10.987,12.45,14.185,16.260000000000002,18.762,21.806999999999999,25.550999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1494,-0.33750000000000002,16.266300000000001,0.13975000000000001,10.99,12.454000000000001,14.19,16.265999999999998,18.77,21.817,25.562999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1495,-0.33760000000000001,16.272300000000001,0.13977999999999999,10.993,12.457000000000001,14.195,16.271999999999998,18.777000000000001,21.826000000000001,25.574999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1496,-0.33760000000000001,16.278199999999998,0.13980000000000001,10.997,12.462,14.2,16.277999999999999,18.785,21.835000000000001,25.585999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1497,-0.3377,16.284199999999998,0.13983000000000001,11,12.465,14.205,16.283999999999999,18.792000000000002,21.844999999999999,25.599 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1498,-0.3377,16.290099999999999,0.13986000000000001,11.003,12.468999999999999,14.209,16.29,18.798999999999999,21.853999999999999,25.611000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1499,-0.3377,16.296099999999999,0.13988999999999999,11.006,12.473000000000001,14.214,16.295999999999999,18.806999999999999,21.864000000000001,25.623000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1500,-0.33779999999999999,16.302,0.13991000000000001,11.01,12.477,14.218999999999999,16.302,18.814,21.872,25.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1501,-0.33779999999999999,16.308,0.13994000000000001,11.013,12.481,14.224,16.308,18.821999999999999,21.882000000000001,25.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1502,-0.33789999999999998,16.314,0.13997000000000001,11.016,12.484999999999999,14.228999999999999,16.314,18.829000000000001,21.891999999999999,25.658999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1503,-0.33789999999999998,16.319900000000001,0.14000000000000001,11.019,12.489000000000001,14.233000000000001,16.32,18.837,21.901,25.670999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1504,-0.33800000000000002,16.325900000000001,0.14002000000000001,11.023,12.493,14.238,16.326000000000001,18.844000000000001,21.91,25.681999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1505,-0.33800000000000002,16.331800000000001,0.14005000000000001,11.026,12.497,14.243,16.332000000000001,18.850999999999999,21.919,25.693999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1506,-0.33800000000000002,16.337800000000001,0.14008000000000001,11.029,12.500999999999999,14.247999999999999,16.338000000000001,18.859000000000002,21.928999999999998,25.706 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1507,-0.33810000000000001,16.343699999999998,0.1401,11.032999999999999,12.505000000000001,14.253,16.344000000000001,18.866,21.937999999999999,25.718 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1508,-0.33810000000000001,16.349699999999999,0.14013,11.036,12.509,14.257999999999999,16.350000000000001,18.873999999999999,21.946999999999999,25.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1509,-0.3382,16.355599999999999,0.14016000000000001,11.039,12.513,14.262,16.356000000000002,18.881,21.957000000000001,25.742000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1510,-0.3382,16.361599999999999,0.14019000000000001,11.042,12.516999999999999,14.266999999999999,16.361999999999998,18.888999999999999,21.966000000000001,25.754000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1511,-0.33829999999999999,16.3675,0.14021,11.045999999999999,12.521000000000001,14.272,16.367999999999999,18.896000000000001,21.975000000000001,25.765999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1512,-0.33829999999999999,16.3735,0.14024,11.048999999999999,12.525,14.276999999999999,16.373999999999999,18.902999999999999,21.984999999999999,25.777999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1513,-0.33829999999999999,16.3794,0.14027000000000001,11.052,12.529,14.282,16.379000000000001,18.911000000000001,21.994,25.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1514,-0.33839999999999998,16.385400000000001,0.14029,11.055,12.532999999999999,14.287000000000001,16.385000000000002,18.917999999999999,22.003,25.800999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1515,-0.33839999999999998,16.391300000000001,0.14032,11.058999999999999,12.537000000000001,14.291,16.390999999999998,18.925999999999998,22.013000000000002,25.812999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1516,-0.33850000000000002,16.397300000000001,0.14035,11.061999999999999,12.541,14.295999999999999,16.396999999999998,18.933,22.021999999999998,25.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1517,-0.33850000000000002,16.403199999999998,0.14038,11.065,12.544,14.301,16.402999999999999,18.940000000000001,22.032,25.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1518,-0.33860000000000001,16.409199999999998,0.1404,11.068,12.548999999999999,14.305999999999999,16.408999999999999,18.948,22.041,25.849 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1519,-0.33860000000000001,16.415099999999999,0.14043,11.071999999999999,12.552,14.311,16.414999999999999,18.954999999999998,22.05,25.861000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1520,-0.33860000000000001,16.421099999999999,0.14046,11.074999999999999,12.555999999999999,14.316000000000001,16.420999999999999,18.963000000000001,22.06,25.873000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1521,-0.3387,16.427,0.14047999999999999,11.077999999999999,12.56,14.32,16.427,18.97,22.068999999999999,25.885000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1522,-0.3387,16.433,0.14051,11.081,12.564,14.324999999999999,16.433,18.978000000000002,22.077999999999999,25.896999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1523,-0.33879999999999999,16.4389,0.14054,11.085000000000001,12.568,14.33,16.439,18.984999999999999,22.088000000000001,25.908999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1524,-0.33879999999999999,16.444900000000001,0.14055999999999999,11.087999999999999,12.571999999999999,14.335000000000001,16.445,18.992000000000001,22.097000000000001,25.92 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1525,-0.33889999999999998,16.450800000000001,0.14058999999999999,11.090999999999999,12.576000000000001,14.34,16.451000000000001,19,22.106000000000002,25.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1526,-0.33889999999999998,16.456800000000001,0.14061999999999999,11.093999999999999,12.58,14.345000000000001,16.457000000000001,19.007000000000001,22.116,25.945 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1527,-0.33889999999999998,16.462700000000002,0.14065,11.097,12.584,14.349,16.463000000000001,19.015000000000001,22.125,25.957000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1528,-0.33900000000000002,16.468699999999998,0.14066999999999999,11.101000000000001,12.587999999999999,14.353999999999999,16.469000000000001,19.021999999999998,22.134,25.969000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1529,-0.33900000000000002,16.474599999999999,0.14069999999999999,11.103999999999999,12.592000000000001,14.359,16.475000000000001,19.029,22.143999999999998,25.981000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1530,-0.33910000000000001,16.480599999999999,0.14072999999999999,11.106999999999999,12.596,14.364000000000001,16.481000000000002,19.036999999999999,22.154,25.992999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1531,-0.33910000000000001,16.486499999999999,0.14074999999999999,11.111000000000001,12.6,14.369,16.486000000000001,19.044,22.161999999999999,26.004000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1532,-0.3392,16.4925,0.14077999999999999,11.114000000000001,12.603999999999999,14.372999999999999,16.492000000000001,19.052,22.172000000000001,26.016999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1533,-0.3392,16.4984,0.14080999999999999,11.117000000000001,12.608000000000001,14.378,16.498000000000001,19.059000000000001,22.181000000000001,26.029 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1534,-0.3392,16.5044,0.14083000000000001,11.121,12.612,14.382999999999999,16.504000000000001,19.065999999999999,22.190999999999999,26.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1535,-0.33929999999999999,16.510300000000001,0.14086000000000001,11.124000000000001,12.616,14.388,16.510000000000002,19.074000000000002,22.2,26.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1536,-0.33929999999999999,16.516300000000001,0.14088999999999999,11.127000000000001,12.619,14.393000000000001,16.515999999999998,19.081,22.21,26.065000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1537,-0.33939999999999998,16.522200000000002,0.14091000000000001,11.13,12.624000000000001,14.398,16.521999999999998,19.088999999999999,22.219000000000001,26.076000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1538,-0.33939999999999998,16.528199999999998,0.14094000000000001,11.134,12.627000000000001,14.401999999999999,16.527999999999999,19.096,22.228000000000002,26.088000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1539,-0.33950000000000002,16.534099999999999,0.14097000000000001,11.137,12.631,14.407,16.533999999999999,19.103999999999999,22.238,26.100999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1540,-0.33950000000000002,16.540099999999999,0.14099999999999999,11.14,12.635,14.412000000000001,16.54,19.111000000000001,22.247,26.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1541,-0.33960000000000001,16.545999999999999,0.14102000000000001,11.143000000000001,12.638999999999999,14.417,16.545999999999999,19.117999999999999,22.256,26.123999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1542,-0.33960000000000001,16.552,0.14105000000000001,11.147,12.643000000000001,14.422000000000001,16.552,19.126000000000001,22.265999999999998,26.135999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1543,-0.33960000000000001,16.5579,0.14108000000000001,11.15,12.647,14.426,16.558,19.132999999999999,22.274999999999999,26.148 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1544,-0.3397,16.5639,0.1411,11.153,12.651,14.430999999999999,16.564,19.140999999999998,22.283999999999999,26.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1545,-0.3397,16.569800000000001,0.14113000000000001,11.156000000000001,12.654999999999999,14.436,16.57,19.148,22.294,26.172000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1546,-0.33979999999999999,16.575800000000001,0.14116000000000001,11.16,12.659000000000001,14.441000000000001,16.576000000000001,19.155999999999999,22.303000000000001,26.184999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1547,-0.33979999999999999,16.581700000000001,0.14118,11.163,12.663,14.446,16.582000000000001,19.163,22.312000000000001,26.196000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1548,-0.33989999999999998,16.587599999999998,0.14121,11.166,12.667,14.451000000000001,16.588000000000001,19.170000000000002,22.321999999999999,26.207999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1549,-0.33989999999999998,16.593599999999999,0.14124,11.169,12.670999999999999,14.455,16.594000000000001,19.178000000000001,22.331,26.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1550,-0.33989999999999998,16.599499999999999,0.14126,11.173,12.675000000000001,14.46,16.600000000000001,19.184999999999999,22.34,26.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1551,-0.34,16.605499999999999,0.14129,11.176,12.679,14.465,16.606000000000002,19.193000000000001,22.35,26.244 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1552,-0.34,16.6114,0.14132,11.179,12.682,14.47,16.611000000000001,19.2,22.359000000000002,26.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1553,-0.34010000000000001,16.6174,0.14133999999999999,11.182,12.686999999999999,14.475,16.617000000000001,19.207000000000001,22.369,26.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1554,-0.34010000000000001,16.6233,0.14137,11.186,12.69,14.478999999999999,16.623000000000001,19.215,22.378,26.28 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1555,-0.3402,16.629300000000001,0.1414,11.189,12.694000000000001,14.484,16.629000000000001,19.222000000000001,22.388000000000002,26.292000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1556,-0.3402,16.635200000000001,0.14141999999999999,11.192,12.698,14.489000000000001,16.635000000000002,19.23,22.396999999999998,26.303999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1557,-0.3402,16.641200000000001,0.14144999999999999,11.195,12.702,14.494,16.640999999999998,19.236999999999998,22.405999999999999,26.315999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1558,-0.34029999999999999,16.647099999999998,0.14147999999999999,11.199,12.706,14.499000000000001,16.646999999999998,19.245000000000001,22.416,26.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1559,-0.34029999999999999,16.652999999999999,0.14149999999999999,11.202,12.71,14.504,16.652999999999999,19.251999999999999,22.425000000000001,26.338999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1560,-0.34039999999999998,16.658999999999999,0.14152999999999999,11.205,12.714,14.507999999999999,16.658999999999999,19.259,22.434000000000001,26.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1561,-0.34039999999999998,16.664899999999999,0.14155999999999999,11.208,12.718,14.513,16.664999999999999,19.266999999999999,22.443999999999999,26.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1562,-0.34050000000000002,16.6709,0.14158000000000001,11.212,12.722,14.518000000000001,16.670999999999999,19.274000000000001,22.452999999999999,26.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1563,-0.34050000000000002,16.6768,0.14161000000000001,11.215,12.726000000000001,14.523,16.677,19.282,22.462,26.388000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1564,-0.34050000000000002,16.6828,0.14163999999999999,11.218,12.73,14.528,16.683,19.289000000000001,22.472000000000001,26.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1565,-0.34060000000000001,16.688700000000001,0.14166000000000001,11.221,12.734,14.532,16.689,19.295999999999999,22.481000000000002,26.411999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1566,-0.34060000000000001,16.694700000000001,0.14169000000000001,11.225,12.738,14.537000000000001,16.695,19.303999999999998,22.491,26.423999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1567,-0.3407,16.700600000000001,0.14172000000000001,11.228,12.742000000000001,14.542,16.701000000000001,19.311,22.5,26.436 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1568,-0.3407,16.706499999999998,0.14174,11.231,12.746,14.547000000000001,16.706,19.318999999999999,22.509,26.446999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1569,-0.34079999999999999,16.712499999999999,0.14177000000000001,11.234,12.75,14.552,16.712,19.326000000000001,22.518999999999998,26.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1570,-0.34079999999999999,16.718399999999999,0.14179,11.238,12.754,14.557,16.718,19.334,22.527999999999999,26.471 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1571,-0.34079999999999999,16.724399999999999,0.14182,11.241,12.757,14.561,16.724,19.341000000000001,22.536999999999999,26.484000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1572,-0.34089999999999998,16.7303,0.14185,11.244,12.760999999999999,14.566000000000001,16.73,19.349,22.547000000000001,26.495999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1573,-0.34089999999999998,16.7363,0.14187,11.247999999999999,12.765000000000001,14.571,16.736000000000001,19.356000000000002,22.556000000000001,26.507000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1574,-0.34100000000000003,16.7422,0.1419,11.250999999999999,12.769,14.576000000000001,16.742000000000001,19.363,22.565000000000001,26.52 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1575,-0.34100000000000003,16.748100000000001,0.14193,11.254,12.773,14.58,16.748000000000001,19.370999999999999,22.574999999999999,26.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1576,-0.34110000000000001,16.754100000000001,0.14194999999999999,11.257,12.776999999999999,14.585000000000001,16.754000000000001,19.378,22.584,26.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1577,-0.34110000000000001,16.760000000000002,0.14198,11.26,12.781000000000001,14.59,16.760000000000002,19.385999999999999,22.594000000000001,26.556000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1578,-0.3412,16.765999999999998,0.14201,11.263999999999999,12.785,14.595000000000001,16.765999999999998,19.393000000000001,22.603000000000002,26.568000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1579,-0.3412,16.771899999999999,0.14202999999999999,11.266999999999999,12.789,14.6,16.771999999999998,19.399999999999999,22.611999999999998,26.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1580,-0.3412,16.777799999999999,0.14205999999999999,11.27,12.792999999999999,14.605,16.777999999999999,19.408000000000001,22.622,26.591999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1581,-0.34129999999999999,16.783799999999999,0.14208999999999999,11.273,12.797000000000001,14.609,16.783999999999999,19.414999999999999,22.631,26.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1582,-0.34129999999999999,16.7897,0.14210999999999999,11.276999999999999,12.801,14.614000000000001,16.79,19.422999999999998,22.64,26.614999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1583,-0.34139999999999998,16.7957,0.14213999999999999,11.28,12.805,14.619,16.795999999999999,19.43,22.65,26.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1584,-0.34139999999999998,16.801600000000001,0.14216000000000001,11.282999999999999,12.808999999999999,14.624000000000001,16.802,19.437000000000001,22.658999999999999,26.638999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1585,-0.34150000000000003,16.807500000000001,0.14219000000000001,11.286,12.811999999999999,14.629,16.808,19.445,22.669,26.652000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1586,-0.34150000000000003,16.813500000000001,0.14222000000000001,11.29,12.816000000000001,14.632999999999999,16.814,19.452000000000002,22.678000000000001,26.664000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1587,-0.34150000000000003,16.819400000000002,0.14224000000000001,11.292999999999999,12.82,14.638,16.818999999999999,19.46,22.687000000000001,26.675000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1588,-0.34160000000000001,16.825399999999998,0.14227000000000001,11.295999999999999,12.824,14.643000000000001,16.824999999999999,19.466999999999999,22.696999999999999,26.687999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1589,-0.34160000000000001,16.831299999999999,0.14230000000000001,11.298999999999999,12.827999999999999,14.648,16.831,19.475000000000001,22.706,26.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1590,-0.3417,16.837199999999999,0.14232,11.303000000000001,12.832000000000001,14.653,16.837,19.481999999999999,22.715,26.712 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1591,-0.3417,16.8432,0.14235,11.305999999999999,12.836,14.657,16.843,19.489000000000001,22.725000000000001,26.724 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1592,-0.34179999999999999,16.8491,0.14237,11.308999999999999,12.84,14.662000000000001,16.849,19.497,22.734000000000002,26.736000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1593,-0.34179999999999999,16.855,0.1424,11.311999999999999,12.843999999999999,14.667,16.855,19.504000000000001,22.744,26.748000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1594,-0.34179999999999999,16.861000000000001,0.14243,11.316000000000001,12.848000000000001,14.672000000000001,16.861000000000001,19.512,22.753,26.76 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1595,-0.34189999999999998,16.866900000000001,0.14244999999999999,11.319000000000001,12.852,14.677,16.867000000000001,19.518999999999998,22.762,26.771999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1596,-0.34189999999999998,16.872900000000001,0.14248,11.321999999999999,12.856,14.682,16.873000000000001,19.527000000000001,22.771999999999998,26.783999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1597,-0.34200000000000003,16.878799999999998,0.14251,11.324999999999999,12.86,14.686,16.879000000000001,19.533999999999999,22.780999999999999,26.795999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1598,-0.34200000000000003,16.884699999999999,0.14252999999999999,11.329000000000001,12.864000000000001,14.691000000000001,16.885000000000002,19.541,22.79,26.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1599,-0.34210000000000002,16.890699999999999,0.14255999999999999,11.332000000000001,12.868,14.696,16.890999999999998,19.548999999999999,22.8,26.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1600,-0.34210000000000002,16.896599999999999,0.14258000000000001,11.335000000000001,12.872,14.701000000000001,16.896999999999998,19.556000000000001,22.809000000000001,26.832000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1601,-0.34210000000000002,16.9025,0.14260999999999999,11.337999999999999,12.875,14.705,16.902000000000001,19.564,22.818999999999999,26.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1602,-0.3422,16.9085,0.14263999999999999,11.342000000000001,12.879,14.71,16.908000000000001,19.571000000000002,22.827999999999999,26.856000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1603,-0.3422,16.914400000000001,0.14266000000000001,11.345000000000001,12.882999999999999,14.715,16.914000000000001,19.577999999999999,22.837,26.867999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1604,-0.34229999999999999,16.920300000000001,0.14269000000000001,11.348000000000001,12.887,14.72,16.920000000000002,19.585999999999999,22.847000000000001,26.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1605,-0.34229999999999999,16.926300000000001,0.14271,11.351000000000001,12.891,14.725,16.925999999999998,19.593,22.856000000000002,26.891999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1606,-0.34239999999999998,16.932200000000002,0.14274000000000001,11.355,12.895,14.73,16.931999999999999,19.600999999999999,22.866,26.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1607,-0.34239999999999998,16.938099999999999,0.14277000000000001,11.358000000000001,12.898999999999999,14.734,16.937999999999999,19.608000000000001,22.875,26.916 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1608,-0.34250000000000003,16.944099999999999,0.14279,11.361000000000001,12.903,14.739000000000001,16.943999999999999,19.614999999999998,22.884,26.928000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1609,-0.34250000000000003,16.95,0.14282,11.364000000000001,12.907,14.744,16.95,19.623000000000001,22.893999999999998,26.94 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1610,-0.34250000000000003,16.9559,0.14283999999999999,11.368,12.911,14.749000000000001,16.956,19.63,22.902999999999999,26.952000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1611,-0.34260000000000002,16.9619,0.14287,11.371,12.914999999999999,14.754,16.962,19.638000000000002,22.911999999999999,26.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1612,-0.34260000000000002,16.9678,0.1429,11.374000000000001,12.917999999999999,14.757999999999999,16.968,19.645,22.922000000000001,26.977 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1613,-0.3427,16.973700000000001,0.14291999999999999,11.377000000000001,12.923,14.763,16.974,19.652000000000001,22.931000000000001,26.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1614,-0.3427,16.979600000000001,0.14294999999999999,11.38,12.926,14.768000000000001,16.98,19.66,22.940999999999999,27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1615,-0.34279999999999999,16.985600000000002,0.14297000000000001,11.384,12.93,14.773,16.986000000000001,19.667000000000002,22.95,27.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1616,-0.34279999999999999,16.991499999999998,0.14299999999999999,11.387,12.933999999999999,14.778,16.992000000000001,19.675000000000001,22.959,27.024000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1617,-0.34279999999999999,16.997399999999999,0.14302999999999999,11.39,12.938000000000001,14.782,16.997,19.681999999999999,22.969000000000001,27.036999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1618,-0.34289999999999998,17.003399999999999,0.14305000000000001,11.394,12.942,14.787000000000001,17.003,19.690000000000001,22.978000000000002,27.047999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1619,-0.34289999999999998,17.0093,0.14308000000000001,11.397,12.946,14.792,17.009,19.696999999999999,22.988,27.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1620,-0.34300000000000003,17.0152,0.1431,11.4,12.95,14.797000000000001,17.015000000000001,19.704000000000001,22.997,27.071999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1621,-0.34300000000000003,17.021100000000001,0.14313000000000001,11.403,12.954000000000001,14.801,17.021000000000001,19.712,23.006,27.084 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1622,-0.34310000000000002,17.027100000000001,0.14315,11.407,12.958,14.805999999999999,17.027000000000001,19.719000000000001,23.015000000000001,27.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1623,-0.34310000000000002,17.033000000000001,0.14318,11.41,12.962,14.811,17.033000000000001,19.727,23.024999999999999,27.108000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1624,-0.34310000000000002,17.038900000000002,0.14321,11.413,12.965999999999999,14.816000000000001,17.039000000000001,19.734000000000002,23.033999999999999,27.120999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1625,-0.34320000000000001,17.044799999999999,0.14323,11.416,12.97,14.821,17.045000000000002,19.741,23.042999999999999,27.132000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1626,-0.34320000000000001,17.050799999999999,0.14326,11.419,12.973000000000001,14.824999999999999,17.050999999999998,19.748999999999999,23.053000000000001,27.145 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1627,-0.34329999999999999,17.056699999999999,0.14327999999999999,11.423,12.978,14.83,17.056999999999999,19.756,23.062000000000001,27.155999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1628,-0.34329999999999999,17.0626,0.14330999999999999,11.426,12.981,14.835000000000001,17.062999999999999,19.763999999999999,23.071999999999999,27.169 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1629,-0.34339999999999998,17.0685,0.14334,11.429,12.984999999999999,14.84,17.068000000000001,19.771000000000001,23.081,27.181000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1630,-0.34339999999999998,17.074400000000001,0.14335999999999999,11.432,12.989000000000001,14.845000000000001,17.074000000000002,19.777999999999999,23.09,27.192 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1631,-0.34339999999999998,17.080400000000001,0.14338999999999999,11.435,12.993,14.849,17.079999999999998,19.786000000000001,23.1,27.204999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1632,-0.34350000000000003,17.086300000000001,0.14341000000000001,11.439,12.997,14.853999999999999,17.085999999999999,19.792999999999999,23.109000000000002,27.216999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1633,-0.34350000000000003,17.092199999999998,0.14344000000000001,11.442,13.000999999999999,14.859,17.091999999999999,19.800999999999998,23.119,27.228999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1634,-0.34360000000000002,17.098099999999999,0.14346,11.445,13.005000000000001,14.864000000000001,17.097999999999999,19.808,23.128,27.24 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1635,-0.34360000000000002,17.103999999999999,0.14349000000000001,11.448,13.009,14.869,17.103999999999999,19.815000000000001,23.137,27.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1636,-0.34370000000000001,17.11,0.14352000000000001,11.452,13.013,14.872999999999999,17.11,19.823,23.146999999999998,27.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1637,-0.34370000000000001,17.1159,0.14354,11.455,13.016999999999999,14.878,17.116,19.829999999999998,23.155999999999999,27.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1638,-0.34379999999999999,17.1218,0.14357,11.458,13.02,14.882999999999999,17.122,19.838000000000001,23.166,27.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1639,-0.34379999999999999,17.127700000000001,0.14359,11.461,13.023999999999999,14.888,17.128,19.844999999999999,23.175000000000001,27.300999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1640,-0.34379999999999999,17.133600000000001,0.14362,11.464,13.028,14.891999999999999,17.134,19.852,23.184000000000001,27.312999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1641,-0.34389999999999998,17.139500000000002,0.14363999999999999,11.468,13.032,14.897,17.14,19.86,23.193000000000001,27.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1642,-0.34389999999999998,17.145499999999998,0.14366999999999999,11.471,13.036,14.901999999999999,17.146000000000001,19.867000000000001,23.202999999999999,27.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1643,-0.34399999999999997,17.151399999999999,0.14369000000000001,11.474,13.04,14.907,17.151,19.875,23.212,27.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1644,-0.34399999999999997,17.157299999999999,0.14371999999999999,11.478,13.044,14.912000000000001,17.157,19.882000000000001,23.222000000000001,27.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1645,-0.34410000000000002,17.1632,0.14374999999999999,11.481,13.048,14.916,17.163,19.89,23.231000000000002,27.373999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1646,-0.34410000000000002,17.1691,0.14377000000000001,11.484,13.052,14.920999999999999,17.169,19.896999999999998,23.24,27.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1647,-0.34410000000000002,17.175000000000001,0.14380000000000001,11.487,13.055999999999999,14.926,17.175000000000001,19.904,23.25,27.396999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1648,-0.34420000000000001,17.180900000000001,0.14382,11.49,13.06,14.930999999999999,17.181000000000001,19.911999999999999,23.259,27.408999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1649,-0.34420000000000001,17.186800000000002,0.14385000000000001,11.494,13.063000000000001,14.935,17.187000000000001,19.919,23.268999999999998,27.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1650,-0.34429999999999999,17.192699999999999,0.14387,11.497,13.067,14.94,17.193000000000001,19.925999999999998,23.277999999999999,27.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1651,-0.34429999999999999,17.198699999999999,0.1439,11.5,13.071,14.945,17.199000000000002,19.934000000000001,23.286999999999999,27.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1652,-0.34439999999999998,17.204599999999999,0.14391999999999999,11.504,13.074999999999999,14.95,17.204999999999998,19.940999999999999,23.295999999999999,27.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1653,-0.34439999999999998,17.2105,0.14394999999999999,11.507,13.079000000000001,14.955,17.21,19.949000000000002,23.306000000000001,27.469000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1654,-0.34439999999999998,17.2164,0.14398,11.51,13.083,14.959,17.216000000000001,19.956,23.315999999999999,27.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1655,-0.34449999999999997,17.222300000000001,0.14399999999999999,11.513,13.087,14.964,17.222000000000001,19.963000000000001,23.324999999999999,27.492999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1656,-0.34449999999999997,17.228200000000001,0.14402999999999999,11.516,13.090999999999999,14.968999999999999,17.228000000000002,19.971,23.334,27.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1657,-0.34460000000000002,17.234100000000002,0.14405000000000001,11.52,13.095000000000001,14.974,17.234000000000002,19.978000000000002,23.343,27.516999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1658,-0.34460000000000002,17.239999999999998,0.14408000000000001,11.523,13.098000000000001,14.978,17.239999999999998,19.986000000000001,23.353000000000002,27.53 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1659,-0.34470000000000001,17.245899999999999,0.14410000000000001,11.526,13.103,14.983000000000001,17.245999999999999,19.992999999999999,23.361999999999998,27.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1660,-0.34470000000000001,17.251799999999999,0.14413000000000001,11.529,13.106,14.988,17.251999999999999,20,23.372,27.553999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1661,-0.3448,17.2577,0.14415,11.532,13.11,14.993,17.257999999999999,20.007999999999999,23.381,27.565000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1662,-0.3448,17.2636,0.14418,11.535,13.114000000000001,14.997999999999999,17.263999999999999,20.015000000000001,23.39,27.577999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1663,-0.3448,17.269500000000001,0.14419999999999999,11.539,13.118,15.002000000000001,17.27,20.021999999999998,23.399000000000001,27.588999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1664,-0.34489999999999998,17.275400000000001,0.14423,11.542,13.122,15.007,17.274999999999999,20.03,23.408999999999999,27.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1665,-0.34489999999999998,17.281300000000002,0.14426,11.545,13.125999999999999,15.012,17.280999999999999,20.036999999999999,23.419,27.614000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1666,-0.34499999999999997,17.287199999999999,0.14427999999999999,11.548,13.13,15.016999999999999,17.286999999999999,20.045000000000002,23.428000000000001,27.626000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1667,-0.34499999999999997,17.293099999999999,0.14430999999999999,11.551,13.134,15.021000000000001,17.292999999999999,20.052,23.437000000000001,27.638000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1668,-0.34510000000000002,17.298999999999999,0.14433000000000001,11.555,13.138,15.026,17.298999999999999,20.059000000000001,23.446000000000002,27.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1669,-0.34510000000000002,17.3049,0.14435999999999999,11.558,13.141,15.031000000000001,17.305,20.067,23.456,27.661999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1670,-0.34510000000000002,17.3108,0.14438000000000001,11.561,13.145,15.036,17.311,20.074000000000002,23.465,27.673999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1671,-0.34520000000000001,17.316700000000001,0.14441000000000001,11.564,13.148999999999999,15.04,17.317,20.082000000000001,23.475000000000001,27.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1672,-0.34520000000000001,17.322600000000001,0.14443,11.568,13.153,15.045,17.323,20.088999999999999,23.484000000000002,27.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1673,-0.3453,17.328499999999998,0.14446000000000001,11.571,13.157,15.05,17.327999999999999,20.096,23.492999999999999,27.71 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1674,-0.3453,17.334399999999999,0.14448,11.574,13.161,15.055,17.334,20.103999999999999,23.501999999999999,27.722000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1675,-0.34539999999999998,17.340199999999999,0.14451,11.577,13.164999999999999,15.058999999999999,17.34,20.111000000000001,23.512,27.734000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1676,-0.34539999999999998,17.3461,0.14452999999999999,11.581,13.169,15.064,17.346,20.117999999999999,23.521000000000001,27.745999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1677,-0.34539999999999998,17.352,0.14455999999999999,11.584,13.172000000000001,15.069000000000001,17.352,20.126000000000001,23.530999999999999,27.757999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1678,-0.34549999999999997,17.357900000000001,0.14457999999999999,11.587,13.177,15.074,17.358000000000001,20.132999999999999,23.54,27.77 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1679,-0.34549999999999997,17.363800000000001,0.14460999999999999,11.59,13.18,15.079000000000001,17.364000000000001,20.140999999999998,23.548999999999999,27.782 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1680,-0.34560000000000002,17.369700000000002,0.14463000000000001,11.593,13.183999999999999,15.083,17.37,20.148,23.559000000000001,27.794 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1681,-0.34560000000000002,17.375599999999999,0.14466000000000001,11.597,13.188000000000001,15.087999999999999,17.376000000000001,20.155000000000001,23.568000000000001,27.806000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1682,-0.34570000000000001,17.381499999999999,0.14468,11.6,13.192,15.093,17.382000000000001,20.163,23.577000000000002,27.818000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1683,-0.34570000000000001,17.3873,0.14471000000000001,11.603,13.196,15.098000000000001,17.387,20.170000000000002,23.587,27.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1684,-0.34570000000000001,17.3932,0.14473,11.606,13.2,15.102,17.393000000000001,20.177,23.596,27.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1685,-0.3458,17.399100000000001,0.14476,11.609,13.204000000000001,15.106999999999999,17.399000000000001,20.184999999999999,23.605,27.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1686,-0.3458,17.405000000000001,0.14479,11.612,13.207000000000001,15.112,17.405000000000001,20.192,23.614999999999998,27.867000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1687,-0.34589999999999999,17.410900000000002,0.14480999999999999,11.616,13.211,15.117000000000001,17.411000000000001,20.2,23.623999999999999,27.879000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1688,-0.34589999999999999,17.416699999999999,0.14484,11.619,13.215,15.121,17.417000000000002,20.207000000000001,23.634,27.890999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1689,-0.34599999999999997,17.422599999999999,0.14485999999999999,11.622,13.218999999999999,15.125999999999999,17.422999999999998,20.213999999999999,23.643000000000001,27.902999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1690,-0.34599999999999997,17.4285,0.14488999999999999,11.625,13.223000000000001,15.131,17.428000000000001,20.222000000000001,23.652000000000001,27.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1691,-0.34599999999999997,17.4344,0.14491000000000001,11.629,13.227,15.135999999999999,17.434000000000001,20.228999999999999,23.661000000000001,27.925999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1692,-0.34610000000000002,17.440300000000001,0.14494000000000001,11.632,13.231,15.14,17.440000000000001,20.236000000000001,23.670999999999999,27.939 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1693,-0.34610000000000002,17.446100000000001,0.14496000000000001,11.635,13.234999999999999,15.145,17.446000000000002,20.244,23.68,27.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1694,-0.34620000000000001,17.452000000000002,0.14499000000000001,11.638,13.238,15.15,17.452000000000002,20.251000000000001,23.69,27.963000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1695,-0.34620000000000001,17.457899999999999,0.14501,11.641,13.242000000000001,15.154999999999999,17.457999999999998,20.257999999999999,23.699000000000002,27.975000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1696,-0.3463,17.463699999999999,0.14504,11.644,13.246,15.159000000000001,17.463999999999999,20.265999999999998,23.707999999999998,27.986999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1697,-0.3463,17.4696,0.14505999999999999,11.648,13.25,15.164,17.47,20.273,23.716999999999999,27.998999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1698,-0.3463,17.4755,0.14509,11.651,13.254,15.169,17.475999999999999,20.280999999999999,23.727,28.010999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1699,-0.34639999999999999,17.481400000000001,0.14510999999999999,11.654,13.257999999999999,15.173999999999999,17.481000000000002,20.288,23.736000000000001,28.023 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1700,-0.34639999999999999,17.487200000000001,0.14513999999999999,11.657,13.262,15.178000000000001,17.486999999999998,20.295000000000002,23.745999999999999,28.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1701,-0.34649999999999997,17.493099999999998,0.14516000000000001,11.661,13.266,15.183,17.492999999999999,20.303000000000001,23.754999999999999,28.047000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1702,-0.34649999999999997,17.498999999999999,0.14519000000000001,11.664,13.269,15.188000000000001,17.498999999999999,20.309999999999999,23.763999999999999,28.059000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1703,-0.34660000000000002,17.504799999999999,0.14521000000000001,11.667,13.273,15.192,17.504999999999999,20.317,23.774000000000001,28.071000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1704,-0.34660000000000002,17.5107,0.14524000000000001,11.67,13.276999999999999,15.196999999999999,17.510999999999999,20.324999999999999,23.783000000000001,28.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1705,-0.34670000000000001,17.5166,0.14526,11.673,13.281000000000001,15.202,17.516999999999999,20.332000000000001,23.792000000000002,28.094999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1706,-0.34670000000000001,17.522400000000001,0.14529,11.676,13.285,15.207000000000001,17.521999999999998,20.338999999999999,23.802,28.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1707,-0.34670000000000001,17.528300000000002,0.14530999999999999,11.68,13.289,15.211,17.527999999999999,20.347000000000001,23.811,28.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1708,-0.3468,17.534099999999999,0.14534,11.683,13.292999999999999,15.215999999999999,17.533999999999999,20.353999999999999,23.82,28.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1709,-0.3468,17.54,0.14535999999999999,11.686,13.297000000000001,15.221,17.54,20.361000000000001,23.83,28.143000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1710,-0.34689999999999999,17.5459,0.14538999999999999,11.689,13.3,15.226000000000001,17.545999999999999,20.369,23.838999999999999,28.155999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1711,-0.34689999999999999,17.5517,0.14541000000000001,11.692,13.304,15.23,17.552,20.376000000000001,23.847999999999999,28.167000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1712,-0.34699999999999998,17.557600000000001,0.14544000000000001,11.695,13.308,15.234999999999999,17.558,20.382999999999999,23.858000000000001,28.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1713,-0.34699999999999998,17.563400000000001,0.14546000000000001,11.699,13.311999999999999,15.24,17.562999999999999,20.390999999999998,23.867000000000001,28.190999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1714,-0.34699999999999998,17.569299999999998,0.14549000000000001,11.702,13.316000000000001,15.244,17.568999999999999,20.398,23.876000000000001,28.202999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1715,-0.34710000000000002,17.575099999999999,0.14551,11.705,13.32,15.249000000000001,17.574999999999999,20.405000000000001,23.885999999999999,28.215 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1716,-0.34710000000000002,17.581,0.14552999999999999,11.708,13.324,15.254,17.581,20.413,23.895,28.227 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1717,-0.34720000000000001,17.5868,0.14555999999999999,11.711,13.327,15.259,17.587,20.420000000000002,23.904,28.239000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1718,-0.34720000000000001,17.592700000000001,0.14557999999999999,11.715,13.331,15.263,17.593,20.427,23.913,28.251000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1719,-0.3473,17.598500000000001,0.14560999999999999,11.718,13.335000000000001,15.268000000000001,17.597999999999999,20.434999999999999,23.922999999999998,28.263000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1720,-0.3473,17.604399999999998,0.14563000000000001,11.721,13.339,15.273,17.603999999999999,20.442,23.931999999999999,28.274999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1721,-0.3473,17.610199999999999,0.14566000000000001,11.724,13.343,15.278,17.61,20.449000000000002,23.940999999999999,28.286999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1722,-0.34739999999999999,17.616099999999999,0.14568,11.727,13.347,15.282,17.616,20.457000000000001,23.951000000000001,28.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1723,-0.34739999999999999,17.6219,0.14571000000000001,11.73,13.35,15.287000000000001,17.622,20.463999999999999,23.96,28.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1724,-0.34749999999999998,17.627800000000001,0.14573,11.734,13.353999999999999,15.292,17.628,20.471,23.969000000000001,28.323 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1725,-0.34749999999999998,17.633600000000001,0.14576,11.737,13.358000000000001,15.295999999999999,17.634,20.478999999999999,23.978999999999999,28.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1726,-0.34760000000000002,17.639399999999998,0.14577999999999999,11.74,13.362,15.301,17.638999999999999,20.486000000000001,23.988,28.347000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1727,-0.34760000000000002,17.645299999999999,0.14581,11.743,13.366,15.305999999999999,17.645,20.492999999999999,23.998000000000001,28.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1728,-0.34760000000000002,17.6511,0.14582999999999999,11.746,13.37,15.311,17.651,20.501000000000001,24.006,28.370999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1729,-0.34770000000000001,17.657,0.14585999999999999,11.749000000000001,13.374000000000001,15.315,17.657,20.507999999999999,24.015999999999998,28.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1730,-0.34770000000000001,17.662800000000001,0.14588000000000001,11.753,13.377000000000001,15.32,17.663,20.515000000000001,24.024999999999999,28.395 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1731,-0.3478,17.668600000000001,0.14591000000000001,11.756,13.381,15.324999999999999,17.669,20.523,24.035,28.408000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1732,-0.3478,17.674499999999998,0.14593,11.759,13.385,15.329000000000001,17.673999999999999,20.53,24.044,28.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1733,-0.34789999999999999,17.680299999999999,0.14596000000000001,11.762,13.388999999999999,15.334,17.68,20.536999999999999,24.053999999999998,28.431999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1734,-0.34789999999999999,17.6861,0.14598,11.765000000000001,13.393000000000001,15.339,17.686,20.545000000000002,24.062000000000001,28.443000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1735,-0.34789999999999999,17.692,0.14599999999999999,11.769,13.397,15.343999999999999,17.692,20.552,24.071999999999999,28.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1736,-0.34799999999999998,17.697800000000001,0.14602999999999999,11.772,13.4,15.348000000000001,17.698,20.559000000000001,24.081,28.466999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1737,-0.34799999999999998,17.703600000000002,0.14605000000000001,11.775,13.404,15.353,17.704000000000001,20.565999999999999,24.09,28.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1738,-0.34810000000000002,17.709499999999998,0.14607999999999999,11.778,13.407999999999999,15.358000000000001,17.71,20.574000000000002,24.1,28.492000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1739,-0.34810000000000002,17.715299999999999,0.14610000000000001,11.781000000000001,13.412000000000001,15.362,17.715,20.581,24.109000000000002,28.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1740,-0.34820000000000001,17.7211,0.14613000000000001,11.784000000000001,13.416,15.367000000000001,17.721,20.588999999999999,24.119,28.515999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1741,-0.34820000000000001,17.726900000000001,0.14615,11.788,13.42,15.372,17.727,20.596,24.126999999999999,28.527000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1742,-0.34820000000000001,17.732800000000001,0.14618,11.791,13.423,15.375999999999999,17.733000000000001,20.603000000000002,24.137,28.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1743,-0.3483,17.738600000000002,0.1462,11.794,13.427,15.381,17.739000000000001,20.61,24.146000000000001,28.550999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1744,-0.3483,17.744399999999999,0.14623,11.797000000000001,13.430999999999999,15.385999999999999,17.744,20.617999999999999,24.155999999999999,28.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1745,-0.34839999999999999,17.7502,0.14624999999999999,11.8,13.435,15.391,17.75,20.625,24.164999999999999,28.574999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1746,-0.34839999999999999,17.7561,0.14627999999999999,11.803000000000001,13.439,15.395,17.756,20.632999999999999,24.173999999999999,28.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1747,-0.34849999999999998,17.761900000000001,0.14630000000000001,11.805999999999999,13.443,15.4,17.762,20.64,24.184000000000001,28.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1748,-0.34849999999999998,17.767700000000001,0.14632000000000001,11.81,13.446999999999999,15.404999999999999,17.768000000000001,20.646999999999998,24.193000000000001,28.611000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1749,-0.34849999999999998,17.773499999999999,0.14635000000000001,11.813000000000001,13.45,15.409000000000001,17.774000000000001,20.654,24.202000000000002,28.623000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1750,-0.34860000000000002,17.779299999999999,0.14637,11.816000000000001,13.454000000000001,15.414,17.779,20.661000000000001,24.210999999999999,28.635000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1751,-0.34860000000000002,17.7851,0.1464,11.819000000000001,13.458,15.419,17.785,20.669,24.221,28.646999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1752,-0.34870000000000001,17.791,0.14641999999999999,11.821999999999999,13.462,15.423,17.791,20.675999999999998,24.23,28.658999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1753,-0.34870000000000001,17.796800000000001,0.14645,11.824999999999999,13.465,15.428000000000001,17.797000000000001,20.684000000000001,24.239000000000001,28.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1754,-0.3488,17.802600000000002,0.14646999999999999,11.829000000000001,13.468999999999999,15.433,17.803000000000001,20.690999999999999,24.248999999999999,28.683 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1755,-0.3488,17.808399999999999,0.14649999999999999,11.832000000000001,13.473000000000001,15.436999999999999,17.808,20.698,24.257999999999999,28.696000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1756,-0.3488,17.8142,0.14652000000000001,11.835000000000001,13.477,15.442,17.814,20.704999999999998,24.266999999999999,28.707000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1757,-0.34889999999999999,17.82,0.14654,11.837999999999999,13.481,15.446999999999999,17.82,20.713000000000001,24.276,28.719000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1758,-0.34889999999999999,17.825800000000001,0.14657000000000001,11.840999999999999,13.484999999999999,15.451000000000001,17.826000000000001,20.72,24.286000000000001,28.731000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1759,-0.34899999999999998,17.831600000000002,0.14659,11.843999999999999,13.489000000000001,15.456,17.832000000000001,20.727,24.295000000000002,28.742999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1760,-0.34899999999999998,17.837399999999999,0.14662,11.847,13.492000000000001,15.461,17.837,20.734999999999999,24.303999999999998,28.754999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1761,-0.34910000000000002,17.8432,0.14663999999999999,11.851000000000001,13.496,15.465999999999999,17.843,20.742000000000001,24.312999999999999,28.766999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1762,-0.34910000000000002,17.849,0.14666999999999999,11.853999999999999,13.5,15.47,17.849,20.748999999999999,24.323,28.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1763,-0.34910000000000002,17.854800000000001,0.14668999999999999,11.856999999999999,13.504,15.475,17.855,20.756,24.332000000000001,28.791 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1764,-0.34920000000000001,17.860600000000002,0.14671999999999999,11.86,13.507,15.478999999999999,17.861000000000001,20.763999999999999,24.341999999999999,28.803999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1765,-0.34920000000000001,17.866399999999999,0.14674000000000001,11.863,13.510999999999999,15.484,17.866,20.771000000000001,24.350999999999999,28.815000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1766,-0.3493,17.872199999999999,0.14676,11.866,13.515000000000001,15.489000000000001,17.872,20.777999999999999,24.36,28.827000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1767,-0.3493,17.878,0.14679,11.869,13.519,15.493,17.878,20.786000000000001,24.369,28.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1768,-0.3493,17.883800000000001,0.14681,11.872999999999999,13.523,15.497999999999999,17.884,20.792999999999999,24.378,28.850999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1769,-0.34939999999999999,17.889600000000002,0.14684,11.875999999999999,13.526,15.503,17.89,20.8,24.388000000000002,28.864000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1770,-0.34939999999999999,17.895399999999999,0.14685999999999999,11.879,13.53,15.507999999999999,17.895,20.806999999999999,24.396999999999998,28.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1771,-0.34949999999999998,17.901199999999999,0.14688999999999999,11.882,13.534000000000001,15.512,17.901,20.815000000000001,24.405999999999999,28.888000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1772,-0.34949999999999998,17.907,0.14691000000000001,11.885,13.538,15.516999999999999,17.907,20.821999999999999,24.414999999999999,28.899000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1773,-0.34960000000000002,17.912800000000001,0.14693000000000001,11.888,13.542,15.522,17.913,20.829000000000001,24.425000000000001,28.911000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1774,-0.34960000000000002,17.918600000000001,0.14696000000000001,11.891,13.545999999999999,15.526,17.919,20.837,24.434000000000001,28.922999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1775,-0.34960000000000002,17.924299999999999,0.14698,11.894,13.548999999999999,15.531000000000001,17.923999999999999,20.844000000000001,24.443000000000001,28.934999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1776,-0.34970000000000001,17.930099999999999,0.14701,11.897,13.553000000000001,15.535,17.93,20.850999999999999,24.452999999999999,28.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1777,-0.34970000000000001,17.9359,0.14702999999999999,11.901,13.557,15.54,17.936,20.858000000000001,24.462,28.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1778,-0.3498,17.941700000000001,0.14706,11.904,13.561,15.545,17.942,20.866,24.471,28.972000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1779,-0.3498,17.947500000000002,0.14707999999999999,11.907,13.565,15.55,17.948,20.873000000000001,24.48,28.983000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1780,-0.34989999999999999,17.953299999999999,0.14710000000000001,11.91,13.569000000000001,15.554,17.952999999999999,20.88,24.489000000000001,28.995000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1781,-0.34989999999999999,17.959,0.14713000000000001,11.913,13.571999999999999,15.558999999999999,17.959,20.887,24.498999999999999,29.007000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1782,-0.34989999999999999,17.9648,0.14715,11.916,13.576000000000001,15.563000000000001,17.965,20.895,24.507999999999999,29.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1783,-0.35,17.970600000000001,0.14718000000000001,11.919,13.58,15.568,17.971,20.902000000000001,24.518000000000001,29.030999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1784,-0.35,17.976400000000002,0.1472,11.923,13.584,15.573,17.975999999999999,20.908999999999999,24.527000000000001,29.042999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1785,-0.35010000000000002,17.982099999999999,0.14721999999999999,11.926,13.587,15.577,17.981999999999999,20.916,24.536000000000001,29.053999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1786,-0.35010000000000002,17.9879,0.14724999999999999,11.929,13.590999999999999,15.582000000000001,17.988,20.923999999999999,24.545000000000002,29.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1787,-0.35020000000000001,17.9937,0.14727000000000001,11.932,13.595000000000001,15.587,17.994,20.931000000000001,24.553999999999998,29.079000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1788,-0.35020000000000001,17.999500000000001,0.14729999999999999,11.935,13.599,15.590999999999999,18,20.937999999999999,24.564,29.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1789,-0.35020000000000001,18.005199999999999,0.14732000000000001,11.938000000000001,13.602,15.596,18.004999999999999,20.945,24.573,29.102 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1790,-0.3503,18.010999999999999,0.14735000000000001,11.941000000000001,13.606,15.601000000000001,18.010999999999999,20.952999999999999,24.582000000000001,29.114999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1791,-0.3503,18.0168,0.14737,11.944000000000001,13.61,15.605,18.016999999999999,20.96,24.591000000000001,29.126999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1792,-0.35039999999999999,18.022500000000001,0.14738999999999999,11.948,13.614000000000001,15.61,18.021999999999998,20.966999999999999,24.6,29.138000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1793,-0.35039999999999999,18.028300000000002,0.14742,11.951000000000001,13.618,15.615,18.027999999999999,20.974,24.61,29.151 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1794,-0.35049999999999998,18.034099999999999,0.14743999999999999,11.954000000000001,13.621,15.619,18.033999999999999,20.981999999999999,24.619,29.163 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1795,-0.35049999999999998,18.0398,0.14746999999999999,11.957000000000001,13.625,15.624000000000001,18.04,20.989000000000001,24.629000000000001,29.175000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1796,-0.35049999999999998,18.0456,0.14749000000000001,11.96,13.629,15.629,18.045999999999999,20.995999999999999,24.638000000000002,29.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1797,-0.35060000000000002,18.051300000000001,0.14751,11.962999999999999,13.632999999999999,15.632999999999999,18.050999999999998,21.003,24.646999999999998,29.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1798,-0.35060000000000002,18.057099999999998,0.14754,11.965999999999999,13.635999999999999,15.638,18.056999999999999,21.010999999999999,24.655999999999999,29.21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1799,-0.35070000000000001,18.062899999999999,0.14756,11.968999999999999,13.64,15.641999999999999,18.062999999999999,21.018000000000001,24.664999999999999,29.222000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1800,-0.35070000000000001,18.0686,0.14759,11.972,13.644,15.647,18.068999999999999,21.024999999999999,24.675000000000001,29.234999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1801,-0.35070000000000001,18.074400000000001,0.14760999999999999,11.975,13.648,15.651999999999999,18.074000000000002,21.032,24.684000000000001,29.245999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1802,-0.3508,18.080100000000002,0.14763000000000001,11.978999999999999,13.651999999999999,15.656000000000001,18.079999999999998,21.04,24.693000000000001,29.257999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1803,-0.3508,18.085899999999999,0.14766000000000001,11.981999999999999,13.654999999999999,15.661,18.085999999999999,21.047000000000001,24.702000000000002,29.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1804,-0.35089999999999999,18.0916,0.14768000000000001,11.984999999999999,13.659000000000001,15.666,18.091999999999999,21.053999999999998,24.710999999999999,29.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1805,-0.35089999999999999,18.0974,0.14771000000000001,11.988,13.663,15.67,18.097000000000001,21.061,24.721,29.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1806,-0.35099999999999998,18.103100000000001,0.14773,11.991,13.667,15.675000000000001,18.103000000000002,21.068999999999999,24.73,29.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1807,-0.35099999999999998,18.108899999999998,0.14774999999999999,11.994,13.670999999999999,15.68,18.109000000000002,21.076000000000001,24.739000000000001,29.318000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1808,-0.35099999999999998,18.114599999999999,0.14777999999999999,11.997,13.673999999999999,15.683999999999999,18.114999999999998,21.082999999999998,24.748000000000001,29.33 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1809,-0.35110000000000002,18.1204,0.14779999999999999,12,13.678000000000001,15.689,18.12,21.09,24.757999999999999,29.341999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1810,-0.35110000000000002,18.126100000000001,0.14782999999999999,12.003,13.682,15.693,18.126000000000001,21.097999999999999,24.766999999999999,29.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1811,-0.35120000000000001,18.131900000000002,0.14785000000000001,12.007,13.686,15.698,18.132000000000001,21.105,24.776,29.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1812,-0.35120000000000001,18.137599999999999,0.14787,12.01,13.689,15.702999999999999,18.138000000000002,21.111999999999998,24.785,29.376999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1813,-0.3513,18.1434,0.1479,12.013,13.693,15.707000000000001,18.143000000000001,21.119,24.795000000000002,29.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1814,-0.3513,18.149100000000001,0.14792,12.016,13.696999999999999,15.712,18.149000000000001,21.126000000000001,24.803999999999998,29.402000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1815,-0.3513,18.154800000000002,0.14793999999999999,12.019,13.701000000000001,15.715999999999999,18.155000000000001,21.132999999999999,24.812999999999999,29.413 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1816,-0.35139999999999999,18.160599999999999,0.14796999999999999,12.022,13.704000000000001,15.721,18.161000000000001,21.140999999999998,24.821999999999999,29.425999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1817,-0.35139999999999999,18.1663,0.14799000000000001,12.025,13.708,15.726000000000001,18.166,21.148,24.831,29.437000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1818,-0.35149999999999998,18.172000000000001,0.14802000000000001,12.028,13.712,15.73,18.172000000000001,21.155000000000001,24.841000000000001,29.45 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1819,-0.35149999999999998,18.177800000000001,0.14804,12.031000000000001,13.715999999999999,15.734999999999999,18.178000000000001,21.163,24.85,29.460999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1820,-0.35149999999999998,18.183499999999999,0.14806,12.034000000000001,13.718999999999999,15.74,18.184000000000001,21.17,24.859000000000002,29.472999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1821,-0.35160000000000002,18.1892,0.14809,12.037000000000001,13.723000000000001,15.744,18.189,21.177,24.867999999999999,29.484999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1822,-0.35160000000000002,18.195,0.14810999999999999,12.041,13.727,15.749000000000001,18.195,21.184000000000001,24.876999999999999,29.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1823,-0.35170000000000001,18.200700000000001,0.14813999999999999,12.044,13.731,15.753,18.201000000000001,21.190999999999999,24.887,29.51 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1824,-0.35170000000000001,18.206399999999999,0.14815999999999999,12.047000000000001,13.734,15.757999999999999,18.206,21.199000000000002,24.896000000000001,29.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1825,-0.3518,18.212199999999999,0.14818000000000001,12.05,13.738,15.763,18.212,21.206,24.905000000000001,29.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1826,-0.3518,18.2179,0.14821000000000001,12.053000000000001,13.742000000000001,15.766999999999999,18.218,21.213000000000001,24.914000000000001,29.545000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1827,-0.3518,18.223600000000001,0.14823,12.055999999999999,13.746,15.772,18.224,21.22,24.922999999999998,29.556999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1828,-0.35189999999999999,18.229299999999999,0.14824999999999999,12.058999999999999,13.749000000000001,15.776,18.228999999999999,21.227,24.931999999999999,29.568000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1829,-0.35189999999999999,18.234999999999999,0.14828,12.061999999999999,13.753,15.781000000000001,18.234999999999999,21.234999999999999,24.942,29.581 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1830,-0.35199999999999998,18.2408,0.14829999999999999,12.065,13.757,15.786,18.241,21.242000000000001,24.951000000000001,29.593 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1831,-0.35199999999999998,18.246500000000001,0.14832999999999999,12.068,13.760999999999999,15.79,18.245999999999999,21.248999999999999,24.96,29.605 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1832,-0.35199999999999998,18.252199999999998,0.14835000000000001,12.071,13.763999999999999,15.795,18.251999999999999,21.256,24.969000000000001,29.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1833,-0.35210000000000002,18.257899999999999,0.14837,12.074999999999999,13.768000000000001,15.798999999999999,18.257999999999999,21.263000000000002,24.978000000000002,29.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1834,-0.35210000000000002,18.2636,0.1484,12.077,13.772,15.804,18.263999999999999,21.271000000000001,24.988,29.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1835,-0.35220000000000001,18.269300000000001,0.14842,12.081,13.776,15.808999999999999,18.268999999999998,21.277999999999999,24.997,29.652000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1836,-0.35220000000000001,18.275099999999998,0.14843999999999999,12.084,13.779,15.813000000000001,18.274999999999999,21.285,25.006,29.664000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1837,-0.3523,18.280799999999999,0.14846999999999999,12.087,13.782999999999999,15.818,18.280999999999999,21.292000000000002,25.015999999999998,29.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1838,-0.3523,18.2865,0.14849000000000001,12.09,13.787000000000001,15.821999999999999,18.286000000000001,21.298999999999999,25.024999999999999,29.687999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1839,-0.3523,18.292200000000001,0.14852000000000001,12.093,13.79,15.827,18.292000000000002,21.306999999999999,25.033999999999999,29.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1840,-0.35239999999999999,18.297899999999998,0.14854000000000001,12.096,13.794,15.832000000000001,18.297999999999998,21.314,25.042999999999999,29.712 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1841,-0.35239999999999999,18.303599999999999,0.14856,12.099,13.798,15.836,18.303999999999998,21.321000000000002,25.052,29.722999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1842,-0.35249999999999998,18.3093,0.14859,12.102,13.802,15.840999999999999,18.309000000000001,21.327999999999999,25.062000000000001,29.736000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1843,-0.35249999999999998,18.315000000000001,0.14860999999999999,12.105,13.805,15.845000000000001,18.315000000000001,21.335000000000001,25.07,29.748000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1844,-0.35260000000000002,18.320699999999999,0.14863000000000001,12.108000000000001,13.808999999999999,15.85,18.321000000000002,21.341999999999999,25.08,29.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1845,-0.35260000000000002,18.3264,0.14865999999999999,12.111000000000001,13.813000000000001,15.853999999999999,18.326000000000001,21.35,25.088999999999999,29.771999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1846,-0.35260000000000002,18.332100000000001,0.14868000000000001,12.114000000000001,13.817,15.859,18.332000000000001,21.356999999999999,25.097999999999999,29.783000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1847,-0.35270000000000001,18.337800000000001,0.14871000000000001,12.117000000000001,13.82,15.864000000000001,18.338000000000001,21.364000000000001,25.108000000000001,29.795999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1848,-0.35270000000000001,18.343499999999999,0.14873,12.12,13.824,15.868,18.344000000000001,21.370999999999999,25.116,29.806999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1849,-0.3528,18.3492,0.14874999999999999,12.124000000000001,13.827999999999999,15.872999999999999,18.349,21.378,25.126000000000001,29.818999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1850,-0.3528,18.354900000000001,0.14878,12.127000000000001,13.831,15.877000000000001,18.355,21.385999999999999,25.135000000000002,29.832000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1851,-0.3528,18.360600000000002,0.14879999999999999,12.13,13.835000000000001,15.882,18.361000000000001,21.393000000000001,25.143999999999998,29.843 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1852,-0.35289999999999999,18.366299999999999,0.14882000000000001,12.132999999999999,13.839,15.887,18.366,21.4,25.152999999999999,29.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1853,-0.35289999999999999,18.372,0.14885000000000001,12.135999999999999,13.843,15.891,18.372,21.407,25.163,29.867000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1854,-0.35299999999999998,18.377700000000001,0.14887,12.138999999999999,13.846,15.896000000000001,18.378,21.414000000000001,25.172000000000001,29.879000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1855,-0.35299999999999998,18.383400000000002,0.14888999999999999,12.141999999999999,13.85,15.9,18.382999999999999,21.420999999999999,25.181000000000001,29.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-girls-zscore-expanded-tables.xlsx,expanded,female,day,1856,-0.35310000000000002,18.388999999999999,0.14892,12.145,13.853999999999999,15.904999999999999,18.388999999999999,21.428999999999998,25.19,29.902999999999999 +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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,0,0.34870000000000001,3.3464,0.14602000000000001,2.08,2.4590000000000001,2.8809999999999998,3.3460000000000001,3.859,4.4189999999999996,5.0309999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1,0.31269999999999998,3.3174000000000001,0.14693000000000001,2.0649999999999999,2.4369999999999998,2.8540000000000001,3.3170000000000002,3.83,4.3940000000000001,5.0129999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,2,0.3029,3.3370000000000002,0.14676,2.08,2.4540000000000002,2.8719999999999999,3.3370000000000002,3.8519999999999999,4.4210000000000003,5.0449999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,3,0.2959,3.3626999999999998,0.14646999999999999,2.1,2.4750000000000001,2.895,3.363,3.8809999999999998,4.4530000000000003,5.0830000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,4,0.2903,3.3915000000000002,0.14610999999999999,2.1219999999999999,2.4990000000000001,2.9209999999999998,3.3919999999999999,3.9129999999999998,4.49,5.1239999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,5,0.28549999999999998,3.4222999999999999,0.14571000000000001,2.1459999999999999,2.5249999999999999,2.9489999999999998,3.4220000000000002,3.9470000000000001,4.5279999999999996,5.1669999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,6,0.28129999999999999,3.4544999999999999,0.14527999999999999,2.17,2.5510000000000002,2.9780000000000002,3.4540000000000002,3.9830000000000001,4.5679999999999996,5.2110000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,7,0.27760000000000001,3.4878999999999998,0.14482999999999999,2.1949999999999998,2.5790000000000002,3.0089999999999999,3.488,4.0199999999999996,4.609,5.2569999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,8,0.2742,3.5222000000000002,0.14435999999999999,2.2210000000000001,2.6070000000000002,3.04,3.5219999999999998,4.0579999999999998,4.6500000000000004,5.3029999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,9,0.27110000000000001,3.5575999999999999,0.14388000000000001,2.2480000000000002,2.637,3.0720000000000001,3.5579999999999998,4.0970000000000004,4.6929999999999996,5.351 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,10,0.2681,3.5941000000000001,0.14338999999999999,2.2759999999999998,2.6669999999999998,3.105,3.5939999999999999,4.1369999999999996,4.7380000000000004,5.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,11,0.26540000000000002,3.6318999999999999,0.1429,2.3039999999999998,2.698,3.14,3.6320000000000001,4.1790000000000003,4.7839999999999998,5.4509999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,12,0.26279999999999998,3.6709999999999998,0.14241000000000001,2.3330000000000002,2.73,3.1749999999999998,3.6709999999999998,4.2220000000000004,4.8310000000000004,5.5030000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,13,0.26040000000000002,3.7113,0.14191999999999999,2.363,2.7639999999999998,3.2120000000000002,3.7109999999999999,4.266,4.88,5.5579999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,14,0.2581,3.7528999999999999,0.14141999999999999,2.395,2.798,3.2490000000000001,3.7530000000000001,4.3120000000000003,4.931,5.6130000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,15,0.25580000000000003,3.7955999999999999,0.14093,2.4260000000000002,2.8330000000000002,3.2879999999999998,3.7959999999999998,4.359,4.9829999999999997,5.6710000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,16,0.25369999999999998,3.8389000000000002,0.14044000000000001,2.4590000000000001,2.8690000000000002,3.327,3.839,4.407,5.0350000000000001,5.7290000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,17,0.25169999999999998,3.8828,0.13996,2.4910000000000001,2.9049999999999998,3.367,3.883,4.4550000000000001,5.0890000000000004,5.7869999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,18,0.24970000000000001,3.927,0.13947999999999999,2.524,2.9409999999999998,3.407,3.927,4.5039999999999996,5.1429999999999998,5.8470000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,19,0.24779999999999999,3.9714,0.13900000000000001,2.5569999999999999,2.9769999999999999,3.448,3.9710000000000001,4.5529999999999999,5.1959999999999997,5.9059999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,20,0.246,4.0157999999999996,0.13852999999999999,2.59,3.0139999999999998,3.488,4.016,4.6020000000000003,5.25,5.9649999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,21,0.2442,4.0602999999999998,0.13807,2.6240000000000001,3.0510000000000002,3.528,4.0599999999999996,4.6509999999999998,5.3040000000000003,6.024 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,22,0.24249999999999999,4.1045999999999996,0.13761000000000001,2.657,3.0870000000000002,3.569,4.1050000000000004,4.7,5.3579999999999997,6.0830000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,23,0.24079999999999999,4.1489000000000003,0.13714999999999999,2.69,3.1240000000000001,3.609,4.149,4.7480000000000002,5.4109999999999996,6.1420000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,24,0.2392,4.1929999999999996,0.13669999999999999,2.7229999999999999,3.16,3.649,4.1929999999999996,4.7969999999999997,5.4640000000000004,6.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,25,0.23760000000000001,4.2369000000000003,0.13625999999999999,2.7559999999999998,3.1970000000000001,3.6890000000000001,4.2370000000000001,4.8449999999999998,5.5170000000000003,6.2590000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,26,0.2361,4.2805999999999997,0.13582,2.7890000000000001,3.2330000000000001,3.7290000000000001,4.2809999999999997,4.8929999999999998,5.57,6.3159999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,27,0.2346,4.3239999999999998,0.13539000000000001,2.8220000000000001,3.2690000000000001,3.7679999999999998,4.3239999999999998,4.9400000000000004,5.6219999999999999,6.3730000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,28,0.2331,4.3670999999999998,0.13497000000000001,2.8540000000000001,3.3050000000000002,3.8069999999999999,4.367,4.9880000000000004,5.6740000000000004,6.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,29,0.23169999999999999,4.41,0.13455,2.887,3.34,3.847,4.41,5.0350000000000001,5.7249999999999996,6.4870000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,30,0.2303,4.4524999999999997,0.13413,2.919,3.3759999999999999,3.8849999999999998,4.452,5.0810000000000004,5.7759999999999998,6.5419999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,31,0.22900000000000001,4.4946000000000002,0.13372000000000001,2.9510000000000001,3.411,3.9239999999999999,4.4950000000000001,5.1269999999999998,5.827,6.5970000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,32,0.2276,4.5362999999999998,0.13331999999999999,2.9820000000000002,3.4449999999999998,3.9620000000000002,4.5359999999999996,5.173,5.8769999999999998,6.6520000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,33,0.2263,4.5776000000000003,0.13292000000000001,3.0139999999999998,3.48,4,4.5780000000000003,5.218,5.9260000000000002,6.7060000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,34,0.22500000000000001,4.6185,0.13253000000000001,3.0449999999999999,3.5139999999999998,4.0369999999999999,4.6180000000000003,5.2629999999999999,5.9749999999999996,6.7590000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,35,0.22370000000000001,4.6589999999999998,0.13214999999999999,3.0760000000000001,3.548,4.0739999999999998,4.6589999999999998,5.3070000000000004,6.0229999999999997,6.8120000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,36,0.2225,4.6989999999999998,0.13177,3.1070000000000002,3.581,4.1109999999999998,4.6989999999999998,5.351,6.0709999999999997,6.8639999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,37,0.2213,4.7385999999999999,0.13139000000000001,3.137,3.6150000000000002,4.1470000000000002,4.7389999999999999,5.3940000000000001,6.1180000000000003,6.915 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,38,0.22009999999999999,4.7778,0.13102,3.1669999999999998,3.6480000000000001,4.1829999999999998,4.7779999999999996,5.4370000000000003,6.1639999999999997,6.9649999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,39,0.21890000000000001,4.8166000000000002,0.13066,3.1970000000000001,3.68,4.2190000000000003,4.8170000000000002,5.4790000000000001,6.21,7.016 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,40,0.21779999999999999,4.8548999999999998,0.1303,3.2269999999999999,3.7120000000000002,4.2539999999999996,4.8550000000000004,5.5209999999999999,6.2560000000000002,7.0650000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,41,0.21659999999999999,4.8928000000000003,0.12994,3.2559999999999998,3.7440000000000002,4.2889999999999997,4.8929999999999998,5.5620000000000003,6.3,7.1139999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,42,0.2155,4.9302999999999999,0.12959999999999999,3.2850000000000001,3.7759999999999998,4.3230000000000004,4.93,5.6029999999999998,6.3449999999999998,7.1619999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,43,0.21440000000000001,4.9673999999999996,0.12925,3.3140000000000001,3.8069999999999999,4.3570000000000002,4.9669999999999996,5.6429999999999998,6.3879999999999999,7.2089999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,44,0.21329999999999999,5.0041000000000002,0.12891,3.3420000000000001,3.8380000000000001,4.391,5.0039999999999996,5.6829999999999998,6.4320000000000004,7.2560000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,45,0.2122,5.0404,0.12858,3.37,3.8690000000000002,4.4240000000000004,5.04,5.7220000000000004,6.4749999999999996,7.3029999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,46,0.2112,5.0762999999999998,0.12825,3.3980000000000001,3.9,4.4569999999999999,5.0759999999999996,5.7610000000000001,6.5170000000000003,7.3490000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,47,0.21010000000000001,5.1117999999999997,0.12792000000000001,3.4260000000000002,3.93,4.49,5.1120000000000001,5.8,6.5579999999999998,7.3940000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,48,0.20910000000000001,5.1468999999999996,0.12759999999999999,3.4540000000000002,3.96,4.5220000000000002,5.1470000000000002,5.8380000000000001,6.6,7.4379999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,49,0.20810000000000001,5.1817000000000002,0.12728999999999999,3.4809999999999999,3.9889999999999999,4.5549999999999997,5.1820000000000004,5.875,6.641,7.4829999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,50,0.20710000000000001,5.2161,0.12698000000000001,3.508,4.0179999999999998,4.5860000000000003,5.2160000000000002,5.9130000000000003,6.681,7.5259999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,51,0.20610000000000001,5.2500999999999998,0.12667,3.5339999999999998,4.0469999999999997,4.6180000000000003,5.25,5.9489999999999998,6.7210000000000001,7.569 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,52,0.20519999999999999,5.2836999999999996,0.12637000000000001,3.5609999999999999,4.0759999999999996,4.649,5.2839999999999998,5.9859999999999998,6.76,7.6120000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,53,0.20419999999999999,5.3170999999999999,0.12606999999999999,3.5870000000000002,4.1040000000000001,4.68,5.3170000000000002,6.0220000000000002,6.7990000000000004,7.6539999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,54,0.20319999999999999,5.35,0.12576999999999999,3.613,4.133,4.71,5.35,6.0570000000000004,6.8369999999999997,7.6959999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,55,0.20230000000000001,5.3826000000000001,0.12548000000000001,3.6389999999999998,4.16,4.74,5.383,6.093,6.8760000000000003,7.7370000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,56,0.2014,5.4149000000000003,0.12520000000000001,3.6640000000000001,4.1879999999999997,4.7699999999999996,5.415,6.1280000000000001,6.9130000000000003,7.7770000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,57,0.20050000000000001,5.4467999999999996,0.12490999999999999,3.6890000000000001,4.2149999999999999,4.8,5.4470000000000001,6.1619999999999999,6.95,7.8170000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,58,0.1996,5.4783999999999997,0.12463,3.714,4.242,4.8289999999999997,5.4779999999999998,6.1959999999999997,6.9870000000000001,7.8570000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,59,0.19869999999999999,5.5096999999999996,0.12436,3.7389999999999999,4.2690000000000001,4.8579999999999997,5.51,6.23,7.024,7.8959999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,60,0.1978,5.5407000000000002,0.12409000000000001,3.7639999999999998,4.2960000000000003,4.8869999999999996,5.5410000000000004,6.2629999999999999,7.06,7.9349999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,61,0.19689999999999999,5.5713999999999997,0.12382,3.7879999999999998,4.3220000000000001,4.915,5.5709999999999997,6.2960000000000003,7.0949999999999998,7.9740000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,62,0.19600000000000001,5.6017999999999999,0.12356,3.8119999999999998,4.3479999999999999,4.9429999999999996,5.6020000000000003,6.3289999999999997,7.1310000000000002,8.0120000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,63,0.19520000000000001,5.6318999999999999,0.12330000000000001,3.8359999999999999,4.3739999999999997,4.9710000000000001,5.6319999999999997,6.3620000000000001,7.1660000000000004,8.0489999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,64,0.1943,5.6616999999999997,0.12304,3.86,4.4000000000000004,4.9989999999999997,5.6619999999999999,6.3940000000000001,7.2,8.0869999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,65,0.19350000000000001,5.6912000000000003,0.12279,3.8839999999999999,4.4249999999999998,5.0259999999999998,5.6909999999999998,6.4260000000000002,7.234,8.1229999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,66,0.19259999999999999,5.7205000000000004,0.12254,3.907,4.45,5.0529999999999999,5.72,6.4569999999999999,7.2679999999999998,8.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,67,0.1918,5.7493999999999996,0.12229,3.93,4.4749999999999996,5.08,5.7489999999999997,6.4880000000000004,7.3019999999999996,8.1959999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,68,0.191,5.7781000000000002,0.12205000000000001,3.9529999999999998,4.5,5.1070000000000002,5.7779999999999996,6.5190000000000001,7.335,8.2319999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,69,0.19020000000000001,5.8064999999999998,0.12181,3.976,4.5250000000000004,5.133,5.806,6.55,7.3680000000000003,8.2669999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,70,0.18940000000000001,5.8346,0.12157,3.9980000000000002,4.5490000000000004,5.1589999999999998,5.835,6.58,7.4,8.3019999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,71,0.18859999999999999,5.8624999999999998,0.12134,4.0209999999999999,4.5730000000000004,5.1849999999999996,5.8620000000000001,6.61,7.4329999999999998,8.3369999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,72,0.18779999999999999,5.8901000000000003,0.12111,4.0430000000000001,4.5970000000000004,5.2110000000000003,5.89,6.6390000000000002,7.4640000000000004,8.3710000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,73,0.187,5.9173999999999998,0.12088,4.0650000000000004,4.62,5.2359999999999998,5.9169999999999998,6.6689999999999996,7.4960000000000004,8.4049999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,74,0.18629999999999999,5.9444999999999997,0.12066,4.0869999999999997,4.6440000000000001,5.2619999999999996,5.944,6.6980000000000004,7.5270000000000001,8.4380000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,75,0.1855,5.9713000000000003,0.12044000000000001,4.1079999999999997,4.6669999999999998,5.2869999999999999,5.9710000000000001,6.7270000000000003,7.5579999999999998,8.4710000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,76,0.1847,5.9978999999999996,0.12021999999999999,4.13,4.6900000000000004,5.3109999999999999,5.9980000000000002,6.7549999999999999,7.5890000000000004,8.5039999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,77,0.184,6.0242000000000004,0.12001000000000001,4.1509999999999998,4.7130000000000001,5.3360000000000003,6.024,6.7830000000000004,7.6189999999999998,8.5370000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,78,0.1832,6.0503,0.1198,4.1719999999999997,4.7359999999999998,5.36,6.05,6.8109999999999999,7.649,8.5690000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,79,0.1825,6.0762,0.11959,4.1929999999999996,4.758,5.3840000000000003,6.0759999999999996,6.8390000000000004,7.6790000000000003,8.6010000000000009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,80,0.18179999999999999,6.1017999999999999,0.11939,4.2130000000000001,4.78,5.4080000000000004,6.1020000000000003,6.867,7.7089999999999996,8.6329999999999991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,81,0.18099999999999999,6.1272000000000002,0.11917999999999999,4.234,4.8019999999999996,5.4320000000000004,6.1269999999999998,6.8940000000000001,7.7380000000000004,8.6639999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,82,0.18029999999999999,6.1523000000000003,0.11899,4.2539999999999996,4.8239999999999998,5.4550000000000001,6.1520000000000001,6.9210000000000003,7.7670000000000003,8.6950000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,83,0.17960000000000001,6.1772,0.11879000000000001,4.274,4.8460000000000001,5.4779999999999998,6.1769999999999996,6.9480000000000004,7.7949999999999999,8.7260000000000009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,84,0.1789,6.2019000000000002,0.1186,4.2939999999999996,4.867,5.5010000000000003,6.202,6.9740000000000002,7.8239999999999998,8.7560000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,85,0.1782,6.2263999999999999,0.11841,4.3140000000000001,4.8879999999999999,5.524,6.226,7,7.8520000000000003,8.7870000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,86,0.17749999999999999,6.2507000000000001,0.11822000000000001,4.3339999999999996,4.9089999999999998,5.5469999999999997,6.2510000000000003,7.0270000000000001,7.88,8.8170000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,87,0.17680000000000001,6.2747999999999999,0.11803,4.3529999999999998,4.93,5.569,6.2750000000000004,7.0519999999999996,7.907,8.8460000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,88,0.17610000000000001,6.2986000000000004,0.11785,4.3719999999999999,4.9509999999999996,5.5910000000000002,6.2990000000000004,7.0780000000000003,7.9349999999999996,8.8759999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,89,0.1754,6.3223000000000003,0.11767,4.3920000000000003,4.9720000000000004,5.6139999999999999,6.3220000000000001,7.1029999999999998,7.9619999999999997,8.9049999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,90,0.17469999999999999,6.3456999999999999,0.11749999999999999,4.41,4.992,5.6349999999999998,6.3460000000000001,7.1280000000000001,7.9889999999999999,8.9339999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,91,0.17399999999999999,6.3689999999999998,0.11731999999999999,4.4290000000000003,5.0119999999999996,5.657,6.3689999999999998,7.1529999999999996,8.016,8.9619999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,92,0.1734,6.3921000000000001,0.11715,4.4480000000000004,5.032,5.6790000000000003,6.3920000000000003,7.1779999999999999,8.0419999999999998,8.9909999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,93,0.17269999999999999,6.4149000000000003,0.11698,4.4660000000000002,5.0519999999999996,5.7,6.415,7.2030000000000003,8.0690000000000008,9.0190000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,94,0.17199999999999999,6.4375999999999998,0.11681999999999999,4.4850000000000003,5.0720000000000001,5.7210000000000001,6.4379999999999997,7.2270000000000003,8.0950000000000006,9.0470000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,95,0.1714,6.4600999999999997,0.11666,4.5030000000000001,5.0910000000000002,5.742,6.46,7.2510000000000003,8.1210000000000004,9.0749999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,96,0.17069999999999999,6.4824000000000002,0.11649,4.5209999999999999,5.1109999999999998,5.7629999999999999,6.4820000000000002,7.2750000000000004,8.1460000000000008,9.1020000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,97,0.1701,6.5045999999999999,0.11634,4.5389999999999997,5.13,5.7830000000000004,6.5049999999999999,7.2990000000000004,8.1720000000000006,9.1300000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,98,0.1694,6.5265000000000004,0.11618000000000001,4.5570000000000004,5.149,5.8040000000000003,6.5259999999999998,7.3220000000000001,8.1969999999999992,9.157 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,99,0.16880000000000001,6.5483000000000002,0.11602999999999999,4.5739999999999998,5.1680000000000001,5.8239999999999998,6.548,7.3460000000000001,8.2219999999999995,9.1839999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,100,0.16819999999999999,6.5698999999999996,0.11588,4.5919999999999996,5.1870000000000003,5.8440000000000003,6.57,7.3689999999999998,8.2469999999999999,9.2110000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,101,0.16750000000000001,6.5914000000000001,0.11573,4.609,5.2050000000000001,5.8639999999999999,6.5910000000000002,7.3920000000000003,8.2720000000000002,9.2370000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,102,0.16689999999999999,6.6125999999999996,0.11558,4.6260000000000003,5.2240000000000002,5.8840000000000003,6.6130000000000004,7.415,8.2959999999999994,9.2629999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,103,0.1663,6.6337999999999999,0.11544,4.6440000000000001,5.242,5.9039999999999999,6.6340000000000003,7.4370000000000003,8.3209999999999997,9.2899999999999991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,104,0.16569999999999999,6.6547000000000001,0.1153,4.66,5.26,5.923,6.6550000000000002,7.46,8.3450000000000006,9.3149999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,105,0.1651,6.6755000000000004,0.11516,4.6769999999999996,5.2779999999999996,5.9429999999999996,6.6760000000000002,7.4820000000000002,8.3689999999999998,9.3409999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,106,0.16439999999999999,6.6962000000000002,0.11502,4.694,5.2960000000000003,5.9619999999999997,6.6959999999999997,7.5039999999999996,8.3919999999999995,9.3670000000000009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,107,0.1638,6.7165999999999997,0.11489000000000001,4.7110000000000003,5.3140000000000001,5.9809999999999999,6.7169999999999996,7.5259999999999998,8.4160000000000004,9.3919999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,108,0.16320000000000001,6.7370000000000001,0.11476,4.7270000000000003,5.3319999999999999,6,6.7370000000000001,7.548,8.44,9.4179999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,109,0.16259999999999999,6.7572000000000001,0.11463,4.7430000000000003,5.3490000000000002,6.0190000000000001,6.7569999999999997,7.57,8.4629999999999992,9.4429999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,110,0.16200000000000001,6.7771999999999997,0.1145,4.7590000000000003,5.367,6.0369999999999999,6.7770000000000001,7.5910000000000002,8.4860000000000007,9.4670000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,111,0.16139999999999999,6.7971000000000004,0.11438,4.7750000000000004,5.3840000000000003,6.056,6.7969999999999997,7.6130000000000004,8.5090000000000003,9.4920000000000009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,112,0.16089999999999999,6.8167999999999997,0.11425,4.7910000000000004,5.4009999999999998,6.0739999999999998,6.8170000000000002,7.6340000000000003,8.532,9.516 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,113,0.1603,6.8365,0.11413,4.8070000000000004,5.4180000000000001,6.093,6.8360000000000003,7.6550000000000002,8.5549999999999997,9.5410000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,114,0.15970000000000001,6.8559000000000001,0.11401,4.8230000000000004,5.4349999999999996,6.1109999999999998,6.8559999999999999,7.6760000000000002,8.577,9.5649999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,115,0.15909999999999999,6.8753000000000002,0.1139,4.8380000000000001,5.452,6.1289999999999996,6.875,7.6970000000000001,8.6,9.59 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,116,0.1585,6.8944999999999999,0.11378000000000001,4.8540000000000001,5.468,6.1470000000000002,6.8940000000000001,7.7169999999999996,8.6219999999999999,9.6129999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,117,0.158,6.9135,0.11366999999999999,4.8689999999999998,5.4850000000000003,6.1639999999999997,6.9139999999999997,7.7380000000000004,8.6440000000000001,9.6370000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,118,0.15740000000000001,6.9325000000000001,0.11355999999999999,4.8840000000000003,5.5010000000000003,6.1820000000000004,6.9320000000000004,7.758,8.6660000000000004,9.6609999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,119,0.15679999999999999,6.9512999999999998,0.11345,4.9000000000000004,5.5170000000000003,6.1989999999999998,6.9509999999999996,7.7789999999999999,8.6880000000000006,9.6839999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,120,0.15629999999999999,6.9699,0.11334,4.915,5.5330000000000004,6.2169999999999996,6.97,7.7990000000000004,8.7089999999999996,9.7070000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,121,0.15570000000000001,6.9885000000000002,0.11323999999999999,4.9290000000000003,5.5490000000000004,6.234,6.9880000000000004,7.819,8.7309999999999999,9.7309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,122,0.15509999999999999,7.0068999999999999,0.11312999999999999,4.944,5.5650000000000004,6.2510000000000003,7.0069999999999997,7.8380000000000001,8.7520000000000007,9.7539999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,123,0.15459999999999999,7.0251999999999999,0.11303000000000001,4.9589999999999996,5.5810000000000004,6.2679999999999998,7.0250000000000004,7.8579999999999997,8.7729999999999997,9.7769999999999992 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,124,0.154,7.0434000000000001,0.11293,4.9740000000000002,5.5970000000000004,6.2850000000000001,7.0430000000000001,7.8780000000000001,8.7940000000000005,9.8000000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,125,0.1535,7.0614999999999997,0.11283,4.9880000000000004,5.6130000000000004,6.3019999999999996,7.0620000000000003,7.8970000000000002,8.8149999999999995,9.8219999999999992 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,126,0.15290000000000001,7.0793999999999997,0.11274000000000001,5.0019999999999998,5.6280000000000001,6.3179999999999996,7.0789999999999997,7.9169999999999998,8.8360000000000003,9.8450000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,127,0.15240000000000001,7.0972,0.11265,5.0170000000000003,5.6429999999999998,6.335,7.0970000000000004,7.9359999999999999,8.8569999999999993,9.8670000000000009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,128,0.15190000000000001,7.1148999999999996,0.11255,5.0309999999999997,5.6580000000000004,6.351,7.1150000000000002,7.9550000000000001,8.8780000000000001,9.8889999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,129,0.15129999999999999,7.1325000000000003,0.11246,5.0449999999999999,5.6740000000000004,6.3680000000000003,7.1319999999999997,7.9740000000000002,8.8979999999999997,9.9120000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,130,0.15079999999999999,7.15,0.11237,5.0590000000000002,5.6890000000000001,6.3840000000000003,7.15,7.9930000000000003,8.9190000000000005,9.9339999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,131,0.1502,7.1673999999999998,0.11229,5.0730000000000004,5.7039999999999997,6.4,7.1669999999999998,8.0120000000000005,8.9390000000000001,9.9559999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,132,0.1497,7.1845999999999997,0.11219999999999999,5.0860000000000003,5.718,6.4160000000000004,7.1849999999999996,8.0299999999999994,8.9589999999999996,9.9779999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,133,0.1492,7.2018000000000004,0.11212,5.0999999999999996,5.7329999999999997,6.4320000000000004,7.202,8.0489999999999995,8.9789999999999992,9.9990000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,134,0.1487,7.2187999999999999,0.11204,5.1130000000000004,5.7480000000000002,6.4480000000000004,7.2190000000000003,8.0670000000000002,8.9990000000000006,10.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,135,0.14810000000000001,7.2356999999999996,0.11196,5.1269999999999998,5.7619999999999996,6.4630000000000001,7.2359999999999998,8.0850000000000009,9.0190000000000001,10.042 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,136,0.14760000000000001,7.2525000000000004,0.11187999999999999,5.14,5.7770000000000001,6.4790000000000001,7.2519999999999998,8.1039999999999992,9.0380000000000003,10.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,137,0.14710000000000001,7.2691999999999997,0.1118,5.1539999999999999,5.7910000000000004,6.4939999999999998,7.2690000000000001,8.1219999999999999,9.0579999999999998,10.085000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,138,0.14660000000000001,7.2858000000000001,0.11172,5.1669999999999998,5.8049999999999997,6.51,7.2859999999999996,8.14,9.077,10.106 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,139,0.14610000000000001,7.3022999999999998,0.11165,5.18,5.819,6.5250000000000004,7.3019999999999996,8.1579999999999995,9.0969999999999995,10.127000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,140,0.14560000000000001,7.3186999999999998,0.11158,5.1929999999999996,5.8330000000000002,6.54,7.319,8.1750000000000007,9.1159999999999997,10.148 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,141,0.14510000000000001,7.335,0.1115,5.2060000000000004,5.8470000000000004,6.5549999999999997,7.335,8.1929999999999996,9.1349999999999998,10.167999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,142,0.14460000000000001,7.3512000000000004,0.11143,5.2190000000000003,5.8609999999999998,6.57,7.351,8.2100000000000009,9.1539999999999999,10.189 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,143,0.14410000000000001,7.3673000000000002,0.11137,5.2309999999999999,5.875,6.585,7.367,8.2279999999999998,9.173,10.210000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,144,0.14360000000000001,7.3833000000000002,0.1113,5.2439999999999998,5.8879999999999999,6.6,7.383,8.2449999999999992,9.1920000000000002,10.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,145,0.1431,7.3992000000000004,0.11123,5.2560000000000002,5.9020000000000001,6.6139999999999999,7.399,8.2620000000000005,9.2110000000000003,10.250999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,146,0.1426,7.415,0.11117,5.2690000000000001,5.915,6.6289999999999996,7.415,8.2799999999999994,9.2289999999999992,10.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,147,0.1421,7.4306999999999999,0.11111,5.2809999999999997,5.9290000000000003,6.6429999999999998,7.431,8.2970000000000006,9.2479999999999993,10.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,148,0.1416,7.4462999999999999,0.11104,5.2939999999999996,5.9420000000000002,6.6580000000000004,7.4459999999999997,8.3140000000000001,9.266,10.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,149,0.1411,7.4618000000000002,0.11098,5.306,5.9550000000000001,6.6719999999999997,7.4619999999999997,8.33,9.2850000000000001,10.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,150,0.1406,7.4771999999999998,0.11092,5.3179999999999996,5.968,6.6859999999999999,7.4770000000000003,8.3469999999999995,9.3030000000000008,10.351000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,151,0.1401,7.4924999999999997,0.11087,5.33,5.9809999999999999,6.7,7.492,8.3640000000000008,9.3209999999999997,10.371 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,152,0.1396,7.5076999999999998,0.11081000000000001,5.3419999999999996,5.9939999999999998,6.7140000000000004,7.508,8.3800000000000008,9.3390000000000004,10.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,153,0.1391,7.5228000000000002,0.11075,5.3540000000000001,6.0069999999999997,6.7279999999999998,7.5229999999999997,8.3970000000000002,9.3569999999999993,10.41 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,154,0.13869999999999999,7.5378999999999996,0.11070000000000001,5.3650000000000002,6.02,6.742,7.5380000000000003,8.4130000000000003,9.375,10.429 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,155,0.13819999999999999,7.5528000000000004,0.11065,5.3769999999999998,6.0330000000000004,6.7560000000000002,7.5529999999999999,8.4290000000000003,9.3919999999999995,10.449 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,156,0.13769999999999999,7.5677000000000003,0.11058999999999999,5.3890000000000002,6.0449999999999999,6.77,7.5679999999999996,8.4459999999999997,9.41,10.468 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,157,0.13719999999999999,7.5823999999999998,0.11054,5.4,6.0579999999999998,6.7830000000000004,7.5819999999999999,8.4619999999999997,9.4269999999999996,10.487 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,158,0.1368,7.5971000000000002,0.11049,5.4119999999999999,6.07,6.7969999999999997,7.5970000000000004,8.4779999999999998,9.4450000000000003,10.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,159,0.1363,7.6116999999999999,0.11044,5.423,6.0819999999999999,6.81,7.6120000000000001,8.4939999999999998,9.4619999999999997,10.525 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,160,0.1358,7.6261999999999999,0.1104,5.4340000000000002,6.0949999999999998,6.8230000000000004,7.6260000000000003,8.5090000000000003,9.48,10.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,161,0.13539999999999999,7.6406000000000001,0.11035,5.4450000000000003,6.1070000000000002,6.8369999999999997,7.641,8.5250000000000004,9.4969999999999999,10.563000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,162,0.13489999999999999,7.6550000000000002,0.11031000000000001,5.4569999999999999,6.1189999999999998,6.85,7.6550000000000002,8.5410000000000004,9.5139999999999993,10.582000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,163,0.13439999999999999,7.6692,0.11026,5.468,6.1310000000000002,6.8630000000000004,7.6689999999999996,8.5559999999999992,9.5310000000000006,10.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,164,0.13400000000000001,7.6833999999999998,0.11022,5.4790000000000001,6.1429999999999998,6.8760000000000003,7.6829999999999998,8.5719999999999992,9.548,10.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,165,0.13350000000000001,7.6974999999999998,0.11018,5.49,6.1550000000000002,6.8890000000000002,7.6980000000000004,8.5869999999999997,9.5649999999999995,10.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,166,0.1331,7.7115,0.11013000000000001,5.5,6.1669999999999998,6.9020000000000001,7.7119999999999997,8.6020000000000003,9.5809999999999995,10.654999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,167,0.1326,7.7255000000000003,0.11008999999999999,5.5110000000000001,6.1779999999999999,6.915,7.726,8.6180000000000003,9.5980000000000008,10.673999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,168,0.13220000000000001,7.7393999999999998,0.11005,5.5220000000000002,6.19,6.9269999999999996,7.7389999999999999,8.6329999999999991,9.6150000000000002,10.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,169,0.13170000000000001,7.7531999999999996,0.11002000000000001,5.5330000000000004,6.202,6.94,7.7530000000000001,8.6479999999999997,9.6310000000000002,10.71 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,170,0.1313,7.7668999999999997,0.10997999999999999,5.5430000000000001,6.2130000000000001,6.952,7.7670000000000003,8.6630000000000003,9.6479999999999997,10.728 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,171,0.1308,7.7805,0.10994,5.5540000000000003,6.2249999999999996,6.9649999999999999,7.78,8.6780000000000008,9.6639999999999997,10.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,172,0.13039999999999999,7.7941000000000003,0.10990999999999999,5.5640000000000001,6.2359999999999998,6.9770000000000003,7.7939999999999996,8.6929999999999996,9.68,10.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,173,0.12989999999999999,7.8075999999999999,0.10987,5.5750000000000002,6.2469999999999999,6.99,7.8079999999999998,8.7080000000000002,9.6959999999999997,10.782 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,174,0.1295,7.8209999999999997,0.10983999999999999,5.585,6.2590000000000003,7.0019999999999998,7.8209999999999997,8.7219999999999995,9.7129999999999992,10.798999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,175,0.129,7.8343999999999996,0.10979999999999999,5.5949999999999998,6.27,7.0140000000000002,7.8339999999999996,8.7370000000000001,9.7289999999999992,10.817 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,176,0.12859999999999999,7.8476999999999997,0.10977000000000001,5.6050000000000004,6.2809999999999997,7.0259999999999998,7.8479999999999999,8.7509999999999994,9.7449999999999992,10.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,177,0.12820000000000001,7.8609,0.10974,5.6159999999999997,6.2919999999999998,7.0380000000000003,7.8609999999999998,8.766,9.7609999999999992,10.852 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,178,0.12770000000000001,7.8741000000000003,0.10971,5.6260000000000003,6.3029999999999999,7.05,7.8739999999999997,8.7799999999999994,9.7759999999999998,10.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,179,0.1273,7.8871000000000002,0.10968,5.6360000000000001,6.3140000000000001,7.0620000000000003,7.8869999999999996,8.7949999999999999,9.7919999999999998,10.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,180,0.12690000000000001,7.9001999999999999,0.10965,5.6459999999999999,6.3250000000000002,7.0739999999999998,7.9,8.8089999999999993,9.8079999999999998,10.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,181,0.12640000000000001,7.9131,0.10962,5.6559999999999997,6.3360000000000003,7.0860000000000003,7.9130000000000003,8.8230000000000004,9.8230000000000004,10.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,182,0.126,7.9260000000000002,0.10959000000000001,5.665,6.3460000000000001,7.0979999999999999,7.9260000000000002,8.8369999999999997,9.8390000000000004,10.939 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,183,0.12559999999999999,7.9389000000000003,0.10957,5.6749999999999998,6.3570000000000002,7.11,7.9390000000000001,8.8520000000000003,9.8550000000000004,10.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,184,0.12509999999999999,7.9516,0.10954,5.6849999999999996,6.3680000000000003,7.1210000000000004,7.952,8.8659999999999997,9.8699999999999992,10.973000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,185,0.12470000000000001,7.9642999999999997,0.10951,5.6950000000000003,6.3780000000000001,7.133,7.9640000000000004,8.8789999999999996,9.8849999999999998,10.99 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,186,0.12429999999999999,7.9770000000000003,0.10949,5.7039999999999997,6.3890000000000002,7.1440000000000001,7.9770000000000003,8.8930000000000007,9.9009999999999998,11.007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,187,0.1239,7.9894999999999996,0.10946,5.7140000000000004,6.399,7.1559999999999997,7.99,8.907,9.9160000000000004,11.023 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,188,0.1235,8.0021000000000004,0.10944,5.7229999999999999,6.41,7.1669999999999998,8.0020000000000007,8.9209999999999994,9.9309999999999992,11.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,189,0.123,8.0145,0.10942,5.7329999999999997,6.42,7.1779999999999999,8.0139999999999993,8.9350000000000005,9.9459999999999997,11.057 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,190,0.1226,8.0268999999999995,0.1094,5.742,6.43,7.19,8.0269999999999992,8.9480000000000004,9.9610000000000003,11.074 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,191,0.1222,8.0391999999999992,0.10936999999999999,5.7510000000000003,6.4409999999999998,7.2009999999999996,8.0389999999999997,8.9619999999999997,9.9760000000000009,11.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,192,0.12180000000000001,8.0515000000000008,0.10935,5.7610000000000001,6.4509999999999996,7.2119999999999997,8.0519999999999996,8.9749999999999996,9.9909999999999997,11.106 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,193,0.12139999999999999,8.0637000000000008,0.10933,5.77,6.4610000000000003,7.2229999999999999,8.0640000000000001,8.9890000000000008,10.006,11.122999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,194,0.121,8.0759000000000007,0.10931,5.7789999999999999,6.4710000000000001,7.234,8.0760000000000005,9.0020000000000007,10.021000000000001,11.138999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,195,0.1206,8.0878999999999994,0.10929,5.7880000000000003,6.4809999999999999,7.2450000000000001,8.0879999999999992,9.0150000000000006,10.035,11.154999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,196,0.1201,8.1,0.10927000000000001,5.7969999999999997,6.4909999999999997,7.2560000000000002,8.1,9.0289999999999999,10.050000000000001,11.172000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,197,0.1197,8.1120000000000001,0.10925,5.8070000000000004,6.5010000000000003,7.2670000000000003,8.1120000000000001,9.0419999999999998,10.065,11.188000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,198,0.1193,8.1239000000000008,0.10924,5.8150000000000004,6.5110000000000001,7.2779999999999996,8.1240000000000006,9.0549999999999997,10.079000000000001,11.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,199,0.11890000000000001,8.1356999999999999,0.10922,5.8239999999999998,6.52,7.2889999999999997,8.1359999999999992,9.0679999999999996,10.093999999999999,11.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,200,0.11849999999999999,8.1475000000000009,0.10920000000000001,5.8330000000000002,6.53,7.2990000000000004,8.1479999999999997,9.0809999999999995,10.108000000000001,11.236000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,201,0.1181,8.1593,0.10919,5.8419999999999996,6.54,7.31,8.1590000000000007,9.0939999999999994,10.122999999999999,11.252000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,202,0.1177,8.1709999999999994,0.10917,5.851,6.55,7.3209999999999997,8.1709999999999994,9.1069999999999993,10.137,11.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,203,0.1173,8.1826000000000008,0.10915,5.86,6.5590000000000002,7.3310000000000004,8.1829999999999998,9.1199999999999992,10.151,11.282999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,204,0.1169,8.1942000000000004,0.10914,5.8680000000000003,6.569,7.3419999999999996,8.1940000000000008,9.1329999999999991,10.164999999999999,11.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,205,0.11650000000000001,8.2058,0.10913,5.8769999999999998,6.5780000000000003,7.3520000000000003,8.2059999999999995,9.1460000000000008,10.179,11.315 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,206,0.11609999999999999,8.2172999999999998,0.10911,5.8860000000000001,6.5880000000000001,7.3630000000000004,8.2170000000000005,9.1579999999999995,10.193,11.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,207,0.1157,8.2286999999999999,0.1091,5.8940000000000001,6.5970000000000004,7.3730000000000002,8.2289999999999992,9.1709999999999994,10.207000000000001,11.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,208,0.1153,8.2401,0.10908,5.9029999999999996,6.6070000000000002,7.383,8.24,9.1839999999999993,10.221,11.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,209,0.1149,8.2514000000000003,0.10907,5.9109999999999996,6.6159999999999997,7.3940000000000001,8.2509999999999994,9.1959999999999997,10.234999999999999,11.377000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,210,0.1145,8.2627000000000006,0.10906,5.92,6.625,7.4039999999999999,8.2629999999999999,9.2089999999999996,10.249000000000001,11.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,211,0.1142,8.2738999999999994,0.10904999999999999,5.9279999999999999,6.6340000000000003,7.4139999999999997,8.2739999999999991,9.2210000000000001,10.263,11.407999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,212,0.1138,8.2850999999999999,0.10903,5.9370000000000003,6.6440000000000001,7.4240000000000004,8.2850000000000001,9.2330000000000005,10.276,11.423 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,213,0.1134,8.2963000000000005,0.10902000000000001,5.9450000000000003,6.6529999999999996,7.4340000000000002,8.2959999999999994,9.2460000000000004,10.29,11.438000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,214,0.113,8.3073999999999995,0.10901,5.9530000000000003,6.6619999999999999,7.444,8.3070000000000004,9.2579999999999991,10.304,11.452999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,215,0.11260000000000001,8.3184000000000005,0.109,5.9610000000000003,6.6710000000000003,7.4539999999999997,8.3179999999999996,9.27,10.317,11.468 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,216,0.11219999999999999,8.3293999999999997,0.10899,5.97,6.68,7.4640000000000004,8.3290000000000006,9.282,10.331,11.483000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,217,0.1118,8.3404000000000007,0.10897999999999999,5.9779999999999998,6.6890000000000001,7.4740000000000002,8.34,9.2949999999999999,10.345000000000001,11.499000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,218,0.1115,8.3513000000000002,0.10897,5.9859999999999998,6.6980000000000004,7.484,8.3510000000000009,9.3070000000000004,10.358000000000001,11.513 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,219,0.1111,8.3620999999999999,0.10896,5.9939999999999998,6.7069999999999999,7.4939999999999998,8.3620000000000001,9.3190000000000008,10.371,11.528 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,220,0.11070000000000001,8.3728999999999996,0.10895000000000001,6.0019999999999998,6.7160000000000002,7.5039999999999996,8.3729999999999993,9.3309999999999995,10.384,11.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,221,0.1103,8.3836999999999993,0.10894,6.01,6.7240000000000002,7.5129999999999999,8.3840000000000003,9.343,10.398,11.558 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,222,0.1099,8.3943999999999992,0.10894,6.0179999999999998,6.7329999999999997,7.5229999999999997,8.3940000000000001,9.3550000000000004,10.411,11.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,223,0.1096,8.4050999999999991,0.10893,6.0259999999999998,6.742,7.5330000000000004,8.4049999999999994,9.3659999999999997,10.423999999999999,11.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,224,0.10920000000000001,8.4156999999999993,0.10892,6.0339999999999998,6.7510000000000003,7.5419999999999998,8.4160000000000004,9.3780000000000001,10.436999999999999,11.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,225,0.10879999999999999,8.4262999999999995,0.10891000000000001,6.0419999999999998,6.7590000000000003,7.5519999999999996,8.4260000000000002,9.39,10.45,11.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,226,0.1084,8.4368999999999996,0.10891000000000001,6.0490000000000004,6.7679999999999998,7.5609999999999999,8.4369999999999994,9.4019999999999992,10.464,11.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,227,0.1081,8.4474,0.1089,6.0570000000000004,6.7759999999999998,7.5709999999999997,8.4469999999999992,9.4130000000000003,10.476000000000001,11.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,228,0.1077,8.4578000000000007,0.10889,6.0650000000000004,6.7850000000000001,7.58,8.4580000000000002,9.4250000000000007,10.489000000000001,11.66 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,229,0.10730000000000001,8.4682999999999993,0.10889,6.0730000000000004,6.7930000000000001,7.59,8.468,9.4369999999999994,10.502000000000001,11.673999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,230,0.107,8.4786999999999999,0.10888,6.08,6.8019999999999996,7.5990000000000002,8.4789999999999992,9.4480000000000004,10.515000000000001,11.689 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,231,0.1066,8.4890000000000008,0.10886999999999999,6.0880000000000001,6.81,7.6079999999999997,8.4890000000000008,9.4589999999999996,10.528,11.702999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,232,0.1062,8.4992999999999999,0.10886999999999999,6.0960000000000001,6.819,7.6180000000000003,8.4990000000000006,9.4710000000000001,10.541,11.717000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,233,0.10589999999999999,8.5096000000000007,0.10886,6.1029999999999998,6.827,7.6269999999999998,8.51,9.4819999999999993,10.553000000000001,11.731 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,234,0.1055,8.5198,0.10886,6.1109999999999998,6.8360000000000003,7.6360000000000001,8.52,9.4939999999999998,10.566000000000001,11.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,235,0.1051,8.5299999999999994,0.10885,6.1180000000000003,6.8440000000000003,7.6449999999999996,8.5299999999999994,9.5050000000000008,10.579000000000001,11.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,236,0.1048,8.5401000000000007,0.10885,6.1260000000000003,6.8520000000000003,7.6550000000000002,8.5399999999999991,9.516,10.590999999999999,11.773999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,237,0.10440000000000001,8.5502000000000002,0.10884000000000001,6.133,6.86,7.6639999999999997,8.5500000000000007,9.5269999999999992,10.603999999999999,11.787000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,238,0.104,8.5602999999999998,0.10884000000000001,6.141,6.8689999999999998,7.673,8.56,9.5389999999999997,10.616,11.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,239,0.1037,8.5703999999999994,0.10884000000000001,6.1479999999999997,6.8769999999999998,7.6820000000000004,8.57,9.5500000000000007,10.629,11.816000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,240,0.1033,8.5803999999999991,0.10883,6.1559999999999997,6.8849999999999998,7.6909999999999998,8.58,9.5609999999999999,10.641,11.829000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,241,0.10299999999999999,8.5902999999999992,0.10883,6.1630000000000003,6.8929999999999998,7.7,8.59,9.5719999999999992,10.654,11.843 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,242,0.1026,8.6003000000000007,0.10882,6.17,6.9009999999999998,7.7089999999999996,8.6,9.5830000000000002,10.666,11.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,243,0.1023,8.6102000000000007,0.10882,6.1769999999999996,6.9089999999999998,7.718,8.61,9.5939999999999994,10.678000000000001,11.871 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,244,0.1019,8.6199999999999992,0.10882,6.1849999999999996,6.9169999999999998,7.7270000000000003,8.6199999999999992,9.6050000000000004,10.69,11.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,245,0.10150000000000001,8.6298999999999992,0.10882,6.1920000000000002,6.9249999999999998,7.7350000000000003,8.6300000000000008,9.6159999999999997,10.702999999999999,11.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,246,0.1012,8.6396999999999995,0.10881,6.1989999999999998,6.9329999999999998,7.7439999999999998,8.64,9.6270000000000007,10.715,11.912000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,247,0.1008,8.6494,0.10881,6.2060000000000004,6.9409999999999998,7.7530000000000001,8.6489999999999991,9.6379999999999999,10.727,11.925000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,248,0.10050000000000001,8.6592000000000002,0.10881,6.2130000000000001,6.9489999999999998,7.7619999999999996,8.6590000000000007,9.6489999999999991,10.739000000000001,11.939 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,249,0.10009999999999999,8.6689000000000007,0.10881,6.2210000000000001,6.9569999999999999,7.7709999999999999,8.6690000000000005,9.66,10.750999999999999,11.952999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,250,0.0998,8.6784999999999997,0.10881,6.2279999999999998,6.9649999999999999,7.7789999999999999,8.6780000000000008,9.67,10.763,11.965999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,251,0.099400000000000002,8.6882000000000001,0.10879999999999999,6.2350000000000003,6.9729999999999999,7.7880000000000003,8.6880000000000006,9.6809999999999992,10.775,11.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,252,0.099099999999999994,8.6978000000000009,0.10879999999999999,6.242,6.98,7.7969999999999997,8.6980000000000004,9.6920000000000002,10.787000000000001,11.993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,253,0.098699999999999996,8.7073,0.10879999999999999,6.2489999999999997,6.9880000000000004,7.8049999999999997,8.7070000000000007,9.702,10.798999999999999,12.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,254,0.098400000000000001,8.7169000000000008,0.10879999999999999,6.2560000000000002,6.9960000000000004,7.8140000000000001,8.7170000000000005,9.7129999999999992,10.811,12.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,255,0.098100000000000007,8.7263999999999999,0.10879999999999999,6.2629999999999999,7.0030000000000001,7.8220000000000001,8.7260000000000009,9.7240000000000002,10.823,12.032999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,256,0.097699999999999995,8.7359000000000009,0.10879999999999999,6.27,7.0110000000000001,7.8310000000000004,8.7360000000000007,9.734,10.835000000000001,12.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,257,0.0974,8.7453000000000003,0.10879999999999999,6.2770000000000001,7.0190000000000001,7.8390000000000004,8.7449999999999992,9.7449999999999992,10.847,12.058999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,258,0.097000000000000003,8.7547999999999995,0.10879999999999999,6.2830000000000004,7.0259999999999998,7.8479999999999999,8.7550000000000008,9.7560000000000002,10.858000000000001,12.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,259,0.096699999999999994,8.7642000000000007,0.10879999999999999,6.29,7.0339999999999998,7.8559999999999999,8.7639999999999993,9.766,10.87,12.086 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,260,0.096299999999999997,8.7735000000000003,0.10879999999999999,6.2969999999999997,7.0419999999999998,7.8650000000000002,8.7739999999999991,9.7759999999999998,10.882,12.099 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,261,0.096000000000000002,8.7828999999999997,0.10879999999999999,6.3040000000000003,7.0490000000000004,7.8730000000000002,8.7829999999999995,9.7870000000000008,10.893000000000001,12.112 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,262,0.095699999999999993,8.7921999999999993,0.10879999999999999,6.3109999999999999,7.0570000000000004,7.8810000000000002,8.7919999999999998,9.7970000000000006,10.904999999999999,12.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,263,0.095299999999999996,8.8015000000000008,0.10879999999999999,6.3179999999999996,7.0640000000000001,7.89,8.8019999999999996,9.8079999999999998,10.917,12.138 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,264,0.095000000000000001,8.8107000000000006,0.10879999999999999,6.3239999999999998,7.0720000000000001,7.8979999999999997,8.8109999999999999,9.8179999999999996,10.928000000000001,12.151 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,265,0.094700000000000006,8.82,0.10879999999999999,6.3310000000000004,7.0789999999999997,7.9059999999999997,8.82,9.8279999999999994,10.94,12.164 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,266,0.094299999999999995,8.8292000000000002,0.10879999999999999,6.3380000000000001,7.0869999999999997,7.915,8.8290000000000006,9.8390000000000004,10.951000000000001,12.177 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,267,0.094,8.8384,0.10879999999999999,6.3449999999999998,7.0940000000000003,7.923,8.8379999999999992,9.8490000000000002,10.962999999999999,12.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,268,0.093700000000000006,8.8475000000000001,0.10879999999999999,6.351,7.101,7.931,8.8480000000000008,9.859,10.974,12.202999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,269,0.093299999999999994,8.8567,0.10879999999999999,6.3579999999999997,7.109,7.9390000000000001,8.8569999999999993,9.8689999999999998,10.986000000000001,12.215 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,270,0.092999999999999999,8.8658000000000001,0.10879999999999999,6.3650000000000002,7.1159999999999997,7.9470000000000001,8.8659999999999997,9.8789999999999996,10.997,12.228 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,271,0.092700000000000005,8.8748000000000005,0.10879999999999999,6.3710000000000004,7.1230000000000002,7.9550000000000001,8.875,9.8889999999999993,11.007999999999999,12.241 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,272,0.092299999999999993,8.8839000000000006,0.10881,6.3780000000000001,7.1310000000000002,7.9640000000000004,8.8840000000000003,9.9,11.02,12.254 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,273,0.091999999999999998,8.8928999999999991,0.10881,6.3840000000000003,7.1379999999999999,7.9720000000000004,8.8930000000000007,9.91,11.031000000000001,12.266999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,274,0.091700000000000004,8.9018999999999995,0.10881,6.391,7.1449999999999996,7.98,8.9019999999999992,9.92,11.042,12.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,275,0.091300000000000006,8.9108999999999998,0.10881,6.3970000000000002,7.1529999999999996,7.9880000000000004,8.9109999999999996,9.93,11.054,12.292 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,276,0.090999999999999998,8.9199000000000002,0.10881,6.4039999999999999,7.16,7.9960000000000004,8.92,9.94,11.065,12.304 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,277,0.090700000000000003,8.9288000000000007,0.10882,6.41,7.1669999999999998,8.0039999999999996,8.9290000000000003,9.9499999999999993,11.076000000000001,12.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,278,0.090399999999999994,8.9376999999999995,0.10882,6.4169999999999998,7.1740000000000004,8.0120000000000005,8.9380000000000006,9.9600000000000009,11.087,12.33 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,279,0.09,8.9466000000000001,0.10882,6.423,7.181,8.02,8.9469999999999992,9.9700000000000006,11.098000000000001,12.342000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,280,0.089700000000000002,8.9555000000000007,0.10882,6.43,7.1879999999999997,8.0280000000000005,8.9559999999999995,9.98,11.11,12.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,281,0.089399999999999993,8.9642999999999997,0.10882,6.4359999999999999,7.1959999999999997,8.0359999999999996,8.9640000000000004,9.99,11.121,12.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,282,0.089099999999999999,8.9731000000000005,0.10883,6.4420000000000002,7.2030000000000003,8.0440000000000005,8.9730000000000008,10,11.132,12.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,283,0.088700000000000001,8.9818999999999996,0.10883,6.4489999999999998,7.21,8.0510000000000002,8.9819999999999993,10.009,11.143000000000001,12.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,284,0.088400000000000006,8.9907000000000004,0.10883,6.4550000000000001,7.2169999999999996,8.0589999999999993,8.9909999999999997,10.019,11.154,12.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,285,0.088099999999999998,8.9994999999999994,0.10884000000000001,6.4610000000000003,7.2240000000000002,8.0670000000000002,9,10.029,11.164999999999999,12.417 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,286,0.087800000000000003,9.0082000000000004,0.10884000000000001,6.468,7.2309999999999999,8.0749999999999993,9.0079999999999991,10.039,11.176,12.429 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,287,0.087499999999999994,9.0168999999999997,0.10884000000000001,6.4740000000000002,7.2380000000000004,8.0830000000000002,9.0169999999999995,10.048999999999999,11.186999999999999,12.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,288,0.087099999999999997,9.0256000000000007,0.10884000000000001,6.4809999999999999,7.2450000000000001,8.0909999999999993,9.0259999999999998,10.058,11.198,12.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,289,0.086800000000000002,9.0342000000000002,0.10885,6.4870000000000001,7.2519999999999998,8.0980000000000008,9.0340000000000007,10.068,11.209,12.465999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,290,0.086499999999999994,9.0428999999999995,0.10885,6.4930000000000003,7.2590000000000003,8.1059999999999999,9.0429999999999993,10.077999999999999,11.22,12.478 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,291,0.086199999999999999,9.0515000000000008,0.10885,6.4989999999999997,7.266,8.1140000000000008,9.0519999999999996,10.087,11.23,12.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,292,0.085900000000000004,9.0601000000000003,0.10886,6.5049999999999999,7.2720000000000002,8.1210000000000004,9.06,10.097,11.241,12.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,293,0.085599999999999996,9.0686999999999998,0.10886,6.5119999999999996,7.2789999999999999,8.1289999999999996,9.0690000000000008,10.106999999999999,11.252000000000001,12.515000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,294,0.085199999999999998,9.0771999999999995,0.10886999999999999,6.5179999999999998,7.2859999999999996,8.1370000000000005,9.077,10.116,11.263,12.526999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,295,0.084900000000000003,9.0858000000000008,0.10886999999999999,6.524,7.2930000000000001,8.1440000000000001,9.0860000000000003,10.125999999999999,11.273999999999999,12.539 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,296,0.084599999999999995,9.0943000000000005,0.10886999999999999,6.53,7.3,8.1519999999999992,9.0939999999999994,10.135,11.284000000000001,12.551 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,297,0.0843,9.1028000000000002,0.10888,6.5359999999999996,7.3070000000000004,8.16,9.1029999999999998,10.145,11.295,12.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,298,0.084000000000000005,9.1113,0.10888,6.5419999999999998,7.3140000000000001,8.1669999999999998,9.1110000000000007,10.154,11.305999999999999,12.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,299,0.083699999999999997,9.1197999999999997,0.10888,6.5490000000000004,7.3209999999999997,8.1750000000000007,9.1199999999999992,10.164,11.316000000000001,12.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,300,0.083400000000000002,9.1281999999999996,0.10889,6.5549999999999997,7.327,8.1820000000000004,9.1280000000000001,10.173,11.327,12.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,301,0.083099999999999993,9.1365999999999996,0.10889,6.5609999999999999,7.3339999999999996,8.19,9.1370000000000005,10.183,11.337999999999999,12.611000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,302,0.082699999999999996,9.1449999999999996,0.1089,6.5670000000000002,7.3410000000000002,8.1969999999999992,9.1449999999999996,10.192,11.348000000000001,12.624000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,303,0.082400000000000001,9.1533999999999995,0.1089,6.5730000000000004,7.3470000000000004,8.2050000000000001,9.1530000000000005,10.202,11.359,12.635 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,304,0.082100000000000006,9.1617999999999995,0.1089,6.5789999999999997,7.3540000000000001,8.2119999999999997,9.1620000000000008,10.211,11.369,12.647 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,305,0.081799999999999998,9.1700999999999997,0.10891000000000001,6.585,7.3609999999999998,8.2200000000000006,9.17,10.220000000000001,11.38,12.659000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,306,0.081500000000000003,9.1784999999999997,0.10891000000000001,6.5910000000000002,7.3680000000000003,8.2270000000000003,9.1780000000000008,10.23,11.39,12.670999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,307,0.081199999999999994,9.1867999999999999,0.10892,6.5970000000000004,7.3739999999999997,8.2349999999999994,9.1869999999999994,10.239000000000001,11.401,12.683 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,308,0.0809,9.1951000000000001,0.10892,6.6029999999999998,7.3810000000000002,8.2420000000000009,9.1950000000000003,10.247999999999999,11.411,12.695 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,309,0.080600000000000005,9.2034000000000002,0.10893,6.609,7.3869999999999996,8.25,9.2029999999999994,10.257999999999999,11.422000000000001,12.707000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,310,0.080299999999999996,9.2117000000000004,0.10893,6.6150000000000002,7.3940000000000001,8.2569999999999997,9.2119999999999997,10.266999999999999,11.432,12.718 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,311,0.08,9.2199000000000009,0.10894,6.6210000000000004,7.4009999999999998,8.2639999999999993,9.2200000000000006,10.276,11.443,12.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,312,0.079699999999999993,9.2281999999999993,0.10894,6.6269999999999998,7.407,8.2720000000000002,9.2279999999999998,10.285,11.452999999999999,12.742000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,313,0.079399999999999998,9.2363999999999997,0.10894,6.633,7.4139999999999997,8.2789999999999999,9.2360000000000007,10.295,11.464,12.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,314,0.079100000000000004,9.2446000000000002,0.10895000000000001,6.6390000000000002,7.42,8.2859999999999996,9.2449999999999992,10.304,11.474,12.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,315,0.078799999999999995,9.2528000000000006,0.10895000000000001,6.6449999999999996,7.4269999999999996,8.2940000000000005,9.2530000000000001,10.313000000000001,11.484,12.776999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,316,0.0785,9.2609999999999992,0.10896,6.65,7.4340000000000002,8.3010000000000002,9.2609999999999992,10.321999999999999,11.494999999999999,12.789 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,317,0.078200000000000006,9.2690999999999999,0.10896,6.6559999999999997,7.44,8.3079999999999998,9.2690000000000001,10.331,11.505000000000001,12.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,318,0.077899999999999997,9.2773000000000003,0.10897,6.6619999999999999,7.4470000000000001,8.3160000000000007,9.2769999999999992,10.340999999999999,11.515000000000001,12.811999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,319,0.077600000000000002,9.2853999999999992,0.10897,6.6680000000000001,7.4530000000000003,8.3230000000000004,9.2850000000000001,10.35,11.525,12.823 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,320,0.077299999999999994,9.2934999999999999,0.10897999999999999,6.6740000000000004,7.46,8.33,9.2940000000000005,10.359,11.536,12.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,321,0.076999999999999999,9.3016000000000005,0.10897999999999999,6.68,7.4660000000000002,8.3369999999999997,9.3019999999999996,10.368,11.545999999999999,12.847 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,322,0.076700000000000004,9.3096999999999994,0.10899,6.6849999999999996,7.4729999999999999,8.3450000000000006,9.31,10.377000000000001,11.555999999999999,12.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,323,0.076399999999999996,9.3178000000000001,0.10899,6.6909999999999998,7.4790000000000001,8.3520000000000003,9.3179999999999996,10.385999999999999,11.566000000000001,12.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,324,0.076100000000000001,9.3257999999999992,0.109,6.6970000000000001,7.4850000000000003,8.359,9.3260000000000005,10.395,11.577,12.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,325,0.075800000000000006,9.3338999999999999,0.10901,6.7030000000000003,7.492,8.3659999999999997,9.3339999999999996,10.404,11.587,12.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,326,0.075499999999999998,9.3419000000000008,0.10901,6.7080000000000002,7.4980000000000002,8.3729999999999993,9.3420000000000005,10.413,11.597,12.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,327,0.075200000000000003,9.3498999999999999,0.10902000000000001,6.7140000000000004,7.5049999999999999,8.3800000000000008,9.35,10.422000000000001,11.606999999999999,12.916 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,328,0.074899999999999994,9.3579000000000008,0.10902000000000001,6.72,7.5110000000000001,8.3879999999999999,9.3580000000000005,10.430999999999999,11.617000000000001,12.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,329,0.0746,9.3658999999999999,0.10903,6.726,7.5170000000000003,8.3949999999999996,9.3659999999999997,10.44,11.628,12.939 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,330,0.074399999999999994,9.3739000000000008,0.10903,6.7309999999999999,7.524,8.4019999999999992,9.3740000000000006,10.449,11.638,12.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,331,0.074099999999999999,9.3818999999999999,0.10904,6.7370000000000001,7.53,8.4090000000000007,9.3819999999999997,10.458,11.648,12.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,332,0.073800000000000004,9.3897999999999993,0.10904,6.7430000000000003,7.5369999999999999,8.4160000000000004,9.39,10.467000000000001,11.657999999999999,12.973000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,333,0.073499999999999996,9.3978000000000002,0.10904999999999999,6.7489999999999997,7.5430000000000001,8.423,9.3979999999999997,10.476000000000001,11.667999999999999,12.984 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,334,0.073200000000000001,9.4056999999999995,0.10904999999999999,6.7539999999999996,7.5490000000000004,8.43,9.4060000000000006,10.484999999999999,11.678000000000001,12.996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,335,0.072900000000000006,9.4136000000000006,0.10906,6.76,7.556,8.4369999999999994,9.4139999999999997,10.494,11.688000000000001,13.007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,336,0.072599999999999998,9.4215,0.10907,6.7649999999999997,7.5620000000000003,8.4440000000000008,9.4220000000000006,10.503,11.698,13.019 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,337,0.072300000000000003,9.4293999999999993,0.10907,6.7709999999999999,7.5679999999999996,8.4510000000000005,9.4290000000000003,10.512,11.708,13.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,338,0.071999999999999995,9.4373000000000005,0.10908,6.7770000000000001,7.5739999999999998,8.4580000000000002,9.4369999999999994,10.52,11.718,13.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,339,0.071800000000000003,9.4451999999999998,0.10908,6.7830000000000004,7.5810000000000004,8.4649999999999999,9.4450000000000003,10.529,11.728,13.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,340,0.071499999999999994,9.4529999999999994,0.10909000000000001,6.7880000000000003,7.5869999999999997,8.4719999999999995,9.4529999999999994,10.538,11.738,13.064 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,341,0.071199999999999999,9.4609000000000005,0.1091,6.7939999999999996,7.593,8.4789999999999992,9.4610000000000003,10.547000000000001,11.747999999999999,13.074999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,342,0.070900000000000005,9.4687000000000001,0.1091,6.7990000000000004,7.6,8.4860000000000007,9.4689999999999994,10.555999999999999,11.757999999999999,13.086 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,343,0.070599999999999996,9.4764999999999997,0.10911,6.8049999999999997,7.6059999999999999,8.4930000000000003,9.4760000000000009,10.565,11.768000000000001,13.097 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,344,0.070300000000000001,9.4844000000000008,0.10911,6.8109999999999999,7.6120000000000001,8.5,9.484,10.573,11.778,13.109 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,345,0.070099999999999996,9.4922000000000004,0.10911999999999999,6.8159999999999998,7.6180000000000003,8.5069999999999997,9.4920000000000009,10.582000000000001,11.788,13.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,346,0.069800000000000001,9.4999000000000002,0.10913,6.8220000000000001,7.6239999999999997,8.5139999999999993,9.5,10.590999999999999,11.798,13.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,347,0.069500000000000006,9.5076999999999998,0.10913,6.827,7.6310000000000002,8.5210000000000008,9.5079999999999991,10.6,11.807,13.141999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,348,0.069199999999999998,9.5154999999999994,0.10914,6.8330000000000002,7.6369999999999996,8.5280000000000005,9.516,10.608000000000001,11.817,13.154 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,349,0.068900000000000003,9.5231999999999992,0.10915,6.8380000000000001,7.6429999999999998,8.5350000000000001,9.5229999999999997,10.617000000000001,11.827,13.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,350,0.068599999999999994,9.5310000000000006,0.10915,6.8440000000000003,7.649,8.5419999999999998,9.5310000000000006,10.625999999999999,11.837,13.176 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,351,0.068400000000000002,9.5387000000000004,0.10915999999999999,6.8490000000000002,7.6550000000000002,8.5489999999999995,9.5389999999999997,10.635,11.847,13.186999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,352,0.068099999999999994,9.5464000000000002,0.10915999999999999,6.8550000000000004,7.6609999999999996,8.5559999999999992,9.5459999999999994,10.643000000000001,11.856999999999999,13.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,353,0.067799999999999999,9.5541999999999998,0.10917,6.86,7.6680000000000001,8.5630000000000006,9.5540000000000003,10.651999999999999,11.867000000000001,13.209 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,354,0.067500000000000004,9.5618999999999996,0.10918,6.8659999999999997,7.6740000000000004,8.5690000000000008,9.5619999999999994,10.661,11.875999999999999,13.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,355,0.067199999999999996,9.5695999999999994,0.10918,6.8719999999999999,7.68,8.5760000000000005,9.57,10.669,11.885999999999999,13.231 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,356,0.067000000000000004,9.5771999999999995,0.10919,6.8769999999999998,7.6859999999999999,8.5830000000000002,9.577,10.678000000000001,11.896000000000001,13.242000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,357,0.066699999999999995,9.5848999999999993,0.10920000000000001,6.8819999999999997,7.6920000000000002,8.59,9.5850000000000009,10.686999999999999,11.906000000000001,13.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,358,0.066400000000000001,9.5925999999999991,0.10920000000000001,6.8879999999999999,7.6980000000000004,8.5969999999999995,9.593,10.695,11.914999999999999,13.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,359,0.066100000000000006,9.6001999999999992,0.10921,6.8929999999999998,7.7039999999999997,8.6039999999999992,9.6,10.704000000000001,11.925000000000001,13.275 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,360,0.0659,9.6079000000000008,0.10922,6.899,7.71,8.61,9.6080000000000005,10.712999999999999,11.935,13.287000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,361,0.065600000000000006,9.6155000000000008,0.10922,6.9039999999999999,7.7160000000000002,8.6170000000000009,9.6159999999999997,10.721,11.944000000000001,13.297000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,362,0.065299999999999997,9.6231000000000009,0.10922999999999999,6.91,7.7220000000000004,8.6240000000000006,9.6229999999999993,10.73,11.954000000000001,13.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,363,0.065000000000000002,9.6308000000000007,0.10924,6.915,7.7290000000000001,8.6310000000000002,9.6310000000000002,10.738,11.964,13.32 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,364,0.064799999999999996,9.6384000000000007,0.10925,6.92,7.7350000000000003,8.6379999999999999,9.6379999999999999,10.747,11.974,13.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,365,0.064500000000000002,9.6460000000000008,0.10925,6.9260000000000002,7.7409999999999997,8.6440000000000001,9.6460000000000008,10.755000000000001,11.983000000000001,13.340999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,366,0.064199999999999993,9.6534999999999993,0.10926,6.931,7.7469999999999999,8.6509999999999998,9.6539999999999999,10.763999999999999,11.993,13.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,367,0.064000000000000001,9.6610999999999994,0.10927000000000001,6.9370000000000003,7.7530000000000001,8.6579999999999995,9.6609999999999996,10.773,12.003,13.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,368,0.063700000000000007,9.6686999999999994,0.10927000000000001,6.9420000000000002,7.7590000000000003,8.6649999999999991,9.6690000000000005,10.781000000000001,12.012,13.374000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,369,0.063399999999999998,9.6762999999999995,0.10928,6.9480000000000004,7.7649999999999997,8.6709999999999994,9.6760000000000002,10.79,12.022,13.385 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,370,0.063100000000000003,9.6837999999999997,0.10929,6.9530000000000003,7.7709999999999999,8.6780000000000008,9.6839999999999993,10.798,12.032,13.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,371,0.062899999999999998,9.6913999999999998,0.10929999999999999,6.9580000000000002,7.7770000000000001,8.6850000000000005,9.6910000000000007,10.807,12.041,13.407 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,372,0.062600000000000003,9.6989000000000001,0.10929999999999999,6.9640000000000004,7.7830000000000004,8.6910000000000007,9.6989999999999998,10.815,12.051,13.417999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,373,0.062300000000000001,9.7064000000000004,0.10931,6.9690000000000003,7.7889999999999997,8.6980000000000004,9.7059999999999995,10.824,12.06,13.429 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,374,0.062100000000000002,9.7139000000000006,0.10932,6.9740000000000002,7.7949999999999999,8.7050000000000001,9.7140000000000004,10.832000000000001,12.07,13.44 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,375,0.061800000000000001,9.7213999999999992,0.10933,6.9790000000000001,7.8,8.7110000000000003,9.7210000000000001,10.840999999999999,12.08,13.451000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,376,0.061499999999999999,9.7288999999999994,0.10933,6.9850000000000003,7.8070000000000004,8.718,9.7289999999999992,10.849,12.089,13.461 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,377,0.0613,9.7363999999999997,0.10934000000000001,6.99,7.8120000000000003,8.7249999999999996,9.7360000000000007,10.856999999999999,12.099,13.472 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,378,0.060999999999999999,9.7439,0.10935,6.9950000000000001,7.8179999999999996,8.7309999999999999,9.7439999999999998,10.866,12.108000000000001,13.483000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,379,0.060699999999999997,9.7514000000000003,0.10936,7.0010000000000003,7.8239999999999998,8.7379999999999995,9.7509999999999994,10.874000000000001,12.118,13.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,380,0.060499999999999998,9.7588000000000008,0.10936,7.0060000000000002,7.83,8.7449999999999992,9.7590000000000003,10.882999999999999,12.127000000000001,13.505000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,381,0.060199999999999997,9.7662999999999993,0.10936999999999999,7.0110000000000001,7.8360000000000003,8.7509999999999994,9.766,10.891,12.137,13.516 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,382,0.059900000000000002,9.7737999999999996,0.10938000000000001,7.0170000000000003,7.8419999999999996,8.7579999999999991,9.7739999999999991,10.9,12.147,13.526999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,383,0.059700000000000003,9.7812000000000001,0.10939,7.0220000000000002,7.8479999999999999,8.7650000000000006,9.7810000000000006,10.907999999999999,12.156000000000001,13.537000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,384,0.059400000000000001,9.7886000000000006,0.10939,7.0270000000000001,7.8540000000000001,8.7710000000000008,9.7889999999999997,10.916,12.164999999999999,13.548 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,385,0.0591,9.7959999999999994,0.1094,7.0330000000000004,7.86,8.7780000000000005,9.7959999999999994,10.925000000000001,12.175000000000001,13.558999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,386,0.058900000000000001,9.8034999999999997,0.10940999999999999,7.0380000000000003,7.8659999999999997,8.7840000000000007,9.8040000000000003,10.933,12.183999999999999,13.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,387,0.058599999999999999,9.8109000000000002,0.10942,7.0430000000000001,7.8710000000000004,8.7910000000000004,9.8109999999999999,10.942,12.194000000000001,13.581 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,388,0.058299999999999998,9.8183000000000007,0.10943,7.048,7.8769999999999998,8.7970000000000006,9.8179999999999996,10.95,12.204000000000001,13.590999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,389,0.058099999999999999,9.8256999999999994,0.10943,7.0540000000000003,7.883,8.8040000000000003,9.8260000000000005,10.958,12.212999999999999,13.602 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,390,0.057799999999999997,9.8330000000000002,0.10944,7.0590000000000002,7.8890000000000002,8.8109999999999999,9.8330000000000002,10.965999999999999,12.222,13.612 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,391,0.057599999999999998,9.8404000000000007,0.10945000000000001,7.0640000000000001,7.8949999999999996,8.8170000000000002,9.84,10.975,12.231999999999999,13.622999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,392,0.057299999999999997,9.8477999999999994,0.10946,7.069,7.9009999999999998,8.8239999999999998,9.8480000000000008,10.983000000000001,12.241,13.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,393,0.057000000000000002,9.8551000000000002,0.10947,7.0739999999999998,7.9059999999999997,8.83,9.8550000000000004,10.991,12.250999999999999,13.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,394,0.056800000000000003,9.8625000000000007,0.10947999999999999,7.0789999999999997,7.9119999999999999,8.8369999999999997,9.8620000000000001,11,12.26,13.656000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,395,0.056500000000000002,9.8698999999999995,0.10947999999999999,7.085,7.9180000000000001,8.843,9.8699999999999992,11.007999999999999,12.269,13.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,396,0.056300000000000003,9.8772000000000002,0.10949,7.09,7.9240000000000004,8.85,9.8770000000000007,11.016,12.279,13.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,397,0.056000000000000001,9.8844999999999992,0.1095,7.0949999999999998,7.93,8.8559999999999999,9.8840000000000003,11.025,12.288,13.686999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,398,0.0557,9.8917999999999999,0.10951,7.1,7.9349999999999996,8.8629999999999995,9.8919999999999995,11.032999999999999,12.298,13.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,399,0.055500000000000001,9.8992000000000004,0.10952000000000001,7.1050000000000004,7.9409999999999998,8.8689999999999998,9.8989999999999991,11.041,12.307,13.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,400,0.055199999999999999,9.9064999999999994,0.10953,7.1109999999999998,7.9470000000000001,8.8759999999999994,9.9060000000000006,11.05,12.316000000000001,13.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,401,0.055,9.9138000000000002,0.10954,7.1159999999999997,7.9530000000000003,8.8819999999999997,9.9139999999999997,11.058,12.326000000000001,13.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,402,0.054699999999999999,9.9210999999999991,0.10954,7.1210000000000004,7.9589999999999996,8.8889999999999993,9.9209999999999994,11.066000000000001,12.335000000000001,13.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,403,0.0545,9.9283999999999999,0.10954999999999999,7.1260000000000003,7.9640000000000004,8.8949999999999996,9.9280000000000008,11.074,12.343999999999999,13.750999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,404,0.054199999999999998,9.9357000000000006,0.10956,7.1310000000000002,7.97,8.9019999999999992,9.9359999999999999,11.083,12.353999999999999,13.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,405,0.053999999999999999,9.9428999999999998,0.10957,7.1360000000000001,7.976,8.9079999999999995,9.9429999999999996,11.090999999999999,12.363,13.773 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,406,0.053699999999999998,9.9502000000000006,0.10958,7.141,7.9820000000000002,8.9149999999999991,9.9499999999999993,11.099,12.372,13.782999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,407,0.053400000000000003,9.9574999999999996,0.10959000000000001,7.1470000000000002,7.9870000000000001,8.9209999999999994,9.9580000000000002,11.106999999999999,12.382,13.794 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,408,0.053199999999999997,9.9647000000000006,0.1096,7.1520000000000001,7.9930000000000003,8.9269999999999996,9.9649999999999999,11.115,12.391,13.805 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,409,0.052900000000000003,9.9719999999999995,0.10961,7.157,7.9989999999999997,8.9339999999999993,9.9719999999999995,11.124000000000001,12.401,13.815 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,410,0.052699999999999997,9.9792000000000005,0.10961,7.1619999999999999,8.0050000000000008,8.94,9.9789999999999992,11.132,12.41,13.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,411,0.052400000000000002,9.9864999999999995,0.10962,7.1669999999999998,8.01,8.9469999999999992,9.9860000000000007,11.14,12.419,13.836 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,412,0.052200000000000003,9.9937000000000005,0.10963000000000001,7.1719999999999997,8.016,8.9529999999999994,9.9939999999999998,11.148,12.428000000000001,13.847 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,413,0.051900000000000002,10.0009,0.10964,7.1769999999999996,8.0220000000000002,8.9600000000000009,10.000999999999999,11.156000000000001,12.438000000000001,13.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,414,0.051700000000000003,10.0082,0.10965,7.1820000000000004,8.0269999999999992,8.9659999999999993,10.007999999999999,11.164999999999999,12.446999999999999,13.868 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,415,0.051400000000000001,10.0154,0.10965999999999999,7.1870000000000003,8.0329999999999995,8.9719999999999995,10.015000000000001,11.173,12.456,13.879 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,416,0.051200000000000002,10.022600000000001,0.10967,7.1920000000000002,8.0389999999999997,8.9789999999999992,10.023,11.180999999999999,12.465,13.888999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,417,0.050900000000000001,10.0298,0.10968,7.1980000000000004,8.0440000000000005,8.9849999999999994,10.029999999999999,11.189,12.475,13.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,418,0.050700000000000002,10.037000000000001,0.10969,7.2030000000000003,8.0500000000000007,8.9920000000000009,10.037000000000001,11.196999999999999,12.484,13.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,419,0.0504,10.0442,0.10970000000000001,7.2080000000000002,8.0559999999999992,8.9979999999999993,10.044,11.205,12.493,13.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,420,0.050200000000000002,10.051399999999999,0.10971,7.2130000000000001,8.0609999999999999,9.0039999999999996,10.051,11.214,12.503,13.932 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,421,0.0499,10.0586,0.10971,7.218,8.0670000000000002,9.0109999999999992,10.058999999999999,11.222,12.512,13.942 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,422,0.049700000000000001,10.0657,0.10972,7.2229999999999999,8.0730000000000004,9.0169999999999995,10.066000000000001,11.23,12.521000000000001,13.952 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,423,0.049399999999999999,10.072900000000001,0.10972999999999999,7.2279999999999998,8.0779999999999994,9.0229999999999997,10.073,11.238,12.53,13.962999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,424,0.049200000000000001,10.0801,0.10974,7.2329999999999997,8.0839999999999996,9.0299999999999994,10.08,11.246,12.539,13.973000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,425,0.048899999999999999,10.087199999999999,0.10975,7.2380000000000004,8.09,9.0359999999999996,10.087,11.254,12.548,13.984 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,426,0.0487,10.0944,0.10976,7.2430000000000003,8.0950000000000006,9.0419999999999998,10.093999999999999,11.262,12.558,13.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,427,0.048399999999999999,10.1015,0.10977000000000001,7.2480000000000002,8.1010000000000009,9.0489999999999995,10.102,11.27,12.567,14.005000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,428,0.0482,10.108700000000001,0.10978,7.2530000000000001,8.1069999999999993,9.0549999999999997,10.109,11.278,12.576000000000001,14.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,429,0.047899999999999998,10.1158,0.10979,7.258,8.1120000000000001,9.0609999999999999,10.116,11.286,12.585000000000001,14.026 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,430,0.047699999999999999,10.122999999999999,0.10979999999999999,7.2629999999999999,8.1180000000000003,9.0679999999999996,10.122999999999999,11.295,12.595000000000001,14.036 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,431,0.047500000000000001,10.130100000000001,0.10981,7.2679999999999998,8.1229999999999993,9.0739999999999998,10.130000000000001,11.303000000000001,12.603999999999999,14.047000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,432,0.047199999999999999,10.1372,0.10982,7.2729999999999997,8.1289999999999996,9.08,10.137,11.311,12.613,14.057 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,433,0.047,10.144299999999999,0.10983,7.2779999999999996,8.1340000000000003,9.0869999999999997,10.144,11.319000000000001,12.622,14.068 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,434,0.046699999999999998,10.1515,0.10983999999999999,7.2830000000000004,8.14,9.093,10.151999999999999,11.327,12.631,14.077999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,435,0.0465,10.1586,0.10985,7.2880000000000003,8.1460000000000008,9.0990000000000002,10.159000000000001,11.335000000000001,12.641,14.089 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,436,0.046199999999999998,10.165699999999999,0.10986,7.2930000000000001,8.1509999999999998,9.1059999999999999,10.166,11.343,12.65,14.099 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,437,0.045999999999999999,10.172800000000001,0.10987,7.298,8.157,9.1120000000000001,10.173,11.351000000000001,12.659000000000001,14.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,438,0.0458,10.1799,0.10988000000000001,7.3029999999999999,8.1620000000000008,9.1180000000000003,10.18,11.359,12.667999999999999,14.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,439,0.045499999999999999,10.186999999999999,0.10989,7.3079999999999998,8.1679999999999993,9.1240000000000006,10.186999999999999,11.367000000000001,12.677,14.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,440,0.0453,10.194100000000001,0.1099,7.3129999999999997,8.1739999999999995,9.1310000000000002,10.194000000000001,11.375,12.686,14.141 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,441,0.044999999999999998,10.2011,0.10990999999999999,7.3179999999999996,8.1790000000000003,9.1370000000000005,10.201000000000001,11.382999999999999,12.695,14.151 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,442,0.0448,10.2082,0.10992,7.3230000000000004,8.1850000000000005,9.1430000000000007,10.208,11.391,12.704000000000001,14.162000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,443,0.044499999999999998,10.215299999999999,0.10993,7.3280000000000003,8.19,9.1489999999999991,10.215,11.398999999999999,12.714,14.172000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,444,0.044299999999999999,10.2224,0.10994,7.3330000000000002,8.1959999999999997,9.1560000000000006,10.222,11.407,12.723000000000001,14.183 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,445,0.0441,10.2294,0.10995000000000001,7.3369999999999997,8.2010000000000005,9.1620000000000008,10.228999999999999,11.414999999999999,12.731999999999999,14.193 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,446,0.043799999999999999,10.236499999999999,0.10996,7.3419999999999996,8.2070000000000007,9.1679999999999993,10.236000000000001,11.423,12.741,14.202999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,447,0.0436,10.243499999999999,0.10997,7.3470000000000004,8.2119999999999997,9.1739999999999995,10.244,11.430999999999999,12.75,14.214 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,448,0.043299999999999998,10.2506,0.10997999999999999,7.3520000000000003,8.218,9.1809999999999992,10.250999999999999,11.439,12.759,14.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,449,0.043099999999999999,10.2576,0.10999,7.3570000000000002,8.2230000000000008,9.1869999999999994,10.257999999999999,11.446999999999999,12.768000000000001,14.234 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,450,0.042900000000000001,10.264699999999999,0.11,7.3620000000000001,8.2289999999999992,9.1929999999999996,10.265000000000001,11.455,12.776999999999999,14.244999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,451,0.042599999999999999,10.271699999999999,0.11001,7.367,8.2349999999999994,9.1989999999999998,10.272,11.462999999999999,12.786,14.255000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,452,0.0424,10.2788,0.11002000000000001,7.3719999999999999,8.24,9.2059999999999995,10.279,11.471,12.795999999999999,14.266 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,453,0.042200000000000001,10.2858,0.11003,7.3769999999999998,8.2460000000000004,9.2119999999999997,10.286,11.478999999999999,12.805,14.276 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,454,0.0419,10.2928,0.11005,7.3819999999999997,8.2509999999999994,9.218,10.292999999999999,11.487,12.814,14.287000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,455,0.041700000000000001,10.299799999999999,0.11006000000000001,7.3860000000000001,8.2560000000000002,9.2240000000000002,10.3,11.494999999999999,12.823,14.297000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,456,0.041399999999999999,10.306900000000001,0.11007,7.391,8.2620000000000005,9.23,10.307,11.503,12.832000000000001,14.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,457,0.041200000000000001,10.3139,0.11008,7.3959999999999999,8.2669999999999995,9.2360000000000007,10.314,11.510999999999999,12.840999999999999,14.318 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,458,0.041000000000000002,10.3209,0.11008999999999999,7.4009999999999998,8.2729999999999997,9.2430000000000003,10.321,11.519,12.85,14.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,459,0.0407,10.3279,0.1101,7.4059999999999997,8.2780000000000005,9.2490000000000006,10.327999999999999,11.526999999999999,12.859,14.339 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,460,0.040500000000000001,10.334899999999999,0.11011,7.4109999999999996,8.2840000000000007,9.2550000000000008,10.335000000000001,11.535,12.868,14.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,461,0.040300000000000002,10.341900000000001,0.11012,7.4160000000000004,8.2889999999999997,9.2609999999999992,10.342000000000001,11.542999999999999,12.877000000000001,14.359 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,462,0.04,10.3489,0.11013000000000001,7.4210000000000003,8.2949999999999999,9.2669999999999995,10.349,11.551,12.885999999999999,14.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,463,0.039800000000000002,10.3559,0.11014,7.4260000000000002,8.3000000000000007,9.2739999999999991,10.356,11.558999999999999,12.895,14.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,464,0.039600000000000003,10.3629,0.11015,7.431,8.3059999999999992,9.2799999999999994,10.363,11.567,12.904999999999999,14.39 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,465,0.039300000000000002,10.369899999999999,0.11015999999999999,7.4349999999999996,8.3109999999999999,9.2859999999999996,10.37,11.574999999999999,12.914,14.4 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,466,0.039100000000000003,10.376899999999999,0.11017,7.44,8.3170000000000002,9.2919999999999998,10.377000000000001,11.583,12.923,14.411 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,467,0.038899999999999997,10.383900000000001,0.11019,7.4450000000000003,8.3219999999999992,9.298,10.384,11.590999999999999,12.932,14.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,468,0.038600000000000002,10.3908,0.11020000000000001,7.45,8.3279999999999994,9.3040000000000003,10.391,11.599,12.941000000000001,14.432 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,469,0.038399999999999997,10.3978,0.11021,7.4550000000000001,8.3330000000000002,9.3109999999999999,10.398,11.606999999999999,12.95,14.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,470,0.038199999999999998,10.4048,0.11022,7.46,8.3390000000000004,9.3170000000000002,10.404999999999999,11.615,12.959,14.452 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,471,0.037900000000000003,10.411799999999999,0.11022999999999999,7.4649999999999999,8.3439999999999994,9.3230000000000004,10.412000000000001,11.622,12.968,14.462999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,472,0.037699999999999997,10.418699999999999,0.11024,7.4690000000000003,8.3490000000000002,9.3290000000000006,10.419,11.63,12.977,14.473000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,473,0.037499999999999999,10.425700000000001,0.11025,7.4740000000000002,8.3550000000000004,9.3350000000000009,10.426,11.638,12.986000000000001,14.483000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,474,0.0373,10.432600000000001,0.11026,7.4790000000000001,8.36,9.3409999999999993,10.433,11.646000000000001,12.994999999999999,14.493 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,475,0.036999999999999998,10.4396,0.11027000000000001,7.484,8.3659999999999997,9.3480000000000008,10.44,11.654,13.004,14.504 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,476,0.036799999999999999,10.4465,0.11029,7.4880000000000004,8.3710000000000004,9.3539999999999992,10.446,11.662000000000001,13.013,14.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,477,0.036600000000000001,10.4535,0.1103,7.4930000000000003,8.3770000000000007,9.36,10.454000000000001,11.67,13.022,14.525 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,478,0.036299999999999999,10.4604,0.11031000000000001,7.4980000000000002,8.3819999999999997,9.3659999999999997,10.46,11.678000000000001,13.031000000000001,14.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,479,0.0361,10.4674,0.11032,7.5030000000000001,8.3870000000000005,9.3719999999999999,10.467000000000001,11.686,13.04,14.545 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,480,0.035900000000000001,10.474299999999999,0.11033,7.508,8.3930000000000007,9.3780000000000001,10.474,11.694000000000001,13.048999999999999,14.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,481,0.035700000000000003,10.481299999999999,0.11033999999999999,7.5129999999999999,8.3979999999999997,9.3840000000000003,10.481,11.701000000000001,13.058,14.566000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,482,0.035400000000000001,10.488200000000001,0.11035,7.5179999999999998,8.4039999999999999,9.39,10.488,11.709,13.067,14.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,483,0.035200000000000002,10.495100000000001,0.11037,7.5220000000000002,8.4090000000000007,9.3960000000000008,10.494999999999999,11.717000000000001,13.076000000000001,14.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,484,0.035000000000000003,10.502000000000001,0.11038000000000001,7.5270000000000001,8.4139999999999997,9.4019999999999992,10.502000000000001,11.725,13.085000000000001,14.597 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,485,0.034700000000000002,10.509,0.11039,7.532,8.42,9.4090000000000007,10.509,11.733000000000001,13.093999999999999,14.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,486,0.034500000000000003,10.5159,0.1104,7.5369999999999999,8.4250000000000007,9.4149999999999991,10.516,11.741,13.103,14.617000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,487,0.034299999999999997,10.5228,0.11040999999999999,7.5410000000000004,8.4309999999999992,9.4209999999999994,10.523,11.749000000000001,13.112,14.628 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,488,0.034099999999999998,10.5297,0.11042,7.5460000000000003,8.4359999999999999,9.4269999999999996,10.53,11.757,13.121,14.638 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,489,0.033799999999999997,10.5366,0.11044,7.5510000000000002,8.4410000000000007,9.4329999999999998,10.537000000000001,11.765000000000001,13.13,14.648 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,490,0.033599999999999998,10.5435,0.11045000000000001,7.556,8.4469999999999992,9.4390000000000001,10.544,11.772,13.138999999999999,14.659000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,491,0.033399999999999999,10.5505,0.11046,7.5609999999999999,8.452,9.4450000000000003,10.55,11.78,13.148,14.669 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,492,0.0332,10.557399999999999,0.11047,7.5650000000000004,8.4580000000000002,9.4510000000000005,10.557,11.788,13.157,14.679 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,493,0.032899999999999999,10.564299999999999,0.11047999999999999,7.57,8.4629999999999992,9.4570000000000007,10.564,11.795999999999999,13.166,14.689 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,494,0.0327,10.571199999999999,0.1105,7.5750000000000002,8.468,9.4629999999999992,10.571,11.804,13.175000000000001,14.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,495,0.032500000000000001,10.577999999999999,0.11051,7.58,8.4740000000000002,9.4689999999999994,10.577999999999999,11.811999999999999,13.183999999999999,14.71 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,496,0.032300000000000002,10.584899999999999,0.11051999999999999,7.5839999999999996,8.4789999999999992,9.4760000000000009,10.585000000000001,11.82,13.193,14.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,497,0.032000000000000001,10.591799999999999,0.11053,7.5890000000000004,8.484,9.4819999999999993,10.592000000000001,11.827,13.202,14.731 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,498,0.031800000000000002,10.598699999999999,0.11054,7.5940000000000003,8.49,9.4879999999999995,10.599,11.835000000000001,13.211,14.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,499,0.031600000000000003,10.605600000000001,0.11056000000000001,7.5990000000000002,8.4949999999999992,9.4939999999999998,10.606,11.843,13.22,14.750999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,500,0.031399999999999997,10.612500000000001,0.11057,7.6029999999999998,8.5,9.5,10.612,11.851000000000001,13.228999999999999,14.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,501,0.031199999999999999,10.619300000000001,0.11058,7.6079999999999997,8.5060000000000002,9.5060000000000002,10.619,11.859,13.238,14.772 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,502,0.0309,10.626200000000001,0.11058999999999999,7.6130000000000004,8.5109999999999992,9.5120000000000005,10.625999999999999,11.867000000000001,13.247,14.782 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,503,0.030700000000000002,10.633100000000001,0.1106,7.6180000000000003,8.5169999999999995,9.5180000000000007,10.632999999999999,11.874000000000001,13.256,14.792 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,504,0.030499999999999999,10.639900000000001,0.11062,7.6219999999999999,8.5220000000000002,9.5239999999999991,10.64,11.882,13.265000000000001,14.803000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,505,0.030300000000000001,10.646800000000001,0.11063000000000001,7.6269999999999998,8.5269999999999992,9.5299999999999994,10.647,11.89,13.273999999999999,14.813000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,506,0.03,10.653700000000001,0.11064,7.6319999999999997,8.5329999999999995,9.5359999999999996,10.654,11.898,13.282999999999999,14.823 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,507,0.0298,10.660500000000001,0.11065,7.6369999999999996,8.5380000000000003,9.5419999999999998,10.66,11.906000000000001,13.291,14.833 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,508,0.029600000000000001,10.667400000000001,0.11067,7.641,8.5429999999999993,9.548,10.667,11.914,13.301,14.843999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,509,0.029399999999999999,10.674200000000001,0.11068,7.6459999999999999,8.548,9.5540000000000003,10.673999999999999,11.920999999999999,13.308999999999999,14.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,510,0.0292,10.681100000000001,0.11069,7.6509999999999998,8.5540000000000003,9.56,10.680999999999999,11.929,13.318,14.864000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,511,0.028899999999999999,10.687900000000001,0.11070000000000001,7.6550000000000002,8.5589999999999993,9.5660000000000007,10.688000000000001,11.936999999999999,13.327,14.874000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,512,0.0287,10.694800000000001,0.11072,7.66,8.5640000000000001,9.5719999999999992,10.695,11.945,13.336,14.885 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,513,0.028500000000000001,10.701599999999999,0.11073,7.665,8.57,9.5779999999999994,10.702,11.952999999999999,13.345000000000001,14.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,514,0.028299999999999999,10.708399999999999,0.11074000000000001,7.6689999999999996,8.5749999999999993,9.5839999999999996,10.708,11.96,13.353999999999999,14.904999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,515,0.0281,10.715299999999999,0.11075,7.6740000000000004,8.58,9.59,10.715,11.968,13.363,14.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,516,0.027900000000000001,10.722099999999999,0.11076999999999999,7.6790000000000003,8.5860000000000003,9.5960000000000001,10.722,11.976000000000001,13.372,14.926 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,517,0.0276,10.728899999999999,0.11078,7.6829999999999998,8.5909999999999993,9.6020000000000003,10.728999999999999,11.984,13.381,14.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,518,0.027400000000000001,10.7357,0.11079,7.6879999999999997,8.5960000000000001,9.6080000000000005,10.736000000000001,11.991,13.39,14.946 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,519,0.027199999999999998,10.742599999999999,0.11081000000000001,7.6929999999999996,8.6010000000000009,9.6140000000000008,10.743,11.999000000000001,13.398999999999999,14.957000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,520,0.027,10.7494,0.11082,7.6970000000000001,8.6069999999999993,9.6199999999999992,10.749000000000001,12.007,13.407999999999999,14.967000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,521,0.026800000000000001,10.7562,0.11083,7.702,8.6120000000000001,9.6259999999999994,10.756,12.015000000000001,13.417,14.977 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,522,0.026599999999999999,10.763,0.11083999999999999,7.7069999999999999,8.6170000000000009,9.6319999999999997,10.763,12.023,13.425000000000001,14.987 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,523,0.0263,10.7698,0.11086,7.7110000000000003,8.6229999999999993,9.6379999999999999,10.77,12.03,13.433999999999999,14.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,524,0.026100000000000002,10.7766,0.11087,7.7160000000000002,8.6280000000000001,9.6440000000000001,10.776999999999999,12.038,13.443,15.007999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,525,0.025899999999999999,10.7835,0.11088000000000001,7.7210000000000001,8.6329999999999991,9.65,10.784000000000001,12.045999999999999,13.452,15.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,526,0.025700000000000001,10.7903,0.1109,7.7249999999999996,8.6379999999999999,9.6560000000000006,10.79,12.054,13.461,15.028 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,527,0.025499999999999998,10.7971,0.11090999999999999,7.73,8.6440000000000001,9.6620000000000008,10.797000000000001,12.061999999999999,13.47,15.038 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,528,0.0253,10.803900000000001,0.11092,7.7350000000000003,8.6489999999999991,9.6679999999999993,10.804,12.069000000000001,13.478999999999999,15.048 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,529,0.025000000000000001,10.810700000000001,0.11094,7.7389999999999999,8.6539999999999999,9.6739999999999995,10.811,12.077,13.488,15.058999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,530,0.024799999999999999,10.817399999999999,0.11094999999999999,7.7439999999999998,8.6590000000000007,9.68,10.817,12.085000000000001,13.497,15.069000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,531,0.0246,10.824199999999999,0.11096,7.7489999999999997,8.6649999999999991,9.6859999999999999,10.824,12.093,13.506,15.079000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,532,0.024400000000000002,10.831,0.11098,7.7530000000000001,8.67,9.6920000000000002,10.831,12.1,13.515000000000001,15.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,533,0.024199999999999999,10.8378,0.11099000000000001,7.758,8.6750000000000007,9.6980000000000004,10.837999999999999,12.108000000000001,13.523,15.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,534,0.024,10.8446,0.111,7.7629999999999999,8.68,9.7040000000000006,10.845000000000001,12.116,13.532,15.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,535,0.023800000000000002,10.8514,0.11101999999999999,7.7670000000000003,8.6859999999999999,9.7100000000000009,10.851000000000001,12.124000000000001,13.541,15.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,536,0.023599999999999999,10.8582,0.11103,7.7720000000000002,8.6910000000000007,9.7159999999999993,10.858000000000001,12.131,13.55,15.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,537,0.023300000000000001,10.8649,0.11104,7.7770000000000001,8.6959999999999997,9.7219999999999995,10.865,12.138999999999999,13.558999999999999,15.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,538,0.023099999999999999,10.871700000000001,0.11106000000000001,7.7809999999999997,8.7010000000000005,9.7279999999999998,10.872,12.147,13.568,15.151 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,539,0.0229,10.878500000000001,0.11107,7.7859999999999996,8.7070000000000007,9.734,10.878,12.154999999999999,13.577,15.161 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,540,0.022700000000000001,10.885199999999999,0.11108,7.79,8.7119999999999997,9.7390000000000008,10.885,12.162000000000001,13.586,15.170999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,541,0.022499999999999999,10.891999999999999,0.1111,7.7949999999999999,8.7170000000000005,9.7449999999999992,10.891999999999999,12.17,13.595000000000001,15.182 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,542,0.0223,10.8988,0.11111,7.8,8.7219999999999995,9.7509999999999994,10.898999999999999,12.178000000000001,13.603,15.192 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,543,0.022100000000000002,10.9055,0.11113000000000001,7.8040000000000003,8.7270000000000003,9.7569999999999997,10.906000000000001,12.186,13.612,15.202 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,544,0.021899999999999999,10.9123,0.11114,7.8090000000000002,8.7330000000000005,9.7629999999999999,10.912000000000001,12.193,13.621,15.212 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,545,0.021700000000000001,10.9191,0.11115,7.8129999999999997,8.7379999999999995,9.7690000000000001,10.919,12.201000000000001,13.63,15.222 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,546,0.021399999999999999,10.925800000000001,0.11117,7.8179999999999996,8.7430000000000003,9.7750000000000004,10.926,12.209,13.638999999999999,15.233000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,547,0.0212,10.932600000000001,0.11118,7.8230000000000004,8.7479999999999993,9.7810000000000006,10.933,12.217000000000001,13.648,15.243 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,548,0.021000000000000001,10.939299999999999,0.11119999999999999,7.827,8.7530000000000001,9.7870000000000008,10.939,12.224,13.657,15.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,549,0.020799999999999999,10.946099999999999,0.11121,7.8319999999999999,8.7590000000000003,9.7929999999999993,10.946,12.231999999999999,13.666,15.263 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,550,0.0206,10.9528,0.11122,7.8360000000000003,8.7639999999999993,9.7989999999999995,10.952999999999999,12.24,13.673999999999999,15.273 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,551,0.020400000000000001,10.9596,0.11124000000000001,7.8410000000000002,8.7690000000000001,9.8049999999999997,10.96,12.247999999999999,13.683999999999999,15.284000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,552,0.020199999999999999,10.9663,0.11125,7.8460000000000001,8.7739999999999991,9.81,10.965999999999999,12.255000000000001,13.692,15.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,553,0.02,10.973000000000001,0.11126999999999999,7.85,8.7789999999999999,9.8160000000000007,10.973000000000001,12.263,13.701000000000001,15.304 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,554,0.019800000000000002,10.979799999999999,0.11128,7.8550000000000004,8.7850000000000001,9.8219999999999992,10.98,12.271000000000001,13.71,15.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,555,0.019599999999999999,10.986499999999999,0.11129,7.859,8.7899999999999991,9.8279999999999994,10.986000000000001,12.278,13.718999999999999,15.324 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,556,0.019400000000000001,10.9932,0.11131000000000001,7.8639999999999999,8.7949999999999999,9.8339999999999996,10.993,12.286,13.728,15.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,557,0.019199999999999998,11,0.11132,7.8680000000000003,8.8000000000000007,9.84,11,12.294,13.737,15.345000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,558,0.0189,11.0067,0.11133999999999999,7.8730000000000002,8.8049999999999997,9.8460000000000001,11.007,12.302,13.746,15.356 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,559,0.018700000000000001,11.013400000000001,0.11135,7.8780000000000001,8.8109999999999999,9.8520000000000003,11.013,12.308999999999999,13.754,15.365 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,560,0.018499999999999999,11.020200000000001,0.11137,7.8819999999999997,8.8160000000000007,9.8580000000000005,11.02,12.317,13.763,15.375999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,561,0.0183,11.026899999999999,0.11138000000000001,7.8869999999999996,8.8209999999999997,9.8640000000000008,11.026999999999999,12.324999999999999,13.772,15.385999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,562,0.018100000000000002,11.0336,0.11139,7.891,8.8260000000000005,9.8689999999999998,11.034000000000001,12.332000000000001,13.781000000000001,15.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,563,0.017899999999999999,11.0403,0.11141,7.8959999999999999,8.8309999999999995,9.875,11.04,12.34,13.79,15.406000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,564,0.0177,11.047000000000001,0.11142000000000001,7.9,8.8360000000000003,9.8810000000000002,11.047000000000001,12.348000000000001,13.798999999999999,15.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,565,0.017500000000000002,11.053699999999999,0.11144,7.9050000000000002,8.8409999999999993,9.8870000000000005,11.054,12.355,13.807,15.427 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,566,0.017299999999999999,11.060499999999999,0.11144999999999999,7.9089999999999998,8.8469999999999995,9.8930000000000007,11.06,12.363,13.816000000000001,15.436999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,567,0.017100000000000001,11.0672,0.11147,7.9139999999999997,8.8520000000000003,9.8989999999999991,11.067,12.371,13.824999999999999,15.446999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,568,0.016899999999999998,11.0739,0.11148,7.9189999999999996,8.8569999999999993,9.9049999999999994,11.074,12.379,13.834,15.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,569,0.0167,11.0806,0.1115,7.923,8.8620000000000001,9.91,11.081,12.385999999999999,13.843,15.468 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,570,0.016500000000000001,11.087300000000001,0.11151,7.9279999999999999,8.8670000000000009,9.9160000000000004,11.087,12.394,13.852,15.478 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,571,0.016299999999999999,11.093999999999999,0.11153,7.9320000000000004,8.8719999999999999,9.9220000000000006,11.093999999999999,12.401999999999999,13.861000000000001,15.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,572,0.0161,11.1007,0.11154,7.9370000000000003,8.8780000000000001,9.9280000000000008,11.101000000000001,12.409000000000001,13.869,15.497999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,573,0.015900000000000001,11.1074,0.11156000000000001,7.9409999999999998,8.8829999999999991,9.9339999999999993,11.106999999999999,12.417,13.878,15.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,574,0.015699999999999999,11.114100000000001,0.11157,7.9459999999999997,8.8879999999999999,9.94,11.114000000000001,12.425000000000001,13.887,15.519 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,575,0.0155,11.120799999999999,0.11158999999999999,7.95,8.8930000000000007,9.9459999999999997,11.121,12.432,13.896000000000001,15.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,576,0.015299999999999999,11.1275,0.1116,7.9550000000000001,8.8979999999999997,9.952,11.128,12.44,13.904999999999999,15.539 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,577,0.015100000000000001,11.1342,0.11162,7.9589999999999996,8.9030000000000005,9.9570000000000007,11.134,12.448,13.914,15.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,578,0.0149,11.1409,0.11162999999999999,7.9640000000000004,8.9079999999999995,9.9629999999999992,11.141,12.455,13.923,15.56 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,579,0.0147,11.147600000000001,0.11165,7.968,8.9130000000000003,9.9689999999999994,11.148,12.462999999999999,13.932,15.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,580,0.0144,11.154299999999999,0.11166,7.9729999999999999,8.9190000000000005,9.9749999999999996,11.154,12.471,13.94,15.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,581,0.014200000000000001,11.161,0.11168,7.9770000000000003,8.9239999999999995,9.9809999999999999,11.161,12.478999999999999,13.949,15.590999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,582,0.014,11.1676,0.11169,7.9820000000000002,8.9290000000000003,9.9870000000000001,11.167999999999999,12.486000000000001,13.958,15.601000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,583,0.0138,11.174300000000001,0.11171,7.9859999999999998,8.9339999999999993,9.9920000000000009,11.173999999999999,12.494,13.967000000000001,15.611000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,584,0.013599999999999999,11.180999999999999,0.11172,7.9909999999999997,8.9390000000000001,9.9979999999999993,11.180999999999999,12.502000000000001,13.976000000000001,15.621 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,585,0.0134,11.1877,0.11174000000000001,7.9950000000000001,8.9440000000000008,10.004,11.188000000000001,12.509,13.984999999999999,15.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,586,0.0132,11.1944,0.11175,8,8.9489999999999998,10.01,11.194000000000001,12.516999999999999,13.993,15.641 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,587,0.012999999999999999,11.2011,0.11176999999999999,8.0039999999999996,8.9540000000000006,10.016,11.201000000000001,12.525,14.002000000000001,15.651999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,588,0.012800000000000001,11.207700000000001,0.11178,8.0090000000000003,8.9600000000000009,10.022,11.208,12.532,14.010999999999999,15.662000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,589,0.0126,11.214399999999999,0.1118,8.0129999999999999,8.9649999999999999,10.026999999999999,11.214,12.54,14.02,15.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,590,0.0124,11.2211,0.11182,8.0180000000000007,8.9700000000000006,10.032999999999999,11.221,12.548,14.029,15.683 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,591,0.012200000000000001,11.2278,0.11183,8.0220000000000002,8.9749999999999996,10.039,11.228,12.555,14.038,15.693 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,592,0.012,11.234500000000001,0.11185,8.0269999999999992,8.98,10.045,11.234,12.563000000000001,14.047000000000001,15.702999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,593,0.0118,11.241099999999999,0.11186,8.0310000000000006,8.9849999999999994,10.051,11.241,12.571,14.055,15.712999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,594,0.011599999999999999,11.2478,0.11187999999999999,8.0359999999999996,8.99,10.057,11.247999999999999,12.577999999999999,14.064,15.724 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,595,0.0114,11.2545,0.11189,8.0399999999999991,8.9949999999999992,10.061999999999999,11.254,12.586,14.073,15.734 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,596,0.0112,11.261200000000001,0.11191,8.0449999999999999,9,10.068,11.260999999999999,12.593999999999999,14.082000000000001,15.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,597,0.0111,11.267799999999999,0.11192000000000001,8.0489999999999995,9.0050000000000008,10.074,11.268000000000001,12.601000000000001,14.090999999999999,15.754 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,598,0.0109,11.2745,0.11194,8.0540000000000003,9.01,10.08,11.273999999999999,12.609,14.1,15.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,599,0.010699999999999999,11.2812,0.11196,8.0579999999999998,9.016,10.086,11.281000000000001,12.617000000000001,14.109,15.775 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,600,0.010500000000000001,11.287800000000001,0.11197,8.0619999999999994,9.0210000000000008,10.090999999999999,11.288,12.624000000000001,14.117000000000001,15.785 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,601,0.0103,11.294499999999999,0.11199000000000001,8.0670000000000002,9.0259999999999998,10.097,11.294,12.632,14.125999999999999,15.795 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,602,0.0101,11.3012,0.112,8.0709999999999997,9.0310000000000006,10.103,11.301,12.64,14.135,15.805 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,603,0.0099000000000000008,11.3078,0.11201999999999999,8.0760000000000005,9.0359999999999996,10.109,11.308,12.647,14.144,15.816000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,604,0.0097000000000000003,11.314500000000001,0.11204,8.08,9.0410000000000004,10.115,11.314,12.654999999999999,14.153,15.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,605,0.0094999999999999998,11.321199999999999,0.11205,8.0850000000000009,9.0459999999999994,10.121,11.321,12.663,14.162000000000001,15.836 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,606,0.0092999999999999992,11.3278,0.11207,8.0890000000000004,9.0510000000000002,10.125999999999999,11.327999999999999,12.67,14.170999999999999,15.846 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,607,0.0091000000000000004,11.3345,0.11208,8.0939999999999994,9.0559999999999992,10.132,11.334,12.678000000000001,14.179,15.856 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,608,0.0088999999999999999,11.341200000000001,0.11210000000000001,8.0980000000000008,9.0609999999999999,10.138,11.340999999999999,12.686,14.188000000000001,15.867000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,609,0.0086999999999999994,11.347799999999999,0.11212,8.1020000000000003,9.0660000000000007,10.144,11.348000000000001,12.693,14.196999999999999,15.877000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,610,0.0085000000000000006,11.3545,0.11212999999999999,8.1069999999999993,9.0719999999999992,10.15,11.353999999999999,12.701000000000001,14.206,15.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,611,0.0083000000000000001,11.3612,0.11215,8.1120000000000001,9.077,10.154999999999999,11.361000000000001,12.709,14.215,15.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,612,0.0080999999999999996,11.367800000000001,0.11216,8.1159999999999997,9.0820000000000007,10.161,11.368,12.715999999999999,14.224,15.907999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,613,0.0079000000000000008,11.374499999999999,0.11218,8.1199999999999992,9.0869999999999997,10.167,11.374000000000001,12.724,14.233000000000001,15.917999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,614,0.0077000000000000002,11.3811,0.11219999999999999,8.125,9.0920000000000005,10.173,11.381,12.731999999999999,14.242000000000001,15.929 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,615,0.0074999999999999997,11.3878,0.11221,8.1289999999999996,9.0969999999999995,10.179,11.388,12.739000000000001,14.25,15.939 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,616,0.0073000000000000001,11.394500000000001,0.11223,8.1340000000000003,9.1020000000000003,10.183999999999999,11.394,12.747,14.259,15.949 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,617,0.0071000000000000004,11.4011,0.11224000000000001,8.1379999999999999,9.1069999999999993,10.19,11.401,12.755000000000001,14.268000000000001,15.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,618,0.0068999999999999999,11.4078,0.11226,8.1430000000000007,9.1120000000000001,10.196,11.407999999999999,12.763,14.276999999999999,15.97 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,619,0.0067000000000000002,11.414400000000001,0.11228,8.1470000000000002,9.1170000000000009,10.202,11.414,12.77,14.286,15.98 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,620,0.0066,11.421099999999999,0.11229,8.1519999999999992,9.1219999999999999,10.208,11.420999999999999,12.778,14.295,15.99 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,621,0.0064000000000000003,11.4277,0.11230999999999999,8.1560000000000006,9.1270000000000007,10.212999999999999,11.428000000000001,12.785,14.303000000000001,16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,622,0.0061999999999999998,11.4344,0.11233,8.16,9.1319999999999997,10.218999999999999,11.433999999999999,12.792999999999999,14.311999999999999,16.010999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,623,0.0060000000000000001,11.441000000000001,0.11234,8.1649999999999991,9.1370000000000005,10.225,11.441000000000001,12.801,14.321,16.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,624,0.0057999999999999996,11.447699999999999,0.11236,8.1690000000000005,9.1419999999999995,10.231,11.448,12.808999999999999,14.33,16.030999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,625,0.0055999999999999999,11.4543,0.11237999999999999,8.1739999999999995,9.1470000000000002,10.236000000000001,11.454000000000001,12.816000000000001,14.339,16.042000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,626,0.0054000000000000003,11.461,0.11239,8.1780000000000008,9.1530000000000005,10.242000000000001,11.461,12.824,14.348000000000001,16.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,627,0.0051999999999999998,11.467599999999999,0.11241,8.1829999999999998,9.1579999999999995,10.247999999999999,11.468,12.831,14.356999999999999,16.062000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,628,0.0050000000000000001,11.474299999999999,0.11243,8.1869999999999994,9.1630000000000003,10.254,11.474,12.839,14.366,16.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,629,0.0047999999999999996,11.4809,0.11244,8.1910000000000007,9.1679999999999993,10.26,11.481,12.847,14.374000000000001,16.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,630,0.0045999999999999999,11.4876,0.11246,8.1959999999999997,9.173,10.265000000000001,11.488,12.855,14.382999999999999,16.093 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,631,0.0044000000000000003,11.494199999999999,0.11248,8.1999999999999993,9.1780000000000008,10.271000000000001,11.494,12.862,14.391999999999999,16.103000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,632,0.0043,11.5009,0.11249000000000001,8.2050000000000001,9.1829999999999998,10.276999999999999,11.500999999999999,12.87,14.401,16.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,633,0.0041000000000000003,11.5075,0.11251,8.2089999999999996,9.1880000000000006,10.282999999999999,11.507999999999999,12.878,14.41,16.123999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,634,0.0038999999999999998,11.514200000000001,0.11253000000000001,8.2129999999999992,9.1929999999999996,10.288,11.513999999999999,12.885,14.419,16.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,635,0.0037000000000000002,11.520799999999999,0.11254,8.218,9.1980000000000004,10.294,11.521000000000001,12.893000000000001,14.428000000000001,16.143999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,636,0.0035000000000000001,11.5274,0.11255999999999999,8.2219999999999995,9.2029999999999994,10.3,11.526999999999999,12.9,14.436,16.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,637,0.0033,11.5341,0.11258,8.2270000000000003,9.2080000000000002,10.305999999999999,11.534000000000001,12.907999999999999,14.446,16.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,638,0.0030999999999999999,11.540699999999999,0.11259,8.2309999999999999,9.2129999999999992,10.311999999999999,11.541,12.916,14.454000000000001,16.175000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,639,0.0028999999999999998,11.5474,0.11261,8.2360000000000007,9.218,10.317,11.547000000000001,12.923999999999999,14.462999999999999,16.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,640,0.0027000000000000001,11.554,0.11262999999999999,8.24,9.2230000000000008,10.323,11.554,12.930999999999999,14.472,16.196000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,641,0.0025000000000000001,11.560600000000001,0.11265,8.2439999999999998,9.2279999999999998,10.329000000000001,11.561,12.939,14.481,16.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,642,0.0023999999999999998,11.567299999999999,0.11266,8.2490000000000006,9.2330000000000005,10.335000000000001,11.567,12.946999999999999,14.49,16.216000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,643,0.0022000000000000001,11.5739,0.11268,8.2530000000000001,9.2379999999999995,10.34,11.574,12.954000000000001,14.499000000000001,16.227 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,644,0.002,11.5806,0.11269999999999999,8.2569999999999997,9.2430000000000003,10.346,11.581,12.962,14.507999999999999,16.236999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,645,0.0018,11.587199999999999,0.11271,8.2620000000000005,9.2479999999999993,10.352,11.587,12.968999999999999,14.516,16.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,646,0.0016000000000000001,11.5938,0.11273,8.266,9.2530000000000001,10.358000000000001,11.593999999999999,12.977,14.525,16.257999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,647,0.0014,11.6005,0.11275,8.2710000000000008,9.2579999999999991,10.363,11.6,12.984999999999999,14.534000000000001,16.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,648,0.0011999999999999999,11.607100000000001,0.11276,8.2750000000000004,9.2629999999999999,10.369,11.606999999999999,12.992000000000001,14.542999999999999,16.277999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,649,0.001,11.6137,0.11278000000000001,8.2799999999999994,9.2680000000000007,10.375,11.614000000000001,13,14.552,16.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,650,0.00080000000000000004,11.6204,0.1128,8.2840000000000007,9.2729999999999997,10.381,11.62,13.007999999999999,14.561,16.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,651,0.00069999999999999999,11.627000000000001,0.11282,8.2880000000000003,9.2780000000000005,10.385999999999999,11.627000000000001,13.016,14.57,16.309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,652,0.00050000000000000001,11.633599999999999,0.11283,8.2929999999999993,9.2829999999999995,10.391999999999999,11.634,13.023,14.577999999999999,16.318999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,653,0.00029999999999999997,11.6403,0.11285000000000001,8.2970000000000006,9.2880000000000003,10.398,11.64,13.031000000000001,14.587999999999999,16.329999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,654,0.0001,11.6469,0.11287,8.3010000000000002,9.2929999999999993,10.404,11.647,13.039,14.596,16.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,655,-0.0001,11.653499999999999,0.11289,8.3059999999999992,9.298,10.409000000000001,11.654,13.045999999999999,14.605,16.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,656,-0.00029999999999999997,11.6601,0.1129,8.31,9.3030000000000008,10.414999999999999,11.66,13.054,14.614000000000001,16.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,657,-0.00050000000000000001,11.6668,0.11292000000000001,8.3149999999999995,9.3079999999999998,10.420999999999999,11.667,13.061999999999999,14.622999999999999,16.370999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,658,-0.00059999999999999995,11.673400000000001,0.11294,8.3190000000000008,9.3130000000000006,10.427,11.673,13.069000000000001,14.632,16.382000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,659,-0.00080000000000000004,11.68,0.11296,8.3230000000000004,9.3179999999999996,10.432,11.68,13.077,14.641,16.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,660,-0.001,11.6866,0.11297,8.3279999999999994,9.3230000000000004,10.438000000000001,11.686999999999999,13.084,14.65,16.402000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,661,-0.0011999999999999999,11.693300000000001,0.11298999999999999,8.3320000000000007,9.3279999999999994,10.444000000000001,11.693,13.092000000000001,14.659000000000001,16.413 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,662,-0.0014,11.6999,0.11301,8.3360000000000003,9.3330000000000002,10.45,11.7,13.1,14.667999999999999,16.422999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,663,-0.0016000000000000001,11.7065,0.11303000000000001,8.3409999999999993,9.3379999999999992,10.455,11.706,13.106999999999999,14.676,16.434000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,664,-0.0018,11.713100000000001,0.11304,8.3450000000000006,9.343,10.461,11.712999999999999,13.115,14.685,16.443999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,665,-0.0019,11.719799999999999,0.11305999999999999,8.35,9.3480000000000008,10.467000000000001,11.72,13.122999999999999,14.694000000000001,16.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,666,-0.0020999999999999999,11.7264,0.11308,8.3539999999999992,9.3529999999999998,10.473000000000001,11.726000000000001,13.13,14.702999999999999,16.463999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,667,-0.0023,11.733000000000001,0.11310000000000001,8.3580000000000005,9.3580000000000005,10.478,11.733000000000001,13.138,14.712,16.475000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,668,-0.0025000000000000001,11.739599999999999,0.11311,8.3629999999999995,9.3629999999999995,10.484,11.74,13.146000000000001,14.721,16.484999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,669,-0.0027000000000000001,11.7462,0.11312999999999999,8.3670000000000009,9.3680000000000003,10.49,11.746,13.153,14.73,16.495000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,670,-0.0028999999999999998,11.752800000000001,0.11315,8.3710000000000004,9.3729999999999993,10.496,11.753,13.161,14.739000000000001,16.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,671,-0.0030000000000000001,11.759499999999999,0.11317000000000001,8.3759999999999994,9.3780000000000001,10.500999999999999,11.76,13.169,14.747999999999999,16.515999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,672,-0.0032000000000000002,11.7661,0.11318,8.3800000000000008,9.3829999999999991,10.507,11.766,13.176,14.756,16.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,673,-0.0033999999999999998,11.7727,0.1132,8.3840000000000003,9.3879999999999999,10.513,11.773,13.183999999999999,14.765000000000001,16.536999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,674,-0.0035999999999999999,11.779299999999999,0.11322,8.3889999999999993,9.3930000000000007,10.519,11.779,13.192,14.773999999999999,16.547000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,675,-0.0038,11.7859,0.11323999999999999,8.3930000000000007,9.3979999999999997,10.523999999999999,11.786,13.199,14.782999999999999,16.558 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,676,-0.0040000000000000001,11.7925,0.11326,8.3970000000000002,9.4030000000000005,10.53,11.792,13.207000000000001,14.792,16.568000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,677,-0.0041000000000000003,11.799099999999999,0.11327,8.4019999999999992,9.4079999999999995,10.536,11.798999999999999,13.215,14.801,16.577999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,678,-0.0043,11.8057,0.11329,8.4060000000000006,9.4130000000000003,10.542,11.805999999999999,13.222,14.81,16.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,679,-0.0044999999999999997,11.8124,0.11330999999999999,8.41,9.4179999999999993,10.547000000000001,11.811999999999999,13.23,14.819000000000001,16.599 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,680,-0.0047000000000000002,11.819000000000001,0.11333,8.4149999999999991,9.423,10.553000000000001,11.819000000000001,13.238,14.827999999999999,16.609000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,681,-0.0048999999999999998,11.8256,0.11335000000000001,8.4190000000000005,9.4280000000000008,10.558999999999999,11.826000000000001,13.244999999999999,14.837,16.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,682,-0.0051000000000000004,11.8322,0.11336,8.4239999999999995,9.4329999999999998,10.564,11.832000000000001,13.253,14.845000000000001,16.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,683,-0.0051999999999999998,11.838800000000001,0.11337999999999999,8.4280000000000008,9.4380000000000006,10.57,11.839,13.260999999999999,14.853999999999999,16.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,684,-0.0054000000000000003,11.8454,0.1134,8.4320000000000004,9.4429999999999996,10.576000000000001,11.845000000000001,13.268000000000001,14.863,16.651 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,685,-0.0055999999999999999,11.852,0.11342000000000001,8.4359999999999999,9.4480000000000004,10.582000000000001,11.852,13.276,14.872,16.661000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,686,-0.0057999999999999996,11.858599999999999,0.11344,8.4410000000000007,9.4529999999999994,10.587,11.859,13.284000000000001,14.881,16.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,687,-0.0060000000000000001,11.8652,0.11345,8.4450000000000003,9.4580000000000002,10.593,11.865,13.291,14.89,16.681999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,688,-0.0061000000000000004,11.8718,0.11347,8.4499999999999993,9.4629999999999992,10.599,11.872,13.298999999999999,14.898999999999999,16.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,689,-0.0063,11.878399999999999,0.11348999999999999,8.4540000000000006,9.468,10.603999999999999,11.878,13.305999999999999,14.907,16.702000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,690,-0.0064999999999999997,11.885,0.11351,8.4580000000000002,9.4730000000000008,10.61,11.885,13.314,14.916,16.713000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,691,-0.0067000000000000002,11.8916,0.11353000000000001,8.4619999999999997,9.4779999999999998,10.616,11.891999999999999,13.321999999999999,14.925000000000001,16.722999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,692,-0.0068999999999999999,11.898199999999999,0.11354,8.4670000000000005,9.4830000000000005,10.622,11.898,13.329000000000001,14.933999999999999,16.733000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,693,-0.0070000000000000001,11.9048,0.11355999999999999,8.4710000000000001,9.4879999999999995,10.627000000000001,11.904999999999999,13.337,14.943,16.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,694,-0.0071999999999999998,11.9114,0.11358,8.4749999999999996,9.4930000000000003,10.632999999999999,11.911,13.345000000000001,14.952,16.754000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,695,-0.0074000000000000003,11.917999999999999,0.11360000000000001,8.48,9.4979999999999993,10.638999999999999,11.917999999999999,13.352,14.961,16.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,696,-0.0076,11.9246,0.11362,8.484,9.5030000000000001,10.644,11.925000000000001,13.36,14.97,16.774999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,697,-0.0077999999999999996,11.9312,0.11364,8.4879999999999995,9.5069999999999997,10.65,11.930999999999999,13.368,14.978999999999999,16.786000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,698,-0.0079000000000000008,11.937799999999999,0.11365,8.4930000000000003,9.5129999999999999,10.656000000000001,11.938000000000001,13.375,14.987,16.795999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,699,-0.0080999999999999996,11.9444,0.11366999999999999,8.4969999999999999,9.5169999999999995,10.662000000000001,11.944000000000001,13.382999999999999,14.996,16.806000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,700,-0.0083000000000000001,11.951000000000001,0.11369,8.5009999999999994,9.5220000000000002,10.667,11.951000000000001,13.391,15.005000000000001,16.817 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,701,-0.0085000000000000006,11.957599999999999,0.11371000000000001,8.5060000000000002,9.5269999999999992,10.673,11.958,13.398,15.013999999999999,16.827000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,702,-0.0086999999999999994,11.9642,0.11373,8.51,9.532,10.679,11.964,13.406000000000001,15.023,16.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,703,-0.0088000000000000005,11.970700000000001,0.11375,8.5139999999999993,9.5370000000000008,10.683999999999999,11.971,13.414,15.032,16.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,704,-0.0089999999999999993,11.9773,0.11376,8.5190000000000001,9.5419999999999998,10.69,11.977,13.420999999999999,15.041,16.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,705,-0.0091999999999999998,11.9839,0.11378000000000001,8.5229999999999997,9.5470000000000006,10.696,11.984,13.429,15.05,16.867999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,706,-0.0094000000000000004,11.990500000000001,0.1138,8.5269999999999992,9.5519999999999996,10.701000000000001,11.99,13.436999999999999,15.058999999999999,16.879000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,707,-0.0094999999999999998,11.9971,0.11382,8.5310000000000006,9.5570000000000004,10.707000000000001,11.997,13.444000000000001,15.068,16.888999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,708,-0.0097000000000000003,12.0037,0.11384,8.5359999999999996,9.5619999999999994,10.712999999999999,12.004,13.452,15.077,16.899999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,709,-0.0099000000000000008,12.010300000000001,0.11386,8.5399999999999991,9.5670000000000002,10.718,12.01,13.46,15.086,16.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,710,-0.0101,12.0168,0.11388,8.5440000000000005,9.5719999999999992,10.724,12.016999999999999,13.467000000000001,15.093999999999999,16.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,711,-0.010200000000000001,12.023400000000001,0.11389000000000001,8.5489999999999995,9.577,10.73,12.023,13.475,15.103,16.931000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,712,-0.0104,12.03,0.11391,8.5530000000000008,9.5820000000000007,10.736000000000001,12.03,13.481999999999999,15.112,16.940999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,713,-0.0106,12.0366,0.11393,8.5570000000000004,9.5869999999999997,10.741,12.037000000000001,13.49,15.121,16.952000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,714,-0.010800000000000001,12.043100000000001,0.11395,8.5609999999999999,9.5909999999999993,10.747,12.042999999999999,13.497999999999999,15.13,16.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,715,-0.010999999999999999,12.0497,0.11397,8.5660000000000007,9.5960000000000001,10.753,12.05,13.505000000000001,15.138999999999999,16.972000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,716,-0.0111,12.0563,0.11398999999999999,8.57,9.6010000000000009,10.757999999999999,12.055999999999999,13.513,15.148,16.983000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,717,-0.011299999999999999,12.062900000000001,0.11401,8.5739999999999998,9.6059999999999999,10.763999999999999,12.063000000000001,13.521000000000001,15.157,16.992999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,718,-0.0115,12.0694,0.11403000000000001,8.5779999999999994,9.6110000000000007,10.769,12.069000000000001,13.528,15.166,17.004000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,719,-0.0117,12.076000000000001,0.11404,8.5830000000000002,9.6159999999999997,10.775,12.076000000000001,13.536,15.173999999999999,17.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,720,-0.0118,12.082599999999999,0.11405999999999999,8.5869999999999997,9.6210000000000004,10.781000000000001,12.083,13.542999999999999,15.183,17.024000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,721,-0.012,12.0891,0.11408,8.5909999999999993,9.6259999999999994,10.787000000000001,12.089,13.551,15.192,17.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,722,-0.012200000000000001,12.095700000000001,0.11409999999999999,8.5960000000000001,9.6310000000000002,10.792,12.096,13.558999999999999,15.201000000000001,17.045000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,723,-0.0124,12.1023,0.11412,8.6,9.6359999999999992,10.798,12.102,13.566000000000001,15.21,17.056000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,724,-0.012500000000000001,12.1088,0.11414000000000001,8.6039999999999992,9.641,10.804,12.109,13.574,15.218999999999999,17.065999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,725,-0.012699999999999999,12.115399999999999,0.11416,8.6080000000000005,9.6449999999999996,10.808999999999999,12.115,13.582000000000001,15.228,17.077000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,726,-0.0129,12.122,0.11418,8.6129999999999995,9.65,10.815,12.122,13.589,15.237,17.087 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,727,-0.013100000000000001,12.128500000000001,0.1142,8.6170000000000009,9.6549999999999994,10.821,12.128,13.597,15.246,17.097000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,728,-0.0132,12.1351,0.11421000000000001,8.6210000000000004,9.66,10.826000000000001,12.135,13.603999999999999,15.254,17.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,729,-0.0134,12.1416,0.11423,8.6259999999999994,9.6649999999999991,10.832000000000001,12.141999999999999,13.612,15.263,17.117999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,730,-0.013599999999999999,12.148199999999999,0.11425,8.6300000000000008,9.67,10.837999999999999,12.148,13.62,15.272,17.128 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,731,-0.0137,12.1548,0.11427,8.6340000000000003,9.6750000000000007,10.843,12.154999999999999,13.627000000000001,15.281000000000001,17.138999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,732,-0.013899999999999999,12.161300000000001,0.11429,8.6379999999999999,9.68,10.849,12.161,13.635,15.29,17.149000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,733,-0.0141,12.167899999999999,0.11430999999999999,8.6430000000000007,9.6850000000000005,10.855,12.167999999999999,13.643000000000001,15.298999999999999,17.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,734,-0.0143,12.1744,0.11433,8.6470000000000002,9.69,10.86,12.173999999999999,13.65,15.308,17.170000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,735,-0.0144,12.180999999999999,0.11434999999999999,8.6509999999999998,9.6940000000000008,10.866,12.180999999999999,13.657999999999999,15.317,17.181000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,736,-0.0146,12.1875,0.11437,8.6549999999999994,9.6989999999999998,10.871,12.188000000000001,13.666,15.326000000000001,17.190999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,737,-0.014800000000000001,12.194100000000001,0.11439000000000001,8.6590000000000007,9.7040000000000006,10.877000000000001,12.194000000000001,13.673,15.335000000000001,17.202000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,738,-0.014999999999999999,12.2006,0.1144,8.6639999999999997,9.7089999999999996,10.882999999999999,12.201000000000001,13.680999999999999,15.343,17.210999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,739,-0.015100000000000001,12.2072,0.11441999999999999,8.6679999999999993,9.7140000000000004,10.888,12.207000000000001,13.688000000000001,15.352,17.222000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,740,-0.015299999999999999,12.213699999999999,0.11444,8.6720000000000006,9.7189999999999994,10.894,12.214,13.696,15.361000000000001,17.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,741,-0.0155,12.2202,0.11446000000000001,8.6769999999999996,9.7240000000000002,10.9,12.22,13.704000000000001,15.37,17.242999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,742,-0.015599999999999999,12.226800000000001,0.11448,8.6809999999999992,9.7289999999999992,10.904999999999999,12.227,13.711,15.379,17.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,743,-0.015800000000000002,12.2333,0.1145,8.6850000000000005,9.734,10.911,12.233000000000001,13.718999999999999,15.388,17.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,744,-0.016,12.239800000000001,0.11452,8.6890000000000001,9.7379999999999995,10.917,12.24,13.726000000000001,15.397,17.274000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,745,-0.016199999999999999,12.2464,0.11454,8.6929999999999996,9.7430000000000003,10.922000000000001,12.246,13.734,15.406000000000001,17.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,746,-0.016299999999999999,12.2529,0.11456,8.6980000000000004,9.7479999999999993,10.928000000000001,12.253,13.742000000000001,15.414999999999999,17.295000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,747,-0.016500000000000001,12.259399999999999,0.11458,8.702,9.7530000000000001,10.933,12.259,13.749000000000001,15.423,17.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,748,-0.0167,12.266,0.11459999999999999,8.7059999999999995,9.7579999999999991,10.939,12.266,13.757,15.432,17.315999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,749,-0.016799999999999999,12.272500000000001,0.11462,8.7100000000000009,9.7629999999999999,10.945,12.272,13.763999999999999,15.441000000000001,17.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,750,-0.017000000000000001,12.279,0.11464000000000001,8.7140000000000004,9.7669999999999995,10.95,12.279,13.772,15.45,17.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,751,-0.0172,12.285500000000001,0.11465,8.7189999999999994,9.7720000000000002,10.956,12.286,13.78,15.459,17.347000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,752,-0.017399999999999999,12.292,0.11466999999999999,8.7230000000000008,9.7769999999999992,10.962,12.292,13.787000000000001,15.468,17.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,753,-0.017500000000000002,12.2986,0.11469,8.7270000000000003,9.782,10.967000000000001,12.298999999999999,13.795,15.477,17.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,754,-0.0177,12.305099999999999,0.11471000000000001,8.7309999999999999,9.7870000000000008,10.973000000000001,12.305,13.802,15.484999999999999,17.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,755,-0.017899999999999999,12.3116,0.11473,8.7360000000000007,9.7919999999999998,10.978,12.311999999999999,13.81,15.494,17.388000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,756,-0.017999999999999999,12.318099999999999,0.11475,8.74,9.7970000000000006,10.984,12.318,13.818,15.503,17.399000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,757,-0.018200000000000001,12.3246,0.11477,8.7439999999999998,9.8010000000000002,10.99,12.324999999999999,13.824999999999999,15.512,17.408999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,758,-0.0184,12.331099999999999,0.11479,8.7479999999999993,9.8059999999999992,10.994999999999999,12.331,13.833,15.521000000000001,17.419 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,759,-0.018499999999999999,12.3376,0.11481,8.7520000000000007,9.8109999999999999,11.000999999999999,12.337999999999999,13.84,15.53,17.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,760,-0.018700000000000001,12.344099999999999,0.11483,8.7560000000000002,9.8160000000000007,11.006,12.343999999999999,13.848000000000001,15.539,17.440000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,761,-0.0189,12.3506,0.11484999999999999,8.7609999999999992,9.8209999999999997,11.012,12.351000000000001,13.855,15.548,17.451000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,762,-0.019099999999999999,12.357100000000001,0.11487,8.7650000000000006,9.8260000000000005,11.018000000000001,12.356999999999999,13.863,15.555999999999999,17.460999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,763,-0.019199999999999998,12.3636,0.11489000000000001,8.7690000000000001,9.83,11.023,12.364000000000001,13.871,15.565,17.472000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,764,-0.019400000000000001,12.370100000000001,0.11491,8.7729999999999997,9.8350000000000009,11.029,12.37,13.878,15.574,17.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,765,-0.019599999999999999,12.3766,0.11493,8.7769999999999992,9.84,11.034000000000001,12.377000000000001,13.885999999999999,15.583,17.492000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,766,-0.019699999999999999,12.382999999999999,0.11495,8.7810000000000006,9.8450000000000006,11.04,12.382999999999999,13.893000000000001,15.592000000000001,17.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,767,-0.019900000000000001,12.3895,0.11497,8.7859999999999996,9.85,11.045,12.39,13.901,15.601000000000001,17.513000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,768,-0.0201,12.396000000000001,0.11498,8.7899999999999991,9.8550000000000004,11.051,12.396000000000001,13.907999999999999,15.609,17.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,769,-0.020199999999999999,12.4025,0.115,8.7940000000000005,9.859,11.057,12.401999999999999,13.916,15.618,17.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,770,-0.020400000000000001,12.409000000000001,0.11502,8.798,9.8640000000000008,11.061999999999999,12.409000000000001,13.923,15.627000000000001,17.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,771,-0.0206,12.4154,0.11504,8.8030000000000008,9.8689999999999998,11.068,12.414999999999999,13.930999999999999,15.635999999999999,17.553999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,772,-0.0207,12.421900000000001,0.11506,8.8070000000000004,9.8740000000000006,11.073,12.422000000000001,13.939,15.645,17.565000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,773,-0.020899999999999998,12.4284,0.11508,8.8109999999999999,9.8789999999999996,11.079000000000001,12.428000000000001,13.946,15.654,17.574999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,774,-0.021100000000000001,12.434799999999999,0.11509999999999999,8.8149999999999995,9.8829999999999991,11.084,12.435,13.954000000000001,15.662000000000001,17.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,775,-0.0212,12.4413,0.11512,8.8190000000000008,9.8879999999999999,11.09,12.441000000000001,13.961,15.670999999999999,17.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,776,-0.021399999999999999,12.447699999999999,0.11514000000000001,8.8230000000000004,9.8930000000000007,11.095000000000001,12.448,13.968999999999999,15.68,17.606000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,777,-0.021600000000000001,12.4542,0.11516,8.827,9.8979999999999997,11.101000000000001,12.454000000000001,13.976000000000001,15.689,17.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,778,-0.021700000000000001,12.460599999999999,0.11518,8.8309999999999995,9.9019999999999992,11.106999999999999,12.461,13.984,15.698,17.626999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,779,-0.021899999999999999,12.4671,0.1152,8.8360000000000003,9.907,11.112,12.467000000000001,13.991,15.707000000000001,17.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,780,-0.022100000000000002,12.4735,0.11522,8.84,9.9120000000000008,11.118,12.474,13.999000000000001,15.715,17.646999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,781,-0.022200000000000001,12.48,0.11524,8.8439999999999994,9.9169999999999998,11.122999999999999,12.48,14.006,15.724,17.658000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,782,-0.0224,12.4864,0.11526,8.8480000000000008,9.9220000000000006,11.129,12.486000000000001,14.013999999999999,15.733000000000001,17.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,783,-0.022599999999999999,12.492900000000001,0.11527999999999999,8.8520000000000003,9.9260000000000002,11.134,12.493,14.021000000000001,15.742000000000001,17.678999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,784,-0.022700000000000001,12.4993,0.1153,8.8559999999999999,9.9309999999999992,11.14,12.499000000000001,14.029,15.750999999999999,17.689 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,785,-0.0229,12.505699999999999,0.11532000000000001,8.86,9.9359999999999999,11.145,12.506,14.036,15.759,17.699000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,786,-0.023099999999999999,12.5121,0.11534,8.8640000000000008,9.9410000000000007,11.151,12.512,14.044,15.768000000000001,17.71 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,787,-0.023199999999999998,12.518599999999999,0.11536,8.8689999999999998,9.9450000000000003,11.156000000000001,12.519,14.052,15.776999999999999,17.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,788,-0.023400000000000001,12.525,0.11538,8.8729999999999993,9.9499999999999993,11.162000000000001,12.525,14.058999999999999,15.786,17.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,789,-0.023599999999999999,12.5314,0.1154,8.8770000000000007,9.9550000000000001,11.167,12.531000000000001,14.066000000000001,15.795,17.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,790,-0.023699999999999999,12.537800000000001,0.11541999999999999,8.8810000000000002,9.9600000000000009,11.173,12.538,14.074,15.803000000000001,17.751000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,791,-0.023900000000000001,12.5442,0.11544,8.8849999999999998,9.9640000000000004,11.178000000000001,12.544,14.081,15.811999999999999,17.760999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,792,-0.0241,12.550599999999999,0.11545,8.8889999999999993,9.9689999999999994,11.183999999999999,12.551,14.089,15.821,17.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,793,-0.024199999999999999,12.557,0.11547,8.8930000000000007,9.9740000000000002,11.189,12.557,14.096,15.829000000000001,17.780999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,794,-0.024400000000000002,12.5634,0.11549,8.8979999999999997,9.9789999999999992,11.195,12.563000000000001,14.103999999999999,15.837999999999999,17.792000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,795,-0.0246,12.569800000000001,0.11551,8.9019999999999992,9.9830000000000005,11.2,12.57,14.111000000000001,15.847,17.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,796,-0.0247,12.5762,0.11552999999999999,8.9060000000000006,9.9879999999999995,11.206,12.576000000000001,14.119,15.856,17.812000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,797,-0.024899999999999999,12.582599999999999,0.11555,8.91,9.9930000000000003,11.211,12.583,14.125999999999999,15.864000000000001,17.823 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,798,-0.025000000000000001,12.589,0.11557000000000001,8.9139999999999997,9.9979999999999993,11.217000000000001,12.589,14.134,15.872999999999999,17.832999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,799,-0.0252,12.5954,0.11559,8.9179999999999993,10.002000000000001,11.222,12.595000000000001,14.141,15.882,17.843 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,800,-0.025399999999999999,12.601800000000001,0.11561,8.9220000000000006,10.007,11.228,12.602,14.148999999999999,15.891,17.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,801,-0.025499999999999998,12.6082,0.11563,8.9260000000000002,10.012,11.233000000000001,12.608000000000001,14.156000000000001,15.9,17.864000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,802,-0.025700000000000001,12.6145,0.11565,8.93,10.016,11.239000000000001,12.614000000000001,14.164,15.907999999999999,17.873999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,803,-0.025899999999999999,12.620900000000001,0.11567,8.9339999999999993,10.021000000000001,11.244,12.621,14.170999999999999,15.917,17.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,804,-0.025999999999999999,12.6273,0.11569,8.9380000000000006,10.026,11.25,12.627000000000001,14.178000000000001,15.926,17.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,805,-0.026200000000000001,12.633599999999999,0.11570999999999999,8.9420000000000002,10.031000000000001,11.255000000000001,12.634,14.186,15.933999999999999,17.905000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,806,-0.0264,12.64,0.11573,8.9459999999999997,10.035,11.260999999999999,12.64,14.193,15.943,17.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,807,-0.026499999999999999,12.6464,0.11575000000000001,8.9510000000000005,10.039999999999999,11.266,12.646000000000001,14.201000000000001,15.952,17.925999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,808,-0.026700000000000002,12.652699999999999,0.11577,8.9550000000000001,10.045,11.272,12.653,14.208,15.961,17.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,809,-0.026800000000000001,12.6591,0.11579,8.9589999999999996,10.048999999999999,11.276999999999999,12.659000000000001,14.215999999999999,15.968999999999999,17.946000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,810,-0.027,12.6654,0.11581,8.9629999999999992,10.054,11.282,12.664999999999999,14.223000000000001,15.978,17.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,811,-0.027199999999999998,12.671799999999999,0.11583,8.9670000000000005,10.058999999999999,11.288,12.672000000000001,14.231,15.987,17.966999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,812,-0.027300000000000001,12.678100000000001,0.11584999999999999,8.9710000000000001,10.063000000000001,11.292999999999999,12.678000000000001,14.238,15.996,17.977 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,813,-0.0275,12.6844,0.11587,8.9749999999999996,10.068,11.298999999999999,12.683999999999999,14.244999999999999,16.004000000000001,17.986999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,814,-0.027699999999999999,12.690799999999999,0.11589000000000001,8.9789999999999992,10.073,11.304,12.691000000000001,14.253,16.013000000000002,17.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,815,-0.027799999999999998,12.697100000000001,0.11591,8.9830000000000005,10.077,11.31,12.696999999999999,14.26,16.021999999999998,18.007999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,816,-0.028000000000000001,12.7034,0.11593000000000001,8.9870000000000001,10.082000000000001,11.315,12.702999999999999,14.268000000000001,16.03,18.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,817,-0.0281,12.7098,0.11595,8.9909999999999997,10.087,11.32,12.71,14.275,16.039000000000001,18.027999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,818,-0.028299999999999999,12.716100000000001,0.11597,8.9949999999999992,10.090999999999999,11.326000000000001,12.715999999999999,14.282,16.047999999999998,18.038 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,819,-0.028500000000000001,12.7224,0.11599,8.9990000000000006,10.096,11.331,12.722,14.29,16.056999999999999,18.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,820,-0.0286,12.7287,0.11601,9.0030000000000001,10.101000000000001,11.337,12.728999999999999,14.297000000000001,16.065000000000001,18.059000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,821,-0.028799999999999999,12.734999999999999,0.11602,9.0069999999999997,10.106,11.342000000000001,12.734999999999999,14.304,16.074000000000002,18.068999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,822,-0.028899999999999999,12.741300000000001,0.11604,9.0109999999999992,10.11,11.348000000000001,12.741,14.311999999999999,16.082000000000001,18.079000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,823,-0.029100000000000001,12.7476,0.11606,9.0150000000000006,10.115,11.353,12.747999999999999,14.319000000000001,16.091000000000001,18.088999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,824,-0.0293,12.7539,0.11608,9.0190000000000001,10.119,11.358000000000001,12.754,14.327,16.100000000000001,18.099 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,825,-0.029399999999999999,12.760199999999999,0.11609999999999999,9.0229999999999997,10.124000000000001,11.364000000000001,12.76,14.334,16.108000000000001,18.109000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,826,-0.029600000000000001,12.766500000000001,0.11612,9.0269999999999992,10.129,11.369,12.766,14.340999999999999,16.117000000000001,18.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,827,-0.029700000000000001,12.7728,0.11613999999999999,9.0310000000000006,10.132999999999999,11.375,12.773,14.349,16.126000000000001,18.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,828,-0.029899999999999999,12.7791,0.11616,9.0350000000000001,10.138,11.38,12.779,14.356,16.134,18.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,829,-0.030099999999999998,12.785399999999999,0.11618000000000001,9.0389999999999997,10.143000000000001,11.385,12.785,14.363,16.143000000000001,18.149999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,830,-0.030200000000000001,12.791600000000001,0.1162,9.0429999999999993,10.147,11.391,12.792,14.371,16.151,18.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,831,-0.0304,12.7979,0.11622,9.0470000000000006,10.151999999999999,11.396000000000001,12.798,14.378,16.16,18.170999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,832,-0.030499999999999999,12.8042,0.11624,9.0510000000000002,10.156000000000001,11.401,12.804,14.385,16.169,18.181000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,833,-0.030700000000000002,12.8104,0.11626,9.0549999999999997,10.161,11.407,12.81,14.393000000000001,16.177,18.190999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,834,-0.0309,12.816700000000001,0.11627999999999999,9.0589999999999993,10.166,11.412000000000001,12.817,14.4,16.186,18.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,835,-0.031,12.823,0.1163,9.0630000000000006,10.17,11.417999999999999,12.823,14.407999999999999,16.195,18.210999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,836,-0.031199999999999999,12.8292,0.11632000000000001,9.0670000000000002,10.175000000000001,11.423,12.829000000000001,14.414999999999999,16.202999999999999,18.221 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,837,-0.031300000000000001,12.8355,0.11634,9.0709999999999997,10.18,11.428000000000001,12.836,14.422000000000001,16.212,18.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,838,-0.0315,12.841699999999999,0.11636000000000001,9.0749999999999993,10.183999999999999,11.433999999999999,12.842000000000001,14.429,16.22,18.242000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,839,-0.031699999999999999,12.848000000000001,0.11638,9.0790000000000006,10.189,11.439,12.848000000000001,14.436999999999999,16.228999999999999,18.251999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,840,-0.031800000000000002,12.854200000000001,0.1164,9.0830000000000002,10.193,11.444000000000001,12.853999999999999,14.444000000000001,16.238,18.262 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,841,-0.032000000000000001,12.8604,0.11642,9.0869999999999997,10.198,11.45,12.86,14.451000000000001,16.245999999999999,18.271999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,842,-0.032099999999999997,12.8667,0.11644,9.0909999999999993,10.202,11.455,12.867000000000001,14.459,16.254999999999999,18.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,843,-0.032300000000000002,12.8729,0.11645999999999999,9.0950000000000006,10.207000000000001,11.46,12.872999999999999,14.465999999999999,16.263999999999999,18.292000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,844,-0.032399999999999998,12.879099999999999,0.11647,9.0990000000000002,10.212,11.465999999999999,12.879,14.473000000000001,16.271999999999998,18.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,845,-0.032599999999999997,12.885300000000001,0.11649,9.1029999999999998,10.215999999999999,11.471,12.885,14.48,16.28,18.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,846,-0.032800000000000003,12.891500000000001,0.11651,9.1069999999999993,10.221,11.476000000000001,12.891999999999999,14.488,16.289000000000001,18.321999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,847,-0.032899999999999999,12.8978,0.11652999999999999,9.1110000000000007,10.226000000000001,11.481999999999999,12.898,14.494999999999999,16.297999999999998,18.332000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,848,-0.033099999999999997,12.904,0.11655,9.1150000000000002,10.23,11.487,12.904,14.502000000000001,16.306000000000001,18.343 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,849,-0.0332,12.9102,0.11656999999999999,9.1189999999999998,10.234999999999999,11.492000000000001,12.91,14.51,16.315000000000001,18.353000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,850,-0.033399999999999999,12.916399999999999,0.11659,9.1229999999999993,10.239000000000001,11.497999999999999,12.916,14.516999999999999,16.323,18.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,851,-0.033599999999999998,12.922599999999999,0.11661000000000001,9.1270000000000007,10.244,11.503,12.923,14.523999999999999,16.332000000000001,18.373000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,852,-0.033700000000000001,12.928800000000001,0.11663,9.1300000000000008,10.247999999999999,11.507999999999999,12.929,14.531000000000001,16.34,18.382999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,853,-0.0339,12.935,0.11665,9.1340000000000003,10.253,11.513,12.935,14.539,16.349,18.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,854,-0.034000000000000002,12.9411,0.11667,9.1379999999999999,10.257,11.519,12.941000000000001,14.545999999999999,16.356999999999999,18.402999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,855,-0.034200000000000001,12.9473,0.11669,9.1419999999999995,10.262,11.523999999999999,12.946999999999999,14.553000000000001,16.366,18.413 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,856,-0.034299999999999997,12.9535,0.11670999999999999,9.1460000000000008,10.266,11.529,12.954000000000001,14.56,16.375,18.422999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,857,-0.034500000000000003,12.9597,0.11673,9.15,10.271000000000001,11.535,12.96,14.568,16.382999999999999,18.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,858,-0.034599999999999999,12.9658,0.11675000000000001,9.1539999999999999,10.275,11.54,12.965999999999999,14.574999999999999,16.391999999999999,18.443000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,859,-0.034799999999999998,12.972,0.11677,9.1579999999999995,10.28,11.545,12.972,14.582000000000001,16.399999999999999,18.454000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,860,-0.035000000000000003,12.978199999999999,0.11679,9.1620000000000008,10.285,11.55,12.978,14.589,16.408999999999999,18.463999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,861,-0.035099999999999999,12.984299999999999,0.11681,9.1660000000000004,10.289,11.555999999999999,12.984,14.597,16.417000000000002,18.474 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,862,-0.035299999999999998,12.990500000000001,0.11683,9.1690000000000005,10.294,11.561,12.99,14.603999999999999,16.425999999999998,18.484000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,863,-0.035400000000000001,12.996600000000001,0.11684,9.1739999999999995,10.298,11.566000000000001,12.997,14.611000000000001,16.434000000000001,18.492999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,864,-0.0356,13.002800000000001,0.11686000000000001,9.1769999999999996,10.303000000000001,11.571999999999999,13.003,14.618,16.442,18.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,865,-0.035700000000000003,13.008900000000001,0.11688,9.1809999999999992,10.307,11.577,13.009,14.625,16.451000000000001,18.513000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,866,-0.035900000000000001,13.0151,0.1169,9.1850000000000005,10.311999999999999,11.582000000000001,13.015000000000001,14.632999999999999,16.459,18.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,867,-0.0361,13.0212,0.11692,9.1890000000000001,10.316000000000001,11.587,13.021000000000001,14.64,16.468,18.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,868,-0.036200000000000003,13.0273,0.11694,9.1929999999999996,10.321,11.592000000000001,13.026999999999999,14.647,16.475999999999999,18.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,869,-0.036400000000000002,13.0334,0.11695999999999999,9.1969999999999992,10.324999999999999,11.598000000000001,13.032999999999999,14.654,16.484999999999999,18.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,870,-0.036499999999999998,13.0396,0.11698,9.2010000000000005,10.33,11.603,13.04,14.661,16.492999999999999,18.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,871,-0.036700000000000003,13.0457,0.11700000000000001,9.2050000000000001,10.334,11.608000000000001,13.045999999999999,14.669,16.501999999999999,18.574000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,872,-0.036799999999999999,13.0518,0.11702,9.2080000000000002,10.339,11.613,13.052,14.676,16.510000000000002,18.582999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,873,-0.036999999999999998,13.0579,0.11704000000000001,9.2119999999999997,10.343,11.619,13.058,14.683,16.518999999999998,18.594000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,874,-0.037100000000000001,13.064,0.11706,9.2159999999999993,10.348000000000001,11.624000000000001,13.064,14.69,16.527000000000001,18.603000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,875,-0.0373,13.0701,0.11708,9.2200000000000006,10.352,11.629,13.07,14.696999999999999,16.536000000000001,18.614000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,876,-0.037400000000000003,13.0762,0.1171,9.2240000000000002,10.356,11.634,13.076000000000001,14.704000000000001,16.544,18.623000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,877,-0.037600000000000001,13.0823,0.11712,9.2279999999999998,10.361000000000001,11.638999999999999,13.082000000000001,14.712,16.553000000000001,18.634 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,878,-0.0378,13.0884,0.11713,9.2319999999999993,10.366,11.645,13.087999999999999,14.718999999999999,16.561,18.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,879,-0.037900000000000003,13.0945,0.11715,9.2360000000000007,10.37,11.65,13.093999999999999,14.726000000000001,16.568999999999999,18.652999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,880,-0.038100000000000002,13.1006,0.11717,9.2390000000000008,10.375,11.654999999999999,13.101000000000001,14.733000000000001,16.577999999999999,18.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,881,-0.038199999999999998,13.1067,0.11719,9.2430000000000003,10.379,11.66,13.106999999999999,14.74,16.585999999999999,18.672999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,882,-0.038399999999999997,13.1127,0.11720999999999999,9.2469999999999999,10.382999999999999,11.664999999999999,13.113,14.747,16.594000000000001,18.683 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,883,-0.0385,13.1188,0.11723,9.2509999999999994,10.388,11.670999999999999,13.119,14.754,16.603000000000002,18.693000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,884,-0.038699999999999998,13.1249,0.11724999999999999,9.2550000000000008,10.391999999999999,11.676,13.125,14.762,16.611000000000001,18.702999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,885,-0.038800000000000001,13.131,0.11727,9.2590000000000003,10.397,11.680999999999999,13.131,14.769,16.62,18.713000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,886,-0.039,13.137,0.11729000000000001,9.2620000000000005,10.401,11.686,13.137,14.776,16.628,18.722999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,887,-0.039100000000000003,13.1431,0.11731,9.266,10.406000000000001,11.691000000000001,13.143000000000001,14.782999999999999,16.637,18.733000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,888,-0.039300000000000002,13.149100000000001,0.11733,9.27,10.41,11.696999999999999,13.148999999999999,14.79,16.645,18.742999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,889,-0.039399999999999998,13.155200000000001,0.11735,9.2739999999999991,10.414,11.702,13.154999999999999,14.797000000000001,16.652999999999999,18.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,890,-0.039600000000000003,13.161199999999999,0.11737,9.2780000000000005,10.419,11.707000000000001,13.161,14.804,16.661999999999999,18.763000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,891,-0.039699999999999999,13.167299999999999,0.11738999999999999,9.2810000000000006,10.423,11.712,13.167,14.811,16.670000000000002,18.771999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,892,-0.039899999999999998,13.173299999999999,0.1174,9.2850000000000001,10.428000000000001,11.717000000000001,13.173,14.818,16.678000000000001,18.782 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,893,-0.040099999999999997,13.1793,0.11742,9.2889999999999997,10.432,11.722,13.179,14.824999999999999,16.687000000000001,18.792000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,894,-0.0402,13.1854,0.11744,9.2929999999999993,10.436999999999999,11.728,13.185,14.833,16.695,18.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,895,-0.040399999999999998,13.1914,0.11745999999999999,9.2970000000000006,10.441000000000001,11.733000000000001,13.191000000000001,14.84,16.702999999999999,18.812000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,896,-0.040500000000000001,13.1974,0.11748,9.3010000000000002,10.445,11.738,13.196999999999999,14.847,16.712,18.821000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,897,-0.0407,13.2034,0.11749999999999999,9.3040000000000003,10.45,11.743,13.202999999999999,14.853999999999999,16.72,18.831 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,898,-0.040800000000000003,13.2095,0.11752,9.3079999999999998,10.454000000000001,11.747999999999999,13.21,14.861000000000001,16.728000000000002,18.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,899,-0.041000000000000002,13.2155,0.11754000000000001,9.3119999999999994,10.459,11.753,13.215999999999999,14.868,16.736999999999998,18.850999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,900,-0.041099999999999998,13.221500000000001,0.11756,9.3160000000000007,10.462999999999999,11.757999999999999,13.222,14.875,16.745000000000001,18.861000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,901,-0.041300000000000003,13.227499999999999,0.11758,9.3190000000000008,10.467000000000001,11.763999999999999,13.228,14.882,16.754000000000001,18.870999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,902,-0.041399999999999999,13.233499999999999,0.1176,9.3230000000000004,10.472,11.769,13.234,14.888999999999999,16.762,18.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,903,-0.041599999999999998,13.2395,0.11762,9.327,10.476000000000001,11.773999999999999,13.24,14.896000000000001,16.77,18.890999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,904,-0.041700000000000001,13.2455,0.11763,9.3309999999999995,10.481,11.779,13.246,14.903,16.777999999999999,18.899999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,905,-0.0419,13.2515,0.11765,9.3350000000000009,10.484999999999999,11.784000000000001,13.252000000000001,14.91,16.786999999999999,18.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,906,-0.042000000000000003,13.2575,0.11767,9.3379999999999992,10.49,11.789,13.257999999999999,14.917,16.795000000000002,18.920000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,907,-0.042200000000000001,13.263400000000001,0.11769,9.3420000000000005,10.494,11.794,13.263,14.923999999999999,16.803000000000001,18.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,908,-0.042299999999999997,13.269399999999999,0.11771,9.3460000000000001,10.497999999999999,11.798999999999999,13.269,14.930999999999999,16.811,18.940000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,909,-0.042500000000000003,13.275399999999999,0.11773,9.35,10.503,11.804,13.275,14.938000000000001,16.82,18.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,910,-0.042599999999999999,13.2814,0.11774999999999999,9.3529999999999998,10.507,11.81,13.281000000000001,14.946,16.827999999999999,18.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,911,-0.042799999999999998,13.2873,0.11777,9.3569999999999993,10.510999999999999,11.815,13.287000000000001,14.952,16.835999999999999,18.969000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,912,-0.042900000000000001,13.2933,0.11779000000000001,9.3610000000000007,10.516,11.82,13.292999999999999,14.96,16.844999999999999,18.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,913,-0.043099999999999999,13.299300000000001,0.11781,9.3650000000000002,10.52,11.824999999999999,13.298999999999999,14.967000000000001,16.853000000000002,18.989000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,914,-0.043200000000000002,13.305199999999999,0.11783,9.3680000000000003,10.523999999999999,11.83,13.305,14.974,16.861000000000001,18.998999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,915,-0.043400000000000001,13.311199999999999,0.11785,9.3719999999999999,10.529,11.835000000000001,13.311,14.981,16.87,19.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,916,-0.043499999999999997,13.3171,0.11786000000000001,9.3759999999999994,10.532999999999999,11.84,13.317,14.987,16.878,19.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,917,-0.043700000000000003,13.3231,0.11788,9.3800000000000008,10.538,11.845000000000001,13.323,14.994999999999999,16.885999999999999,19.027999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,918,-0.043799999999999999,13.329000000000001,0.1179,9.3840000000000003,10.542,11.85,13.329000000000001,15.000999999999999,16.893999999999998,19.036999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,919,-0.043999999999999997,13.335000000000001,0.11792,9.3870000000000005,10.545999999999999,11.855,13.335000000000001,15.009,16.902999999999999,19.047000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,920,-0.0441,13.3409,0.11794,9.391,10.55,11.86,13.340999999999999,15.015000000000001,16.911000000000001,19.056999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,921,-0.044299999999999999,13.3468,0.11796,9.3949999999999996,10.555,11.865,13.347,15.022,16.919,19.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,922,-0.044400000000000002,13.3528,0.11798,9.3979999999999997,10.558999999999999,11.87,13.353,15.03,16.927,19.077000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,923,-0.044600000000000001,13.358700000000001,0.11799999999999999,9.4019999999999992,10.563000000000001,11.875,13.359,15.036,16.936,19.087 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,924,-0.044699999999999997,13.364599999999999,0.11802,9.4060000000000006,10.568,11.881,13.365,15.042999999999999,16.943999999999999,19.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,925,-0.044900000000000002,13.3705,0.11804000000000001,9.4090000000000007,10.571999999999999,11.885999999999999,13.37,15.05,16.952000000000002,19.106000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,926,-0.044999999999999998,13.3765,0.11805,9.4130000000000003,10.577,11.891,13.375999999999999,15.057,16.96,19.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,927,-0.045199999999999997,13.382400000000001,0.11806999999999999,9.4169999999999998,10.581,11.896000000000001,13.382,15.064,16.968,19.125 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,928,-0.0453,13.388299999999999,0.11809,9.4209999999999994,10.585000000000001,11.901,13.388,15.071,16.977,19.135000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,929,-0.045499999999999999,13.3942,0.11811000000000001,9.4250000000000007,10.589,11.906000000000001,13.394,15.077999999999999,16.984999999999999,19.145 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,930,-0.045600000000000002,13.4001,0.11813,9.4280000000000008,10.593999999999999,11.911,13.4,15.085000000000001,16.992999999999999,19.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,931,-0.0458,13.406000000000001,0.11815000000000001,9.4320000000000004,10.598000000000001,11.916,13.406000000000001,15.092000000000001,17.001000000000001,19.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,932,-0.045900000000000003,13.411899999999999,0.11817,9.4359999999999999,10.602,11.920999999999999,13.412000000000001,15.099,17.010000000000002,19.173999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,933,-0.046100000000000002,13.4178,0.11819,9.4390000000000001,10.606999999999999,11.926,13.417999999999999,15.106,17.018000000000001,19.184000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,934,-0.046199999999999998,13.4237,0.11821,9.4429999999999996,10.611000000000001,11.930999999999999,13.423999999999999,15.113,17.026,19.193999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,935,-0.046399999999999997,13.429600000000001,0.11823,9.4469999999999992,10.615,11.936,13.43,15.12,17.033999999999999,19.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,936,-0.0465,13.4354,0.11824999999999999,9.4499999999999993,10.619,11.941000000000001,13.435,15.127000000000001,17.042000000000002,19.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,937,-0.046600000000000003,13.4413,0.11826,9.4540000000000006,10.624000000000001,11.946,13.441000000000001,15.134,17.05,19.222000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,938,-0.046800000000000001,13.4472,0.11828,9.4580000000000002,10.628,11.951000000000001,13.446999999999999,15.141,17.059000000000001,19.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,939,-0.046899999999999997,13.453099999999999,0.1183,9.4610000000000003,10.632,11.956,13.452999999999999,15.148,17.067,19.242000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,940,-0.047100000000000003,13.4589,0.11831999999999999,9.4649999999999999,10.637,11.961,13.459,15.154,17.074999999999999,19.251999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,941,-0.047199999999999999,13.4648,0.11834,9.4689999999999994,10.641,11.965999999999999,13.465,15.161,17.082999999999998,19.260999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,942,-0.047399999999999998,13.470700000000001,0.11836000000000001,9.4719999999999995,10.645,11.971,13.471,15.167999999999999,17.091000000000001,19.271000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,943,-0.047500000000000001,13.4765,0.11838,9.4760000000000009,10.648999999999999,11.976000000000001,13.476000000000001,15.175000000000001,17.099,19.280999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,944,-0.047699999999999999,13.4824,0.11840000000000001,9.48,10.654,11.981,13.481999999999999,15.182,17.108000000000001,19.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,945,-0.047800000000000002,13.488300000000001,0.11842,9.4830000000000005,10.657999999999999,11.986000000000001,13.488,15.189,17.116,19.300999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,946,-0.048000000000000001,13.4941,0.11842999999999999,9.4870000000000001,10.662000000000001,11.991,13.494,15.196,17.123999999999999,19.309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,947,-0.048099999999999997,13.5,0.11845,9.4909999999999997,10.667,11.996,13.5,15.202999999999999,17.132000000000001,19.318999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,948,-0.048300000000000003,13.505800000000001,0.11847000000000001,9.4949999999999992,10.670999999999999,12.000999999999999,13.506,15.21,17.14,19.329000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,949,-0.048399999999999999,13.5116,0.11849,9.4979999999999993,10.675000000000001,12.006,13.512,15.215999999999999,17.148,19.338999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,950,-0.048599999999999997,13.5175,0.11851,9.5020000000000007,10.679,12.010999999999999,13.518000000000001,15.223000000000001,17.157,19.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,951,-0.0487,13.523300000000001,0.11853,9.5050000000000008,10.683999999999999,12.016,13.523,15.23,17.164999999999999,19.358000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,952,-0.048899999999999999,13.5291,0.11855,9.5090000000000003,10.688000000000001,12.021000000000001,13.529,15.237,17.172999999999998,19.367999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,953,-0.049000000000000002,13.535,0.11856999999999999,9.5129999999999999,10.692,12.026,13.535,15.244,17.181000000000001,19.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,954,-0.049099999999999998,13.540800000000001,0.11859,9.516,10.696,12.031000000000001,13.541,15.250999999999999,17.189,19.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,955,-0.049299999999999997,13.5466,0.1186,9.52,10.701000000000001,12.036,13.547000000000001,15.257999999999999,17.196999999999999,19.396999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,956,-0.049399999999999999,13.5524,0.11862,9.5239999999999991,10.705,12.041,13.552,15.265000000000001,17.204999999999998,19.405999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,957,-0.049599999999999998,13.558299999999999,0.11864,9.5280000000000005,10.709,12.045999999999999,13.558,15.272,17.213000000000001,19.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,958,-0.049700000000000001,13.5641,0.11866,9.5310000000000006,10.712999999999999,12.051,13.564,15.278,17.221,19.425999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,959,-0.0499,13.569900000000001,0.11867999999999999,9.5350000000000001,10.718,12.055999999999999,13.57,15.285,17.23,19.434999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,960,-0.05,13.575699999999999,0.1187,9.5380000000000003,10.722,12.06,13.576000000000001,15.292,17.238,19.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,961,-0.050200000000000002,13.5815,0.11872000000000001,9.5419999999999998,10.726000000000001,12.065,13.582000000000001,15.298999999999999,17.245999999999999,19.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,962,-0.050299999999999997,13.587300000000001,0.11874,9.5449999999999999,10.73,12.07,13.587,15.305999999999999,17.254000000000001,19.463999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,963,-0.050500000000000003,13.5931,0.11876,9.5489999999999995,10.734,12.074999999999999,13.593,15.313000000000001,17.262,19.474 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,964,-0.050599999999999999,13.5989,0.11877,9.5530000000000008,10.739000000000001,12.08,13.599,15.319000000000001,17.27,19.483000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,965,-0.050700000000000002,13.604699999999999,0.11879000000000001,9.5570000000000004,10.743,12.085000000000001,13.605,15.326000000000001,17.277999999999999,19.492999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,966,-0.050900000000000001,13.6105,0.11881,9.56,10.747,12.09,13.61,15.333,17.286000000000001,19.503 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,967,-0.050999999999999997,13.616300000000001,0.11883000000000001,9.5640000000000001,10.750999999999999,12.095000000000001,13.616,15.34,17.294,19.512 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,968,-0.051200000000000002,13.622,0.11885,9.5670000000000002,10.756,12.1,13.622,15.347,17.302,19.521999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,969,-0.051299999999999998,13.627800000000001,0.11887,9.5709999999999997,10.76,12.105,13.628,15.353999999999999,17.311,19.530999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,970,-0.051499999999999997,13.633599999999999,0.11889,9.5749999999999993,10.763999999999999,12.11,13.634,15.36,17.318999999999999,19.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,971,-0.0516,13.6394,0.11891,9.5779999999999994,10.768000000000001,12.115,13.638999999999999,15.367000000000001,17.327000000000002,19.550999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,972,-0.051799999999999999,13.645200000000001,0.11892,9.5820000000000007,10.773,12.12,13.645,15.374000000000001,17.335000000000001,19.559999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,973,-0.051900000000000002,13.6509,0.11894,9.5850000000000009,10.776999999999999,12.125,13.651,15.381,17.343,19.568999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,974,-0.051999999999999998,13.656700000000001,0.11896,9.5890000000000004,10.781000000000001,12.129,13.657,15.388,17.350999999999999,19.579000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,975,-0.052200000000000003,13.6625,0.11898,9.593,10.785,12.134,13.662000000000001,15.394,17.359000000000002,19.588999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,976,-0.052299999999999999,13.668200000000001,0.11899999999999999,9.5960000000000001,10.789,12.138999999999999,13.667999999999999,15.401,17.367000000000001,19.597999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,977,-0.052499999999999998,13.673999999999999,0.11902,9.6,10.792999999999999,12.144,13.673999999999999,15.407999999999999,17.375,19.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,978,-0.052600000000000001,13.6797,0.11904000000000001,9.6029999999999998,10.797000000000001,12.148999999999999,13.68,15.414999999999999,17.382999999999999,19.617999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,979,-0.0528,13.685499999999999,0.11906,9.6069999999999993,10.802,12.154,13.686,15.422000000000001,17.390999999999998,19.626999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,980,-0.052900000000000003,13.6912,0.11907,9.6110000000000007,10.805999999999999,12.159000000000001,13.691000000000001,15.428000000000001,17.399000000000001,19.635999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,981,-0.052999999999999999,13.696999999999999,0.11909,9.6140000000000008,10.81,12.164,13.696999999999999,15.435,17.407,19.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,982,-0.053199999999999997,13.7027,0.11910999999999999,9.6180000000000003,10.814,12.169,13.702999999999999,15.442,17.414999999999999,19.655999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,983,-0.0533,13.708500000000001,0.11913,9.6210000000000004,10.818,12.173999999999999,13.708,15.449,17.422999999999998,19.664999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,984,-0.053499999999999999,13.7142,0.11915000000000001,9.625,10.823,12.178000000000001,13.714,15.455,17.431000000000001,19.675000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,985,-0.053600000000000002,13.719900000000001,0.11917,9.6280000000000001,10.827,12.183,13.72,15.462,17.439,19.684000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,986,-0.053800000000000001,13.7257,0.11919,9.6319999999999997,10.831,12.188000000000001,13.726000000000001,15.468999999999999,17.446999999999999,19.693999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,987,-0.053900000000000003,13.731400000000001,0.1192,9.6359999999999992,10.835000000000001,12.193,13.731,15.476000000000001,17.454999999999998,19.702999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,988,-0.053999999999999999,13.7371,0.11922000000000001,9.6389999999999993,10.839,12.198,13.737,15.481999999999999,17.463000000000001,19.713000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,989,-0.054199999999999998,13.742900000000001,0.11924,9.6430000000000007,10.843999999999999,12.202999999999999,13.743,15.489000000000001,17.471,19.722000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,990,-0.054300000000000001,13.7486,0.11926,9.6460000000000008,10.848000000000001,12.208,13.749000000000001,15.496,17.478999999999999,19.731999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,991,-0.0545,13.754300000000001,0.11928,9.65,10.852,12.212,13.754,15.503,17.486999999999998,19.742000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,992,-0.054600000000000003,13.76,0.1193,9.6530000000000005,10.856,12.217000000000001,13.76,15.51,17.495000000000001,19.751000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,993,-0.054800000000000001,13.765700000000001,0.11932,9.657,10.86,12.222,13.766,15.516,17.503,19.760999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,994,-0.054899999999999997,13.7715,0.11933000000000001,9.6609999999999996,10.864000000000001,12.227,13.772,15.523,17.510999999999999,19.77 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,995,-0.055,13.777200000000001,0.11935,9.6639999999999997,10.868,12.231999999999999,13.776999999999999,15.53,17.518999999999998,19.779 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,996,-0.055199999999999999,13.7829,0.11937,9.6679999999999993,10.872999999999999,12.237,13.782999999999999,15.537000000000001,17.527000000000001,19.789000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,997,-0.055300000000000002,13.788600000000001,0.11939,9.6709999999999994,10.877000000000001,12.242000000000001,13.789,15.542999999999999,17.535,19.798999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,998,-0.055500000000000001,13.7943,0.11941,9.6750000000000007,10.881,12.246,13.794,15.55,17.542999999999999,19.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,999,-0.055599999999999997,13.8,0.11942999999999999,9.6780000000000008,10.885,12.250999999999999,13.8,15.557,17.550999999999998,19.818000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1000,-0.055800000000000002,13.8057,0.11945,9.6820000000000004,10.888999999999999,12.256,13.805999999999999,15.564,17.559000000000001,19.827000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1001,-0.055899999999999998,13.811400000000001,0.11946,9.6859999999999999,10.893000000000001,12.260999999999999,13.811,15.57,17.567,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1002,-0.056000000000000001,13.8171,0.11948,9.6890000000000001,10.897,12.266,13.817,15.577,17.574999999999999,19.846 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1003,-0.0562,13.822800000000001,0.1195,9.6929999999999996,10.901999999999999,12.271000000000001,13.823,15.584,17.582999999999998,19.855 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1004,-0.056300000000000003,13.8285,0.11952,9.6959999999999997,10.906000000000001,12.276,13.827999999999999,15.59,17.591000000000001,19.864999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1005,-0.056500000000000002,13.834099999999999,0.11953999999999999,9.6999999999999993,10.91,12.28,13.834,15.597,17.599,19.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1006,-0.056599999999999998,13.8398,0.11956,9.7029999999999994,10.914,12.285,13.84,15.603999999999999,17.606999999999999,19.884 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1007,-0.0567,13.845499999999999,0.11957,9.7070000000000007,10.917999999999999,12.29,13.846,15.61,17.614999999999998,19.893000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1008,-0.056899999999999999,13.8512,0.11959,9.7110000000000003,10.922000000000001,12.295,13.851000000000001,15.617000000000001,17.623000000000001,19.902999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1009,-0.057000000000000002,13.8569,0.11960999999999999,9.7140000000000004,10.926,12.3,13.856999999999999,15.624000000000001,17.631,19.911999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1010,-0.057200000000000001,13.862500000000001,0.11963,9.718,10.93,12.304,13.862,15.631,17.638999999999999,19.922000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1011,-0.057299999999999997,13.8682,0.11965000000000001,9.7210000000000001,10.935,12.308999999999999,13.868,15.637,17.646999999999998,19.931000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1012,-0.0574,13.873900000000001,0.11967,9.7240000000000002,10.939,12.314,13.874000000000001,15.644,17.655000000000001,19.940999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1013,-0.057599999999999998,13.8796,0.11967999999999999,9.7279999999999998,10.943,12.319000000000001,13.88,15.651,17.663,19.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1014,-0.057700000000000001,13.885199999999999,0.1197,9.7319999999999993,10.946999999999999,12.324,13.885,15.657,17.670000000000002,19.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1015,-0.0579,13.8909,0.11971999999999999,9.7349999999999994,10.951000000000001,12.329000000000001,13.891,15.664,17.678000000000001,19.969000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1016,-0.058000000000000003,13.896599999999999,0.11974,9.7390000000000008,10.955,12.333,13.897,15.670999999999999,17.687000000000001,19.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1017,-0.058099999999999999,13.902200000000001,0.11976000000000001,9.7420000000000009,10.959,12.337999999999999,13.901999999999999,15.677,17.693999999999999,19.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1018,-0.058299999999999998,13.9079,0.11978,9.7460000000000004,10.962999999999999,12.343,13.907999999999999,15.683999999999999,17.702000000000002,19.998000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1019,-0.058400000000000001,13.913500000000001,0.11978999999999999,9.7490000000000006,10.968,12.348000000000001,13.914,15.691000000000001,17.71,20.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1020,-0.058599999999999999,13.9192,0.11981,9.7530000000000001,10.972,12.353,13.919,15.698,17.718,20.015999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1021,-0.058700000000000002,13.924799999999999,0.11983000000000001,9.7560000000000002,10.976000000000001,12.356999999999999,13.925000000000001,15.704000000000001,17.725999999999999,20.026 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1022,-0.058799999999999998,13.9305,0.11985,9.76,10.98,12.362,13.93,15.711,17.734000000000002,20.035 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1023,-0.058999999999999997,13.9361,0.11987,9.7629999999999999,10.984,12.367000000000001,13.936,15.718,17.742000000000001,20.045000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1024,-0.0591,13.941800000000001,0.11988,9.7669999999999995,10.988,12.372,13.942,15.724,17.75,20.053999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1025,-0.059299999999999999,13.9474,0.11990000000000001,9.7710000000000008,10.992000000000001,12.377000000000001,13.946999999999999,15.731,17.757999999999999,20.062999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1026,-0.059400000000000001,13.953099999999999,0.11992,9.7739999999999991,10.996,12.382,13.952999999999999,15.738,17.765999999999998,20.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1027,-0.059499999999999997,13.9587,0.11994,9.7769999999999992,11,12.385999999999999,13.959,15.744,17.774000000000001,20.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1028,-0.059700000000000003,13.964399999999999,0.11996,9.7810000000000006,11.004,12.391,13.964,15.750999999999999,17.782,20.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1029,-0.059799999999999999,13.97,0.11998,9.7840000000000007,11.007999999999999,12.396000000000001,13.97,15.757999999999999,17.79,20.100999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1030,-0.06,13.9756,0.11999,9.7880000000000003,11.013,12.401,13.976000000000001,15.763999999999999,17.797000000000001,20.11 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1031,-0.060100000000000001,13.981299999999999,0.12001000000000001,9.7919999999999998,11.016999999999999,12.406000000000001,13.981,15.771000000000001,17.805,20.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1032,-0.060199999999999997,13.9869,0.12003,9.7949999999999999,11.021000000000001,12.41,13.987,15.778,17.812999999999999,20.129000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1033,-0.060400000000000002,13.9925,0.12005,9.7989999999999995,11.025,12.414999999999999,13.992000000000001,15.784000000000001,17.821000000000002,20.138999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1034,-0.060499999999999998,13.998200000000001,0.12007,9.8019999999999996,11.029,12.42,13.997999999999999,15.791,17.829000000000001,20.148 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1035,-0.060699999999999997,14.0038,0.12008000000000001,9.8059999999999992,11.032999999999999,12.425000000000001,14.004,15.797000000000001,17.837,20.157 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1036,-0.0608,14.009399999999999,0.1201,9.8089999999999993,11.037000000000001,12.429,14.009,15.804,17.844999999999999,20.167000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1037,-0.060900000000000003,14.015000000000001,0.12012,9.8130000000000006,11.041,12.433999999999999,14.015000000000001,15.811,17.852,20.175999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1038,-0.061100000000000002,14.0207,0.12014,9.8160000000000007,11.045,12.439,14.021000000000001,15.818,17.861000000000001,20.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1039,-0.061199999999999997,14.026300000000001,0.12016,9.82,11.048999999999999,12.444000000000001,14.026,15.824,17.867999999999999,20.195 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1040,-0.0613,14.0319,0.12017,9.8230000000000004,11.053000000000001,12.449,14.032,15.831,17.876000000000001,20.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1041,-0.061499999999999999,14.0375,0.12019000000000001,9.827,11.058,12.452999999999999,14.038,15.837,17.884,20.213999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1042,-0.061600000000000002,14.043100000000001,0.12021,9.83,11.061999999999999,12.458,14.042999999999999,15.843999999999999,17.891999999999999,20.222999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1043,-0.061800000000000001,14.0488,0.12023,9.8339999999999996,11.066000000000001,12.462999999999999,14.048999999999999,15.851000000000001,17.899999999999999,20.233000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1044,-0.061899999999999997,14.054399999999999,0.12025,9.8369999999999997,11.07,12.468,14.054,15.856999999999999,17.908000000000001,20.242000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1045,-0.062,14.06,0.12026000000000001,9.8409999999999993,11.074,12.472,14.06,15.864000000000001,17.914999999999999,20.251000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1046,-0.062199999999999998,14.0656,0.12028,9.8439999999999994,11.077999999999999,12.477,14.066000000000001,15.871,17.922999999999998,20.260999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1047,-0.062300000000000001,14.071199999999999,0.1203,9.8480000000000008,11.082000000000001,12.481999999999999,14.071,15.877000000000001,17.931000000000001,20.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1048,-0.062399999999999997,14.0768,0.12032,9.8510000000000009,11.086,12.487,14.077,15.884,17.939,20.28 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1049,-0.062600000000000003,14.0824,0.12033000000000001,9.8550000000000004,11.09,12.491,14.082000000000001,15.89,17.946999999999999,20.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1050,-0.062700000000000006,14.087999999999999,0.12035,9.8580000000000005,11.093999999999999,12.496,14.087999999999999,15.897,17.954999999999998,20.297999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1051,-0.062899999999999998,14.0936,0.12037,9.8620000000000001,11.098000000000001,12.500999999999999,14.093999999999999,15.904,17.963000000000001,20.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1052,-0.063,14.0992,0.12039,9.8650000000000002,11.102,12.506,14.099,15.91,17.971,20.317 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1053,-0.063100000000000003,14.104799999999999,0.12041,9.8680000000000003,11.106,12.51,14.105,15.917,17.978999999999999,20.327000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1054,-0.063299999999999995,14.1104,0.12042,9.8719999999999999,11.11,12.515000000000001,14.11,15.923,17.986000000000001,20.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1055,-0.063399999999999998,14.116,0.12044000000000001,9.8759999999999994,11.114000000000001,12.52,14.116,15.93,17.994,20.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1056,-0.063500000000000001,14.121600000000001,0.12046,9.8789999999999996,11.118,12.525,14.122,15.936999999999999,18.001999999999999,20.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1057,-0.063700000000000007,14.1272,0.12048,9.8819999999999997,11.122999999999999,12.529,14.127000000000001,15.943,18.010000000000002,20.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1058,-0.063799999999999996,14.1328,0.1205,9.8859999999999992,11.127000000000001,12.534000000000001,14.132999999999999,15.95,18.018000000000001,20.373000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1059,-0.063899999999999998,14.138400000000001,0.12051000000000001,9.89,11.131,12.539,14.138,15.957000000000001,18.026,20.382000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1060,-0.064100000000000004,14.144,0.12053,9.8930000000000007,11.135,12.544,14.144,15.962999999999999,18.033999999999999,20.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1061,-0.064199999999999993,14.1495,0.12055,9.8960000000000008,11.138999999999999,12.548,14.15,15.97,18.041,20.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1062,-0.064399999999999999,14.155099999999999,0.12057,9.9,11.143000000000001,12.553000000000001,14.154999999999999,15.976000000000001,18.048999999999999,20.411000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1063,-0.064500000000000002,14.1607,0.12058000000000001,9.9030000000000005,11.147,12.558,14.161,15.983000000000001,18.056999999999999,20.420000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1064,-0.064600000000000005,14.1663,0.1206,9.907,11.151,12.563000000000001,14.166,15.99,18.065000000000001,20.428999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1065,-0.064799999999999996,14.171900000000001,0.12062,9.91,11.154999999999999,12.567,14.172000000000001,15.996,18.073,20.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1066,-0.064899999999999999,14.1775,0.12064,9.9139999999999997,11.159000000000001,12.571999999999999,14.178000000000001,16.003,18.081,20.448 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1067,-0.065000000000000002,14.183,0.12064999999999999,9.9169999999999998,11.163,12.577,14.183,16.009,18.088000000000001,20.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1068,-0.065199999999999994,14.188599999999999,0.12067,9.9209999999999994,11.167,12.582000000000001,14.189,16.015999999999998,18.096,20.466999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1069,-0.065299999999999997,14.1942,0.12069000000000001,9.9239999999999995,11.170999999999999,12.586,14.194000000000001,16.023,18.103999999999999,20.475999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1070,-0.0654,14.1998,0.12071,9.9280000000000008,11.175000000000001,12.590999999999999,14.2,16.029,18.111999999999998,20.484999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1071,-0.065600000000000006,14.205299999999999,0.12073,9.9309999999999992,11.179,12.596,14.205,16.036000000000001,18.12,20.495000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1072,-0.065699999999999995,14.210900000000001,0.12074,9.9350000000000005,11.183,12.601000000000001,14.211,16.042000000000002,18.126999999999999,20.504000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1073,-0.065799999999999997,14.2165,0.12076000000000001,9.9380000000000006,11.186999999999999,12.605,14.215999999999999,16.048999999999999,18.135000000000002,20.513000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1074,-0.066000000000000003,14.222099999999999,0.12078,9.9420000000000002,11.191000000000001,12.61,14.222,16.056000000000001,18.143000000000001,20.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1075,-0.066100000000000006,14.227600000000001,0.1208,9.9450000000000003,11.195,12.615,14.228,16.062000000000001,18.151,20.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1076,-0.066299999999999998,14.2332,0.12081,9.9489999999999998,11.2,12.62,14.233000000000001,16.068999999999999,18.158999999999999,20.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1077,-0.066400000000000001,14.238799999999999,0.12083000000000001,9.952,11.204000000000001,12.624000000000001,14.239000000000001,16.074999999999999,18.167000000000002,20.550999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1078,-0.066500000000000004,14.244300000000001,0.12085,9.9550000000000001,11.207000000000001,12.629,14.244,16.082000000000001,18.175000000000001,20.56 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1079,-0.066699999999999995,14.2499,0.12087000000000001,9.9589999999999996,11.211,12.634,14.25,16.088999999999999,18.183,20.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1080,-0.066799999999999998,14.2554,0.12088,9.9619999999999997,11.215999999999999,12.638,14.255000000000001,16.094999999999999,18.190000000000001,20.577999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1081,-0.066900000000000001,14.260999999999999,0.12089999999999999,9.9659999999999993,11.22,12.643000000000001,14.260999999999999,16.102,18.198,20.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1082,-0.067100000000000007,14.2666,0.12092,9.9689999999999994,11.224,12.648,14.266999999999999,16.108000000000001,18.206,20.597000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1083,-0.067199999999999996,14.2721,0.12094000000000001,9.9730000000000008,11.228,12.653,14.272,16.114999999999998,18.213999999999999,20.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1084,-0.067299999999999999,14.277699999999999,0.12095,9.9760000000000009,11.231999999999999,12.657,14.278,16.120999999999999,18.221,20.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1085,-0.067500000000000004,14.283200000000001,0.12096999999999999,9.98,11.236000000000001,12.662000000000001,14.282999999999999,16.128,18.228999999999999,20.625 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1086,-0.067599999999999993,14.2888,0.12099,9.9830000000000005,11.24,12.667,14.289,16.135000000000002,18.236999999999998,20.635000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1087,-0.067699999999999996,14.2944,0.12101000000000001,9.9860000000000007,11.244,12.670999999999999,14.294,16.140999999999998,18.245000000000001,20.643999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1088,-0.067900000000000002,14.299899999999999,0.12102,9.99,11.247999999999999,12.676,14.3,16.148,18.253,20.652999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1089,-0.068000000000000005,14.3055,0.12103999999999999,9.9930000000000003,11.252000000000001,12.680999999999999,14.305999999999999,16.154,18.260000000000002,20.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1090,-0.068099999999999994,14.311,0.12106,9.9969999999999999,11.256,12.686,14.311,16.161000000000001,18.268000000000001,20.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1091,-0.0683,14.316599999999999,0.12107999999999999,10,11.26,12.69,14.317,16.167999999999999,18.276,20.681999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1092,-0.068400000000000002,14.322100000000001,0.12109,10.004,11.263999999999999,12.695,14.321999999999999,16.173999999999999,18.283999999999999,20.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1093,-0.068500000000000005,14.3277,0.12111,10.007,11.268000000000001,12.7,14.327999999999999,16.181000000000001,18.292000000000002,20.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1094,-0.068699999999999997,14.3332,0.12113,10.010999999999999,11.272,12.704000000000001,14.333,16.187000000000001,18.3,20.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1095,-0.0688,14.338699999999999,0.12114999999999999,10.013999999999999,11.276,12.709,14.339,16.193999999999999,18.306999999999999,20.719000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1096,-0.068900000000000003,14.3443,0.12116,10.018000000000001,11.28,12.714,14.343999999999999,16.2,18.315000000000001,20.728000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1097,-0.069099999999999995,14.3498,0.12118,10.021000000000001,11.284000000000001,12.718999999999999,14.35,16.207000000000001,18.323,20.736999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1098,-0.069199999999999998,14.355399999999999,0.1212,10.023999999999999,11.288,12.723000000000001,14.355,16.213000000000001,18.331,20.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1099,-0.0693,14.360900000000001,0.12121,10.028,11.292,12.728,14.361000000000001,16.22,18.338000000000001,20.754999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1100,-0.069500000000000006,14.3665,0.12123,10.031000000000001,11.295999999999999,12.733000000000001,14.366,16.225999999999999,18.346,20.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1101,-0.069599999999999995,14.372,0.12125,10.035,11.3,12.737,14.372,16.233000000000001,18.353999999999999,20.774000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1102,-0.069699999999999998,14.3775,0.12127,10.038,11.304,12.742000000000001,14.378,16.239999999999998,18.361999999999998,20.783999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1103,-0.069900000000000004,14.383100000000001,0.12128,10.042,11.308,12.747,14.382999999999999,16.245999999999999,18.37,20.792999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1104,-0.070000000000000007,14.3886,0.12130000000000001,10.045,11.311999999999999,12.750999999999999,14.388999999999999,16.253,18.376999999999999,20.802 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1105,-0.070099999999999996,14.3942,0.12132,10.048999999999999,11.316000000000001,12.756,14.394,16.259,18.385000000000002,20.812000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1106,-0.070300000000000001,14.399699999999999,0.12134,10.052,11.32,12.760999999999999,14.4,16.265999999999998,18.393000000000001,20.821000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1107,-0.070400000000000004,14.405200000000001,0.12135,10.055999999999999,11.324,12.766,14.404999999999999,16.271999999999998,18.401,20.83 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1108,-0.070499999999999993,14.4108,0.12137000000000001,10.058999999999999,11.327999999999999,12.77,14.411,16.279,18.408999999999999,20.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1109,-0.070699999999999999,14.4163,0.12139,10.061999999999999,11.332000000000001,12.775,14.416,16.285,18.417000000000002,20.849 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1110,-0.070800000000000002,14.421799999999999,0.12141,10.066000000000001,11.336,12.78,14.422000000000001,16.292000000000002,18.423999999999999,20.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1111,-0.070900000000000005,14.4274,0.12142,10.069000000000001,11.34,12.784000000000001,14.427,16.298999999999999,18.431999999999999,20.867000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1112,-0.071099999999999997,14.4329,0.12144000000000001,10.073,11.343999999999999,12.789,14.433,16.305,18.440000000000001,20.876999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1113,-0.071199999999999999,14.4384,0.12146,10.076000000000001,11.348000000000001,12.794,14.438000000000001,16.312000000000001,18.448,20.885999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1114,-0.071300000000000002,14.443899999999999,0.12146999999999999,10.08,11.352,12.798,14.444000000000001,16.318000000000001,18.454999999999998,20.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1115,-0.071499999999999994,14.4495,0.12149,10.083,11.356,12.803000000000001,14.45,16.324999999999999,18.463000000000001,20.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1116,-0.071599999999999997,14.455,0.12151000000000001,10.086,11.36,12.808,14.455,16.331,18.471,20.914000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1117,-0.0717,14.4605,0.12153,10.09,11.364000000000001,12.811999999999999,14.46,16.338000000000001,18.478999999999999,20.922999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1118,-0.071800000000000003,14.466100000000001,0.12154,10.093,11.368,12.817,14.465999999999999,16.344000000000001,18.486000000000001,20.931999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1119,-0.071999999999999995,14.4716,0.12156,10.097,11.372,12.821999999999999,14.472,16.350999999999999,18.494,20.942 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1120,-0.072099999999999997,14.4771,0.12157999999999999,10.1,11.375999999999999,12.827,14.477,16.356999999999999,18.501999999999999,20.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1121,-0.0722,14.4826,0.12159,10.103999999999999,11.38,12.831,14.483000000000001,16.364000000000001,18.510000000000002,20.96 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1122,-0.072400000000000006,14.488099999999999,0.12161,10.106999999999999,11.384,12.836,14.488,16.37,18.516999999999999,20.969000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1123,-0.072499999999999995,14.4937,0.12163,10.11,11.388,12.840999999999999,14.494,16.376999999999999,18.524999999999999,20.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1124,-0.072599999999999998,14.4992,0.12164999999999999,10.114000000000001,11.391999999999999,12.845000000000001,14.499000000000001,16.384,18.533000000000001,20.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1125,-0.072800000000000004,14.5047,0.12166,10.117000000000001,11.396000000000001,12.85,14.505000000000001,16.39,18.541,20.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1126,-0.072900000000000006,14.510199999999999,0.12168,10.121,11.4,12.855,14.51,16.396999999999998,18.548999999999999,21.007000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1127,-0.072999999999999995,14.5158,0.1217,10.124000000000001,11.404,12.859,14.516,16.402999999999999,18.556999999999999,21.015999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1128,-0.073200000000000001,14.5213,0.12171,10.128,11.407999999999999,12.864000000000001,14.521000000000001,16.41,18.564,21.024999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1129,-0.073300000000000004,14.5268,0.12173,10.131,11.412000000000001,12.869,14.526999999999999,16.416,18.571999999999999,21.033999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1130,-0.073400000000000007,14.532299999999999,0.12175,10.134,11.416,12.872999999999999,14.532,16.422999999999998,18.579999999999998,21.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1131,-0.073599999999999999,14.537800000000001,0.12177,10.138,11.42,12.878,14.538,16.428999999999998,18.588000000000001,21.053000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1132,-0.073700000000000002,14.5433,0.12178,10.141,11.423999999999999,12.882999999999999,14.542999999999999,16.436,18.594999999999999,21.062000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1133,-0.073800000000000004,14.5489,0.12180000000000001,10.145,11.428000000000001,12.888,14.548999999999999,16.442,18.603000000000002,21.071999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1134,-0.073899999999999993,14.554399999999999,0.12182,10.148,11.432,12.891999999999999,14.554,16.449000000000002,18.611000000000001,21.081 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1135,-0.074099999999999999,14.559900000000001,0.12182999999999999,10.151999999999999,11.436,12.897,14.56,16.454999999999998,18.619,21.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1136,-0.074200000000000002,14.5654,0.12185,10.154999999999999,11.44,12.901999999999999,14.565,16.462,18.626000000000001,21.099 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1137,-0.074300000000000005,14.5709,0.12187000000000001,10.157999999999999,11.444000000000001,12.906000000000001,14.571,16.469000000000001,18.634,21.109000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1138,-0.074499999999999997,14.5764,0.12189,10.162000000000001,11.448,12.911,14.576000000000001,16.475000000000001,18.641999999999999,21.117999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1139,-0.0746,14.581899999999999,0.12189999999999999,10.164999999999999,11.452,12.916,14.582000000000001,16.481999999999999,18.649999999999999,21.126999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1140,-0.074700000000000003,14.5875,0.12192,10.169,11.456,12.92,14.587999999999999,16.488,18.658000000000001,21.137 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1141,-0.074899999999999994,14.593,0.12194000000000001,10.172000000000001,11.46,12.925000000000001,14.593,16.495000000000001,18.664999999999999,21.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1142,-0.074999999999999997,14.5985,0.12195,10.176,11.464,12.93,14.598000000000001,16.501000000000001,18.672999999999998,21.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1143,-0.0751,14.603999999999999,0.12197,10.179,11.468,12.933999999999999,14.603999999999999,16.507999999999999,18.681000000000001,21.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1144,-0.075200000000000003,14.609500000000001,0.12199,10.182,11.472,12.939,14.61,16.513999999999999,18.689,21.173999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1145,-0.075399999999999995,14.615,0.122,10.186,11.476000000000001,12.944000000000001,14.615,16.521000000000001,18.696000000000002,21.183 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1146,-0.075499999999999998,14.6205,0.12202,10.189,11.48,12.948,14.62,16.527000000000001,18.704000000000001,21.192 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1147,-0.075600000000000001,14.625999999999999,0.12204,10.193,11.484,12.952999999999999,14.625999999999999,16.533999999999999,18.712,21.202000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1148,-0.075800000000000006,14.631500000000001,0.12206,10.196,11.488,12.958,14.632,16.54,18.72,21.210999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1149,-0.075899999999999995,14.6371,0.12207,10.199999999999999,11.492000000000001,12.962,14.637,16.547000000000001,18.727,21.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1150,-0.075999999999999998,14.6426,0.12209,10.202999999999999,11.496,12.967000000000001,14.643000000000001,16.553000000000001,18.734999999999999,21.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1151,-0.076200000000000004,14.648099999999999,0.12211,10.206,11.5,12.972,14.648,16.559999999999999,18.742999999999999,21.239000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1152,-0.076300000000000007,14.653600000000001,0.12212000000000001,10.210000000000001,11.504,12.976000000000001,14.654,16.565999999999999,18.751000000000001,21.248000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1153,-0.076399999999999996,14.6591,0.12214,10.212999999999999,11.507999999999999,12.981,14.659000000000001,16.573,18.759,21.257000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1154,-0.076499999999999999,14.6646,0.12216,10.215999999999999,11.512,12.986000000000001,14.664999999999999,16.579999999999998,18.765999999999998,21.266999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1155,-0.076700000000000004,14.6701,0.12217,10.220000000000001,11.516,12.99,14.67,16.585999999999999,18.774000000000001,21.276 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1156,-0.076799999999999993,14.675599999999999,0.12218999999999999,10.223000000000001,11.52,12.994999999999999,14.676,16.593,18.782,21.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1157,-0.076899999999999996,14.681100000000001,0.12221,10.227,11.523999999999999,13,14.680999999999999,16.599,18.79,21.295000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1158,-0.077100000000000002,14.6866,0.12222,10.23,11.528,13.004,14.686999999999999,16.606000000000002,18.797000000000001,21.303999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1159,-0.077200000000000005,14.6921,0.12224,10.234,11.532,13.009,14.692,16.611999999999998,18.805,21.312999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1160,-0.077299999999999994,14.6976,0.12225999999999999,10.237,11.536,13.013999999999999,14.698,16.619,18.812999999999999,21.323 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1161,-0.077399999999999997,14.703200000000001,0.12228,10.24,11.54,13.018000000000001,14.702999999999999,16.625,18.821000000000002,21.332000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1162,-0.077600000000000002,14.7087,0.12229,10.244,11.544,13.023,14.709,16.632000000000001,18.827999999999999,21.341000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1163,-0.077700000000000005,14.7142,0.12231,10.247,11.548,13.028,14.714,16.638000000000002,18.835999999999999,21.350999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1164,-0.077799999999999994,14.7197,0.12232999999999999,10.250999999999999,11.552,13.032,14.72,16.645,18.844000000000001,21.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1165,-0.078,14.725199999999999,0.12234,10.254,11.555999999999999,13.037000000000001,14.725,16.651,18.852,21.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1166,-0.078100000000000003,14.730700000000001,0.12236,10.257999999999999,11.56,13.042,14.731,16.658000000000001,18.86,21.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1167,-0.078200000000000006,14.7362,0.12238,10.260999999999999,11.564,13.045999999999999,14.736000000000001,16.664000000000001,18.867000000000001,21.388000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1168,-0.078299999999999995,14.7417,0.12239,10.263999999999999,11.568,13.051,14.742000000000001,16.670999999999999,18.875,21.396999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1169,-0.0785,14.747199999999999,0.12241,10.268000000000001,11.571999999999999,13.055999999999999,14.747,16.677,18.882999999999999,21.405999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1170,-0.078600000000000003,14.752700000000001,0.12243,10.271000000000001,11.576000000000001,13.06,14.753,16.684000000000001,18.890999999999998,21.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1171,-0.078700000000000006,14.7582,0.12243999999999999,10.275,11.58,13.065,14.757999999999999,16.690000000000001,18.898,21.423999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1172,-0.078799999999999995,14.7637,0.12246,10.278,11.584,13.07,14.763999999999999,16.696999999999999,18.905999999999999,21.434000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1173,-0.079000000000000001,14.7692,0.12248000000000001,10.281000000000001,11.587,13.074,14.769,16.704000000000001,18.914000000000001,21.443999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1174,-0.079100000000000004,14.774699999999999,0.12249,10.285,11.592000000000001,13.079000000000001,14.775,16.71,18.922000000000001,21.452000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1175,-0.079200000000000007,14.780200000000001,0.12250999999999999,10.288,11.595000000000001,13.084,14.78,16.716999999999999,18.928999999999998,21.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1176,-0.079399999999999998,14.7857,0.12253,10.292,11.599,13.087999999999999,14.786,16.722999999999999,18.937000000000001,21.471 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1177,-0.079500000000000001,14.7912,0.12254,10.295,11.603999999999999,13.093,14.791,16.728999999999999,18.945,21.48 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1178,-0.079600000000000004,14.7967,0.12256,10.298999999999999,11.606999999999999,13.098000000000001,14.797000000000001,16.736000000000001,18.952999999999999,21.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1179,-0.079699999999999993,14.802199999999999,0.12257999999999999,10.302,11.611000000000001,13.102,14.802,16.742999999999999,18.960999999999999,21.498999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1180,-0.079899999999999999,14.807700000000001,0.12259,10.305,11.615,13.106999999999999,14.808,16.748999999999999,18.968,21.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1181,-0.08,14.8132,0.12261,10.308999999999999,11.619,13.112,14.813000000000001,16.756,18.975999999999999,21.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1182,-0.080100000000000005,14.8187,0.12263,10.311999999999999,11.622999999999999,13.116,14.819000000000001,16.762,18.984000000000002,21.527000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1183,-0.080199999999999994,14.824199999999999,0.12265,10.315,11.627000000000001,13.121,14.824,16.768999999999998,18.992000000000001,21.536999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1184,-0.080399999999999999,14.829700000000001,0.12266000000000001,10.319000000000001,11.631,13.125999999999999,14.83,16.774999999999999,18.998999999999999,21.545000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1185,-0.080500000000000002,14.8352,0.12268,10.321999999999999,11.635,13.13,14.835000000000001,16.782,19.007000000000001,21.555 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1186,-0.080600000000000005,14.8407,0.1227,10.326000000000001,11.638999999999999,13.135,14.840999999999999,16.788,19.015000000000001,21.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1187,-0.080799999999999997,14.8462,0.12271,10.329000000000001,11.643000000000001,13.14,14.846,16.795000000000002,19.023,21.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1188,-0.0809,14.851699999999999,0.12273000000000001,10.333,11.647,13.144,14.852,16.800999999999998,19.030999999999999,21.582999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1189,-0.081000000000000003,14.857200000000001,0.12275,10.336,11.651,13.148999999999999,14.856999999999999,16.808,19.038,21.591999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1190,-0.081100000000000005,14.8627,0.12275999999999999,10.339,11.654999999999999,13.154,14.863,16.814,19.045999999999999,21.600999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1191,-0.081299999999999997,14.8682,0.12278,10.343,11.659000000000001,13.157999999999999,14.868,16.821000000000002,19.053999999999998,21.611000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1192,-0.0814,14.873699999999999,0.12280000000000001,10.346,11.663,13.163,14.874000000000001,16.827000000000002,19.062000000000001,21.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1193,-0.081500000000000003,14.879200000000001,0.12281,10.35,11.667,13.167999999999999,14.879,16.834,19.068999999999999,21.629000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1194,-0.081600000000000006,14.8847,0.12282999999999999,10.353,11.670999999999999,13.172000000000001,14.885,16.84,19.077000000000002,21.638999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1195,-0.081799999999999998,14.8902,0.12285,10.356,11.675000000000001,13.177,14.89,16.847000000000001,19.085000000000001,21.648 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1196,-0.081900000000000001,14.8957,0.12286,10.36,11.679,13.182,14.896000000000001,16.853000000000002,19.093,21.657 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1197,-0.082000000000000003,14.901199999999999,0.12288,10.363,11.683,13.186,14.901,16.86,19.100000000000001,21.667000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1198,-0.082100000000000006,14.906700000000001,0.1229,10.367000000000001,11.686999999999999,13.191000000000001,14.907,16.867000000000001,19.108000000000001,21.675999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1199,-0.082299999999999998,14.9122,0.12291000000000001,10.37,11.691000000000001,13.196,14.912000000000001,16.873000000000001,19.116,21.684999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1200,-0.082400000000000001,14.9177,0.12293,10.372999999999999,11.695,13.2,14.917999999999999,16.88,19.123999999999999,21.693999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1201,-0.082500000000000004,14.9232,0.12295,10.377000000000001,11.699,13.205,14.923,16.885999999999999,19.132000000000001,21.704000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1202,-0.082600000000000007,14.928699999999999,0.12296,10.38,11.702999999999999,13.21,14.929,16.893000000000001,19.138999999999999,21.713000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1203,-0.082799999999999999,14.934200000000001,0.12298000000000001,10.384,11.707000000000001,13.214,14.933999999999999,16.899000000000001,19.146999999999998,21.722000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1204,-0.082900000000000001,14.9397,0.123,10.387,11.711,13.218999999999999,14.94,16.905999999999999,19.155000000000001,21.731999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1205,-0.083000000000000004,14.9452,0.12300999999999999,10.391,11.715,13.224,14.945,16.911999999999999,19.163,21.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1206,-0.083099999999999993,14.950699999999999,0.12303,10.394,11.718999999999999,13.228,14.951000000000001,16.919,19.170000000000002,21.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1207,-0.083299999999999999,14.956200000000001,0.12305000000000001,10.397,11.723000000000001,13.233000000000001,14.956,16.925000000000001,19.178000000000001,21.76 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1208,-0.083400000000000002,14.9617,0.12306,10.401,11.727,13.238,14.962,16.931999999999999,19.186,21.768999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1209,-0.083500000000000005,14.9672,0.12307999999999999,10.404,11.731,13.242000000000001,14.967000000000001,16.937999999999999,19.193999999999999,21.777999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1210,-0.083599999999999994,14.9727,0.1231,10.407,11.734,13.247,14.973000000000001,16.945,19.202000000000002,21.788 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1211,-0.083799999999999999,14.978199999999999,0.12311,10.411,11.739000000000001,13.252000000000001,14.978,16.951000000000001,19.209,21.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1212,-0.083900000000000002,14.983700000000001,0.12313,10.414,11.742000000000001,13.256,14.984,16.957999999999998,19.216999999999999,21.806000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1213,-0.084000000000000005,14.9892,0.12315,10.417999999999999,11.746,13.260999999999999,14.989000000000001,16.963999999999999,19.225000000000001,21.815999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1214,-0.084099999999999994,14.9947,0.12316000000000001,10.420999999999999,11.75,13.266,14.994999999999999,16.971,19.233000000000001,21.824999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1215,-0.0843,15.0002,0.12318,10.425000000000001,11.754,13.27,15,16.977,19.241,21.834 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1216,-0.084400000000000003,15.005699999999999,0.1232,10.428000000000001,11.757999999999999,13.275,15.006,16.984000000000002,19.248000000000001,21.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1217,-0.084500000000000006,15.011200000000001,0.12321,10.430999999999999,11.762,13.28,15.010999999999999,16.989999999999998,19.256,21.853000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1218,-0.084599999999999995,15.0167,0.12323000000000001,10.435,11.766,13.284000000000001,15.016999999999999,16.997,19.263999999999999,21.861999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1219,-0.0848,15.0222,0.12325,10.438000000000001,11.77,13.289,15.022,17.004000000000001,19.271999999999998,21.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1220,-0.084900000000000003,15.027699999999999,0.12325999999999999,10.442,11.773999999999999,13.294,15.028,17.010000000000002,19.279,21.881 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1221,-0.085000000000000006,15.033200000000001,0.12328,10.445,11.778,13.298,15.032999999999999,17.016999999999999,19.286999999999999,21.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1222,-0.085099999999999995,15.0387,0.12330000000000001,10.448,11.782,13.303000000000001,15.039,17.023,19.295000000000002,21.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1223,-0.085300000000000001,15.0442,0.12331,10.452,11.786,13.307,15.044,17.03,19.303000000000001,21.908999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1224,-0.085400000000000004,15.0497,0.12333,10.455,11.79,13.311999999999999,15.05,17.036000000000001,19.311,21.917999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1225,-0.085500000000000007,15.055199999999999,0.12335,10.458,11.794,13.317,15.055,17.042999999999999,19.318000000000001,21.928000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1226,-0.085599999999999996,15.060700000000001,0.12336,10.462,11.798,13.321,15.061,17.048999999999999,19.326000000000001,21.937000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1227,-0.085800000000000001,15.0662,0.12338,10.465,11.802,13.326000000000001,15.066000000000001,17.056000000000001,19.334,21.946000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1228,-0.085900000000000004,15.0717,0.1234,10.468999999999999,11.805999999999999,13.331,15.071999999999999,17.062000000000001,19.341999999999999,21.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1229,-0.085999999999999993,15.077199999999999,0.12342,10.472,11.81,13.335000000000001,15.077,17.068999999999999,19.350000000000001,21.965 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1230,-0.086099999999999996,15.082700000000001,0.12343,10.475,11.814,13.34,15.083,17.074999999999999,19.356999999999999,21.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1231,-0.086300000000000002,15.088200000000001,0.12345,10.478999999999999,11.818,13.345000000000001,15.087999999999999,17.082000000000001,19.364999999999998,21.984000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1232,-0.086400000000000005,15.0937,0.12347,10.481999999999999,11.821999999999999,13.349,15.093999999999999,17.088999999999999,19.373000000000001,21.992999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1233,-0.086499999999999994,15.0992,0.12348000000000001,10.486000000000001,11.826000000000001,13.353999999999999,15.099,17.094999999999999,19.381,22.001999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1234,-0.086599999999999996,15.104699999999999,0.1235,10.489000000000001,11.83,13.359,15.105,17.102,19.388999999999999,22.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1235,-0.086800000000000002,15.110200000000001,0.12352,10.492000000000001,11.834,13.363,15.11,17.108000000000001,19.396999999999998,22.021999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1236,-0.086900000000000005,15.1157,0.12353,10.496,11.837999999999999,13.368,15.116,17.114999999999998,19.404,22.03 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1237,-0.086999999999999994,15.1212,0.12354999999999999,10.499000000000001,11.842000000000001,13.372999999999999,15.121,17.120999999999999,19.411999999999999,22.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1238,-0.087099999999999997,15.1267,0.12357,10.502000000000001,11.845000000000001,13.377000000000001,15.127000000000001,17.128,19.420000000000002,22.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1239,-0.0872,15.132199999999999,0.12358,10.506,11.85,13.382,15.132,17.134,19.427,22.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1240,-0.087400000000000005,15.137700000000001,0.1236,10.509,11.853,13.387,15.138,17.140999999999998,19.434999999999999,22.068000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1241,-0.087499999999999994,15.1432,0.12361999999999999,10.513,11.856999999999999,13.391,15.143000000000001,17.146999999999998,19.443000000000001,22.077999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1242,-0.087599999999999997,15.1487,0.12363,10.516,11.861000000000001,13.396000000000001,15.148999999999999,17.154,19.451000000000001,22.085999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1243,-0.0877,15.154199999999999,0.12365,10.52,11.865,13.401,15.154,17.16,19.459,22.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1244,-0.087900000000000006,15.159599999999999,0.12367,10.523,11.869,13.404999999999999,15.16,17.167000000000002,19.466999999999999,22.106000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1245,-0.087999999999999995,15.165100000000001,0.12368,10.526,11.872999999999999,13.41,15.164999999999999,17.172999999999998,19.474,22.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1246,-0.088099999999999998,15.1706,0.1237,10.53,11.877000000000001,13.414,15.170999999999999,17.18,19.481999999999999,22.123999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1247,-0.088200000000000001,15.1761,0.12372,10.532999999999999,11.881,13.419,15.176,17.186,19.489999999999998,22.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1248,-0.088300000000000003,15.1816,0.12373000000000001,10.537000000000001,11.885,13.423999999999999,15.182,17.193000000000001,19.498000000000001,22.141999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1249,-0.088499999999999995,15.187099999999999,0.12375,10.54,11.888999999999999,13.428000000000001,15.186999999999999,17.199000000000002,19.506,22.152000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1250,-0.088599999999999998,15.192600000000001,0.12377000000000001,10.542999999999999,11.893000000000001,13.433,15.193,17.206,19.513000000000002,22.161999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1251,-0.088700000000000001,15.1981,0.12379,10.545999999999999,11.897,13.438000000000001,15.198,17.213000000000001,19.521000000000001,22.170999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1252,-0.088800000000000004,15.2036,0.12379999999999999,10.55,11.901,13.442,15.204000000000001,17.219000000000001,19.529,22.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1253,-0.088999999999999996,15.209099999999999,0.12382,10.553000000000001,11.904999999999999,13.446999999999999,15.209,17.225999999999999,19.536999999999999,22.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1254,-0.089099999999999999,15.214600000000001,0.12384000000000001,10.557,11.909000000000001,13.452,15.215,17.231999999999999,19.545000000000002,22.199000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1255,-0.089200000000000002,15.2201,0.12385,10.56,11.913,13.456,15.22,17.239000000000001,19.552,22.207999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1256,-0.089300000000000004,15.2256,0.12386999999999999,10.563000000000001,11.917,13.461,15.226000000000001,17.245000000000001,19.559999999999999,22.218 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1257,-0.089399999999999993,15.2311,0.12389,10.567,11.920999999999999,13.465,15.231,17.251999999999999,19.568000000000001,22.227 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1258,-0.089599999999999999,15.236599999999999,0.1239,10.57,11.925000000000001,13.47,15.237,17.257999999999999,19.576000000000001,22.236000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1259,-0.089700000000000002,15.242100000000001,0.12392,10.574,11.929,13.475,15.242000000000001,17.265000000000001,19.584,22.245999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1260,-0.089800000000000005,15.2476,0.12393999999999999,10.577,11.932,13.478999999999999,15.247999999999999,17.271000000000001,19.591999999999999,22.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1261,-0.089899999999999994,15.2531,0.12395,10.581,11.936999999999999,13.484,15.253,17.277999999999999,19.599,22.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1262,-0.0901,15.258599999999999,0.12397,10.584,11.94,13.489000000000001,15.259,17.285,19.606999999999999,22.274000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1263,-0.090200000000000002,15.264099999999999,0.12399,10.587,11.944000000000001,13.493,15.263999999999999,17.291,19.614999999999998,22.283999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1264,-0.090300000000000005,15.269600000000001,0.12401,10.59,11.948,13.497999999999999,15.27,17.297999999999998,19.623000000000001,22.292999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1265,-0.090399999999999994,15.2751,0.12402000000000001,10.593999999999999,11.952,13.503,15.275,17.303999999999998,19.631,22.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1266,-0.090499999999999997,15.2806,0.12404,10.597,11.956,13.507,15.281000000000001,17.311,19.638000000000002,22.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1267,-0.090700000000000003,15.286099999999999,0.12406,10.601000000000001,11.96,13.512,15.286,17.317,19.646000000000001,22.321999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1268,-0.090800000000000006,15.291600000000001,0.12407,10.603999999999999,11.964,13.516999999999999,15.292,17.324000000000002,19.654,22.33 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1269,-0.090899999999999995,15.2971,0.12409000000000001,10.606999999999999,11.968,13.521000000000001,15.297000000000001,17.329999999999998,19.661999999999999,22.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1270,-0.090999999999999998,15.3026,0.12411,10.611000000000001,11.972,13.526,15.303000000000001,17.337,19.670000000000002,22.35 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1271,-0.091200000000000003,15.3081,0.12411999999999999,10.614000000000001,11.976000000000001,13.531000000000001,15.308,17.343,19.677,22.359000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1272,-0.091300000000000006,15.313499999999999,0.12414,10.618,11.98,13.535,15.314,17.350000000000001,19.684999999999999,22.367999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1273,-0.091399999999999995,15.319000000000001,0.12416000000000001,10.621,11.984,13.54,15.319000000000001,17.356000000000002,19.693000000000001,22.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1274,-0.091499999999999998,15.3245,0.12418,10.624000000000001,11.988,13.544,15.324,17.363,19.701000000000001,22.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1275,-0.091600000000000001,15.33,0.12418999999999999,10.628,11.992000000000001,13.548999999999999,15.33,17.369,19.709,22.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1276,-0.091800000000000007,15.3355,0.12421,10.631,11.996,13.554,15.336,17.376000000000001,19.716999999999999,22.405999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1277,-0.091899999999999996,15.340999999999999,0.12422999999999999,10.634,11.999000000000001,13.558,15.340999999999999,17.382999999999999,19.725000000000001,22.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1278,-0.091999999999999998,15.346500000000001,0.12424,10.638,12.004,13.563000000000001,15.346,17.388999999999999,19.731999999999999,22.423999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1279,-0.092100000000000001,15.352,0.12426,10.641,12.007,13.568,15.352,17.396000000000001,19.739999999999998,22.434000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1280,-0.092200000000000004,15.3575,0.12428,10.644,12.010999999999999,13.571999999999999,15.358000000000001,17.402000000000001,19.748000000000001,22.443999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1281,-0.092399999999999996,15.363,0.12429999999999999,10.648,12.015000000000001,13.577,15.363,17.408999999999999,19.756,22.452999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1282,-0.092499999999999999,15.368499999999999,0.12431,10.651,12.019,13.582000000000001,15.368,17.414999999999999,19.763999999999999,22.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1283,-0.092600000000000002,15.374000000000001,0.12433,10.654999999999999,12.023,13.586,15.374000000000001,17.422000000000001,19.771999999999998,22.472000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1284,-0.092700000000000005,15.3795,0.12435,10.657999999999999,12.026999999999999,13.590999999999999,15.38,17.428999999999998,19.78,22.481000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1285,-0.092799999999999994,15.385,0.12436,10.661,12.031000000000001,13.596,15.385,17.434999999999999,19.786999999999999,22.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1286,-0.092999999999999999,15.390499999999999,0.12438,10.664999999999999,12.035,13.6,15.39,17.442,19.795000000000002,22.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1287,-0.093100000000000002,15.396000000000001,0.1244,10.667999999999999,12.039,13.605,15.396000000000001,17.448,19.803000000000001,22.51 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1288,-0.093200000000000005,15.4015,0.12442,10.670999999999999,12.042999999999999,13.609,15.401999999999999,17.454999999999998,19.811,22.518999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1289,-0.093299999999999994,15.407,0.12443,10.675000000000001,12.047000000000001,13.614000000000001,15.407,17.460999999999999,19.818999999999999,22.527999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1290,-0.093399999999999997,15.4125,0.12445000000000001,10.678000000000001,12.051,13.619,15.412000000000001,17.468,19.826000000000001,22.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1291,-0.093600000000000003,15.417899999999999,0.12447,10.680999999999999,12.055,13.622999999999999,15.417999999999999,17.474,19.834,22.547000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1292,-0.093700000000000006,15.423400000000001,0.12447999999999999,10.685,12.058999999999999,13.628,15.423,17.481000000000002,19.841999999999999,22.556000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1293,-0.093799999999999994,15.428900000000001,0.1245,10.688000000000001,12.063000000000001,13.632999999999999,15.429,17.486999999999998,19.850000000000001,22.565999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1294,-0.093899999999999997,15.4344,0.12452000000000001,10.691000000000001,12.066000000000001,13.637,15.433999999999999,17.494,19.858000000000001,22.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1295,-0.094,15.4399,0.12454,10.695,12.07,13.641999999999999,15.44,17.501000000000001,19.866,22.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1296,-0.094200000000000006,15.445399999999999,0.12454999999999999,10.698,12.074,13.647,15.445,17.507000000000001,19.873000000000001,22.594000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1297,-0.094299999999999995,15.450900000000001,0.12457,10.702,12.077999999999999,13.651,15.451000000000001,17.513999999999999,19.881,22.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1298,-0.094399999999999998,15.4564,0.12459000000000001,10.705,12.082000000000001,13.656000000000001,15.456,17.52,19.888999999999999,22.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1299,-0.094500000000000001,15.4619,0.12461,10.708,12.086,13.66,15.462,17.527000000000001,19.896999999999998,22.623000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1300,-0.094600000000000004,15.4674,0.12461999999999999,10.712,12.09,13.664999999999999,15.467000000000001,17.533000000000001,19.905000000000001,22.632000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1301,-0.094799999999999995,15.472899999999999,0.12464,10.715,12.093999999999999,13.67,15.473000000000001,17.54,19.913,22.641999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1302,-0.094899999999999998,15.478400000000001,0.12466000000000001,10.718,12.098000000000001,13.673999999999999,15.478,17.545999999999999,19.920999999999999,22.651 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1303,-0.095000000000000001,15.4839,0.12467,10.722,12.102,13.679,15.484,17.553000000000001,19.928000000000001,22.66 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1304,-0.095100000000000004,15.4894,0.12469,10.725,12.106,13.683999999999999,15.489000000000001,17.559000000000001,19.936,22.67 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1305,-0.095200000000000007,15.4948,0.12471,10.728,12.11,13.688000000000001,15.494999999999999,17.565999999999999,19.943999999999999,22.678999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1306,-0.095399999999999999,15.500299999999999,0.12472999999999999,10.731999999999999,12.114000000000001,13.693,15.5,17.573,19.952000000000002,22.689 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1307,-0.095500000000000002,15.505800000000001,0.12474,10.734999999999999,12.118,13.696999999999999,15.506,17.579000000000001,19.96,22.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1308,-0.095600000000000004,15.5113,0.12476,10.738,12.121,13.702,15.510999999999999,17.585999999999999,19.968,22.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1309,-0.095699999999999993,15.5168,0.12478,10.742000000000001,12.125,13.707000000000001,15.516999999999999,17.591999999999999,19.975999999999999,22.716999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1310,-0.095799999999999996,15.5223,0.12479999999999999,10.744999999999999,12.129,13.711,15.522,17.599,19.984000000000002,22.727 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1311,-0.095899999999999999,15.527799999999999,0.12481,10.749000000000001,12.132999999999999,13.715999999999999,15.528,17.605,19.991,22.736000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1312,-0.096100000000000005,15.533300000000001,0.12483,10.752000000000001,12.137,13.721,15.532999999999999,17.611999999999998,19.998999999999999,22.745999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1313,-0.096199999999999994,15.5388,0.12485,10.755000000000001,12.141,13.725,15.539,17.617999999999999,20.007000000000001,22.754999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1314,-0.096299999999999997,15.5443,0.12486999999999999,10.757999999999999,12.145,13.73,15.544,17.625,20.015000000000001,22.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1315,-0.0964,15.549799999999999,0.12488,10.762,12.148999999999999,13.734999999999999,15.55,17.631,20.023,22.774000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1316,-0.096500000000000002,15.555199999999999,0.1249,10.765000000000001,12.153,13.739000000000001,15.555,17.638000000000002,20.03,22.783999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1317,-0.096699999999999994,15.560700000000001,0.12492,10.768000000000001,12.157,13.744,15.561,17.645,20.039000000000001,22.792999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1318,-0.096799999999999997,15.5662,0.12494,10.772,12.161,13.747999999999999,15.566000000000001,17.651,20.045999999999999,22.803000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1319,-0.0969,15.5717,0.12495000000000001,10.775,12.164999999999999,13.753,15.571999999999999,17.658000000000001,20.053999999999998,22.812000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1320,-0.097000000000000003,15.577199999999999,0.12497,10.779,12.167999999999999,13.757999999999999,15.577,17.664000000000001,20.062000000000001,22.821999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1321,-0.097100000000000006,15.582700000000001,0.12499,10.782,12.172000000000001,13.762,15.583,17.670999999999999,20.07,22.831 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1322,-0.097199999999999995,15.588200000000001,0.12501000000000001,10.785,12.176,13.766999999999999,15.587999999999999,17.677,20.077999999999999,22.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1323,-0.0974,15.5937,0.12501999999999999,10.789,12.18,13.772,15.593999999999999,17.684000000000001,20.085999999999999,22.85 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1324,-0.097500000000000003,15.5992,0.12504000000000001,10.792,12.183999999999999,13.776,15.599,17.690999999999999,20.094000000000001,22.86 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1325,-0.097600000000000006,15.604699999999999,0.12506,10.795,12.188000000000001,13.781000000000001,15.605,17.696999999999999,20.102,22.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1326,-0.097699999999999995,15.610099999999999,0.12508,10.798,12.192,13.785,15.61,17.704000000000001,20.109000000000002,22.879000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1327,-0.097799999999999998,15.615600000000001,0.12509999999999999,10.802,12.196,13.79,15.616,17.71,20.117000000000001,22.888000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1328,-0.098000000000000004,15.6211,0.12511,10.805,12.2,13.795,15.621,17.716999999999999,20.125,22.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1329,-0.098100000000000007,15.6266,0.12512999999999999,10.808,12.204000000000001,13.798999999999999,15.627000000000001,17.722999999999999,20.132999999999999,22.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1330,-0.098199999999999996,15.632099999999999,0.12515000000000001,10.811999999999999,12.208,13.804,15.632,17.73,20.140999999999998,22.917000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1331,-0.098299999999999998,15.637600000000001,0.12517,10.815,12.211,13.808,15.638,17.736999999999998,20.149000000000001,22.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1332,-0.098400000000000001,15.6431,0.12518000000000001,10.819000000000001,12.215,13.813000000000001,15.643000000000001,17.742999999999999,20.155999999999999,22.934999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1333,-0.098500000000000004,15.6486,0.12520000000000001,10.821999999999999,12.218999999999999,13.818,15.648999999999999,17.75,20.164000000000001,22.945 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1334,-0.098699999999999996,15.654,0.12522,10.824999999999999,12.223000000000001,13.821999999999999,15.654,17.756,20.172000000000001,22.954999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1335,-0.098799999999999999,15.6595,0.12523999999999999,10.827999999999999,12.227,13.827,15.66,17.763000000000002,20.18,22.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1336,-0.098900000000000002,15.664999999999999,0.12526000000000001,10.832000000000001,12.231,13.831,15.664999999999999,17.768999999999998,20.187999999999999,22.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1337,-0.099000000000000005,15.670500000000001,0.12526999999999999,10.835000000000001,12.234999999999999,13.836,15.67,17.776,20.196000000000002,22.983000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1338,-0.099099999999999994,15.676,0.12529000000000001,10.837999999999999,12.239000000000001,13.840999999999999,15.676,17.782,20.204000000000001,22.992999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1339,-0.099199999999999997,15.6815,0.12531,10.842000000000001,12.243,13.845000000000001,15.682,17.789000000000001,20.212,23.001999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1340,-0.099400000000000002,15.686999999999999,0.12533,10.845000000000001,12.247,13.85,15.686999999999999,17.795999999999999,20.22,23.012 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1341,-0.099500000000000005,15.692399999999999,0.12534000000000001,10.848000000000001,12.250999999999999,13.855,15.692,17.802,20.227,23.021000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1342,-0.099599999999999994,15.697900000000001,0.12536,10.852,12.254,13.859,15.698,17.809000000000001,20.234999999999999,23.030999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1343,-0.099699999999999997,15.7034,0.12537999999999999,10.855,12.257999999999999,13.864000000000001,15.702999999999999,17.815000000000001,20.242999999999999,23.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1344,-0.0998,15.7089,0.12540000000000001,10.858000000000001,12.262,13.868,15.709,17.821999999999999,20.251000000000001,23.05 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1345,-0.099900000000000003,15.714399999999999,0.12542,10.861000000000001,12.266,13.872999999999999,15.714,17.827999999999999,20.259,23.06 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1346,-0.10009999999999999,15.719900000000001,0.12543000000000001,10.865,12.27,13.878,15.72,17.835000000000001,20.266999999999999,23.068999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1347,-0.1002,15.725300000000001,0.12545000000000001,10.868,12.273999999999999,13.882,15.725,17.841000000000001,20.274999999999999,23.077999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1348,-0.1003,15.7308,0.12547,10.871,12.278,13.887,15.731,17.847999999999999,20.283000000000001,23.088000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1349,-0.1004,15.7363,0.12548999999999999,10.875,12.282,13.891,15.736000000000001,17.855,20.291,23.097999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1350,-0.10050000000000001,15.7418,0.12551000000000001,10.878,12.285,13.896000000000001,15.742000000000001,17.861000000000001,20.298999999999999,23.108000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1351,-0.10059999999999999,15.747299999999999,0.12551999999999999,10.882,12.29,13.901,15.747,17.867999999999999,20.306000000000001,23.117000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1352,-0.1008,15.752800000000001,0.12554000000000001,10.885,12.292999999999999,13.904999999999999,15.753,17.873999999999999,20.314,23.126000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1353,-0.1009,15.7582,0.12556,10.888,12.297000000000001,13.91,15.757999999999999,17.881,20.321999999999999,23.135999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1354,-0.10100000000000001,15.7637,0.12558,10.891,12.301,13.914,15.763999999999999,17.887,20.329999999999998,23.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1355,-0.1011,15.7692,0.12559999999999999,10.895,12.305,13.919,15.769,17.893999999999998,20.338000000000001,23.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1356,-0.1012,15.774699999999999,0.12561,10.898,12.308999999999999,13.923999999999999,15.775,17.899999999999999,20.346,23.164000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1357,-0.1013,15.780200000000001,0.12562999999999999,10.901,12.313000000000001,13.928000000000001,15.78,17.907,20.353999999999999,23.173999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1358,-0.10150000000000001,15.785600000000001,0.12565000000000001,10.904999999999999,12.317,13.933,15.786,17.914000000000001,20.361999999999998,23.184000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1359,-0.1016,15.7911,0.12567,10.907999999999999,12.32,13.936999999999999,15.791,17.920000000000002,20.37,23.193000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1360,-0.1017,15.7966,0.12569,10.911,12.324,13.942,15.797000000000001,17.927,20.378,23.202999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1361,-0.1018,15.802099999999999,0.12570000000000001,10.914999999999999,12.327999999999999,13.946999999999999,15.802,17.933,20.385000000000002,23.212 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1362,-0.1019,15.807600000000001,0.12572,10.917999999999999,12.332000000000001,13.951000000000001,15.808,17.940000000000001,20.393000000000001,23.222000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1363,-0.10199999999999999,15.813000000000001,0.12573999999999999,10.920999999999999,12.336,13.956,15.813000000000001,17.946000000000002,20.401,23.231000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1364,-0.1022,15.8185,0.12576000000000001,10.923999999999999,12.34,13.96,15.818,17.952999999999999,20.408999999999999,23.241 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1365,-0.1023,15.824,0.12578,10.928000000000001,12.343999999999999,13.965,15.824,17.96,20.417000000000002,23.251000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1366,-0.1024,15.829499999999999,0.1258,10.930999999999999,12.348000000000001,13.97,15.83,17.966000000000001,20.425000000000001,23.260999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1367,-0.10249999999999999,15.835000000000001,0.12581000000000001,10.933999999999999,12.352,13.974,15.835000000000001,17.972999999999999,20.433,23.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1368,-0.1026,15.840400000000001,0.12583,10.938000000000001,12.355,13.978999999999999,15.84,17.978999999999999,20.440999999999999,23.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1369,-0.1027,15.8459,0.12584999999999999,10.941000000000001,12.359,13.983000000000001,15.846,17.986000000000001,20.449000000000002,23.289000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1370,-0.1028,15.8514,0.12587000000000001,10.944000000000001,12.363,13.988,15.851000000000001,17.992000000000001,20.457000000000001,23.298999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1371,-0.10299999999999999,15.8569,0.12589,10.946999999999999,12.367000000000001,13.993,15.856999999999999,17.998999999999999,20.465,23.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1372,-0.1031,15.862299999999999,0.12590999999999999,10.95,12.371,13.997,15.862,18.006,20.472999999999999,23.318000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1373,-0.1032,15.867800000000001,0.12592,10.954000000000001,12.375,14.002000000000001,15.868,18.012,20.48,23.327000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1374,-0.1033,15.8733,0.12594,10.957000000000001,12.379,14.006,15.872999999999999,18.018999999999998,20.488,23.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1375,-0.10340000000000001,15.8788,0.12595999999999999,10.961,12.382999999999999,14.010999999999999,15.879,18.024999999999999,20.495999999999999,23.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1376,-0.10349999999999999,15.8842,0.12598000000000001,10.964,12.385999999999999,14.015000000000001,15.884,18.032,20.504000000000001,23.356000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1377,-0.1037,15.889699999999999,0.126,10.967000000000001,12.39,14.02,15.89,18.038,20.512,23.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1378,-0.1038,15.895200000000001,0.12601999999999999,10.97,12.394,14.025,15.895,18.045000000000002,20.52,23.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1379,-0.10390000000000001,15.900700000000001,0.12603,10.974,12.398,14.029,15.901,18.050999999999998,20.527999999999999,23.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1380,-0.104,15.9061,0.12605,10.977,12.401999999999999,14.034000000000001,15.906000000000001,18.058,20.536000000000001,23.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1381,-0.1041,15.9116,0.12606999999999999,10.98,12.406000000000001,14.038,15.912000000000001,18.065000000000001,20.544,23.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1382,-0.1042,15.9171,0.12609000000000001,10.983000000000001,12.41,14.042999999999999,15.917,18.071000000000002,20.552,23.414000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1383,-0.1043,15.922599999999999,0.12611,10.987,12.413,14.048,15.923,18.077999999999999,20.56,23.422999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1384,-0.1045,15.928000000000001,0.12612999999999999,10.99,12.417,14.052,15.928000000000001,18.084,20.568000000000001,23.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1385,-0.1046,15.9335,0.12615000000000001,10.993,12.420999999999999,14.057,15.933999999999999,18.091000000000001,20.576000000000001,23.443000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1386,-0.1047,15.939,0.12615999999999999,10.997,12.425000000000001,14.061,15.939,18.097000000000001,20.582999999999998,23.452000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1387,-0.1048,15.9445,0.12617999999999999,11,12.429,14.066000000000001,15.944000000000001,18.103999999999999,20.591000000000001,23.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1388,-0.10489999999999999,15.9499,0.12620000000000001,11.003,12.433,14.071,15.95,18.111000000000001,20.599,23.471 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1389,-0.105,15.955399999999999,0.12622,11.006,12.436999999999999,14.074999999999999,15.955,18.117000000000001,20.606999999999999,23.481000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1390,-0.1051,15.960900000000001,0.12623999999999999,11.01,12.44,14.08,15.961,18.123999999999999,20.614999999999998,23.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1391,-0.1053,15.9664,0.12626000000000001,11.013,12.444000000000001,14.084,15.965999999999999,18.13,20.623000000000001,23.501000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1392,-0.10539999999999999,15.9718,0.12626999999999999,11.016,12.448,14.089,15.972,18.137,20.631,23.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1393,-0.1055,15.9773,0.12629000000000001,11.02,12.452,14.093,15.977,18.143000000000001,20.638999999999999,23.518999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1394,-0.1056,15.982799999999999,0.12631000000000001,11.023,12.456,14.098000000000001,15.983000000000001,18.149999999999999,20.646999999999998,23.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1395,-0.1057,15.988200000000001,0.12633,11.026,12.46,14.103,15.988,18.157,20.655000000000001,23.539000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1396,-0.10580000000000001,15.9937,0.12634999999999999,11.029,12.464,14.106999999999999,15.994,18.163,20.663,23.547999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1397,-0.10589999999999999,15.9992,0.12637000000000001,11.032,12.467000000000001,14.112,15.999000000000001,18.170000000000002,20.670999999999999,23.558 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1398,-0.1061,16.0047,0.12639,11.036,12.471,14.116,16.004999999999999,18.175999999999998,20.678999999999998,23.568000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1399,-0.1062,16.010100000000001,0.12640999999999999,11.039,12.475,14.121,16.010000000000002,18.183,20.687000000000001,23.577999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1400,-0.10630000000000001,16.015599999999999,0.12642,11.042,12.478999999999999,14.125999999999999,16.015999999999998,18.189,20.693999999999999,23.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1401,-0.10639999999999999,16.021100000000001,0.12644,11.045999999999999,12.483000000000001,14.13,16.021000000000001,18.196000000000002,20.702000000000002,23.596 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1402,-0.1065,16.026499999999999,0.12645999999999999,11.048999999999999,12.487,14.135,16.026,18.202999999999999,20.71,23.606000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1403,-0.1066,16.032,0.12648000000000001,11.052,12.491,14.138999999999999,16.032,18.209,20.718,23.616 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1404,-0.1067,16.037500000000001,0.1265,11.055,12.494,14.144,16.038,18.216000000000001,20.725999999999999,23.626000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1405,-0.10680000000000001,16.042999999999999,0.12651999999999999,11.058999999999999,12.497999999999999,14.148,16.042999999999999,18.222000000000001,20.734000000000002,23.635000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1406,-0.107,16.048400000000001,0.12654000000000001,11.061999999999999,12.502000000000001,14.153,16.047999999999998,18.228999999999999,20.742000000000001,23.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1407,-0.1071,16.053899999999999,0.12656000000000001,11.065,12.506,14.157,16.053999999999998,18.236000000000001,20.75,23.655000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1408,-0.1072,16.0594,0.12656999999999999,11.069000000000001,12.51,14.162000000000001,16.059000000000001,18.242000000000001,20.757999999999999,23.664000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1409,-0.10730000000000001,16.064800000000002,0.12659000000000001,11.071999999999999,12.513999999999999,14.167,16.065000000000001,18.248999999999999,20.765999999999998,23.672999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1410,-0.1074,16.0703,0.12661,11.074999999999999,12.518000000000001,14.170999999999999,16.07,18.254999999999999,20.774000000000001,23.683 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1411,-0.1075,16.075800000000001,0.12662999999999999,11.077999999999999,12.521000000000001,14.176,16.076000000000001,18.262,20.782,23.693000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1412,-0.1076,16.081199999999999,0.12665000000000001,11.081,12.525,14.18,16.081,18.268000000000001,20.79,23.702999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1413,-0.10780000000000001,16.0867,0.12667,11.085000000000001,12.529,14.185,16.087,18.274999999999999,20.797999999999998,23.713000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1414,-0.1079,16.092199999999998,0.12669,11.087999999999999,12.532999999999999,14.19,16.091999999999999,18.282,20.806000000000001,23.722000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1415,-0.108,16.0976,0.12670999999999999,11.090999999999999,12.537000000000001,14.194000000000001,16.097999999999999,18.288,20.814,23.731999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1416,-0.1081,16.103100000000001,0.12673000000000001,11.093999999999999,12.54,14.199,16.103000000000002,18.295000000000002,20.821999999999999,23.742000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1417,-0.1082,16.108599999999999,0.12673999999999999,11.098000000000001,12.545,14.202999999999999,16.109000000000002,18.300999999999998,20.83,23.751000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1418,-0.10829999999999999,16.114000000000001,0.12676000000000001,11.101000000000001,12.548,14.208,16.114000000000001,18.308,20.837,23.76 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1419,-0.1084,16.119499999999999,0.12678,11.103999999999999,12.552,14.212,16.119,18.314,20.846,23.77 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1420,-0.1085,16.125,0.1268,11.106999999999999,12.555999999999999,14.217000000000001,16.125,18.321000000000002,20.853999999999999,23.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1421,-0.1087,16.130400000000002,0.12681999999999999,11.111000000000001,12.56,14.221,16.13,18.327999999999999,20.861999999999998,23.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1422,-0.10879999999999999,16.135899999999999,0.12684000000000001,11.114000000000001,12.564,14.226000000000001,16.135999999999999,18.334,20.87,23.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1423,-0.1089,16.141400000000001,0.12686,11.117000000000001,12.567,14.231,16.140999999999998,18.341000000000001,20.878,23.809000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1424,-0.109,16.146799999999999,0.12687999999999999,11.12,12.571,14.234999999999999,16.146999999999998,18.347000000000001,20.885999999999999,23.818999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1425,-0.1091,16.1523,0.12690000000000001,11.122999999999999,12.574999999999999,14.24,16.152000000000001,18.353999999999999,20.893999999999998,23.829000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1426,-0.10920000000000001,16.157800000000002,0.12692000000000001,11.127000000000001,12.579000000000001,14.244,16.158000000000001,18.361000000000001,20.902000000000001,23.838999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1427,-0.10929999999999999,16.1632,0.12692999999999999,11.13,12.583,14.249000000000001,16.163,18.367000000000001,20.908999999999999,23.847000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1428,-0.1094,16.168700000000001,0.12695000000000001,11.132999999999999,12.587,14.253,16.169,18.373999999999999,20.917000000000002,23.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1429,-0.1096,16.174199999999999,0.12697,11.137,12.590999999999999,14.257999999999999,16.173999999999999,18.38,20.925000000000001,23.867000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1430,-0.10970000000000001,16.179600000000001,0.12698999999999999,11.14,12.593999999999999,14.263,16.18,18.387,20.933,23.876999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1431,-0.10979999999999999,16.185099999999998,0.12701000000000001,11.143000000000001,12.598000000000001,14.266999999999999,16.184999999999999,18.393000000000001,20.940999999999999,23.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1432,-0.1099,16.1906,0.12703,11.146000000000001,12.602,14.272,16.190999999999999,18.399999999999999,20.949000000000002,23.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1433,-0.11,16.196000000000002,0.12705,11.148999999999999,12.606,14.276,16.196000000000002,18.407,20.957000000000001,23.905999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1434,-0.1101,16.201499999999999,0.12706999999999999,11.153,12.61,14.281000000000001,16.202000000000002,18.413,20.965,23.916 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1435,-0.11020000000000001,16.206900000000001,0.12709000000000001,11.156000000000001,12.613,14.285,16.207000000000001,18.420000000000002,20.972999999999999,23.925999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1436,-0.1103,16.212399999999999,0.12711,11.159000000000001,12.617000000000001,14.29,16.212,18.425999999999998,20.981000000000002,23.934999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1437,-0.1105,16.2179,0.12712999999999999,11.162000000000001,12.621,14.294,16.218,18.433,20.989000000000001,23.945 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1438,-0.1106,16.223299999999998,0.12715000000000001,11.164999999999999,12.625,14.298999999999999,16.222999999999999,18.440000000000001,20.997,23.954999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1439,-0.11070000000000001,16.2288,0.12717000000000001,11.169,12.629,14.303000000000001,16.228999999999999,18.446000000000002,21.004999999999999,23.965 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1440,-0.1108,16.234300000000001,0.12717999999999999,11.172000000000001,12.632999999999999,14.308,16.234000000000002,18.452999999999999,21.013000000000002,23.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1441,-0.1109,16.239699999999999,0.12720000000000001,11.175000000000001,12.635999999999999,14.313000000000001,16.239999999999998,18.459,21.021000000000001,23.984000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1442,-0.111,16.245200000000001,0.12722,11.179,12.64,14.317,16.245000000000001,18.466000000000001,21.029,23.992999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1443,-0.1111,16.250599999999999,0.12723999999999999,11.182,12.644,14.321999999999999,16.251000000000001,18.472000000000001,21.036999999999999,24.003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1444,-0.11119999999999999,16.2561,0.12726000000000001,11.185,12.648,14.326000000000001,16.256,18.478999999999999,21.045000000000002,24.013000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1445,-0.1113,16.261600000000001,0.12728,11.188000000000001,12.651999999999999,14.331,16.262,18.486000000000001,21.053000000000001,24.023 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1446,-0.1115,16.266999999999999,0.1273,11.191000000000001,12.654999999999999,14.335000000000001,16.266999999999999,18.492000000000001,21.061,24.033000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1447,-0.1116,16.272500000000001,0.12731999999999999,11.195,12.659000000000001,14.34,16.271999999999998,18.498999999999999,21.068999999999999,24.042000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1448,-0.11169999999999999,16.277899999999999,0.12734000000000001,11.198,12.663,14.343999999999999,16.277999999999999,18.504999999999999,21.077000000000002,24.052 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1449,-0.1118,16.2834,0.12736,11.201000000000001,12.667,14.349,16.283000000000001,18.512,21.085000000000001,24.062000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1450,-0.1119,16.288900000000002,0.12737999999999999,11.204000000000001,12.670999999999999,14.353999999999999,16.289000000000001,18.518999999999998,21.093,24.071999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1451,-0.112,16.2943,0.12740000000000001,11.207000000000001,12.673999999999999,14.358000000000001,16.294,18.524999999999999,21.100999999999999,24.081 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1452,-0.11210000000000001,16.299800000000001,0.12742000000000001,11.211,12.678000000000001,14.363,16.3,18.532,21.109000000000002,24.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1453,-0.11219999999999999,16.305299999999999,0.12744,11.214,12.682,14.367000000000001,16.305,18.539000000000001,21.117000000000001,24.100999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1454,-0.1123,16.310700000000001,0.12745999999999999,11.217000000000001,12.686,14.372,16.311,18.545000000000002,21.125,24.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1455,-0.1125,16.316199999999998,0.12747,11.221,12.69,14.375999999999999,16.315999999999999,18.552,21.132999999999999,24.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1456,-0.11260000000000001,16.3216,0.12748999999999999,11.224,12.694000000000001,14.381,16.321999999999999,18.558,21.140999999999998,24.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1457,-0.11269999999999999,16.327100000000002,0.12751000000000001,11.227,12.696999999999999,14.385999999999999,16.327000000000002,18.565000000000001,21.149000000000001,24.138999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1458,-0.1128,16.3325,0.12753,11.23,12.701000000000001,14.39,16.332000000000001,18.571000000000002,21.157,24.149000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1459,-0.1129,16.338000000000001,0.12755,11.233000000000001,12.705,14.395,16.338000000000001,18.577999999999999,21.164999999999999,24.158999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1460,-0.113,16.343499999999999,0.12756999999999999,11.236000000000001,12.709,14.398999999999999,16.343,18.585000000000001,21.172999999999998,24.169 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1461,-0.11310000000000001,16.3489,0.12759000000000001,11.24,12.712999999999999,14.404,16.349,18.591000000000001,21.181000000000001,24.178000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1462,-0.1132,16.354399999999998,0.12761,11.243,12.715999999999999,14.407999999999999,16.353999999999999,18.597999999999999,21.189,24.187999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1463,-0.1133,16.3598,0.12762999999999999,11.246,12.72,14.413,16.36,18.603999999999999,21.196999999999999,24.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1464,-0.1134,16.365300000000001,0.12765000000000001,11.249000000000001,12.724,14.417,16.364999999999998,18.611000000000001,21.204999999999998,24.207999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1465,-0.11360000000000001,16.370799999999999,0.12767000000000001,11.252000000000001,12.728,14.422000000000001,16.370999999999999,18.617999999999999,21.213000000000001,24.218 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1466,-0.1137,16.376200000000001,0.12769,11.256,12.731999999999999,14.426,16.376000000000001,18.623999999999999,21.221,24.228000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1467,-0.1138,16.381699999999999,0.12770999999999999,11.259,12.734999999999999,14.430999999999999,16.382000000000001,18.631,21.228999999999999,24.236999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1468,-0.1139,16.3871,0.12773000000000001,11.262,12.739000000000001,14.435,16.387,18.637,21.236999999999998,24.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1469,-0.114,16.392600000000002,0.12775,11.265000000000001,12.743,14.44,16.393000000000001,18.643999999999998,21.245000000000001,24.257000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1470,-0.11409999999999999,16.398099999999999,0.12776999999999999,11.268000000000001,12.747,14.445,16.398,18.651,21.253,24.266999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1471,-0.1142,16.403500000000001,0.12778999999999999,11.272,12.750999999999999,14.449,16.404,18.657,21.260999999999999,24.277000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1472,-0.1143,16.408999999999999,0.12781000000000001,11.275,12.754,14.454000000000001,16.408999999999999,18.664000000000001,21.268999999999998,24.286000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1473,-0.1144,16.414400000000001,0.12783,11.278,12.757999999999999,14.458,16.414000000000001,18.670000000000002,21.277000000000001,24.295999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1474,-0.11459999999999999,16.419899999999998,0.12784999999999999,11.281000000000001,12.762,14.462999999999999,16.420000000000002,18.677,21.285,24.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1475,-0.1147,16.4253,0.12787000000000001,11.284000000000001,12.766,14.467000000000001,16.425000000000001,18.683,21.292999999999999,24.315999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1476,-0.1148,16.430800000000001,0.12789,11.288,12.77,14.472,16.431000000000001,18.690000000000001,21.300999999999998,24.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1477,-0.1149,16.436299999999999,0.12791,11.291,12.773,14.476000000000001,16.436,18.696999999999999,21.309000000000001,24.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1478,-0.115,16.441700000000001,0.12792999999999999,11.294,12.776999999999999,14.481,16.442,18.702999999999999,21.317,24.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1479,-0.11509999999999999,16.447199999999999,0.12795000000000001,11.297000000000001,12.781000000000001,14.484999999999999,16.446999999999999,18.71,21.324999999999999,24.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1480,-0.1152,16.4526,0.12797,11.3,12.785,14.49,16.452999999999999,18.716999999999999,21.332999999999998,24.364999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1481,-0.1153,16.458100000000002,0.12798999999999999,11.303000000000001,12.788,14.494,16.457999999999998,18.722999999999999,21.341000000000001,24.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1482,-0.1154,16.4635,0.12801000000000001,11.307,12.792,14.499000000000001,16.463999999999999,18.73,21.349,24.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1483,-0.11550000000000001,16.469000000000001,0.12803,11.31,12.795999999999999,14.503,16.469000000000001,18.736000000000001,21.356999999999999,24.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1484,-0.11559999999999999,16.474499999999999,0.12803999999999999,11.313000000000001,12.8,14.507999999999999,16.474,18.742999999999999,21.364999999999998,24.402999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1485,-0.1158,16.479900000000001,0.12806000000000001,11.317,12.804,14.513,16.48,18.748999999999999,21.373000000000001,24.413 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1486,-0.1159,16.485399999999998,0.12808,11.32,12.808,14.516999999999999,16.484999999999999,18.756,21.381,24.422999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1487,-0.11600000000000001,16.4908,0.12809999999999999,11.323,12.811,14.522,16.491,18.763000000000002,21.388999999999999,24.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1488,-0.11609999999999999,16.496300000000002,0.12812000000000001,11.326000000000001,12.815,14.526,16.495999999999999,18.768999999999998,21.396999999999998,24.443000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1489,-0.1162,16.5017,0.12814,11.329000000000001,12.819000000000001,14.531000000000001,16.501999999999999,18.776,21.405000000000001,24.452999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1490,-0.1163,16.507200000000001,0.12816,11.332000000000001,12.823,14.535,16.507000000000001,18.782,21.413,24.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1491,-0.1164,16.512599999999999,0.12817999999999999,11.336,12.827,14.54,16.513000000000002,18.789000000000001,21.420999999999999,24.472000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1492,-0.11650000000000001,16.5181,0.12820000000000001,11.339,12.83,14.544,16.518000000000001,18.795999999999999,21.428999999999998,24.481999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1493,-0.1166,16.523599999999998,0.12822,11.342000000000001,12.834,14.548999999999999,16.524000000000001,18.802,21.437999999999999,24.492000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1494,-0.1167,16.529,0.12823999999999999,11.345000000000001,12.837999999999999,14.553000000000001,16.529,18.809000000000001,21.445,24.501999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1495,-0.1168,16.534500000000001,0.12826000000000001,11.348000000000001,12.842000000000001,14.558,16.533999999999999,18.815000000000001,21.454000000000001,24.512 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1496,-0.11700000000000001,16.539899999999999,0.12828000000000001,11.351000000000001,12.845000000000001,14.561999999999999,16.54,18.821999999999999,21.462,24.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1497,-0.1171,16.545400000000001,0.1283,11.355,12.849,14.567,16.545000000000002,18.829000000000001,21.47,24.530999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1498,-0.1172,16.550799999999999,0.12831999999999999,11.358000000000001,12.853,14.571999999999999,16.550999999999998,18.835000000000001,21.478000000000002,24.541 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1499,-0.1173,16.5563,0.12834000000000001,11.361000000000001,12.856999999999999,14.576000000000001,16.556000000000001,18.841999999999999,21.486000000000001,24.550999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1500,-0.1174,16.561800000000002,0.12836,11.364000000000001,12.861000000000001,14.581,16.562000000000001,18.849,21.494,24.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1501,-0.11749999999999999,16.5672,0.12837999999999999,11.367000000000001,12.864000000000001,14.585000000000001,16.567,18.855,21.501999999999999,24.571000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1502,-0.1176,16.572700000000001,0.12839999999999999,11.371,12.868,14.59,16.573,18.861999999999998,21.51,24.581 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1503,-0.1177,16.578099999999999,0.12842000000000001,11.374000000000001,12.872,14.593999999999999,16.577999999999999,18.867999999999999,21.518000000000001,24.59 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1504,-0.1178,16.583600000000001,0.12844,11.377000000000001,12.875999999999999,14.599,16.584,18.875,21.526,24.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1505,-0.1179,16.588999999999999,0.12845999999999999,11.38,12.879,14.603,16.588999999999999,18.881,21.533999999999999,24.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1506,-0.11799999999999999,16.5945,0.12848000000000001,11.382999999999999,12.882999999999999,14.608000000000001,16.594000000000001,18.888000000000002,21.542000000000002,24.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1507,-0.1182,16.599900000000002,0.1285,11.385999999999999,12.887,14.612,16.600000000000001,18.895,21.55,24.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1508,-0.1183,16.605399999999999,0.12852,11.39,12.891,14.617000000000001,16.605,18.901,21.558,24.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1509,-0.11840000000000001,16.610900000000001,0.12853999999999999,11.393000000000001,12.895,14.621,16.611000000000001,18.908000000000001,21.565999999999999,24.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1510,-0.11849999999999999,16.616299999999999,0.12856000000000001,11.396000000000001,12.898,14.625999999999999,16.616,18.914999999999999,21.574000000000002,24.658999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1511,-0.1186,16.6218,0.12858,11.398999999999999,12.901999999999999,14.63,16.622,18.920999999999999,21.582000000000001,24.669 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1512,-0.1187,16.627199999999998,0.12859999999999999,11.401999999999999,12.906000000000001,14.635,16.626999999999999,18.928000000000001,21.59,24.678999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1513,-0.1188,16.6327,0.12862999999999999,11.404999999999999,12.91,14.638999999999999,16.632999999999999,18.934999999999999,21.599,24.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1514,-0.11890000000000001,16.638100000000001,0.12864999999999999,11.407999999999999,12.913,14.644,16.638000000000002,18.940999999999999,21.606999999999999,24.699000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1515,-0.11899999999999999,16.643599999999999,0.12867000000000001,11.411,12.917,14.648,16.643999999999998,18.948,21.614999999999998,24.709 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1516,-0.1191,16.649000000000001,0.12869,11.414999999999999,12.920999999999999,14.653,16.649000000000001,18.954000000000001,21.623000000000001,24.719000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1517,-0.1192,16.654499999999999,0.12870999999999999,11.417999999999999,12.925000000000001,14.657,16.654,18.960999999999999,21.631,24.728999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1518,-0.1193,16.6599,0.12873000000000001,11.420999999999999,12.928000000000001,14.662000000000001,16.66,18.968,21.638999999999999,24.739000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1519,-0.1195,16.665400000000002,0.12875,11.423999999999999,12.932,14.666,16.664999999999999,18.974,21.646999999999998,24.748999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1520,-0.1196,16.6709,0.12877,11.427,12.936,14.670999999999999,16.670999999999999,18.981000000000002,21.655000000000001,24.759 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1521,-0.1197,16.676300000000001,0.12878999999999999,11.430999999999999,12.94,14.676,16.675999999999998,18.988,21.663,24.768999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1522,-0.1198,16.681799999999999,0.12881000000000001,11.433999999999999,12.944000000000001,14.68,16.681999999999999,18.994,21.670999999999999,24.779 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1523,-0.11990000000000001,16.687200000000001,0.12883,11.436999999999999,12.946999999999999,14.685,16.687000000000001,19.001000000000001,21.678999999999998,24.788 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1524,-0.12,16.692699999999999,0.12884999999999999,11.44,12.951000000000001,14.689,16.693000000000001,19.007000000000001,21.687999999999999,24.797999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1525,-0.1201,16.6981,0.12887000000000001,11.443,12.955,14.694000000000001,16.698,19.013999999999999,21.696000000000002,24.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1526,-0.1202,16.703600000000002,0.12889,11.446,12.959,14.698,16.704000000000001,19.021000000000001,21.704000000000001,24.818000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1527,-0.1203,16.709,0.12891,11.449,12.962,14.702999999999999,16.709,19.027000000000001,21.712,24.827999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1528,-0.12039999999999999,16.714500000000001,0.12892999999999999,11.452999999999999,12.965999999999999,14.707000000000001,16.713999999999999,19.033999999999999,21.72,24.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1529,-0.1205,16.72,0.12895000000000001,11.456,12.97,14.712,16.72,19.04,21.728000000000002,24.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1530,-0.1206,16.7254,0.12897,11.459,12.974,14.715999999999999,16.725000000000001,19.047000000000001,21.736000000000001,24.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1531,-0.1207,16.730899999999998,0.12898999999999999,11.462,12.977,14.721,16.731000000000002,19.053999999999998,21.744,24.867000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1532,-0.1208,16.7363,0.12901000000000001,11.465,12.981,14.725,16.736000000000001,19.059999999999999,21.751999999999999,24.876999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1533,-0.121,16.741800000000001,0.12903000000000001,11.468999999999999,12.984999999999999,14.73,16.742000000000001,19.067,21.76,24.887 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1534,-0.1211,16.747199999999999,0.12905,11.472,12.989000000000001,14.734,16.747,19.074000000000002,21.768000000000001,24.896999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1535,-0.1212,16.752700000000001,0.12906999999999999,11.475,12.993,14.739000000000001,16.753,19.079999999999998,21.776,24.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1536,-0.12130000000000001,16.758099999999999,0.12909000000000001,11.478,12.996,14.743,16.757999999999999,19.087,21.783999999999999,24.917000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1537,-0.12139999999999999,16.7636,0.12911,11.481,13,14.747999999999999,16.763999999999999,19.093,21.792000000000002,24.927 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1538,-0.1215,16.768999999999998,0.12912999999999999,11.484,13.004,14.752000000000001,16.768999999999998,19.100000000000001,21.8,24.937000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1539,-0.1216,16.7745,0.12914999999999999,11.488,13.007999999999999,14.757,16.774000000000001,19.106999999999999,21.809000000000001,24.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1540,-0.1217,16.78,0.12917000000000001,11.491,13.010999999999999,14.762,16.78,19.113,21.817,24.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1541,-0.12180000000000001,16.785399999999999,0.12919,11.494,13.015000000000001,14.766,16.785,19.12,21.824999999999999,24.966000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1542,-0.12189999999999999,16.790900000000001,0.12920999999999999,11.497,13.019,14.771000000000001,16.791,19.126999999999999,21.832999999999998,24.975999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1543,-0.122,16.796299999999999,0.12923000000000001,11.5,13.023,14.775,16.795999999999999,19.132999999999999,21.841000000000001,24.986000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1544,-0.1221,16.8018,0.12925,11.503,13.026,14.78,16.802,19.14,21.849,24.995999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1545,-0.1222,16.807200000000002,0.12928000000000001,11.506,13.03,14.784000000000001,16.806999999999999,19.146000000000001,21.856999999999999,25.007000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1546,-0.12230000000000001,16.8127,0.1293,11.509,13.034000000000001,14.788,16.812999999999999,19.152999999999999,21.866,25.016999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1547,-0.1225,16.818100000000001,0.12931999999999999,11.512,13.037000000000001,14.792999999999999,16.818000000000001,19.16,21.873999999999999,25.027000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1548,-0.1226,16.823599999999999,0.12934000000000001,11.516,13.041,14.797000000000001,16.824000000000002,19.166,21.882000000000001,25.036999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1549,-0.1227,16.829000000000001,0.12936,11.519,13.045,14.802,16.829000000000001,19.172999999999998,21.89,25.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1550,-0.12280000000000001,16.834499999999998,0.12938,11.522,13.048999999999999,14.807,16.834,19.18,21.898,25.056000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1551,-0.1229,16.84,0.12939999999999999,11.525,13.053000000000001,14.811,16.84,19.186,21.905999999999999,25.065999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1552,-0.123,16.845400000000001,0.12942000000000001,11.528,13.055999999999999,14.816000000000001,16.844999999999999,19.193000000000001,21.914000000000001,25.076000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1553,-0.1231,16.850899999999999,0.12944,11.531000000000001,13.06,14.82,16.850999999999999,19.2,21.922000000000001,25.085999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1554,-0.1232,16.856300000000001,0.12945999999999999,11.535,13.064,14.824999999999999,16.856000000000002,19.206,21.93,25.096 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1555,-0.12330000000000001,16.861799999999999,0.12948000000000001,11.538,13.068,14.829000000000001,16.861999999999998,19.213000000000001,21.937999999999999,25.106000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1556,-0.1234,16.8672,0.1295,11.541,13.071,14.834,16.867000000000001,19.219000000000001,21.946000000000002,25.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1557,-0.1235,16.872699999999998,0.12952,11.544,13.074999999999999,14.837999999999999,16.873000000000001,19.225999999999999,21.954000000000001,25.126000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1558,-0.1236,16.8781,0.12953999999999999,11.547000000000001,13.079000000000001,14.843,16.878,19.233000000000001,21.962,25.135000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1559,-0.1237,16.883600000000001,0.12956000000000001,11.55,13.083,14.847,16.884,19.239000000000001,21.971,25.145 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1560,-0.12379999999999999,16.889099999999999,0.12958,11.554,13.086,14.852,16.888999999999999,19.245999999999999,21.978999999999999,25.155000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1561,-0.1239,16.894500000000001,0.12959999999999999,11.557,13.09,14.856,16.893999999999998,19.251999999999999,21.986999999999998,25.164999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1562,-0.124,16.899999999999999,0.12962000000000001,11.56,13.093999999999999,14.861000000000001,16.899999999999999,19.259,21.995000000000001,25.175000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1563,-0.1242,16.9054,0.12964999999999999,11.563000000000001,13.097,14.865,16.905000000000001,19.265999999999998,22.003,25.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1564,-0.12429999999999999,16.910900000000002,0.12967000000000001,11.566000000000001,13.101000000000001,14.87,16.911000000000001,19.273,22.012,25.196000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1565,-0.1244,16.9163,0.12969,11.569000000000001,13.105,14.874000000000001,16.916,19.279,22.02,25.206 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1566,-0.1245,16.921800000000001,0.12970999999999999,11.571999999999999,13.109,14.879,16.922000000000001,19.286000000000001,22.027999999999999,25.216000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1567,-0.1246,16.927199999999999,0.12973000000000001,11.574999999999999,13.113,14.882999999999999,16.927,19.292000000000002,22.036000000000001,25.225999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1568,-0.12470000000000001,16.932700000000001,0.12975,11.577999999999999,13.116,14.888,16.933,19.298999999999999,22.044,25.236000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1569,-0.12479999999999999,16.938199999999998,0.12977,11.582000000000001,13.12,14.891999999999999,16.937999999999999,19.306000000000001,22.052,25.245999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1570,-0.1249,16.9436,0.12978999999999999,11.585000000000001,13.124000000000001,14.897,16.943999999999999,19.312000000000001,22.06,25.256 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1571,-0.125,16.949100000000001,0.12981000000000001,11.587999999999999,13.128,14.901,16.949000000000002,19.318999999999999,22.068000000000001,25.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1572,-0.12509999999999999,16.954499999999999,0.12983,11.590999999999999,13.131,14.906000000000001,16.954000000000001,19.326000000000001,22.076000000000001,25.274999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1573,-0.12520000000000001,16.96,0.12984999999999999,11.593999999999999,13.135,14.91,16.96,19.332000000000001,22.084,25.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1574,-0.12529999999999999,16.965399999999999,0.12987000000000001,11.597,13.138999999999999,14.914999999999999,16.965,19.338999999999999,22.091999999999999,25.295000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1575,-0.12540000000000001,16.9709,0.12989000000000001,11.601000000000001,13.143000000000001,14.919,16.971,19.344999999999999,22.100999999999999,25.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1576,-0.1255,16.976299999999998,0.12991,11.603999999999999,13.146000000000001,14.923999999999999,16.975999999999999,19.352,22.109000000000002,25.315000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1577,-0.12559999999999999,16.9818,0.12992999999999999,11.606999999999999,13.15,14.928000000000001,16.981999999999999,19.359000000000002,22.117000000000001,25.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1578,-0.12570000000000001,16.987300000000001,0.12995999999999999,11.61,13.154,14.933,16.986999999999998,19.366,22.125,25.335999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1579,-0.1258,16.992699999999999,0.12998000000000001,11.613,13.157,14.936999999999999,16.992999999999999,19.372,22.132999999999999,25.346 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1580,-0.12590000000000001,16.998200000000001,0.13,11.616,13.161,14.942,16.998000000000001,19.379000000000001,22.141999999999999,25.356000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1581,-0.126,17.003599999999999,0.13002,11.619,13.164999999999999,14.946,17.004000000000001,19.385000000000002,22.15,25.366 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1582,-0.12620000000000001,17.0091,0.13003999999999999,11.622,13.169,14.951000000000001,17.009,19.391999999999999,22.158000000000001,25.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1583,-0.1263,17.014500000000002,0.13006000000000001,11.625,13.172000000000001,14.955,17.013999999999999,19.399000000000001,22.166,25.385999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1584,-0.12640000000000001,17.02,0.13008,11.629,13.176,14.96,17.02,19.405000000000001,22.173999999999999,25.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1585,-0.1265,17.025500000000001,0.13009999999999999,11.632,13.18,14.964,17.026,19.411999999999999,22.181999999999999,25.405999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1586,-0.12659999999999999,17.030899999999999,0.13012000000000001,11.635,13.183999999999999,14.968999999999999,17.030999999999999,19.419,22.19,25.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1587,-0.12670000000000001,17.0364,0.13014000000000001,11.638,13.188000000000001,14.973000000000001,17.036000000000001,19.425000000000001,22.198,25.425999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1588,-0.1268,17.041799999999999,0.13016,11.641,13.191000000000001,14.978,17.042000000000002,19.431999999999999,22.206,25.436 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1589,-0.12690000000000001,17.0473,0.13017999999999999,11.644,13.195,14.981999999999999,17.047000000000001,19.439,22.215,25.446000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1590,-0.127,17.052700000000002,0.13020000000000001,11.647,13.199,14.987,17.053000000000001,19.445,22.222999999999999,25.454999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1591,-0.12709999999999999,17.058199999999999,0.13023000000000001,11.65,13.202,14.991,17.058,19.452000000000002,22.231000000000002,25.466000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1592,-0.12720000000000001,17.063600000000001,0.13025,11.653,13.206,14.996,17.064,19.459,22.239000000000001,25.475999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1593,-0.1273,17.069099999999999,0.13027,11.657,13.21,15,17.068999999999999,19.465,22.247,25.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1594,-0.12740000000000001,17.0746,0.13028999999999999,11.66,13.214,15.005000000000001,17.074999999999999,19.472000000000001,22.256,25.495999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1595,-0.1275,17.079999999999998,0.13031000000000001,11.663,13.217000000000001,15.009,17.079999999999998,19.478999999999999,22.263999999999999,25.506 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1596,-0.12759999999999999,17.0855,0.13033,11.666,13.221,15.013999999999999,17.085999999999999,19.484999999999999,22.271999999999998,25.515999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1597,-0.12770000000000001,17.090900000000001,0.13034999999999999,11.669,13.225,15.018000000000001,17.091000000000001,19.492000000000001,22.28,25.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1598,-0.1278,17.096399999999999,0.13037000000000001,11.672000000000001,13.228999999999999,15.023,17.096,19.498000000000001,22.288,25.536000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1599,-0.12790000000000001,17.101800000000001,0.13039000000000001,11.675000000000001,13.231999999999999,15.026999999999999,17.102,19.504999999999999,22.295999999999999,25.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1600,-0.128,17.107299999999999,0.13041,11.679,13.236000000000001,15.032,17.106999999999999,19.512,22.303999999999998,25.556000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1601,-0.12809999999999999,17.1127,0.13042999999999999,11.682,13.24,15.036,17.113,19.518000000000001,22.312000000000001,25.565999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1602,-0.12820000000000001,17.118200000000002,0.13045000000000001,11.685,13.244,15.041,17.117999999999999,19.524999999999999,22.32,25.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1603,-0.1283,17.123699999999999,0.13047,11.688000000000001,13.247,15.045,17.123999999999999,19.532,22.329000000000001,25.585999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1604,-0.1285,17.129100000000001,0.1305,11.691000000000001,13.250999999999999,15.05,17.129000000000001,19.538,22.337,25.597000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1605,-0.12859999999999999,17.134599999999999,0.13052,11.694000000000001,13.255000000000001,15.054,17.135000000000002,19.545000000000002,22.344999999999999,25.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1606,-0.12870000000000001,17.14,0.13053999999999999,11.696999999999999,13.257999999999999,15.058999999999999,17.14,19.552,22.353000000000002,25.617000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1607,-0.1288,17.145499999999998,0.13056000000000001,11.7,13.262,15.063000000000001,17.146000000000001,19.558,22.361999999999998,25.626999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1608,-0.12889999999999999,17.1509,0.13058,11.702999999999999,13.266,15.068,17.151,19.565000000000001,22.37,25.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1609,-0.129,17.156400000000001,0.13059999999999999,11.707000000000001,13.27,15.071999999999999,17.155999999999999,19.571999999999999,22.378,25.646999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1610,-0.12909999999999999,17.161799999999999,0.13062000000000001,11.71,13.273,15.077,17.161999999999999,19.577999999999999,22.385999999999999,25.657 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1611,-0.12920000000000001,17.167300000000001,0.13064000000000001,11.712999999999999,13.276999999999999,15.081,17.167000000000002,19.585000000000001,22.393999999999998,25.667000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1612,-0.1293,17.172799999999999,0.13066,11.715999999999999,13.281000000000001,15.086,17.172999999999998,19.591999999999999,22.402000000000001,25.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1613,-0.12939999999999999,17.1782,0.13067999999999999,11.718999999999999,13.285,15.09,17.178000000000001,19.597999999999999,22.41,25.687000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1614,-0.1295,17.183700000000002,0.13070000000000001,11.722,13.288,15.095000000000001,17.184000000000001,19.605,22.419,25.696999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1615,-0.12959999999999999,17.1891,0.13073000000000001,11.725,13.292,15.099,17.189,19.611999999999998,22.427,25.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1616,-0.12970000000000001,17.194600000000001,0.13075000000000001,11.728,13.295999999999999,15.103999999999999,17.195,19.617999999999999,22.434999999999999,25.718 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1617,-0.1298,17.2,0.13077,11.731,13.298999999999999,15.108000000000001,17.2,19.625,22.443000000000001,25.728000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1618,-0.12989999999999999,17.205500000000001,0.13078999999999999,11.734,13.303000000000001,15.113,17.206,19.632000000000001,22.451000000000001,25.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1619,-0.13,17.210899999999999,0.13081000000000001,11.738,13.307,15.117000000000001,17.210999999999999,19.638000000000002,22.46,25.747 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1620,-0.13009999999999999,17.2164,0.13083,11.741,13.311,15.122,17.216000000000001,19.645,22.468,25.757999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1621,-0.13020000000000001,17.221800000000002,0.13084999999999999,11.744,13.314,15.125999999999999,17.222000000000001,19.651,22.475999999999999,25.766999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1622,-0.1303,17.2273,0.13086999999999999,11.747,13.318,15.131,17.227,19.658000000000001,22.484000000000002,25.777999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1623,-0.13039999999999999,17.232800000000001,0.13089000000000001,11.75,13.321999999999999,15.135,17.233000000000001,19.664999999999999,22.492000000000001,25.788 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1624,-0.1305,17.238199999999999,0.13091,11.753,13.326000000000001,15.14,17.238,19.670999999999999,22.5,25.797999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1625,-0.13059999999999999,17.2437,0.13092999999999999,11.756,13.329000000000001,15.144,17.244,19.678000000000001,22.507999999999999,25.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1626,-0.13070000000000001,17.249099999999999,0.13095999999999999,11.759,13.333,15.148999999999999,17.248999999999999,19.684999999999999,22.516999999999999,25.818000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1627,-0.1308,17.2546,0.13098000000000001,11.762,13.337,15.153,17.254999999999999,19.692,22.524999999999999,25.827999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1628,-0.13089999999999999,17.260000000000002,0.13100000000000001,11.765000000000001,13.34,15.157999999999999,17.260000000000002,19.698,22.533000000000001,25.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1629,-0.13100000000000001,17.265499999999999,0.13102,11.769,13.343999999999999,15.162000000000001,17.265999999999998,19.704999999999998,22.541,25.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1630,-0.13109999999999999,17.270900000000001,0.13103999999999999,11.772,13.348000000000001,15.167,17.271000000000001,19.710999999999999,22.548999999999999,25.858000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1631,-0.13120000000000001,17.276399999999999,0.13106000000000001,11.775,13.351000000000001,15.170999999999999,17.276,19.718,22.558,25.867999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1632,-0.13139999999999999,17.2818,0.13108,11.778,13.355,15.176,17.282,19.725000000000001,22.565999999999999,25.879000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1633,-0.13150000000000001,17.287299999999998,0.13109999999999999,11.781000000000001,13.359,15.18,17.286999999999999,19.731000000000002,22.574000000000002,25.888999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1634,-0.13159999999999999,17.2927,0.13111999999999999,11.784000000000001,13.363,15.185,17.292999999999999,19.738,22.582000000000001,25.899000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1635,-0.13170000000000001,17.298200000000001,0.13114000000000001,11.787000000000001,13.366,15.189,17.297999999999998,19.745000000000001,22.59,25.908999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1636,-0.1318,17.303699999999999,0.13117000000000001,11.79,13.37,15.194000000000001,17.303999999999998,19.751999999999999,22.599,25.92 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1637,-0.13189999999999999,17.309100000000001,0.13119,11.792999999999999,13.374000000000001,15.198,17.309000000000001,19.757999999999999,22.606999999999999,25.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1638,-0.13200000000000001,17.314599999999999,0.13120999999999999,11.797000000000001,13.377000000000001,15.202999999999999,17.315000000000001,19.765000000000001,22.614999999999998,25.94 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1639,-0.1321,17.32,0.13123000000000001,11.8,13.381,15.207000000000001,17.32,19.771999999999998,22.623000000000001,25.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1640,-0.13220000000000001,17.325500000000002,0.13125000000000001,11.803000000000001,13.385,15.212,17.326000000000001,19.777999999999999,22.631,25.96 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1641,-0.1323,17.3309,0.13127,11.805999999999999,13.388999999999999,15.215999999999999,17.331,19.785,22.64,25.97 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1642,-0.13239999999999999,17.336400000000001,0.13128999999999999,11.808999999999999,13.391999999999999,15.221,17.335999999999999,19.792000000000002,22.648,25.98 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1643,-0.13250000000000001,17.341799999999999,0.13131000000000001,11.811999999999999,13.396000000000001,15.225,17.341999999999999,19.797999999999998,22.655999999999999,25.99 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1644,-0.1326,17.347300000000001,0.13133,11.815,13.4,15.23,17.347000000000001,19.805,22.664000000000001,26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1645,-0.13270000000000001,17.352699999999999,0.13134999999999999,11.818,13.404,15.234,17.353000000000002,19.811,22.672000000000001,26.01 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1646,-0.1328,17.3582,0.13136999999999999,11.821999999999999,13.407,15.239000000000001,17.358000000000001,19.818000000000001,22.68,26.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1647,-0.13289999999999999,17.363600000000002,0.13139999999999999,11.824,13.411,15.243,17.364000000000001,19.824999999999999,22.689,26.030999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1648,-0.13300000000000001,17.3691,0.13142000000000001,11.827,13.414999999999999,15.247,17.369,19.832000000000001,22.696999999999999,26.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1649,-0.1331,17.374500000000001,0.13144,11.831,13.417999999999999,15.252000000000001,17.373999999999999,19.838000000000001,22.704999999999998,26.050999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1650,-0.13320000000000001,17.38,0.13145999999999999,11.834,13.422000000000001,15.256,17.38,19.844999999999999,22.713000000000001,26.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1651,-0.1333,17.385400000000001,0.13148000000000001,11.837,13.426,15.260999999999999,17.385000000000002,19.850999999999999,22.721,26.071000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1652,-0.13339999999999999,17.390899999999998,0.13150000000000001,11.84,13.43,15.265000000000001,17.390999999999998,19.858000000000001,22.73,26.081 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1653,-0.13350000000000001,17.3963,0.13152,11.843,13.433,15.27,17.396000000000001,19.864999999999998,22.738,26.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1654,-0.1336,17.401800000000001,0.13153999999999999,11.846,13.436999999999999,15.273999999999999,17.402000000000001,19.870999999999999,22.745999999999999,26.100999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1655,-0.13370000000000001,17.4072,0.13156000000000001,11.849,13.441000000000001,15.279,17.407,19.878,22.754000000000001,26.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1656,-0.1338,17.412700000000001,0.13159000000000001,11.852,13.444000000000001,15.282999999999999,17.413,19.885000000000002,22.763000000000002,26.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1657,-0.13389999999999999,17.418099999999999,0.13161,11.855,13.448,15.288,17.417999999999999,19.891999999999999,22.771000000000001,26.132000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1658,-0.13400000000000001,17.4236,0.13163,11.858000000000001,13.452,15.292,17.423999999999999,19.898,22.779,26.141999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1659,-0.1341,17.428999999999998,0.13164999999999999,11.861000000000001,13.455,15.297000000000001,17.428999999999998,19.905000000000001,22.786999999999999,26.152000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1660,-0.13420000000000001,17.4345,0.13167000000000001,11.865,13.459,15.301,17.434000000000001,19.911999999999999,22.795000000000002,26.161999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1661,-0.1343,17.439900000000002,0.13169,11.868,13.462999999999999,15.305999999999999,17.440000000000001,19.917999999999999,22.803000000000001,26.172000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1662,-0.13439999999999999,17.445399999999999,0.13170999999999999,11.871,13.467000000000001,15.31,17.445,19.925000000000001,22.812000000000001,26.181999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1663,-0.13450000000000001,17.450800000000001,0.13173000000000001,11.874000000000001,13.47,15.315,17.451000000000001,19.931000000000001,22.82,26.192 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1664,-0.1346,17.456299999999999,0.13175000000000001,11.877000000000001,13.474,15.319000000000001,17.456,19.937999999999999,22.827999999999999,26.202000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1665,-0.13469999999999999,17.4617,0.13177,11.88,13.478,15.324,17.462,19.945,22.835999999999999,26.212 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1666,-0.1348,17.467199999999998,0.1318,11.882999999999999,13.481,15.327999999999999,17.466999999999999,19.952000000000002,22.844999999999999,26.222999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1667,-0.13489999999999999,17.4726,0.13181999999999999,11.885999999999999,13.484999999999999,15.332000000000001,17.472999999999999,19.957999999999998,22.853000000000002,26.233000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1668,-0.13500000000000001,17.478100000000001,0.13184000000000001,11.888999999999999,13.489000000000001,15.337,17.478000000000002,19.965,22.861000000000001,26.244 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1669,-0.1351,17.483499999999999,0.13186,11.891999999999999,13.492000000000001,15.340999999999999,17.484000000000002,19.971,22.869,26.254000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1670,-0.13519999999999999,17.489000000000001,0.13188,11.895,13.496,15.346,17.489000000000001,19.978000000000002,22.876999999999999,26.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1671,-0.1353,17.494399999999999,0.13189999999999999,11.898,13.5,15.35,17.494,19.984999999999999,22.885999999999999,26.274000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1672,-0.13539999999999999,17.4999,0.13192000000000001,11.901999999999999,13.504,15.355,17.5,19.992000000000001,22.893999999999998,26.283999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1673,-0.13550000000000001,17.505299999999998,0.13194,11.904999999999999,13.507,15.359,17.504999999999999,19.998000000000001,22.902000000000001,26.294 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1674,-0.1356,17.5107,0.13195999999999999,11.907999999999999,13.510999999999999,15.364000000000001,17.510999999999999,20.004999999999999,22.91,26.303999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1675,-0.13569999999999999,17.516200000000001,0.13199,11.911,13.515000000000001,15.368,17.515999999999998,20.012,22.919,26.315000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1676,-0.1358,17.521599999999999,0.13200999999999999,11.914,13.518000000000001,15.372999999999999,17.521999999999998,20.018000000000001,22.927,26.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1677,-0.13589999999999999,17.527100000000001,0.13203000000000001,11.917,13.522,15.377000000000001,17.527000000000001,20.024999999999999,22.934999999999999,26.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1678,-0.13600000000000001,17.532499999999999,0.13205,11.92,13.526,15.382,17.532,20.032,22.943000000000001,26.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1679,-0.1361,17.538,0.13206999999999999,11.923,13.529,15.385999999999999,17.538,20.038,22.951000000000001,26.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1680,-0.13619999999999999,17.543399999999998,0.13209000000000001,11.926,13.532999999999999,15.391,17.542999999999999,20.045000000000002,22.959,26.364999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1681,-0.1363,17.5489,0.13211000000000001,11.929,13.537000000000001,15.395,17.548999999999999,20.052,22.968,26.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1682,-0.13639999999999999,17.554300000000001,0.13213,11.932,13.541,15.4,17.553999999999998,20.058,22.975999999999999,26.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1683,-0.13650000000000001,17.559799999999999,0.13214999999999999,11.936,13.544,15.404,17.559999999999999,20.065000000000001,22.984000000000002,26.395 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1684,-0.1366,17.565200000000001,0.13217999999999999,11.938000000000001,13.548,15.407999999999999,17.565000000000001,20.071999999999999,22.992999999999999,26.405999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1685,-0.13669999999999999,17.570599999999999,0.13220000000000001,11.941000000000001,13.551,15.413,17.571000000000002,20.077999999999999,23.001000000000001,26.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1686,-0.1368,17.5761,0.13222,11.944000000000001,13.555,15.417,17.576000000000001,20.085000000000001,23.009,26.427 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1687,-0.13689999999999999,17.581499999999998,0.13224,11.948,13.558999999999999,15.422000000000001,17.582000000000001,20.091999999999999,23.016999999999999,26.437000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1688,-0.13700000000000001,17.587,0.13225999999999999,11.951000000000001,13.563000000000001,15.426,17.587,20.097999999999999,23.024999999999999,26.446999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1689,-0.1371,17.592400000000001,0.13228000000000001,11.954000000000001,13.566000000000001,15.430999999999999,17.591999999999999,20.105,23.033000000000001,26.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1690,-0.13730000000000001,17.597899999999999,0.1323,11.957000000000001,13.57,15.435,17.597999999999999,20.111999999999998,23.042000000000002,26.466999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1691,-0.13739999999999999,17.603300000000001,0.13231999999999999,11.96,13.574,15.44,17.603000000000002,20.117999999999999,23.05,26.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1692,-0.13750000000000001,17.608699999999999,0.13234000000000001,11.962999999999999,13.577999999999999,15.444000000000001,17.609000000000002,20.125,23.058,26.486999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1693,-0.1376,17.6142,0.13236999999999999,11.965999999999999,13.581,15.449,17.614000000000001,20.132000000000001,23.067,26.498000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1694,-0.13769999999999999,17.619599999999998,0.13239000000000001,11.968999999999999,13.585000000000001,15.452999999999999,17.62,20.138000000000002,23.074999999999999,26.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1695,-0.13780000000000001,17.6251,0.13241,11.972,13.587999999999999,15.458,17.625,20.145,23.082999999999998,26.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1696,-0.13789999999999999,17.630500000000001,0.13242999999999999,11.975,13.592000000000001,15.462,17.63,20.152000000000001,23.091000000000001,26.527999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1697,-0.13800000000000001,17.635999999999999,0.13245000000000001,11.978,13.596,15.467000000000001,17.635999999999999,20.158000000000001,23.099,26.539000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1698,-0.1381,17.641400000000001,0.13247,11.981,13.6,15.471,17.640999999999998,20.164999999999999,23.106999999999999,26.548999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1699,-0.13819999999999999,17.646799999999999,0.13249,11.984999999999999,13.603,15.476000000000001,17.646999999999998,20.172000000000001,23.116,26.559000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1700,-0.13830000000000001,17.6523,0.13250999999999999,11.988,13.606999999999999,15.48,17.652000000000001,20.178000000000001,23.123999999999999,26.568999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1701,-0.1384,17.657699999999998,0.13253000000000001,11.991,13.611000000000001,15.484999999999999,17.658000000000001,20.184999999999999,23.132000000000001,26.579000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1702,-0.13850000000000001,17.6632,0.13256000000000001,11.994,13.614000000000001,15.489000000000001,17.663,20.192,23.140999999999998,26.59 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1703,-0.1386,17.668600000000001,0.13258,11.997,13.618,15.493,17.669,20.198,23.149000000000001,26.6 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1704,-0.13869999999999999,17.673999999999999,0.1326,12,13.622,15.497999999999999,17.673999999999999,20.204999999999998,23.157,26.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1705,-0.13880000000000001,17.679500000000001,0.13261999999999999,12.003,13.625,15.502000000000001,17.68,20.212,23.164999999999999,26.62 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1706,-0.1389,17.684899999999999,0.13264000000000001,12.006,13.629,15.507,17.684999999999999,20.218,23.172999999999998,26.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1707,-0.13900000000000001,17.6904,0.13266,12.009,13.632999999999999,15.510999999999999,17.690000000000001,20.225000000000001,23.181999999999999,26.640999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1708,-0.1391,17.695799999999998,0.13267999999999999,12.012,13.635999999999999,15.516,17.696000000000002,20.231999999999999,23.19,26.651 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1709,-0.13919999999999999,17.7012,0.13270000000000001,12.015000000000001,13.64,15.52,17.701000000000001,20.238,23.198,26.661000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1710,-0.13930000000000001,17.706700000000001,0.13272,12.018000000000001,13.644,15.525,17.707000000000001,20.245000000000001,23.206,26.670999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1711,-0.1394,17.7121,0.13275000000000001,12.021000000000001,13.647,15.529,17.712,20.251999999999999,23.215,26.681999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1712,-0.13950000000000001,17.717500000000001,0.13277,12.023999999999999,13.651,15.532999999999999,17.718,20.257999999999999,23.222999999999999,26.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1713,-0.1396,17.722999999999999,0.13278999999999999,12.026999999999999,13.654999999999999,15.538,17.722999999999999,20.265000000000001,23.231000000000002,26.702000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1714,-0.13969999999999999,17.728400000000001,0.13281000000000001,12.03,13.657999999999999,15.542,17.728000000000002,20.271999999999998,23.239000000000001,26.712 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1715,-0.13980000000000001,17.733899999999998,0.13283,12.032999999999999,13.662000000000001,15.547000000000001,17.734000000000002,20.277999999999999,23.247,26.722000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1716,-0.1399,17.7393,0.13285,12.037000000000001,13.666,15.551,17.739000000000001,20.285,23.256,26.731999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1717,-0.14000000000000001,17.744700000000002,0.13286999999999999,12.04,13.67,15.555999999999999,17.745000000000001,20.292000000000002,23.263999999999999,26.742000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1718,-0.1401,17.7502,0.13289000000000001,12.042999999999999,13.673,15.56,17.75,20.297999999999998,23.271999999999998,26.753 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1719,-0.14019999999999999,17.755600000000001,0.13291,12.045999999999999,13.677,15.565,17.756,20.305,23.28,26.763000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1720,-0.14030000000000001,17.760999999999999,0.13294,12.048999999999999,13.68,15.569000000000001,17.760999999999999,20.312000000000001,23.289000000000001,26.774000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1721,-0.1404,17.766500000000001,0.13295999999999999,12.052,13.683999999999999,15.574,17.765999999999998,20.318000000000001,23.297000000000001,26.783999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1722,-0.1404,17.771899999999999,0.13297999999999999,12.055,13.688000000000001,15.577999999999999,17.771999999999998,20.324999999999999,23.305,26.794 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1723,-0.14050000000000001,17.7773,0.13300000000000001,12.058,13.691000000000001,15.583,17.777000000000001,20.332000000000001,23.312999999999999,26.803999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1724,-0.1406,17.782800000000002,0.13302,12.061,13.695,15.587,17.783000000000001,20.338000000000001,23.321000000000002,26.814 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1725,-0.14069999999999999,17.7882,0.13303999999999999,12.064,13.699,15.590999999999999,17.788,20.344999999999999,23.33,26.824000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1726,-0.14080000000000001,17.793600000000001,0.13306000000000001,12.067,13.702999999999999,15.596,17.794,20.352,23.338000000000001,26.834 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1727,-0.1409,17.799099999999999,0.13308,12.07,13.706,15.6,17.798999999999999,20.358000000000001,23.346,26.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1728,-0.14099999999999999,17.804500000000001,0.1331,12.073,13.71,15.605,17.803999999999998,20.364999999999998,23.353999999999999,26.853999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1729,-0.1411,17.809899999999999,0.13313,12.076000000000001,13.712999999999999,15.609,17.809999999999999,20.372,23.363,26.864999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1730,-0.14119999999999999,17.8154,0.13314999999999999,12.079000000000001,13.717000000000001,15.614000000000001,17.815000000000001,20.379000000000001,23.370999999999999,26.876000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1731,-0.14130000000000001,17.820799999999998,0.13317000000000001,12.082000000000001,13.721,15.618,17.821000000000002,20.385000000000002,23.379000000000001,26.885999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1732,-0.1414,17.8262,0.13319,12.085000000000001,13.725,15.622999999999999,17.826000000000001,20.391999999999999,23.387,26.896000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1733,-0.14149999999999999,17.831700000000001,0.13321,12.087999999999999,13.728,15.627000000000001,17.832000000000001,20.398,23.396000000000001,26.905999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1734,-0.1416,17.8371,0.13322999999999999,12.090999999999999,13.731999999999999,15.632,17.837,20.405000000000001,23.404,26.916 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1735,-0.14169999999999999,17.842500000000001,0.13325000000000001,12.093999999999999,13.736000000000001,15.635999999999999,17.841999999999999,20.411999999999999,23.411999999999999,26.925999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1736,-0.14180000000000001,17.847999999999999,0.13327,12.098000000000001,13.739000000000001,15.641,17.847999999999999,20.417999999999999,23.42,26.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1737,-0.1419,17.853400000000001,0.13328999999999999,12.101000000000001,13.743,15.645,17.853000000000002,20.425000000000001,23.428000000000001,26.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1738,-0.14199999999999999,17.858799999999999,0.13331999999999999,12.103,13.746,15.648999999999999,17.859000000000002,20.431999999999999,23.437000000000001,26.957999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1739,-0.1421,17.8642,0.13333999999999999,12.106,13.75,15.654,17.864000000000001,20.437999999999999,23.445,26.968 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1740,-0.14219999999999999,17.869700000000002,0.13336000000000001,12.11,13.754,15.657999999999999,17.87,20.445,23.452999999999999,26.978000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1741,-0.14230000000000001,17.8751,0.13338,12.113,13.757999999999999,15.663,17.875,20.452000000000002,23.462,26.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1742,-0.1424,17.880500000000001,0.13339999999999999,12.116,13.760999999999999,15.667,17.88,20.457999999999998,23.47,26.998000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1743,-0.14249999999999999,17.885999999999999,0.13342000000000001,12.119,13.765000000000001,15.672000000000001,17.885999999999999,20.465,23.478000000000002,27.007999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1744,-0.1426,17.891400000000001,0.13344,12.122,13.769,15.676,17.890999999999998,20.472000000000001,23.486000000000001,27.018000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1745,-0.14269999999999999,17.896799999999999,0.13346,12.125,13.772,15.68,17.896999999999998,20.478000000000002,23.494,27.029 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1746,-0.14280000000000001,17.902200000000001,0.13347999999999999,12.128,13.776,15.685,17.902000000000001,20.484999999999999,23.501999999999999,27.039000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1747,-0.1429,17.907699999999998,0.13350999999999999,12.131,13.779,15.689,17.908000000000001,20.492000000000001,23.510999999999999,27.05 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1748,-0.14299999999999999,17.9131,0.13353000000000001,12.134,13.782999999999999,15.694000000000001,17.913,20.498999999999999,23.518999999999998,27.06 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1749,-0.1431,17.918500000000002,0.13355,12.137,13.787000000000001,15.698,17.917999999999999,20.504999999999999,23.527999999999999,27.07 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1750,-0.14319999999999999,17.923999999999999,0.13356999999999999,12.14,13.791,15.702999999999999,17.923999999999999,20.512,23.536000000000001,27.08 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1751,-0.14330000000000001,17.929400000000001,0.13358999999999999,12.143000000000001,13.794,15.707000000000001,17.928999999999998,20.518999999999998,23.544,27.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1752,-0.1434,17.934799999999999,0.13361000000000001,12.146000000000001,13.798,15.712,17.934999999999999,20.524999999999999,23.552,27.100999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1753,-0.14349999999999999,17.940200000000001,0.13363,12.148999999999999,13.802,15.715999999999999,17.940000000000001,20.532,23.56,27.111000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1754,-0.14360000000000001,17.945699999999999,0.13364999999999999,12.151999999999999,13.805,15.721,17.946000000000002,20.538,23.568999999999999,27.120999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1755,-0.14369999999999999,17.9511,0.13367000000000001,12.154999999999999,13.808999999999999,15.725,17.951000000000001,20.545000000000002,23.577000000000002,27.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1756,-0.14380000000000001,17.956499999999998,0.13370000000000001,12.157999999999999,13.811999999999999,15.728999999999999,17.956,20.552,23.585000000000001,27.141999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1757,-0.1439,17.9619,0.13372000000000001,12.161,13.816000000000001,15.734,17.962,20.559000000000001,23.594000000000001,27.152000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1758,-0.14399999999999999,17.967400000000001,0.13374,12.164,13.82,15.738,17.966999999999999,20.565000000000001,23.602,27.161999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1759,-0.14410000000000001,17.972799999999999,0.13375999999999999,12.167,13.823,15.743,17.972999999999999,20.571999999999999,23.61,27.172999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1760,-0.14419999999999999,17.978200000000001,0.13378000000000001,12.17,13.827,15.747,17.978000000000002,20.579000000000001,23.617999999999999,27.183 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1761,-0.14430000000000001,17.983599999999999,0.1338,12.173,13.831,15.750999999999999,17.984000000000002,20.585000000000001,23.626000000000001,27.193000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1762,-0.1444,17.989000000000001,0.13381999999999999,12.176,13.834,15.756,17.989000000000001,20.591999999999999,23.635000000000002,27.202999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1763,-0.14449999999999999,17.994499999999999,0.13383999999999999,12.18,13.837999999999999,15.76,17.994,20.597999999999999,23.643000000000001,27.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1764,-0.14460000000000001,17.9999,0.13386000000000001,12.183,13.842000000000001,15.765000000000001,18,20.605,23.651,27.222999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1765,-0.1447,18.005299999999998,0.13389000000000001,12.185,13.845000000000001,15.769,18.004999999999999,20.611999999999998,23.66,27.234000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1766,-0.14480000000000001,18.0107,0.13391,12.188000000000001,13.849,15.773999999999999,18.010999999999999,20.619,23.667999999999999,27.245000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1767,-0.1449,18.016200000000001,0.13392999999999999,12.192,13.853,15.778,18.015999999999998,20.625,23.675999999999998,27.254999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1768,-0.14499999999999999,18.021599999999999,0.13395000000000001,12.195,13.856,15.782999999999999,18.021999999999998,20.632000000000001,23.684000000000001,27.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1769,-0.14510000000000001,18.027000000000001,0.13397000000000001,12.198,13.86,15.787000000000001,18.027000000000001,20.638999999999999,23.692,27.274999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1770,-0.1452,18.032399999999999,0.13399,12.201000000000001,13.864000000000001,15.791,18.032,20.645,23.701000000000001,27.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1771,-0.14530000000000001,18.037800000000001,0.13400999999999999,12.204000000000001,13.867000000000001,15.795999999999999,18.038,20.652000000000001,23.709,27.295000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1772,-0.1454,18.043199999999999,0.13403000000000001,12.207000000000001,13.871,15.8,18.042999999999999,20.658000000000001,23.716999999999999,27.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1773,-0.14549999999999999,18.0487,0.13405,12.21,13.875,15.805,18.048999999999999,20.664999999999999,23.725000000000001,27.315999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1774,-0.14560000000000001,18.054099999999998,0.13408,12.212999999999999,13.878,15.808999999999999,18.053999999999998,20.672000000000001,23.734000000000002,27.327000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1775,-0.1457,18.0595,0.1341,12.215999999999999,13.882,15.814,18.059999999999999,20.678999999999998,23.742000000000001,27.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1776,-0.14580000000000001,18.064900000000002,0.13411999999999999,12.218999999999999,13.885,15.818,18.065000000000001,20.684999999999999,23.75,27.347000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1777,-0.1459,18.0703,0.13414000000000001,12.222,13.888999999999999,15.821999999999999,18.07,20.692,23.759,27.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1778,-0.14599999999999999,18.075800000000001,0.13416,12.225,13.893000000000001,15.827,18.076000000000001,20.699000000000002,23.766999999999999,27.367999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1779,-0.14610000000000001,18.081199999999999,0.13417999999999999,12.228,13.897,15.831,18.081,20.704999999999998,23.774999999999999,27.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1780,-0.1462,18.086600000000001,0.13420000000000001,12.231,13.9,15.836,18.087,20.712,23.783000000000001,27.388000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1781,-0.1462,18.091999999999999,0.13422000000000001,12.234,13.904,15.84,18.091999999999999,20.718,23.791,27.398 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1782,-0.14630000000000001,18.0974,0.13424,12.237,13.907,15.845000000000001,18.097000000000001,20.725000000000001,23.798999999999999,27.408000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1783,-0.1464,18.102799999999998,0.13425999999999999,12.24,13.911,15.849,18.103000000000002,20.731999999999999,23.808,27.417999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1784,-0.14649999999999999,18.1082,0.13428999999999999,12.243,13.914999999999999,15.853,18.108000000000001,20.739000000000001,23.815999999999999,27.428999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1785,-0.14660000000000001,18.113700000000001,0.13431000000000001,12.246,13.917999999999999,15.858000000000001,18.114000000000001,20.745000000000001,23.824999999999999,27.44 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1786,-0.1467,18.1191,0.13433,12.249000000000001,13.922000000000001,15.862,18.119,20.751999999999999,23.832999999999998,27.45 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1787,-0.14680000000000001,18.124500000000001,0.13435,12.252000000000001,13.926,15.867000000000001,18.123999999999999,20.759,23.841000000000001,27.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1788,-0.1469,18.129899999999999,0.13436999999999999,12.255000000000001,13.929,15.871,18.13,20.765000000000001,23.849,27.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1789,-0.14699999999999999,18.135300000000001,0.13439000000000001,12.257999999999999,13.933,15.875999999999999,18.135000000000002,20.771999999999998,23.856999999999999,27.48 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1790,-0.14710000000000001,18.140699999999999,0.13441,12.260999999999999,13.936999999999999,15.88,18.140999999999998,20.777999999999999,23.866,27.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1791,-0.1472,18.146100000000001,0.13442999999999999,12.263999999999999,13.94,15.884,18.146000000000001,20.785,23.873999999999999,27.501000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1792,-0.14729999999999999,18.151499999999999,0.13444999999999999,12.266999999999999,13.944000000000001,15.888999999999999,18.152000000000001,20.792000000000002,23.882000000000001,27.510999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1793,-0.1474,18.157,0.13447999999999999,12.27,13.946999999999999,15.893000000000001,18.157,20.798999999999999,23.890999999999998,27.521999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1794,-0.14749999999999999,18.162400000000002,0.13450000000000001,12.273,13.951000000000001,15.898,18.161999999999999,20.805,23.899000000000001,27.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1795,-0.14760000000000001,18.1678,0.13452,12.276,13.955,15.901999999999999,18.167999999999999,20.812000000000001,23.907,27.542000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1796,-0.1477,18.173200000000001,0.13453999999999999,12.279,13.958,15.906000000000001,18.172999999999998,20.818999999999999,23.914999999999999,27.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1797,-0.14779999999999999,18.178599999999999,0.13456000000000001,12.282,13.962,15.911,18.178999999999998,20.824999999999999,23.923999999999999,27.562999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1798,-0.1479,18.184000000000001,0.13458000000000001,12.285,13.965999999999999,15.914999999999999,18.184000000000001,20.832000000000001,23.931999999999999,27.573 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1799,-0.14799999999999999,18.189399999999999,0.1346,12.288,13.968999999999999,15.92,18.189,20.838000000000001,23.94,27.582999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1800,-0.14810000000000001,18.194800000000001,0.13461999999999999,12.291,13.973000000000001,15.923999999999999,18.195,20.844999999999999,23.948,27.593 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1801,-0.1482,18.200199999999999,0.13464000000000001,12.294,13.977,15.929,18.2,20.852,23.956,27.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1802,-0.14829999999999999,18.2056,0.13466,12.297000000000001,13.98,15.933,18.206,20.858000000000001,23.965,27.614000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1803,-0.1484,18.210999999999999,0.13469,12.3,13.984,15.936999999999999,18.210999999999999,20.864999999999998,23.972999999999999,27.625 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1804,-0.14849999999999999,18.2164,0.13471,12.303000000000001,13.987,15.942,18.216000000000001,20.872,23.981000000000002,27.635000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1805,-0.14860000000000001,18.221800000000002,0.13472999999999999,12.305999999999999,13.991,15.946,18.222000000000001,20.878,23.99,27.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1806,-0.1487,18.2272,0.13475000000000001,12.308999999999999,13.994999999999999,15.951000000000001,18.227,20.885000000000002,23.998000000000001,27.655999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1807,-0.14879999999999999,18.232700000000001,0.13477,12.311999999999999,13.997999999999999,15.955,18.233000000000001,20.891999999999999,24.006,27.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1808,-0.1489,18.238099999999999,0.13478999999999999,12.315,14.002000000000001,15.96,18.238,20.898,24.013999999999999,27.675999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1809,-0.14899999999999999,18.243500000000001,0.13481000000000001,12.318,14.006,15.964,18.244,20.905000000000001,24.023,27.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1810,-0.14910000000000001,18.248899999999999,0.13483000000000001,12.321,14.009,15.968,18.248999999999999,20.911999999999999,24.030999999999999,27.696000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1811,-0.14910000000000001,18.254300000000001,0.13485,12.324,14.013,15.973000000000001,18.254000000000001,20.917999999999999,24.039000000000001,27.706 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1812,-0.1492,18.259699999999999,0.13486999999999999,12.327,14.016999999999999,15.977,18.260000000000002,20.925000000000001,24.047000000000001,27.716999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1813,-0.14929999999999999,18.2651,0.13489999999999999,12.33,14.02,15.981999999999999,18.265000000000001,20.931999999999999,24.056000000000001,27.728000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1814,-0.14940000000000001,18.270499999999998,0.13492000000000001,12.333,14.023999999999999,15.986000000000001,18.27,20.937999999999999,24.064,27.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1815,-0.14949999999999999,18.2759,0.13494,12.336,14.026999999999999,15.99,18.276,20.945,24.071999999999999,27.748000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1816,-0.14960000000000001,18.281300000000002,0.13496,12.339,14.031000000000001,15.994999999999999,18.280999999999999,20.952000000000002,24.08,27.757999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1817,-0.1497,18.2867,0.13497999999999999,12.342000000000001,14.035,15.999000000000001,18.286999999999999,20.957999999999998,24.088999999999999,27.768999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1818,-0.14979999999999999,18.292100000000001,0.13500000000000001,12.345000000000001,14.038,16.004000000000001,18.292000000000002,20.965,24.097000000000001,27.779 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1819,-0.14990000000000001,18.297499999999999,0.13502,12.348000000000001,14.042,16.007999999999999,18.297999999999998,20.972000000000001,24.105,27.789000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1820,-0.15,18.302900000000001,0.13503999999999999,12.351000000000001,14.045999999999999,16.012,18.303000000000001,20.978000000000002,24.113,27.798999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1821,-0.15010000000000001,18.308299999999999,0.13506000000000001,12.353999999999999,14.048999999999999,16.016999999999999,18.308,20.984999999999999,24.120999999999999,27.81 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1822,-0.1502,18.313700000000001,0.13508000000000001,12.358000000000001,14.053000000000001,16.021000000000001,18.314,20.992000000000001,24.13,27.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1823,-0.15029999999999999,18.318999999999999,0.13511000000000001,12.36,14.055999999999999,16.026,18.318999999999999,20.998000000000001,24.138000000000002,27.831 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1824,-0.15040000000000001,18.324400000000001,0.13513,12.363,14.06,16.03,18.324000000000002,21.004999999999999,24.146999999999998,27.841000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1825,-0.15049999999999999,18.329799999999999,0.13514999999999999,12.366,14.063000000000001,16.033999999999999,18.329999999999998,21.012,24.155000000000001,27.850999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1826,-0.15060000000000001,18.3352,0.13517000000000001,12.369,14.067,16.039000000000001,18.335000000000001,21.018000000000001,24.163,27.861000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1827,-0.1507,18.340599999999998,0.13519,12.372,14.071,16.042999999999999,18.341000000000001,21.024999999999999,24.170999999999999,27.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1828,-0.15079999999999999,18.346,0.13521,12.375,14.074,16.047999999999998,18.346,21.030999999999999,24.178999999999998,27.882000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1829,-0.15090000000000001,18.351400000000002,0.13522999999999999,12.378,14.077999999999999,16.052,18.350999999999999,21.038,24.187999999999999,27.891999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1830,-0.151,18.3568,0.13525000000000001,12.381,14.082000000000001,16.056000000000001,18.356999999999999,21.045000000000002,24.196000000000002,27.902000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1831,-0.15110000000000001,18.362200000000001,0.13527,12.384,14.085000000000001,16.061,18.361999999999998,21.050999999999998,24.204000000000001,27.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1832,-0.1512,18.367599999999999,0.13528999999999999,12.387,14.089,16.065000000000001,18.367999999999999,21.058,24.212,27.922999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1833,-0.15129999999999999,18.373000000000001,0.13531000000000001,12.39,14.093,16.07,18.373000000000001,21.065000000000001,24.22,27.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1834,-0.15140000000000001,18.378399999999999,0.13533999999999999,12.393000000000001,14.096,16.074000000000002,18.378,21.071999999999999,24.228999999999999,27.943999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1835,-0.15140000000000001,18.383800000000001,0.13536000000000001,12.396000000000001,14.1,16.077999999999999,18.384,21.077999999999999,24.236999999999998,27.954000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1836,-0.1515,18.389099999999999,0.13538,12.398999999999999,14.103,16.082999999999998,18.388999999999999,21.085000000000001,24.245000000000001,27.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1837,-0.15160000000000001,18.394500000000001,0.13539999999999999,12.401999999999999,14.106999999999999,16.087,18.393999999999998,21.091000000000001,24.254000000000001,27.975000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1838,-0.1517,18.399899999999999,0.13542000000000001,12.404999999999999,14.111000000000001,16.091999999999999,18.399999999999999,21.097999999999999,24.262,27.984999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1839,-0.15179999999999999,18.4053,0.13544,12.407999999999999,14.114000000000001,16.096,18.405000000000001,21.105,24.27,27.995000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1840,-0.15190000000000001,18.410699999999999,0.13546,12.411,14.118,16.100000000000001,18.411000000000001,21.111000000000001,24.277999999999999,28.004999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1841,-0.152,18.4161,0.13547999999999999,12.414,14.121,16.105,18.416,21.117999999999999,24.286999999999999,28.015999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1842,-0.15210000000000001,18.421500000000002,0.13550000000000001,12.417,14.125,16.109000000000002,18.422000000000001,21.125,24.295000000000002,28.026 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1843,-0.1522,18.4268,0.13552,12.42,14.129,16.114000000000001,18.427,21.131,24.303000000000001,28.036000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1844,-0.15229999999999999,18.432200000000002,0.13553999999999999,12.423,14.132,16.117999999999999,18.431999999999999,21.138000000000002,24.311,28.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1845,-0.15240000000000001,18.4376,0.13557,12.426,14.135999999999999,16.122,18.437999999999999,21.145,24.32,28.056999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1846,-0.1525,18.443000000000001,0.13558999999999999,12.429,14.138999999999999,16.126999999999999,18.443000000000001,21.151,24.327999999999999,28.068000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1847,-0.15260000000000001,18.448399999999999,0.13561000000000001,12.432,14.143000000000001,16.131,18.448,21.158000000000001,24.335999999999999,28.077999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1848,-0.1527,18.453800000000001,0.13563,12.435,14.147,16.135999999999999,18.454000000000001,21.164000000000001,24.344999999999999,28.088000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1849,-0.15279999999999999,18.459099999999999,0.13564999999999999,12.438000000000001,14.15,16.14,18.459,21.170999999999999,24.353000000000002,28.097999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1850,-0.15290000000000001,18.464500000000001,0.13567000000000001,12.441000000000001,14.154,16.143999999999998,18.463999999999999,21.178000000000001,24.361000000000001,28.109000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1851,-0.153,18.469899999999999,0.13569000000000001,12.444000000000001,14.157999999999999,16.149000000000001,18.47,21.184000000000001,24.369,28.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1852,-0.15310000000000001,18.475300000000001,0.13571,12.446999999999999,14.161,16.152999999999999,18.475000000000001,21.190999999999999,24.376999999999999,28.129000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1853,-0.1532,18.480699999999999,0.13572999999999999,12.45,14.164999999999999,16.158000000000001,18.481000000000002,21.198,24.385999999999999,28.138999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1854,-0.15329999999999999,18.486000000000001,0.13575000000000001,12.452999999999999,14.167999999999999,16.161999999999999,18.486000000000001,21.204000000000001,24.393999999999998,28.15 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1855,-0.15329999999999999,18.491399999999999,0.13577,12.456,14.172000000000001,16.166,18.491,21.210999999999999,24.402000000000001,28.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-age/expanded-tables/wfa-boys-zscore-expanded-tables.xlsx,expanded,male,day,1856,-0.15340000000000001,18.4968,0.1358,12.459,14.175000000000001,16.170999999999999,18.497,21.218,24.411000000000001,28.170999999999999 +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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,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,expanded,male,month,120,-0.6764,31.1586,0.16305,20.420000000000002,23.206,26.693999999999999,31.158999999999999,37.034999999999997,45.037999999999997,56.433999999999997 diff --git a/priv/growth/indicators/weight_for_height.csv b/priv/growth/indicators/weight_for_height.csv new file mode 100644 index 0000000..00e014e --- /dev/null +++ b/priv/growth/indicators/weight_for_height.csv @@ -0,0 +1,2889 @@ +source,category,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_girls_0-to-2-years_zscores.xlsx,age,female,length,45,-0.38329999999999997,2.4607000000000001,0.090289999999999995,1.9,2.1,2.2999999999999998,2.5,2.7,3,3.3 +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,age,female,length,45.5,-0.38329999999999997,2.5457000000000001,0.090329999999999994,2,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_girls_0-to-2-years_zscores.xlsx,age,female,length,46,-0.38329999999999997,2.6305999999999998,0.090370000000000006,2,2.2000000000000002,2.4,2.6,2.9,3.2,3.5 +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,age,female,length,46.5,-0.38329999999999997,2.7155,0.090399999999999994,2.1,2.2999999999999998,2.5,2.7,3,3.3,3.6 +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,age,female,length,47,-0.38329999999999997,2.8007,0.090440000000000006,2.2000000000000002,2.4,2.6,2.8,3.1,3.4,3.7 +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,age,female,length,47.5,-0.38329999999999997,2.8866999999999998,0.090480000000000005,2.2000000000000002,2.4,2.6,2.9,3.2,3.5,3.8 +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,age,female,length,48,-0.38329999999999997,2.9741,0.090520000000000003,2.2999999999999998,2.5,2.7,3,3.3,3.6,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,age,female,length,48.5,-0.38329999999999997,3.0636000000000001,0.090560000000000002,2.4,2.6,2.8,3.1,3.4,3.7,4.0999999999999996 +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,age,female,length,49,-0.38329999999999997,3.1560000000000001,0.0906,2.4,2.6,2.9,3.2,3.5,3.8,4.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,age,female,length,49.5,-0.38329999999999997,3.2519999999999998,0.090639999999999998,2.5,2.7,3,3.3,3.6,3.9,4.3 +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,age,female,length,50,-0.38329999999999997,3.3517999999999999,0.090679999999999997,2.6,2.8,3.1,3.4,3.7,4,4.5 +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,age,female,length,50.5,-0.38329999999999997,3.4557000000000002,0.090719999999999995,2.7,2.9,3.2,3.5,3.8,4.2,4.5999999999999996 +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,age,female,length,51,-0.38329999999999997,3.5636000000000001,0.090759999999999993,2.8,3,3.3,3.6,3.9,4.3,4.8 +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,age,female,length,51.5,-0.38329999999999997,3.6753999999999998,0.090800000000000006,2.8,3.1,3.4,3.7,4,4.4000000000000004,4.9000000000000004 +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,age,female,length,52,-0.38329999999999997,3.7911000000000001,0.09085,2.9,3.2,3.5,3.8,4.2,4.5999999999999996,5.0999999999999996 +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,age,female,length,52.5,-0.38329999999999997,3.9104999999999999,0.090889999999999999,3,3.3,3.6,3.9,4.3,4.7,5.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,age,female,length,53,-0.38329999999999997,4.0331999999999999,0.090929999999999997,3.1,3.4,3.7,4,4.4000000000000004,4.9000000000000004,5.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,age,female,length,53.5,-0.38329999999999997,4.1590999999999996,0.090980000000000005,3.2,3.5,3.8,4.2,4.5999999999999996,5,5.5 +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,age,female,length,54,-0.38329999999999997,4.2874999999999996,0.091020000000000004,3.3,3.6,3.9,4.3,4.7,5.2,5.7 +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,age,female,length,54.5,-0.38329999999999997,4.4179000000000004,0.091060000000000002,3.4,3.7,4,4.4000000000000004,4.8,5.3,5.9 +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,age,female,length,55,-0.38329999999999997,4.5498000000000003,0.0911,3.5,3.8,4.2,4.5,5,5.5,6.1 +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,age,female,length,55.5,-0.38329999999999997,4.6826999999999996,0.091139999999999999,3.6,3.9,4.3,4.7,5.0999999999999996,5.7,6.3 +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,age,female,length,56,-0.38329999999999997,4.8162000000000003,0.091179999999999997,3.7,4,4.4000000000000004,4.8,5.3,5.8,6.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,age,female,length,56.5,-0.38329999999999997,4.95,0.091209999999999999,3.8,4.0999999999999996,4.5,5,5.4,6,6.6 +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,age,female,length,57,-0.38329999999999997,5.0837000000000003,0.091249999999999998,3.9,4.3,4.5999999999999996,5.0999999999999996,5.6,6.1,6.8 +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,age,female,length,57.5,-0.38329999999999997,5.2172999999999998,0.09128,4,4.4000000000000004,4.8,5.2,5.7,6.3,7 +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,age,female,length,58,-0.38329999999999997,5.3506999999999998,0.091300000000000006,4.0999999999999996,4.5,4.9000000000000004,5.4,5.9,6.5,7.1 +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,age,female,length,58.5,-0.38329999999999997,5.4833999999999996,0.091319999999999998,4.2,4.5999999999999996,5,5.5,6,6.6,7.3 +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,age,female,length,59,-0.38329999999999997,5.6151,0.091340000000000005,4.3,4.7,5.0999999999999996,5.6,6.2,6.8,7.5 +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,age,female,length,59.5,-0.38329999999999997,5.7454000000000001,0.091350000000000001,4.4000000000000004,4.8,5.3,5.7,6.3,6.9,7.7 +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,age,female,length,60,-0.38329999999999997,5.8742000000000001,0.091359999999999997,4.5,4.9000000000000004,5.4,5.9,6.4,7.1,7.8 +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,age,female,length,60.5,-0.38329999999999997,6.0014000000000003,0.091370000000000007,4.5999999999999996,5,5.5,6,6.6,7.3,8 +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,age,female,length,61,-0.38329999999999997,6.1269999999999998,0.091370000000000007,4.7,5.0999999999999996,5.6,6.1,6.7,7.4,8.1999999999999993 +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,age,female,length,61.5,-0.38329999999999997,6.2511000000000001,0.091359999999999997,4.8,5.2,5.7,6.3,6.9,7.6,8.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,age,female,length,62,-0.38329999999999997,6.3738000000000001,0.091350000000000001,4.9000000000000004,5.3,5.8,6.4,7,7.7,8.5 +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,age,female,length,62.5,-0.38329999999999997,6.4947999999999997,0.091329999999999995,5,5.4,5.9,6.5,7.1,7.8,8.6999999999999993 +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,age,female,length,63,-0.38329999999999997,6.6143999999999998,0.091310000000000002,5.0999999999999996,5.5,6,6.6,7.3,8,8.8000000000000007 +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,age,female,length,63.5,-0.38329999999999997,6.7328000000000001,0.091289999999999996,5.2,5.6,6.2,6.7,7.4,8.1,9 +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,age,female,length,64,-0.38329999999999997,6.8501000000000003,0.091259999999999994,5.3,5.7,6.3,6.9,7.5,8.3000000000000007,9.1 +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,age,female,length,64.5,-0.38329999999999997,6.9661999999999997,0.091230000000000006,5.4,5.8,6.4,7,7.6,8.4,9.3000000000000007 +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,age,female,length,65,-0.38329999999999997,7.0811999999999999,0.091189999999999993,5.5,5.9,6.5,7.1,7.8,8.6,9.5 +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,age,female,length,65.5,-0.38329999999999997,7.1950000000000003,0.091149999999999995,5.5,6,6.6,7.2,7.9,8.6999999999999993,9.6 +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,age,female,length,66,-0.38329999999999997,7.3075999999999999,0.0911,5.6,6.1,6.7,7.3,8,8.8000000000000007,9.8000000000000007 +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,age,female,length,66.5,-0.38329999999999997,7.4188999999999998,0.091060000000000002,5.7,6.2,6.8,7.4,8.1,9,9.9 +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,age,female,length,67,-0.38329999999999997,7.5288000000000004,0.091009999999999994,5.8,6.3,6.9,7.5,8.3000000000000007,9.1,10 +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,age,female,length,67.5,-0.38329999999999997,7.6375000000000002,0.090959999999999999,5.9,6.4,7,7.6,8.4,9.1999999999999993,10.199999999999999 +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,age,female,length,68,-0.38329999999999997,7.7447999999999997,0.090899999999999995,6,6.5,7.1,7.7,8.5,9.4,10.3 +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,age,female,length,68.5,-0.38329999999999997,7.8509000000000002,0.09085,6.1,6.6,7.2,7.9,8.6,9.5,10.5 +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,age,female,length,69,-0.38329999999999997,7.9558999999999997,0.090789999999999996,6.1,6.7,7.3,8,8.6999999999999993,9.6,10.6 +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,age,female,length,69.5,-0.38329999999999997,8.0599000000000007,0.090740000000000001,6.2,6.8,7.4,8.1,8.8000000000000007,9.6999999999999993,10.7 +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,age,female,length,70,-0.38329999999999997,8.1630000000000003,0.090679999999999997,6.3,6.9,7.5,8.1999999999999993,9,9.9,10.9 +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,age,female,length,70.5,-0.38329999999999997,8.2651000000000003,0.090620000000000006,6.4,6.9,7.6,8.3000000000000007,9.1,10,11 +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,age,female,length,71,-0.38329999999999997,8.3666,0.090560000000000002,6.5,7,7.7,8.4,9.1999999999999993,10.1,11.1 +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,age,female,length,71.5,-0.38329999999999997,8.4675999999999991,0.090499999999999997,6.5,7.1,7.7,8.5,9.3000000000000007,10.199999999999999,11.3 +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,age,female,length,72,-0.38329999999999997,8.5678999999999998,0.090429999999999996,6.6,7.2,7.8,8.6,9.4,10.3,11.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,age,female,length,72.5,-0.38329999999999997,8.6674000000000007,0.090370000000000006,6.7,7.3,7.9,8.6999999999999993,9.5,10.5,11.5 +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,age,female,length,73,-0.38329999999999997,8.7660999999999998,0.090310000000000001,6.8,7.4,8,8.8000000000000007,9.6,10.6,11.7 +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,age,female,length,73.5,-0.38329999999999997,8.8637999999999995,0.090249999999999997,6.9,7.4,8.1,8.9,9.6999999999999993,10.7,11.8 +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,age,female,length,74,-0.38329999999999997,8.9601000000000006,0.090179999999999996,6.9,7.5,8.1999999999999993,9,9.8000000000000007,10.8,11.9 +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,age,female,length,74.5,-0.38329999999999997,9.0551999999999992,0.090120000000000006,7,7.6,8.3000000000000007,9.1,9.9,10.9,12 +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,age,female,length,75,-0.38329999999999997,9.1489999999999991,0.090050000000000005,7.1,7.7,8.4,9.1,10,11,12.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,age,female,length,75.5,-0.38329999999999997,9.2417999999999996,0.089990000000000001,7.1,7.8,8.5,9.1999999999999993,10.1,11.1,12.3 +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,age,female,length,76,-0.38329999999999997,9.3337000000000003,0.08992,7.2,7.8,8.5,9.3000000000000007,10.199999999999999,11.2,12.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,age,female,length,76.5,-0.38329999999999997,9.4252000000000002,0.089849999999999999,7.3,7.9,8.6,9.4,10.3,11.4,12.5 +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,age,female,length,77,-0.38329999999999997,9.5166000000000004,0.089789999999999995,7.4,8,8.6999999999999993,9.5,10.4,11.5,12.6 +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,age,female,length,77.5,-0.38329999999999997,9.6085999999999991,0.089719999999999994,7.4,8.1,8.8000000000000007,9.6,10.5,11.6,12.8 +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,age,female,length,78,-0.38329999999999997,9.7014999999999993,0.089649999999999994,7.5,8.1999999999999993,8.9,9.6999999999999993,10.6,11.7,12.9 +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,age,female,length,78.5,-0.38329999999999997,9.7957000000000001,0.089590000000000003,7.6,8.1999999999999993,9,9.8000000000000007,10.7,11.8,13 +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,age,female,length,79,-0.38329999999999997,9.8915000000000006,0.089520000000000002,7.7,8.3000000000000007,9.1,9.9,10.8,11.9,13.1 +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,age,female,length,79.5,-0.38329999999999997,9.9892000000000003,0.089459999999999998,7.7,8.4,9.1,10,10.9,12,13.3 +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,age,female,length,80,-0.38329999999999997,10.0891,0.089399999999999993,7.8,8.5,9.1999999999999993,10.1,11,12.1,13.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,age,female,length,80.5,-0.38329999999999997,10.191599999999999,0.089340000000000003,7.9,8.6,9.3000000000000007,10.199999999999999,11.2,12.3,13.5 +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,age,female,length,81,-0.38329999999999997,10.2965,0.089279999999999998,8,8.6999999999999993,9.4,10.3,11.3,12.4,13.7 +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,age,female,length,81.5,-0.38329999999999997,10.4041,0.089230000000000004,8.1,8.8000000000000007,9.5,10.4,11.4,12.5,13.8 +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,age,female,length,82,-0.38329999999999997,10.513999999999999,0.089179999999999995,8.1,8.8000000000000007,9.6,10.5,11.5,12.6,13.9 +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,age,female,length,82.5,-0.38329999999999997,10.626300000000001,0.089139999999999997,8.1999999999999993,8.9,9.6999999999999993,10.6,11.6,12.8,14.1 +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,age,female,length,83,-0.38329999999999997,10.741,0.089099999999999999,8.3000000000000007,9,9.8000000000000007,10.7,11.8,12.9,14.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,age,female,length,83.5,-0.38329999999999997,10.857799999999999,0.08906,8.4,9.1,9.9,10.9,11.9,13.1,14.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,age,female,length,84,-0.38329999999999997,10.976699999999999,0.089029999999999998,8.5,9.1999999999999993,10.1,11,12,13.2,14.5 +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,age,female,length,84.5,-0.38329999999999997,11.0974,0.088999999999999996,8.6,9.3000000000000007,10.199999999999999,11.1,12.1,13.3,14.7 +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,age,female,length,85,-0.38329999999999997,11.219799999999999,0.088980000000000004,8.6999999999999993,9.4,10.3,11.2,12.3,13.5,14.9 +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,age,female,length,85.5,-0.38329999999999997,11.343500000000001,0.088969999999999994,8.8000000000000007,9.5,10.4,11.3,12.4,13.6,15 +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,age,female,length,86,-0.38329999999999997,11.468400000000001,0.088950000000000001,8.9,9.6999999999999993,10.5,11.5,12.6,13.8,15.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,age,female,length,86.5,-0.38329999999999997,11.593999999999999,0.088950000000000001,9,9.8000000000000007,10.6,11.6,12.7,13.9,15.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,age,female,length,87,-0.38329999999999997,11.7201,0.088950000000000001,9.1,9.9,10.7,11.7,12.8,14.1,15.5 +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,age,female,length,87.5,-0.38329999999999997,11.8461,0.088950000000000001,9.1999999999999993,10,10.9,11.8,13,14.2,15.7 +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,age,female,length,88,-0.38329999999999997,11.972,0.088959999999999997,9.3000000000000007,10.1,11,12,13.1,14.4,15.9 +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,age,female,length,88.5,-0.38329999999999997,12.0976,0.088980000000000004,9.4,10.199999999999999,11.1,12.1,13.2,14.5,16 +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,age,female,length,89,-0.38329999999999997,12.222899999999999,0.088999999999999996,9.5,10.3,11.2,12.2,13.4,14.7,16.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,age,female,length,89.5,-0.38329999999999997,12.3477,0.089029999999999998,9.6,10.4,11.3,12.3,13.5,14.8,16.399999999999999 +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,age,female,length,90,-0.38329999999999997,12.472300000000001,0.08906,9.6999999999999993,10.5,11.4,12.5,13.7,15,16.5 +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,age,female,length,90.5,-0.38329999999999997,12.596500000000001,0.089090000000000003,9.8000000000000007,10.6,11.5,12.6,13.8,15.1,16.7 +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,age,female,length,91,-0.38329999999999997,12.720499999999999,0.089130000000000001,9.9,10.7,11.7,12.7,13.9,15.3,16.899999999999999 +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,age,female,length,91.5,-0.38329999999999997,12.8443,0.089179999999999995,10,10.8,11.8,12.8,14.1,15.5,17 +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,age,female,length,92,-0.38329999999999997,12.9681,0.089230000000000004,10.1,10.9,11.9,13,14.2,15.6,17.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,age,female,length,92.5,-0.38329999999999997,13.092000000000001,0.089279999999999998,10.1,11,12,13.1,14.3,15.8,17.399999999999999 +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,age,female,length,93,-0.38329999999999997,13.2158,0.089340000000000003,10.199999999999999,11.1,12.1,13.2,14.5,15.9,17.5 +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,age,female,length,93.5,-0.38329999999999997,13.3399,0.089410000000000003,10.3,11.2,12.2,13.3,14.6,16.100000000000001,17.7 +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,age,female,length,94,-0.38329999999999997,13.4643,0.089480000000000004,10.4,11.3,12.3,13.5,14.7,16.2,17.899999999999999 +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,age,female,length,94.5,-0.38329999999999997,13.5892,0.089550000000000005,10.5,11.4,12.4,13.6,14.9,16.399999999999999,18 +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,age,female,length,95,-0.38329999999999997,13.714600000000001,0.089630000000000001,10.6,11.5,12.6,13.7,15,16.5,18.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,age,female,length,95.5,-0.38329999999999997,13.8408,0.089719999999999994,10.7,11.6,12.7,13.8,15.2,16.7,18.399999999999999 +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,age,female,length,96,-0.38329999999999997,13.967599999999999,0.089810000000000001,10.8,11.7,12.8,14,15.3,16.8,18.600000000000001 +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,age,female,length,96.5,-0.38329999999999997,14.0953,0.089899999999999994,10.9,11.8,12.9,14.1,15.4,17,18.7 +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,age,female,length,97,-0.38329999999999997,14.2239,0.09,11,12,13,14.2,15.6,17.100000000000001,18.899999999999999 +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,age,female,length,97.5,-0.38329999999999997,14.3537,0.0901,11.1,12.1,13.1,14.4,15.7,17.3,19.100000000000001 +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,age,female,length,98,-0.38329999999999997,14.4848,0.090209999999999999,11.2,12.2,13.3,14.5,15.9,17.5,19.3 +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,age,female,length,98.5,-0.38329999999999997,14.6174,0.090329999999999994,11.3,12.3,13.4,14.6,16,17.600000000000001,19.5 +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,age,female,length,99,-0.38329999999999997,14.751899999999999,0.090440000000000006,11.4,12.4,13.5,14.8,16.2,17.8,19.600000000000001 +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,age,female,length,99.5,-0.38329999999999997,14.888199999999999,0.090569999999999998,11.5,12.5,13.6,14.9,16.3,18,19.8 +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,age,female,length,100,-0.38329999999999997,15.0267,0.090690000000000007,11.6,12.6,13.7,15,16.5,18.100000000000001,20 +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,age,female,length,100.5,-0.38329999999999997,15.1676,0.090829999999999994,11.7,12.7,13.9,15.2,16.600000000000001,18.3,20.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,age,female,length,101,-0.38329999999999997,15.3108,0.090959999999999999,11.8,12.8,14,15.3,16.8,18.5,20.399999999999999 +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,age,female,length,101.5,-0.38329999999999997,15.4564,0.0911,11.9,13,14.1,15.5,17,18.7,20.6 +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,age,female,length,102,-0.38329999999999997,15.6046,0.091249999999999998,12,13.1,14.3,15.6,17.100000000000001,18.899999999999999,20.8 +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,age,female,length,102.5,-0.38329999999999997,15.7553,0.091389999999999999,12.1,13.2,14.4,15.8,17.3,19,21 +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,age,female,length,103,-0.38329999999999997,15.9087,0.091550000000000006,12.3,13.3,14.5,15.9,17.5,19.2,21.3 +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,age,female,length,103.5,-0.38329999999999997,16.064499999999999,0.091700000000000004,12.4,13.5,14.7,16.100000000000001,17.600000000000001,19.399999999999999,21.5 +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,age,female,length,104,-0.38329999999999997,16.222899999999999,0.091859999999999997,12.5,13.6,14.8,16.2,17.8,19.600000000000001,21.7 +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,age,female,length,104.5,-0.38329999999999997,16.383700000000001,0.092030000000000001,12.6,13.7,15,16.399999999999999,18,19.8,21.9 +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,age,female,length,105,-0.38329999999999997,16.547000000000001,0.092189999999999994,12.7,13.8,15.1,16.5,18.2,20,22.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,age,female,length,105.5,-0.38329999999999997,16.712900000000001,0.092359999999999998,12.8,14,15.3,16.7,18.399999999999999,20.2,22.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,age,female,length,106,-0.38329999999999997,16.881399999999999,0.092539999999999997,13,14.1,15.4,16.899999999999999,18.5,20.5,22.6 +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,age,female,length,106.5,-0.38329999999999997,17.052700000000002,0.092710000000000001,13.1,14.3,15.6,17.100000000000001,18.7,20.7,22.9 +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,age,female,length,107,-0.38329999999999997,17.226900000000001,0.09289,13.2,14.4,15.7,17.2,18.899999999999999,20.9,23.1 +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,age,female,length,107.5,-0.38329999999999997,17.4039,0.09307,13.3,14.5,15.9,17.399999999999999,19.100000000000001,21.1,23.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,age,female,length,108,-0.38329999999999997,17.5839,0.093259999999999996,13.5,14.7,16,17.600000000000001,19.3,21.3,23.6 +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,age,female,length,108.5,-0.38329999999999997,17.7668,0.093439999999999995,13.6,14.8,16.2,17.8,19.5,21.6,23.9 +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,age,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,age,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,age,female,length,110,-0.38329999999999997,18.3324,0.094009999999999996,14,15.3,16.7,18.3,20.2,22.3,24.7 +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,age,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,age,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,age,female,height,66,-0.38329999999999997,7.4630000000000001,0.091039999999999996,5.8,6.3,6.8,7.5,8.1999999999999993,9,10 +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,age,female,height,66.5,-0.38329999999999997,7.5724,0.090990000000000001,5.8,6.4,6.9,7.6,8.3000000000000007,9.1,10.1 +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,age,female,height,67,-0.38329999999999997,7.6806000000000001,0.090939999999999993,5.9,6.4,7,7.7,8.4,9.3000000000000007,10.199999999999999 +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,age,female,height,67.5,-0.38329999999999997,7.7873999999999999,0.090880000000000002,6,6.5,7.1,7.8,8.5,9.4,10.4 +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,age,female,height,68,-0.38329999999999997,7.8929999999999998,0.090829999999999994,6.1,6.6,7.2,7.9,8.6999999999999993,9.5,10.5 +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,age,female,height,68.5,-0.38329999999999997,7.9976000000000003,0.090770000000000003,6.2,6.7,7.3,8,8.8000000000000007,9.6999999999999993,10.7 +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,age,female,height,69,-0.38329999999999997,8.1012000000000004,0.090709999999999999,6.3,6.8,7.4,8.1,8.9,9.8000000000000007,10.8 +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,age,female,height,69.5,-0.38329999999999997,8.2039000000000009,0.090649999999999994,6.3,6.9,7.5,8.1999999999999993,9,9.9,10.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,age,female,height,70,-0.38329999999999997,8.3057999999999996,0.090590000000000004,6.4,7,7.6,8.3000000000000007,9.1,10,11.1 +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,age,female,height,70.5,-0.38329999999999997,8.4070999999999998,0.090529999999999999,6.5,7.1,7.7,8.4,9.1999999999999993,10.1,11.2 +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,age,female,height,71,-0.38329999999999997,8.5077999999999996,0.090469999999999995,6.6,7.1,7.8,8.5,9.3000000000000007,10.3,11.3 +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,age,female,height,71.5,-0.38329999999999997,8.6077999999999992,0.090410000000000004,6.7,7.2,7.9,8.6,9.4,10.4,11.5 +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,age,female,height,72,-0.38329999999999997,8.7070000000000007,0.09035,6.7,7.3,8,8.6999999999999993,9.5,10.5,11.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,age,female,height,72.5,-0.38329999999999997,8.8053000000000008,0.090279999999999999,6.8,7.4,8.1,8.8000000000000007,9.6999999999999993,10.6,11.7 +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,age,female,height,73,-0.38329999999999997,8.9024999999999999,0.090219999999999995,6.9,7.5,8.1,8.9,9.8000000000000007,10.7,11.8 +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,age,female,height,73.5,-0.38329999999999997,8.9983000000000004,0.090160000000000004,7,7.6,8.1999999999999993,9,9.9,10.8,12 +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,age,female,height,74,-0.38329999999999997,9.0928000000000004,0.090090000000000003,7,7.6,8.3000000000000007,9.1,10,11,12.1 +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,age,female,height,74.5,-0.38329999999999997,9.1861999999999995,0.090029999999999999,7.1,7.7,8.4,9.1999999999999993,10.1,11.1,12.2 +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,age,female,height,75,-0.38329999999999997,9.2786000000000008,0.089959999999999998,7.2,7.8,8.5,9.3000000000000007,10.199999999999999,11.2,12.3 +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,age,female,height,75.5,-0.38329999999999997,9.3703000000000003,0.089889999999999998,7.2,7.9,8.6,9.4,10.3,11.3,12.5 +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,age,female,height,76,-0.38329999999999997,9.4617000000000004,0.089829999999999993,7.3,8,8.6999999999999993,9.5,10.4,11.4,12.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,age,female,height,76.5,-0.38329999999999997,9.5533000000000001,0.089760000000000006,7.4,8,8.6999999999999993,9.6,10.5,11.5,12.7 +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,age,female,height,77,-0.38329999999999997,9.6456,0.089690000000000006,7.5,8.1,8.8000000000000007,9.6,10.6,11.6,12.8 +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,age,female,height,77.5,-0.38329999999999997,9.7390000000000008,0.089630000000000001,7.5,8.1999999999999993,8.9,9.6999999999999993,10.7,11.7,12.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,age,female,height,78,-0.38329999999999997,9.8338000000000001,0.089560000000000001,7.6,8.3000000000000007,9,9.8000000000000007,10.8,11.8,13.1 +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,age,female,height,78.5,-0.38329999999999997,9.9303000000000008,0.089499999999999996,7.7,8.4,9.1,9.9,10.9,12,13.2 +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,age,female,height,79,-0.38329999999999997,10.0289,0.089429999999999996,7.8,8.4,9.1999999999999993,10,11,12.1,13.3 +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,age,female,height,79.5,-0.38329999999999997,10.129799999999999,0.089370000000000005,7.8,8.5,9.3000000000000007,10.1,11.1,12.2,13.4 +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,age,female,height,80,-0.38329999999999997,10.2332,0.089319999999999997,7.9,8.6,9.4,10.199999999999999,11.2,12.3,13.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,age,female,height,80.5,-0.38329999999999997,10.3393,0.089260000000000006,8,8.6999999999999993,9.5,10.3,11.3,12.4,13.7 +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,age,female,height,81,-0.38329999999999997,10.447699999999999,0.089209999999999998,8.1,8.8000000000000007,9.6,10.4,11.4,12.6,13.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,age,female,height,81.5,-0.38329999999999997,10.5586,0.089160000000000003,8.1999999999999993,8.9,9.6999999999999993,10.6,11.6,12.7,14 +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,age,female,height,82,-0.38329999999999997,10.671900000000001,0.089120000000000005,8.3000000000000007,9,9.8000000000000007,10.7,11.7,12.8,14.1 +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,age,female,height,82.5,-0.38329999999999997,10.7874,0.089080000000000006,8.4,9.1,9.9,10.8,11.8,13,14.3 +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,age,female,height,83,-0.38329999999999997,10.905099999999999,0.089050000000000004,8.5,9.1999999999999993,10,10.9,11.9,13.1,14.5 +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,age,female,height,83.5,-0.38329999999999997,11.024800000000001,0.089020000000000002,8.5,9.3000000000000007,10.1,11,12.1,13.3,14.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,age,female,height,84,-0.38329999999999997,11.1462,0.08899,8.6,9.4,10.199999999999999,11.1,12.2,13.4,14.8 +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,age,female,height,84.5,-0.38329999999999997,11.2691,0.088969999999999994,8.6999999999999993,9.5,10.3,11.3,12.3,13.5,14.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,age,female,height,85,-0.38329999999999997,11.3934,0.088959999999999997,8.8000000000000007,9.6,10.4,11.4,12.5,13.7,15.1 +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,age,female,height,85.5,-0.38329999999999997,11.518599999999999,0.088950000000000001,8.9,9.6999999999999993,10.6,11.5,12.6,13.8,15.3 +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,age,female,height,86,-0.38329999999999997,11.644399999999999,0.088950000000000001,9,9.8000000000000007,10.7,11.6,12.7,14,15.4 +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,age,female,height,86.5,-0.38329999999999997,11.7705,0.088950000000000001,9.1,9.9,10.8,11.8,12.9,14.2,15.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,age,female,height,87,-0.38329999999999997,11.8965,0.088959999999999997,9.1999999999999993,10,10.9,11.9,13,14.3,15.8 +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,age,female,height,87.5,-0.38329999999999997,12.0223,0.088969999999999994,9.3000000000000007,10.1,11,12,13.2,14.5,15.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,age,female,height,88,-0.38329999999999997,12.1478,0.08899,9.4,10.199999999999999,11.1,12.1,13.3,14.6,16.100000000000001 +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,age,female,height,88.5,-0.38329999999999997,12.2729,0.089010000000000006,9.5,10.3,11.2,12.3,13.4,14.8,16.3 +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,age,female,height,89,-0.38329999999999997,12.397600000000001,0.089039999999999994,9.6,10.4,11.4,12.4,13.6,14.9,16.399999999999999 +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,age,female,height,89.5,-0.38329999999999997,12.522,0.089069999999999996,9.6999999999999993,10.5,11.5,12.5,13.7,15.1,16.600000000000001 +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,age,female,height,90,-0.38329999999999997,12.646100000000001,0.089109999999999995,9.8000000000000007,10.6,11.6,12.6,13.8,15.2,16.8 +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,age,female,height,90.5,-0.38329999999999997,12.77,0.089149999999999993,9.9,10.7,11.7,12.8,14,15.4,16.899999999999999 +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,age,female,height,91,-0.38329999999999997,12.8939,0.089200000000000002,10,10.9,11.8,12.9,14.1,15.5,17.100000000000001 +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,age,female,height,91.5,-0.38329999999999997,13.0177,0.089249999999999996,10.1,11,11.9,13,14.3,15.7,17.3 +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,age,female,height,92,-0.38329999999999997,13.141500000000001,0.08931,10.199999999999999,11.1,12,13.1,14.4,15.8,17.399999999999999 +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,age,female,height,92.5,-0.38329999999999997,13.2654,0.089370000000000005,10.3,11.2,12.1,13.3,14.5,16,17.600000000000001 +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,age,female,height,93,-0.38329999999999997,13.3896,0.089440000000000006,10.4,11.3,12.3,13.4,14.7,16.100000000000001,17.8 +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,age,female,height,93.5,-0.38329999999999997,13.514200000000001,0.089510000000000006,10.5,11.4,12.4,13.5,14.8,16.3,17.899999999999999 +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,age,female,height,94,-0.38329999999999997,13.6393,0.089590000000000003,10.6,11.5,12.5,13.6,14.9,16.399999999999999,18.100000000000001 +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,age,female,height,94.5,-0.38329999999999997,13.765000000000001,0.08967,10.7,11.6,12.6,13.8,15.1,16.600000000000001,18.3 +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,age,female,height,95,-0.38329999999999997,13.891400000000001,0.089749999999999996,10.8,11.7,12.7,13.9,15.2,16.7,18.5 +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,age,female,height,95.5,-0.38329999999999997,14.018599999999999,0.089840000000000003,10.8,11.8,12.8,14,15.4,16.899999999999999,18.600000000000001 +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,age,female,height,96,-0.38329999999999997,14.146599999999999,0.089940000000000006,10.9,11.9,12.9,14.1,15.5,17,18.8 +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,age,female,height,96.5,-0.38329999999999997,14.275700000000001,0.090039999999999995,11,12,13.1,14.3,15.6,17.2,19 +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,age,female,height,97,-0.38329999999999997,14.405900000000001,0.090149999999999994,11.1,12.1,13.2,14.4,15.8,17.399999999999999,19.2 +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,age,female,height,97.5,-0.38329999999999997,14.537599999999999,0.090260000000000007,11.2,12.2,13.3,14.5,15.9,17.5,19.3 +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,age,female,height,98,-0.38329999999999997,14.670999999999999,0.090370000000000006,11.3,12.3,13.4,14.7,16.100000000000001,17.7,19.5 +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,age,female,height,98.5,-0.38329999999999997,14.8062,0.090490000000000001,11.4,12.4,13.5,14.8,16.2,17.899999999999999,19.7 +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,age,female,height,99,-0.38329999999999997,14.9434,0.090620000000000006,11.5,12.5,13.7,14.9,16.399999999999999,18,19.899999999999999 +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,age,female,height,99.5,-0.38329999999999997,15.082800000000001,0.090749999999999997,11.6,12.7,13.8,15.1,16.5,18.2,20.100000000000001 +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,age,female,height,100,-0.38329999999999997,15.224600000000001,0.090880000000000002,11.7,12.8,13.9,15.2,16.7,18.399999999999999,20.3 +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,age,female,height,100.5,-0.38329999999999997,15.3687,0.091020000000000004,11.9,12.9,14.1,15.4,16.899999999999999,18.600000000000001,20.5 +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,age,female,height,101,-0.38329999999999997,15.5154,0.091160000000000005,12,13,14.2,15.5,17,18.7,20.7 +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,age,female,height,101.5,-0.38329999999999997,15.6646,0.091310000000000002,12.1,13.1,14.3,15.7,17.2,18.899999999999999,20.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,age,female,height,102,-0.38329999999999997,15.8164,0.09146,12.2,13.3,14.5,15.8,17.399999999999999,19.100000000000001,21.1 +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,age,female,height,102.5,-0.38329999999999997,15.970700000000001,0.091609999999999997,12.3,13.4,14.6,16,17.5,19.3,21.4 +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,age,female,height,103,-0.38329999999999997,16.127600000000001,0.091770000000000004,12.4,13.5,14.7,16.100000000000001,17.7,19.5,21.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,age,female,height,103.5,-0.38329999999999997,16.286999999999999,0.091929999999999998,12.5,13.6,14.9,16.3,17.899999999999999,19.7,21.8 +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,age,female,height,104,-0.38329999999999997,16.448799999999999,0.092090000000000005,12.6,13.8,15,16.399999999999999,18.100000000000001,19.899999999999999,22 +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,age,female,height,104.5,-0.38329999999999997,16.613099999999999,0.092259999999999995,12.8,13.9,15.2,16.600000000000001,18.2,20.100000000000001,22.3 +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,age,female,height,105,-0.38329999999999997,16.78,0.092429999999999998,12.9,14,15.3,16.8,18.399999999999999,20.3,22.5 +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,age,female,height,105.5,-0.38329999999999997,16.9496,0.092609999999999998,13,14.2,15.5,16.899999999999999,18.600000000000001,20.5,22.7 +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,age,female,height,106,-0.38329999999999997,17.122,0.092780000000000001,13.1,14.3,15.6,17.100000000000001,18.8,20.8,23 +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,age,female,height,106.5,-0.38329999999999997,17.2973,0.092960000000000001,13.3,14.5,15.8,17.3,19,21,23.2 +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,age,female,height,107,-0.38329999999999997,17.4755,0.093149999999999997,13.4,14.6,15.9,17.5,19.2,21.2,23.5 +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,age,female,height,107.5,-0.38329999999999997,17.656700000000001,0.093329999999999996,13.5,14.7,16.100000000000001,17.7,19.399999999999999,21.4,23.7 +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,age,female,height,108,-0.38329999999999997,17.840699999999998,0.093520000000000006,13.7,14.9,16.3,17.8,19.600000000000001,21.7,24 +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,age,female,height,108.5,-0.38329999999999997,18.027699999999999,0.093710000000000002,13.8,15,16.399999999999999,18,19.8,21.9,24.3 +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,age,female,height,109,-0.38329999999999997,18.217400000000001,0.093899999999999997,13.9,15.2,16.600000000000001,18.2,20,22.1,24.5 +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,age,female,height,109.5,-0.38329999999999997,18.409600000000001,0.094089999999999993,14.1,15.4,16.8,18.399999999999999,20.3,22.4,24.8 +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,age,female,height,110,-0.38329999999999997,18.604299999999999,0.094280000000000003,14.2,15.5,17,18.600000000000001,20.5,22.6,25.1 +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,age,female,height,110.5,-0.38329999999999997,18.801500000000001,0.094479999999999995,14.4,15.7,17.100000000000001,18.8,20.7,22.9,25.4 +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,age,female,height,111,-0.38329999999999997,19.000900000000001,0.094670000000000004,14.5,15.8,17.3,19,20.9,23.1,25.7 +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,age,female,height,111.5,-0.38329999999999997,19.202400000000001,0.094869999999999996,14.7,16,17.5,19.2,21.2,23.4,26 +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,age,female,height,112,-0.38329999999999997,19.405999999999999,0.095070000000000002,14.8,16.2,17.7,19.399999999999999,21.4,23.6,26.2 +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,age,female,height,112.5,-0.38329999999999997,19.611599999999999,0.095269999999999994,15,16.3,17.899999999999999,19.600000000000001,21.6,23.9,26.5 +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,age,female,height,113,-0.38329999999999997,19.818999999999999,0.095460000000000003,15.1,16.5,18,19.8,21.8,24.2,26.8 +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,age,female,height,113.5,-0.38329999999999997,20.027999999999999,0.095659999999999995,15.3,16.7,18.2,20,22.1,24.4,27.1 +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,age,female,height,114,-0.38329999999999997,20.238499999999998,0.095860000000000001,15.4,16.8,18.399999999999999,20.2,22.3,24.7,27.4 +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,age,female,height,114.5,-0.38329999999999997,20.450199999999999,0.096060000000000006,15.6,17,18.600000000000001,20.5,22.6,25,27.8 +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,age,female,height,115,-0.38329999999999997,20.6629,0.096259999999999998,15.7,17.2,18.8,20.7,22.8,25.2,28.1 +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,age,female,height,115.5,-0.38329999999999997,20.8766,0.096460000000000004,15.9,17.3,19,20.9,23,25.5,28.4 +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,age,female,height,116,-0.38329999999999997,21.090900000000001,0.096659999999999996,16,17.5,19.2,21.1,23.3,25.8,28.7 +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,age,female,height,116.5,-0.38329999999999997,21.305900000000001,0.096860000000000002,16.2,17.7,19.399999999999999,21.3,23.5,26.1,29 +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,age,female,height,117,-0.38329999999999997,21.5213,0.097070000000000004,16.3,17.8,19.600000000000001,21.5,23.8,26.3,29.3 +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,age,female,height,117.5,-0.38329999999999997,21.736999999999998,0.097269999999999995,16.5,18,19.8,21.7,24,26.6,29.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,age,female,height,118,-0.38329999999999997,21.9529,0.097470000000000001,16.600000000000001,18.2,19.899999999999999,22,24.2,26.9,29.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,age,female,height,118.5,-0.38329999999999997,22.169,0.097670000000000007,16.8,18.399999999999999,20.100000000000001,22.2,24.5,27.2,30.3 +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,age,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,age,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,age,female,height,120,-0.38329999999999997,22.817299999999999,0.098280000000000006,17.3,18.899999999999999,20.7,22.8,25.2,28,31.2 +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,age,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,age,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,age,male,length,46,-0.35210000000000002,2.6076999999999999,0.091240000000000002,2,2.2000000000000002,2.4,2.6,2.9,3.1,3.5 +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,age,male,length,46.5,-0.35210000000000002,2.6913,0.090939999999999993,2.1,2.2999999999999998,2.5,2.7,3,3.2,3.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,age,male,length,47,-0.35210000000000002,2.7755000000000001,0.090649999999999994,2.1,2.2999999999999998,2.5,2.8,3,3.3,3.7 +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,age,male,length,47.5,-0.35210000000000002,2.8609,0.090359999999999996,2.2000000000000002,2.4,2.6,2.9,3.1,3.4,3.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,age,male,length,48,-0.35210000000000002,2.948,0.090069999999999997,2.2999999999999998,2.5,2.7,2.9,3.2,3.6,3.9 +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,age,male,length,48.5,-0.35210000000000002,3.0377000000000001,0.089770000000000003,2.2999999999999998,2.6,2.8,3,3.3,3.7,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,age,male,length,49,-0.35210000000000002,3.1307999999999998,0.089480000000000004,2.4,2.6,2.9,3.1,3.4,3.8,4.2 +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,age,male,length,49.5,-0.35210000000000002,3.2275999999999998,0.089190000000000005,2.5,2.7,3,3.2,3.5,3.9,4.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,age,male,length,50,-0.35210000000000002,3.3277999999999999,0.088900000000000007,2.6,2.8,3,3.3,3.6,4,4.4000000000000004 +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,age,male,length,50.5,-0.35210000000000002,3.4310999999999998,0.088609999999999994,2.7,2.9,3.1,3.4,3.8,4.0999999999999996,4.5 +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,age,male,length,51,-0.35210000000000002,3.5375999999999999,0.08831,2.7,3,3.2,3.5,3.9,4.2,4.7 +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,age,male,length,51.5,-0.35210000000000002,3.6476999999999999,0.088010000000000005,2.8,3.1,3.3,3.6,4,4.4000000000000004,4.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,age,male,length,52,-0.35210000000000002,3.762,0.087709999999999996,2.9,3.2,3.5,3.8,4.0999999999999996,4.5,5 +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,age,male,length,52.5,-0.35210000000000002,3.8814000000000002,0.087410000000000002,3,3.3,3.6,3.9,4.2,4.5999999999999996,5.0999999999999996 +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,age,male,length,53,-0.35210000000000002,4.0060000000000002,0.087110000000000007,3.1,3.4,3.7,4,4.4000000000000004,4.8,5.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,age,male,length,53.5,-0.35210000000000002,4.1353999999999997,0.086809999999999998,3.2,3.5,3.8,4.0999999999999996,4.5,4.9000000000000004,5.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,age,male,length,54,-0.35210000000000002,4.2693000000000003,0.086510000000000004,3.3,3.6,3.9,4.3,4.7,5.0999999999999996,5.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,age,male,length,54.5,-0.35210000000000002,4.4066000000000001,0.086209999999999995,3.4,3.7,4,4.4000000000000004,4.8,5.3,5.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,age,male,length,55,-0.35210000000000002,4.5467000000000004,0.085919999999999996,3.6,3.8,4.2,4.5,5,5.4,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,age,male,length,55.5,-0.35210000000000002,4.6891999999999996,0.085629999999999998,3.7,4,4.3,4.7,5.0999999999999996,5.6,6.1 +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,age,male,length,56,-0.35210000000000002,4.8338000000000001,0.085349999999999995,3.8,4.0999999999999996,4.4000000000000004,4.8,5.3,5.8,6.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,age,male,length,56.5,-0.35210000000000002,4.9795999999999996,0.085070000000000007,3.9,4.2,4.5999999999999996,5,5.4,5.9,6.5 +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,age,male,length,57,-0.35210000000000002,5.1258999999999997,0.084809999999999997,4,4.3,4.7,5.0999999999999996,5.6,6.1,6.7 +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,age,male,length,57.5,-0.35210000000000002,5.2721,0.08455,4.0999999999999996,4.5,4.9000000000000004,5.3,5.7,6.3,6.9 +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,age,male,length,58,-0.35210000000000002,5.4180000000000001,0.0843,4.3,4.5999999999999996,5,5.4,5.9,6.4,7.1 +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,age,male,length,58.5,-0.35210000000000002,5.5632000000000001,0.084059999999999996,4.4000000000000004,4.7,5.0999999999999996,5.6,6.1,6.6,7.2 +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,age,male,length,59,-0.35210000000000002,5.7073999999999998,0.083830000000000002,4.5,4.8,5.3,5.7,6.2,6.8,7.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,age,male,length,59.5,-0.35210000000000002,5.8501000000000003,0.08362,4.5999999999999996,5,5.4,5.9,6.4,7,7.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,age,male,length,60,-0.35210000000000002,5.9907000000000004,0.083419999999999994,4.7,5.0999999999999996,5.5,6,6.5,7.1,7.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,age,male,length,60.5,-0.35210000000000002,6.1284000000000001,0.083239999999999995,4.8,5.2,5.6,6.1,6.7,7.3,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,age,male,length,61,-0.35210000000000002,6.2632000000000003,0.083080000000000001,4.9000000000000004,5.3,5.8,6.3,6.8,7.4,8.1 +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,age,male,length,61.5,-0.35210000000000002,6.3954000000000004,0.082919999999999994,5,5.4,5.9,6.4,7,7.6,8.3000000000000007 +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,age,male,length,62,-0.35210000000000002,6.5251000000000001,0.082790000000000002,5.0999999999999996,5.6,6,6.5,7.1,7.7,8.5 +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,age,male,length,62.5,-0.35210000000000002,6.6527000000000003,0.082659999999999997,5.2,5.7,6.1,6.7,7.2,7.9,8.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,age,male,length,63,-0.35210000000000002,6.7786,0.082549999999999998,5.3,5.8,6.2,6.8,7.4,8,8.8000000000000007 +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,age,male,length,63.5,-0.35210000000000002,6.9028,0.082449999999999996,5.4,5.9,6.4,6.9,7.5,8.1999999999999993,8.9 +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,age,male,length,64,-0.35210000000000002,7.0255000000000001,0.082360000000000003,5.5,6,6.5,7,7.6,8.3000000000000007,9.1 +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,age,male,length,64.5,-0.35210000000000002,7.1467000000000001,0.082290000000000002,5.6,6.1,6.6,7.1,7.8,8.5,9.3000000000000007 +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,age,male,length,65,-0.35210000000000002,7.2666000000000004,0.082229999999999998,5.7,6.2,6.7,7.3,7.9,8.6,9.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,age,male,length,65.5,-0.35210000000000002,7.3853999999999997,0.082180000000000003,5.8,6.3,6.8,7.4,8,8.6999999999999993,9.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,age,male,length,66,-0.35210000000000002,7.5034000000000001,0.082150000000000001,5.9,6.4,6.9,7.5,8.1999999999999993,8.9,9.6999999999999993 +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,age,male,length,66.5,-0.35210000000000002,7.6205999999999996,0.082129999999999995,6,6.5,7,7.6,8.3000000000000007,9,9.9 +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,age,male,length,67,-0.35210000000000002,7.7370000000000001,0.082119999999999999,6.1,6.6,7.1,7.7,8.4,9.1999999999999993,10 +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,age,male,length,67.5,-0.35210000000000002,7.8525999999999998,0.082119999999999999,6.2,6.7,7.2,7.9,8.5,9.3000000000000007,10.199999999999999 +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,age,male,length,68,-0.35210000000000002,7.9673999999999996,0.082140000000000005,6.3,6.8,7.3,8,8.6999999999999993,9.4,10.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,age,male,length,68.5,-0.35210000000000002,8.0815999999999999,0.082159999999999997,6.4,6.9,7.5,8.1,8.8000000000000007,9.6,10.5 +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,age,male,length,69,-0.35210000000000002,8.1954999999999991,0.082189999999999999,6.5,7,7.6,8.1999999999999993,8.9,9.6999999999999993,10.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,age,male,length,69.5,-0.35210000000000002,8.3092000000000006,0.082239999999999994,6.6,7.1,7.7,8.3000000000000007,9,9.8000000000000007,10.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,age,male,length,70,-0.35210000000000002,8.4227000000000007,0.082290000000000002,6.6,7.2,7.8,8.4,9.1999999999999993,10,10.9 +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,age,male,length,70.5,-0.35210000000000002,8.5358000000000001,0.082350000000000007,6.7,7.3,7.9,8.5,9.3000000000000007,10.1,11.1 +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,age,male,length,71,-0.35210000000000002,8.6479999999999997,0.082409999999999997,6.8,7.4,8,8.6,9.4,10.199999999999999,11.2 +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,age,male,length,71.5,-0.35210000000000002,8.7593999999999994,0.082479999999999998,6.9,7.5,8.1,8.8000000000000007,9.5,10.4,11.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,age,male,length,72,-0.35210000000000002,8.8696999999999999,0.082540000000000002,7,7.6,8.1999999999999993,8.9,9.6,10.5,11.5 +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,age,male,length,72.5,-0.35210000000000002,8.9787999999999997,0.082619999999999999,7.1,7.6,8.3000000000000007,9,9.8000000000000007,10.6,11.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,age,male,length,73,-0.35210000000000002,9.0864999999999991,0.08269,7.2,7.7,8.4,9.1,9.9,10.8,11.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,age,male,length,73.5,-0.35210000000000002,9.1927000000000003,0.08276,7.2,7.8,8.5,9.1999999999999993,10,10.9,11.9 +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,age,male,length,74,-0.35210000000000002,9.2973999999999997,0.082830000000000001,7.3,7.9,8.6,9.3000000000000007,10.1,11,12.1 +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,age,male,length,74.5,-0.35210000000000002,9.4009999999999998,0.082890000000000005,7.4,8,8.6999999999999993,9.4,10.199999999999999,11.2,12.2 +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,age,male,length,75,-0.35210000000000002,9.5031999999999996,0.082949999999999996,7.5,8.1,8.8000000000000007,9.5,10.3,11.3,12.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,age,male,length,75.5,-0.35210000000000002,9.6041000000000007,0.08301,7.6,8.1999999999999993,8.8000000000000007,9.6,10.4,11.4,12.5 +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,age,male,length,76,-0.35210000000000002,9.7033000000000005,0.083070000000000005,7.6,8.3000000000000007,8.9,9.6999999999999993,10.6,11.5,12.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,age,male,length,76.5,-0.35210000000000002,9.8007000000000009,0.083110000000000003,7.7,8.3000000000000007,9,9.8000000000000007,10.7,11.6,12.7 +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,age,male,length,77,-0.35210000000000002,9.8963000000000001,0.083140000000000006,7.8,8.4,9.1,9.9,10.8,11.7,12.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,age,male,length,77.5,-0.35210000000000002,9.9901999999999997,0.083169999999999994,7.9,8.5,9.1999999999999993,10,10.9,11.9,13 +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,age,male,length,78,-0.35210000000000002,10.082700000000001,0.083180000000000004,7.9,8.6,9.3000000000000007,10.1,11,12,13.1 +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,age,male,length,78.5,-0.35210000000000002,10.174099999999999,0.083180000000000004,8,8.6999999999999993,9.4,10.199999999999999,11.1,12.1,13.2 +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,age,male,length,79,-0.35210000000000002,10.264900000000001,0.083159999999999998,8.1,8.6999999999999993,9.5,10.3,11.2,12.2,13.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,age,male,length,79.5,-0.35210000000000002,10.3558,0.083129999999999996,8.1999999999999993,8.8000000000000007,9.5,10.4,11.3,12.3,13.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,age,male,length,80,-0.35210000000000002,10.4475,0.083080000000000001,8.1999999999999993,8.9,9.6,10.4,11.4,12.4,13.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,age,male,length,80.5,-0.35210000000000002,10.5405,0.08301,8.3000000000000007,9,9.6999999999999993,10.5,11.5,12.5,13.7 +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,age,male,length,81,-0.35210000000000002,10.635199999999999,0.082930000000000004,8.4,9.1,9.8000000000000007,10.6,11.6,12.6,13.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,age,male,length,81.5,-0.35210000000000002,10.732200000000001,0.082839999999999997,8.5,9.1,9.9,10.7,11.7,12.7,13.9 +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,age,male,length,82,-0.35210000000000002,10.832100000000001,0.082729999999999998,8.5,9.1999999999999993,10,10.8,11.8,12.8,14 +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,age,male,length,82.5,-0.35210000000000002,10.935,0.082600000000000007,8.6,9.3000000000000007,10.1,10.9,11.9,13,14.2 +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,age,male,length,83,-0.35210000000000002,11.041499999999999,0.082460000000000006,8.6999999999999993,9.4,10.199999999999999,11,12,13.1,14.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,age,male,length,83.5,-0.35210000000000002,11.1516,0.082309999999999994,8.8000000000000007,9.5,10.3,11.2,12.1,13.2,14.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,age,male,length,84,-0.35210000000000002,11.2651,0.082150000000000001,8.9,9.6,10.4,11.3,12.2,13.3,14.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,age,male,length,84.5,-0.35210000000000002,11.3817,0.081979999999999997,9,9.6999999999999993,10.5,11.4,12.4,13.5,14.7 +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,age,male,length,85,-0.35210000000000002,11.5007,0.081809999999999994,9.1,9.8000000000000007,10.6,11.5,12.5,13.6,14.9 +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,age,male,length,85.5,-0.35210000000000002,11.6218,0.081629999999999994,9.1999999999999993,9.9,10.7,11.6,12.6,13.7,15 +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,age,male,length,86,-0.35210000000000002,11.744400000000001,0.081449999999999995,9.3000000000000007,10,10.8,11.7,12.8,13.9,15.2 +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,age,male,length,86.5,-0.35210000000000002,11.867800000000001,0.081280000000000005,9.4,10.1,11,11.9,12.9,14,15.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,age,male,length,87,-0.35210000000000002,11.9916,0.081110000000000002,9.5,10.199999999999999,11.1,12,13,14.2,15.5 +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,age,male,length,87.5,-0.35210000000000002,12.1152,0.080960000000000004,9.6,10.4,11.2,12.1,13.2,14.3,15.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,age,male,length,88,-0.35210000000000002,12.238200000000001,0.080820000000000003,9.6999999999999993,10.5,11.3,12.2,13.3,14.5,15.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,age,male,length,88.5,-0.35210000000000002,12.360300000000001,0.080689999999999998,9.8000000000000007,10.6,11.4,12.4,13.4,14.6,15.9 +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,age,male,length,89,-0.35210000000000002,12.4815,0.080579999999999999,9.9,10.7,11.5,12.5,13.5,14.7,16.100000000000001 +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,age,male,length,89.5,-0.35210000000000002,12.601699999999999,0.080479999999999996,10,10.8,11.6,12.6,13.7,14.9,16.2 +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,age,male,length,90,-0.35210000000000002,12.7209,0.080409999999999995,10.1,10.9,11.8,12.7,13.8,15,16.399999999999999 +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,age,male,length,90.5,-0.35210000000000002,12.8392,0.080339999999999995,10.199999999999999,11,11.9,12.8,13.9,15.1,16.5 +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,age,male,length,91,-0.35210000000000002,12.956899999999999,0.080299999999999996,10.3,11.1,12,13,14.1,15.3,16.7 +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,age,male,length,91.5,-0.35210000000000002,13.074199999999999,0.080259999999999998,10.4,11.2,12.1,13.1,14.2,15.4,16.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,age,male,length,92,-0.35210000000000002,13.191000000000001,0.080250000000000002,10.5,11.3,12.2,13.2,14.3,15.6,17 +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,age,male,length,92.5,-0.35210000000000002,13.307499999999999,0.080250000000000002,10.6,11.4,12.3,13.3,14.4,15.7,17.100000000000001 +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,age,male,length,93,-0.35210000000000002,13.4239,0.080259999999999998,10.7,11.5,12.4,13.4,14.6,15.8,17.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,age,male,length,93.5,-0.35210000000000002,13.5404,0.08029,10.7,11.6,12.5,13.5,14.7,16,17.399999999999999 +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,age,male,length,94,-0.35210000000000002,13.6572,0.080339999999999995,10.8,11.7,12.6,13.7,14.8,16.100000000000001,17.600000000000001 +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,age,male,length,94.5,-0.35210000000000002,13.7746,0.080399999999999999,10.9,11.8,12.7,13.8,14.9,16.3,17.7 +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,age,male,length,95,-0.35210000000000002,13.892799999999999,0.08047,11,11.9,12.8,13.9,15.1,16.399999999999999,17.899999999999999 +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,age,male,length,95.5,-0.35210000000000002,14.012,0.080560000000000007,11.1,12,12.9,14,15.2,16.5,18 +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,age,male,length,96,-0.35210000000000002,14.1325,0.080670000000000006,11.2,12.1,13.1,14.1,15.3,16.7,18.2 +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,age,male,length,96.5,-0.35210000000000002,14.2544,0.080780000000000005,11.3,12.2,13.2,14.3,15.5,16.8,18.399999999999999 +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,age,male,length,97,-0.35210000000000002,14.3782,0.080920000000000006,11.4,12.3,13.3,14.4,15.6,17,18.5 +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,age,male,length,97.5,-0.35210000000000002,14.5038,0.081059999999999993,11.5,12.4,13.4,14.5,15.7,17.100000000000001,18.7 +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,age,male,length,98,-0.35210000000000002,14.631600000000001,0.081220000000000001,11.6,12.5,13.5,14.6,15.9,17.3,18.899999999999999 +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,age,male,length,98.5,-0.35210000000000002,14.7614,0.081390000000000004,11.7,12.6,13.6,14.8,16,17.5,19.100000000000001 +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,age,male,length,99,-0.35210000000000002,14.8934,0.081570000000000004,11.8,12.7,13.7,14.9,16.2,17.600000000000001,19.2 +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,age,male,length,99.5,-0.35210000000000002,15.0275,0.081769999999999995,11.9,12.8,13.9,15,16.3,17.8,19.399999999999999 +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,age,male,length,100,-0.35210000000000002,15.1637,0.081979999999999997,12,12.9,14,15.2,16.5,18,19.600000000000001 +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,age,male,length,100.5,-0.35210000000000002,15.3018,0.082199999999999995,12.1,13,14.1,15.3,16.600000000000001,18.100000000000001,19.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,age,male,length,101,-0.35210000000000002,15.4419,0.082430000000000003,12.2,13.2,14.2,15.4,16.8,18.3,20 +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,age,male,length,101.5,-0.35210000000000002,15.5838,0.082669999999999993,12.3,13.3,14.4,15.6,16.899999999999999,18.5,20.2 +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,age,male,length,102,-0.35210000000000002,15.727600000000001,0.082919999999999994,12.4,13.4,14.5,15.7,17.100000000000001,18.7,20.399999999999999 +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,age,male,length,102.5,-0.35210000000000002,15.873200000000001,0.083169999999999994,12.5,13.5,14.6,15.9,17.3,18.8,20.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,age,male,length,103,-0.35210000000000002,16.020600000000002,0.083430000000000004,12.6,13.6,14.8,16,17.399999999999999,19,20.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,age,male,length,103.5,-0.35210000000000002,16.169699999999999,0.083699999999999997,12.7,13.7,14.9,16.2,17.600000000000001,19.2,21 +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,age,male,length,104,-0.35210000000000002,16.320399999999999,0.083970000000000003,12.8,13.9,15,16.3,17.8,19.399999999999999,21.2 +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,age,male,length,104.5,-0.35210000000000002,16.472799999999999,0.084250000000000005,12.9,14,15.2,16.5,17.899999999999999,19.600000000000001,21.5 +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,age,male,length,105,-0.35210000000000002,16.626799999999999,0.084529999999999994,13,14.1,15.3,16.600000000000001,18.100000000000001,19.8,21.7 +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,age,male,length,105.5,-0.35210000000000002,16.782599999999999,0.084809999999999997,13.2,14.2,15.4,16.8,18.3,20,21.9 +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,age,male,length,106,-0.35210000000000002,16.940100000000001,0.085099999999999995,13.3,14.4,15.6,16.899999999999999,18.5,20.2,22.1 +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,age,male,length,106.5,-0.35210000000000002,17.099499999999999,0.085389999999999994,13.4,14.5,15.7,17.100000000000001,18.600000000000001,20.399999999999999,22.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,age,male,length,107,-0.35210000000000002,17.2607,0.085680000000000006,13.5,14.6,15.9,17.3,18.8,20.6,22.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,age,male,length,107.5,-0.35210000000000002,17.4237,0.085989999999999997,13.6,14.7,16,17.399999999999999,19,20.8,22.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,age,male,length,108,-0.35210000000000002,17.5885,0.086290000000000006,13.7,14.9,16.2,17.600000000000001,19.2,21,23.1 +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,age,male,length,108.5,-0.35210000000000002,17.755299999999998,0.086599999999999996,13.8,15,16.3,17.8,19.399999999999999,21.2,23.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,age,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,age,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,age,male,length,110,-0.35210000000000002,18.268899999999999,0.087550000000000003,14.2,15.4,16.8,18.3,20,21.9,24.1 +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,age,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,age,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,age,male,height,66,-0.35210000000000002,7.6673,0.082119999999999999,6.1,6.5,7.1,7.7,8.3000000000000007,9.1,9.9 +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,age,male,height,66.5,-0.35210000000000002,7.7834000000000003,0.082119999999999999,6.1,6.6,7.2,7.8,8.5,9.1999999999999993,10.1 +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,age,male,height,67,-0.35210000000000002,7.8986000000000001,0.082129999999999995,6.2,6.7,7.3,7.9,8.6,9.4,10.199999999999999 +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,age,male,height,67.5,-0.35210000000000002,8.0131999999999994,0.082140000000000005,6.3,6.8,7.4,8,8.6999999999999993,9.5,10.4 +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,age,male,height,68,-0.35210000000000002,8.1272000000000002,0.082170000000000007,6.4,6.9,7.5,8.1,8.8000000000000007,9.6,10.5 +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,age,male,height,68.5,-0.35210000000000002,8.2409999999999997,0.082210000000000005,6.5,7,7.6,8.1999999999999993,9,9.8000000000000007,10.7 +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,age,male,height,69,-0.35210000000000002,8.3546999999999993,0.08226,6.6,7.1,7.7,8.4,9.1,9.9,10.8 +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,age,male,height,69.5,-0.35210000000000002,8.468,0.082309999999999994,6.7,7.2,7.8,8.5,9.1999999999999993,10,11 +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,age,male,height,70,-0.35210000000000002,8.5808,0.082369999999999999,6.8,7.3,7.9,8.6,9.3000000000000007,10.199999999999999,11.1 +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,age,male,height,70.5,-0.35210000000000002,8.6927000000000003,0.082430000000000003,6.9,7.4,8,8.6999999999999993,9.5,10.3,11.3 +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,age,male,height,71,-0.35210000000000002,8.8035999999999994,0.082500000000000004,6.9,7.5,8.1,8.8000000000000007,9.6,10.4,11.4 +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,age,male,height,71.5,-0.35210000000000002,8.9135000000000009,0.082570000000000005,7,7.6,8.1999999999999993,8.9,9.6999999999999993,10.6,11.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,age,male,height,72,-0.35210000000000002,9.0221,0.082640000000000005,7.1,7.7,8.3000000000000007,9,9.8000000000000007,10.7,11.7 +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,age,male,height,72.5,-0.35210000000000002,9.1292000000000009,0.082720000000000002,7.2,7.8,8.4,9.1,9.9,10.8,11.8 +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,age,male,height,73,-0.35210000000000002,9.2347000000000001,0.082780000000000006,7.3,7.9,8.5,9.1999999999999993,10,11,12 +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,age,male,height,73.5,-0.35210000000000002,9.3390000000000004,0.082849999999999993,7.4,7.9,8.6,9.3000000000000007,10.199999999999999,11.1,12.1 +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,age,male,height,74,-0.35210000000000002,9.4420000000000002,0.082919999999999994,7.4,8,8.6999999999999993,9.4,10.3,11.2,12.2 +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,age,male,height,74.5,-0.35210000000000002,9.5437999999999992,0.082979999999999998,7.5,8.1,8.8000000000000007,9.5,10.4,11.3,12.4 +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,age,male,height,75,-0.35210000000000002,9.6440000000000001,0.083030000000000007,7.6,8.1999999999999993,8.9,9.6,10.5,11.4,12.5 +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,age,male,height,75.5,-0.35210000000000002,9.7424999999999997,0.083080000000000001,7.7,8.3000000000000007,9,9.6999999999999993,10.6,11.6,12.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,age,male,height,76,-0.35210000000000002,9.8391999999999999,0.083119999999999999,7.7,8.4,9.1,9.8000000000000007,10.7,11.7,12.8 +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,age,male,height,76.5,-0.35210000000000002,9.9341000000000008,0.083150000000000002,7.8,8.5,9.1999999999999993,9.9,10.8,11.8,12.9 +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,age,male,height,77,-0.35210000000000002,10.0274,0.083169999999999994,7.9,8.5,9.1999999999999993,10,10.9,11.9,13 +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,age,male,height,77.5,-0.35210000000000002,10.119400000000001,0.083180000000000004,8,8.6,9.3000000000000007,10.1,11,12,13.1 +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,age,male,height,78,-0.35210000000000002,10.2105,0.083169999999999994,8,8.6999999999999993,9.4,10.199999999999999,11.1,12.1,13.3 +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,age,male,height,78.5,-0.35210000000000002,10.3012,0.083150000000000002,8.1,8.8000000000000007,9.5,10.3,11.2,12.2,13.4 +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,age,male,height,79,-0.35210000000000002,10.392300000000001,0.083110000000000003,8.1999999999999993,8.8000000000000007,9.6,10.4,11.3,12.3,13.5 +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,age,male,height,79.5,-0.35210000000000002,10.484500000000001,0.083049999999999999,8.3000000000000007,8.9,9.6999999999999993,10.5,11.4,12.4,13.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,age,male,height,80,-0.35210000000000002,10.578099999999999,0.082979999999999998,8.3000000000000007,9,9.6999999999999993,10.6,11.5,12.6,13.7 +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,age,male,height,80.5,-0.35210000000000002,10.6737,0.082900000000000001,8.4,9.1,9.8000000000000007,10.7,11.6,12.7,13.8 +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,age,male,height,81,-0.35210000000000002,10.771800000000001,0.082790000000000002,8.5,9.1999999999999993,9.9,10.8,11.7,12.8,14 +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,age,male,height,81.5,-0.35210000000000002,10.8728,0.082680000000000003,8.6,9.3000000000000007,10,10.9,11.8,12.9,14.1 +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,age,male,height,82,-0.35210000000000002,10.9772,0.082549999999999998,8.6999999999999993,9.3000000000000007,10.1,11,11.9,13,14.2 +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,age,male,height,82.5,-0.35210000000000002,11.085100000000001,0.082409999999999997,8.6999999999999993,9.4,10.199999999999999,11.1,12.1,13.1,14.4 +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,age,male,height,83,-0.35210000000000002,11.1966,0.082250000000000004,8.8000000000000007,9.5,10.3,11.2,12.2,13.3,14.5 +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,age,male,height,83.5,-0.35210000000000002,11.311400000000001,0.082089999999999996,8.9,9.6,10.4,11.3,12.3,13.4,14.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,age,male,height,84,-0.35210000000000002,11.429,0.081909999999999997,9,9.6999999999999993,10.5,11.4,12.4,13.5,14.8 +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,age,male,height,84.5,-0.35210000000000002,11.548999999999999,0.081739999999999993,9.1,9.9,10.7,11.5,12.5,13.7,14.9 +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,age,male,height,85,-0.35210000000000002,11.6707,0.081559999999999994,9.1999999999999993,10,10.8,11.7,12.7,13.8,15.1 +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,age,male,height,85.5,-0.35210000000000002,11.793699999999999,0.081379999999999994,9.3000000000000007,10.1,10.9,11.8,12.8,13.9,15.2 +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,age,male,height,86,-0.35210000000000002,11.917299999999999,0.081210000000000004,9.4,10.199999999999999,11,11.9,12.9,14.1,15.4 +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,age,male,height,86.5,-0.35210000000000002,12.0411,0.081049999999999997,9.5,10.3,11.1,12,13.1,14.2,15.5 +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,age,male,height,87,-0.35210000000000002,12.1645,0.0809,9.6,10.4,11.2,12.2,13.2,14.4,15.7 +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,age,male,height,87.5,-0.35210000000000002,12.287100000000001,0.080759999999999998,9.6999999999999993,10.5,11.3,12.3,13.3,14.5,15.8 +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,age,male,height,88,-0.35210000000000002,12.408899999999999,0.080640000000000003,9.8000000000000007,10.6,11.5,12.4,13.5,14.7,16 +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,age,male,height,88.5,-0.35210000000000002,12.5298,0.08054,9.9,10.7,11.6,12.5,13.6,14.8,16.100000000000001 +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,age,male,height,89,-0.35210000000000002,12.6495,0.080449999999999994,10,10.8,11.7,12.6,13.7,14.9,16.3 +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,age,male,height,89.5,-0.35210000000000002,12.7683,0.080379999999999993,10.1,10.9,11.8,12.8,13.9,15.1,16.399999999999999 +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,age,male,height,90,-0.35210000000000002,12.8864,0.080320000000000003,10.199999999999999,11,11.9,12.9,14,15.2,16.600000000000001 +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,age,male,height,90.5,-0.35210000000000002,13.0038,0.080280000000000004,10.3,11.1,12,13,14.1,15.3,16.7 +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,age,male,height,91,-0.35210000000000002,13.120900000000001,0.080250000000000002,10.4,11.2,12.1,13.1,14.2,15.5,16.899999999999999 +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,age,male,height,91.5,-0.35210000000000002,13.2376,0.080240000000000006,10.5,11.3,12.2,13.2,14.4,15.6,17 +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,age,male,height,92,-0.35210000000000002,13.354100000000001,0.080250000000000002,10.6,11.4,12.3,13.4,14.5,15.8,17.2 +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,age,male,height,92.5,-0.35210000000000002,13.470499999999999,0.080269999999999994,10.7,11.5,12.4,13.5,14.6,15.9,17.3 +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,age,male,height,93,-0.35210000000000002,13.587,0.080310000000000006,10.8,11.6,12.6,13.6,14.7,16,17.5 +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,age,male,height,93.5,-0.35210000000000002,13.7041,0.080360000000000001,10.9,11.7,12.7,13.7,14.9,16.2,17.600000000000001 +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,age,male,height,94,-0.35210000000000002,13.8217,0.080430000000000001,11,11.8,12.8,13.8,15,16.3,17.8 +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,age,male,height,94.5,-0.35210000000000002,13.940300000000001,0.080509999999999998,11.1,11.9,12.9,13.9,15.1,16.5,17.899999999999999 +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,age,male,height,95,-0.35210000000000002,14.06,0.080600000000000005,11.1,12,13,14.1,15.3,16.600000000000001,18.100000000000001 +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,age,male,height,95.5,-0.35210000000000002,14.181100000000001,0.080710000000000004,11.2,12.1,13.1,14.2,15.4,16.7,18.3 +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,age,male,height,96,-0.35210000000000002,14.303699999999999,0.080829999999999999,11.3,12.2,13.2,14.3,15.5,16.899999999999999,18.399999999999999 +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,age,male,height,96.5,-0.35210000000000002,14.4282,0.08097,11.4,12.3,13.3,14.4,15.7,17,18.600000000000001 +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,age,male,height,97,-0.35210000000000002,14.5547,0.081119999999999998,11.5,12.4,13.4,14.6,15.8,17.2,18.8 +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,age,male,height,97.5,-0.35210000000000002,14.683199999999999,0.081290000000000001,11.6,12.5,13.6,14.7,15.9,17.399999999999999,18.899999999999999 +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,age,male,height,98,-0.35210000000000002,14.814,0.081460000000000005,11.7,12.6,13.7,14.8,16.100000000000001,17.5,19.100000000000001 +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,age,male,height,98.5,-0.35210000000000002,14.9468,0.08165,11.8,12.8,13.8,14.9,16.2,17.7,19.3 +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,age,male,height,99,-0.35210000000000002,15.081799999999999,0.081850000000000006,11.9,12.9,13.9,15.1,16.399999999999999,17.899999999999999,19.5 +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,age,male,height,99.5,-0.35210000000000002,15.2187,0.082059999999999994,12,13,14,15.2,16.5,18,19.7 +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,age,male,height,100,-0.35210000000000002,15.3576,0.082290000000000002,12.1,13.1,14.2,15.4,16.7,18.2,19.899999999999999 +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,age,male,height,100.5,-0.35210000000000002,15.4985,0.082519999999999996,12.2,13.2,14.3,15.5,16.899999999999999,18.399999999999999,20.100000000000001 +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,age,male,height,101,-0.35210000000000002,15.6412,0.082769999999999996,12.3,13.3,14.4,15.6,17,18.5,20.3 +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,age,male,height,101.5,-0.35210000000000002,15.7857,0.083019999999999997,12.4,13.4,14.5,15.8,17.2,18.7,20.5 +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,age,male,height,102,-0.35210000000000002,15.932,0.083280000000000007,12.5,13.6,14.7,15.9,17.3,18.899999999999999,20.7 +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,age,male,height,102.5,-0.35210000000000002,16.080100000000002,0.083540000000000003,12.6,13.7,14.8,16.100000000000001,17.5,19.100000000000001,20.9 +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,age,male,height,103,-0.35210000000000002,16.229800000000001,0.083809999999999996,12.8,13.8,14.9,16.2,17.7,19.3,21.1 +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,age,male,height,103.5,-0.35210000000000002,16.3812,0.084080000000000002,12.9,13.9,15.1,16.399999999999999,17.8,19.5,21.3 +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,age,male,height,104,-0.35210000000000002,16.534199999999998,0.084360000000000004,13,14,15.2,16.5,18,19.7,21.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,age,male,height,104.5,-0.35210000000000002,16.6889,0.084640000000000007,13.1,14.2,15.4,16.7,18.2,19.899999999999999,21.8 +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,age,male,height,105,-0.35210000000000002,16.845400000000001,0.084930000000000005,13.2,14.3,15.5,16.8,18.399999999999999,20.100000000000001,22 +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,age,male,height,105.5,-0.35210000000000002,17.003599999999999,0.085209999999999994,13.3,14.4,15.6,17,18.5,20.3,22.2 +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,age,male,height,106,-0.35210000000000002,17.163699999999999,0.085510000000000003,13.4,14.5,15.8,17.2,18.7,20.5,22.5 +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,age,male,height,106.5,-0.35210000000000002,17.325600000000001,0.085800000000000001,13.5,14.7,15.9,17.3,18.899999999999999,20.7,22.7 +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,age,male,height,107,-0.35210000000000002,17.4894,0.086110000000000006,13.7,14.8,16.100000000000001,17.5,19.100000000000001,20.9,22.9 +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,age,male,height,107.5,-0.35210000000000002,17.655000000000001,0.086410000000000001,13.8,14.9,16.2,17.7,19.3,21.1,23.2 +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,age,male,height,108,-0.35210000000000002,17.822600000000001,0.086730000000000002,13.9,15.1,16.399999999999999,17.8,19.5,21.3,23.4 +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,age,male,height,108.5,-0.35210000000000002,17.9924,0.087040000000000006,14,15.2,16.5,18,19.7,21.5,23.7 +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,age,male,height,109,-0.35210000000000002,18.1645,0.087359999999999993,14.1,15.3,16.7,18.2,19.8,21.8,23.9 +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,age,male,height,109.5,-0.35210000000000002,18.338999999999999,0.087679999999999994,14.3,15.5,16.8,18.3,20,22,24.2 +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,age,male,height,110,-0.35210000000000002,18.515799999999999,0.087999999999999995,14.4,15.6,17,18.5,20.2,22.2,24.4 +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,age,male,height,110.5,-0.35210000000000002,18.694800000000001,0.088319999999999996,14.5,15.8,17.100000000000001,18.7,20.399999999999999,22.4,24.7 +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,age,male,height,111,-0.35210000000000002,18.875900000000001,0.088639999999999997,14.6,15.9,17.3,18.899999999999999,20.7,22.7,25 +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,age,male,height,111.5,-0.35210000000000002,19.059000000000001,0.088959999999999997,14.8,16,17.5,19.100000000000001,20.9,22.9,25.2 +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,age,male,height,112,-0.35210000000000002,19.2439,0.089279999999999998,14.9,16.2,17.600000000000001,19.2,21.1,23.1,25.5 +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,age,male,height,112.5,-0.35210000000000002,19.430399999999999,0.089599999999999999,15,16.3,17.8,19.399999999999999,21.3,23.4,25.8 +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,age,male,height,113,-0.35210000000000002,19.618500000000001,0.089910000000000004,15.2,16.5,18,19.600000000000001,21.5,23.6,26 +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,age,male,height,113.5,-0.35210000000000002,19.8081,0.090219999999999995,15.3,16.600000000000001,18.100000000000001,19.8,21.7,23.9,26.3 +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,age,male,height,114,-0.35210000000000002,19.998999999999999,0.090539999999999995,15.4,16.8,18.3,20,21.9,24.1,26.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,age,male,height,114.5,-0.35210000000000002,20.191199999999998,0.09085,15.6,16.899999999999999,18.5,20.2,22.1,24.4,26.9 +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,age,male,height,115,-0.35210000000000002,20.384599999999999,0.091160000000000005,15.7,17.100000000000001,18.600000000000001,20.399999999999999,22.4,24.6,27.2 +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,age,male,height,115.5,-0.35210000000000002,20.578900000000001,0.091469999999999996,15.8,17.2,18.8,20.6,22.6,24.9,27.5 +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,age,male,height,116,-0.35210000000000002,20.774100000000001,0.091770000000000004,16,17.399999999999999,19,20.8,22.8,25.1,27.8 +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,age,male,height,116.5,-0.35210000000000002,20.97,0.092079999999999995,16.100000000000001,17.5,19.2,21,23,25.4,28 +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,age,male,height,117,-0.35210000000000002,21.166599999999999,0.09239,16.2,17.7,19.3,21.2,23.3,25.6,28.3 +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,age,male,height,117.5,-0.35210000000000002,21.363600000000002,0.092700000000000005,16.399999999999999,17.899999999999999,19.5,21.4,23.5,25.9,28.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,age,male,height,118,-0.35210000000000002,21.5611,0.092999999999999999,16.5,18,19.7,21.6,23.7,26.1,28.9 +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,age,male,height,118.5,-0.35210000000000002,21.758800000000001,0.093310000000000004,16.7,18.2,19.899999999999999,21.8,23.9,26.4,29.2 +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,age,male,height,119,-0.35210000000000002,21.956800000000001,0.093619999999999995,16.8,18.3,20,22,24.1,26.6,29.5 +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,age,male,height,119.5,-0.35210000000000002,22.154900000000001,0.09393,16.899999999999999,18.5,20.2,22.2,24.4,26.9,29.8 +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,age,male,height,120,-0.35210000000000002,22.353000000000002,0.094240000000000004,17.100000000000001,18.600000000000001,20.399999999999999,22.4,24.6,27.2,30.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,45,-0.38329999999999997,2.4607000000000001,0.090289999999999995,1.9019999999999999,2.0659999999999998,2.2519999999999998,2.4609999999999999,2.698,2.9670000000000001,3.2749999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,45.1,-0.38329999999999997,2.4777,0.090300000000000005,1.915,2.081,2.2669999999999999,2.4780000000000002,2.7160000000000002,2.988,3.298 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,45.2,-0.38329999999999997,2.4946999999999999,0.090300000000000005,1.9279999999999999,2.0950000000000002,2.2829999999999999,2.4950000000000001,2.7349999999999999,3.008,3.3210000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,45.3,-0.38329999999999997,2.5116999999999998,0.090310000000000001,1.9410000000000001,2.109,2.298,2.512,2.7530000000000001,3.0289999999999999,3.343 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,45.4,-0.38329999999999997,2.5287000000000002,0.090319999999999998,1.954,2.1230000000000002,2.3140000000000001,2.5289999999999999,2.7719999999999998,3.0489999999999999,3.3660000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,45.5,-0.38329999999999997,2.5457000000000001,0.090329999999999994,1.9670000000000001,2.1379999999999999,2.3290000000000002,2.5459999999999998,2.7909999999999999,3.07,3.3889999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,45.6,-0.38329999999999997,2.5627,0.090329999999999994,1.98,2.1520000000000001,2.3450000000000002,2.5630000000000002,2.8090000000000002,3.09,3.4119999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,45.7,-0.38329999999999997,2.5796999999999999,0.090340000000000004,1.9930000000000001,2.1659999999999999,2.36,2.58,2.8279999999999998,3.1110000000000002,3.4340000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,45.8,-0.38329999999999997,2.5966999999999998,0.09035,2.0059999999999998,2.1800000000000002,2.3759999999999999,2.597,2.847,3.1309999999999998,3.4569999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,45.9,-0.38329999999999997,2.6137000000000001,0.090359999999999996,2.02,2.1949999999999998,2.3919999999999999,2.6139999999999999,2.8650000000000002,3.1520000000000001,3.48 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,46,-0.38329999999999997,2.6305999999999998,0.090370000000000006,2.0329999999999999,2.2090000000000001,2.407,2.6309999999999998,2.8839999999999999,3.1720000000000002,3.5019999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,46.1,-0.38329999999999997,2.6476000000000002,0.090370000000000006,2.0459999999999998,2.2229999999999999,2.423,2.6480000000000001,2.903,3.1930000000000001,3.5249999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,46.2,-0.38329999999999997,2.6646000000000001,0.090380000000000002,2.0590000000000002,2.2370000000000001,2.4380000000000002,2.665,2.9209999999999998,3.214,3.548 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,46.3,-0.38329999999999997,2.6816,0.090389999999999998,2.0720000000000001,2.2519999999999998,2.4540000000000002,2.6819999999999999,2.94,3.234,3.5710000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,46.4,-0.38329999999999997,2.6985999999999999,0.090399999999999994,2.085,2.266,2.4689999999999999,2.6989999999999998,2.9590000000000001,3.2549999999999999,3.593 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,46.5,-0.38329999999999997,2.7155,0.090399999999999994,2.0979999999999999,2.2799999999999998,2.4849999999999999,2.7160000000000002,2.9769999999999999,3.2749999999999999,3.6160000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,46.6,-0.38329999999999997,2.7326000000000001,0.090410000000000004,2.1110000000000002,2.294,2.5,2.7330000000000001,2.996,3.2959999999999998,3.6389999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,46.7,-0.38329999999999997,2.7496,0.09042,2.1240000000000001,2.3090000000000002,2.516,2.75,3.0150000000000001,3.3159999999999998,3.6619999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,46.8,-0.38329999999999997,2.7665999999999999,0.090429999999999996,2.137,2.323,2.5310000000000001,2.7669999999999999,3.0329999999999999,3.3370000000000002,3.6840000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,46.9,-0.38329999999999997,2.7837000000000001,0.090440000000000006,2.15,2.3370000000000002,2.5470000000000002,2.7839999999999998,3.052,3.3580000000000001,3.7069999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,47,-0.38329999999999997,2.8007,0.090440000000000006,2.1640000000000001,2.351,2.5619999999999998,2.8010000000000002,3.0710000000000002,3.3780000000000001,3.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,47.1,-0.38329999999999997,2.8178999999999998,0.090450000000000003,2.177,2.3660000000000001,2.5779999999999998,2.8180000000000001,3.09,3.399,3.7530000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,47.2,-0.38329999999999997,2.835,0.090459999999999999,2.19,2.38,2.5939999999999999,2.835,3.1080000000000001,3.42,3.7759999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,47.3,-0.38329999999999997,2.8521999999999998,0.090469999999999995,2.2029999999999998,2.3940000000000001,2.609,2.8519999999999999,3.1269999999999998,3.44,3.7989999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,47.4,-0.38329999999999997,2.8694000000000002,0.090469999999999995,2.2160000000000002,2.4089999999999998,2.625,2.8690000000000002,3.1459999999999999,3.4609999999999999,3.8220000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,47.5,-0.38329999999999997,2.8866999999999998,0.090480000000000005,2.23,2.423,2.641,2.887,3.165,3.4820000000000002,3.8450000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,47.6,-0.38329999999999997,2.9041000000000001,0.090490000000000001,2.2429999999999999,2.4380000000000002,2.657,2.9039999999999999,3.1840000000000002,3.5030000000000001,3.8679999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,47.7,-0.38329999999999997,2.9215,0.090499999999999997,2.2559999999999998,2.452,2.673,2.9220000000000002,3.2029999999999998,3.524,3.891 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,47.8,-0.38329999999999997,2.9390000000000001,0.090499999999999997,2.27,2.4670000000000001,2.6890000000000001,2.9390000000000001,3.2229999999999999,3.5449999999999999,3.915 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,47.9,-0.38329999999999997,2.9565000000000001,0.090509999999999993,2.2829999999999999,2.4820000000000002,2.7050000000000001,2.956,3.242,3.5670000000000002,3.9380000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,48,-0.38329999999999997,2.9741,0.090520000000000003,2.2970000000000002,2.4969999999999999,2.7210000000000001,2.9740000000000002,3.2610000000000001,3.5880000000000001,3.9620000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,48.1,-0.38329999999999997,2.9918,0.090529999999999999,2.3109999999999999,2.5110000000000001,2.7370000000000001,2.992,3.2810000000000001,3.609,3.9860000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,48.2,-0.38329999999999997,3.0095999999999998,0.090539999999999995,2.3239999999999998,2.5259999999999998,2.7530000000000001,3.01,3.3,3.6309999999999998,4.0090000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,48.3,-0.38329999999999997,3.0274999999999999,0.090539999999999995,2.3380000000000001,2.5409999999999999,2.77,3.028,3.32,3.6520000000000001,4.0330000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,48.4,-0.38329999999999997,3.0455000000000001,0.090550000000000005,2.3519999999999999,2.556,2.786,3.0459999999999998,3.34,3.6739999999999999,4.0570000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,48.5,-0.38329999999999997,3.0636000000000001,0.090560000000000002,2.3660000000000001,2.5710000000000002,2.8029999999999999,3.0640000000000001,3.359,3.6960000000000002,4.0819999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,48.6,-0.38329999999999997,3.0817999999999999,0.090569999999999998,2.38,2.5870000000000002,2.819,3.0819999999999999,3.379,3.718,4.1059999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,48.7,-0.38329999999999997,3.1000999999999999,0.090569999999999998,2.3940000000000001,2.6019999999999999,2.8359999999999999,3.1,3.399,3.74,4.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,48.8,-0.38329999999999997,3.1185999999999998,0.090579999999999994,2.4079999999999999,2.6179999999999999,2.8530000000000002,3.1190000000000002,3.42,3.7629999999999999,4.1550000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,48.9,-0.38329999999999997,3.1372,0.090590000000000004,2.423,2.633,2.87,3.137,3.44,3.7850000000000001,4.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,49,-0.38329999999999997,3.1560000000000001,0.0906,2.4369999999999998,2.649,2.887,3.1560000000000001,3.4609999999999999,3.8079999999999998,4.2050000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,49.1,-0.38329999999999997,3.1749000000000001,0.090609999999999996,2.4510000000000001,2.665,2.9039999999999999,3.1749999999999998,3.4820000000000002,3.831,4.2309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,49.2,-0.38329999999999997,3.1939000000000002,0.090609999999999996,2.4660000000000002,2.681,2.9220000000000002,3.194,3.5019999999999998,3.8540000000000001,4.2560000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,49.3,-0.38329999999999997,3.2130999999999998,0.090620000000000006,2.4809999999999999,2.6970000000000001,2.9390000000000001,3.2130000000000001,3.524,3.8769999999999998,4.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,49.4,-0.38329999999999997,3.2324999999999999,0.090630000000000002,2.496,2.7130000000000001,2.9569999999999999,3.2320000000000002,3.5449999999999999,3.9009999999999998,4.3079999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,49.5,-0.38329999999999997,3.2519999999999998,0.090639999999999998,2.5110000000000001,2.7290000000000001,2.9750000000000001,3.2519999999999998,3.5659999999999998,3.9239999999999999,4.3339999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,49.6,-0.38329999999999997,3.2717000000000001,0.090649999999999994,2.5259999999999998,2.746,2.9929999999999999,3.2719999999999998,3.5880000000000001,3.948,4.3600000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,49.7,-0.38329999999999997,3.2915000000000001,0.090649999999999994,2.5409999999999999,2.762,3.0110000000000001,3.2919999999999998,3.61,3.972,4.3869999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,49.8,-0.38329999999999997,3.3113999999999999,0.090660000000000004,2.5569999999999999,2.7789999999999999,3.0289999999999999,3.3109999999999999,3.6309999999999998,3.996,4.4130000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,49.9,-0.38329999999999997,3.3315999999999999,0.090670000000000001,2.5720000000000001,2.7959999999999998,3.048,3.3319999999999999,3.6539999999999999,4.0199999999999996,4.4400000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,50,-0.38329999999999997,3.3517999999999999,0.090679999999999997,2.5880000000000001,2.8130000000000002,3.0659999999999998,3.3519999999999999,3.6760000000000002,4.0449999999999999,4.4669999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,50.1,-0.38329999999999997,3.3723000000000001,0.090690000000000007,2.6030000000000002,2.83,3.085,3.3719999999999999,3.698,4.07,4.4950000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,50.2,-0.38329999999999997,3.3929,0.090690000000000007,2.6190000000000002,2.847,3.1040000000000001,3.3929999999999998,3.7210000000000001,4.0949999999999998,4.5220000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,50.3,-0.38329999999999997,3.4136000000000002,0.090700000000000003,2.6349999999999998,2.8650000000000002,3.1219999999999999,3.4140000000000001,3.7440000000000002,4.12,4.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,50.4,-0.38329999999999997,3.4346000000000001,0.090709999999999999,2.6509999999999998,2.8820000000000001,3.1419999999999999,3.4350000000000001,3.7669999999999999,4.1449999999999996,4.5780000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,50.5,-0.38329999999999997,3.4557000000000002,0.090719999999999995,2.6680000000000001,2.9,3.161,3.456,3.79,4.1710000000000003,4.6059999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,50.6,-0.38329999999999997,3.4769000000000001,0.090730000000000005,2.6840000000000002,2.9169999999999998,3.18,3.4769999999999999,3.8130000000000002,4.1959999999999997,4.6349999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,50.7,-0.38329999999999997,3.4983,0.090740000000000001,2.7,2.9350000000000001,3.2,3.4980000000000002,3.8370000000000002,4.2220000000000004,4.6639999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,50.8,-0.38329999999999997,3.5198999999999998,0.090740000000000001,2.7170000000000001,2.9529999999999998,3.22,3.52,3.86,4.2480000000000002,4.6920000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,50.9,-0.38329999999999997,3.5417000000000001,0.090749999999999997,2.734,2.972,3.2389999999999999,3.5419999999999998,3.8839999999999999,4.2750000000000004,4.7220000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,51,-0.38329999999999997,3.5636000000000001,0.090759999999999993,2.75,2.99,3.2589999999999999,3.5640000000000001,3.9079999999999999,4.3010000000000002,4.7510000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,51.1,-0.38329999999999997,3.5855999999999999,0.090770000000000003,2.7669999999999999,3.008,3.28,3.5859999999999999,3.9329999999999998,4.3280000000000003,4.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,51.2,-0.38329999999999997,3.6078000000000001,0.09078,2.7839999999999998,3.0270000000000001,3.3,3.6080000000000001,3.9569999999999999,4.3550000000000004,4.8099999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,51.3,-0.38329999999999997,3.6301999999999999,0.090789999999999996,2.802,3.0459999999999998,3.32,3.63,3.9820000000000002,4.3819999999999997,4.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,51.4,-0.38329999999999997,3.6526999999999998,0.090800000000000006,2.819,3.0649999999999999,3.3410000000000002,3.653,4.0060000000000002,4.4089999999999998,4.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,51.5,-0.38329999999999997,3.6753999999999998,0.090800000000000006,2.8359999999999999,3.0840000000000001,3.3620000000000001,3.6749999999999998,4.0309999999999997,4.4370000000000003,4.9009999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,51.6,-0.38329999999999997,3.6981999999999999,0.090810000000000002,2.8540000000000001,3.1030000000000002,3.3820000000000001,3.698,4.056,4.4640000000000004,4.931 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,51.7,-0.38329999999999997,3.7212000000000001,0.090819999999999998,2.8719999999999999,3.1219999999999999,3.403,3.7210000000000001,4.0819999999999999,4.492,4.9619999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,51.8,-0.38329999999999997,3.7444000000000002,0.090829999999999994,2.8889999999999998,3.141,3.4249999999999998,3.7440000000000002,4.1070000000000002,4.5199999999999996,4.9930000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,51.9,-0.38329999999999997,3.7677,0.090840000000000004,2.907,3.161,3.4460000000000002,3.7679999999999998,4.133,4.548,5.024 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,52,-0.38329999999999997,3.7911000000000001,0.09085,2.9249999999999998,3.18,3.4670000000000001,3.7909999999999999,4.1580000000000004,4.577,5.056 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,52.1,-0.38329999999999997,3.8147000000000002,0.090859999999999996,2.944,3.2,3.4889999999999999,3.8149999999999999,4.1840000000000002,4.6050000000000004,5.0869999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,52.2,-0.38329999999999997,3.8384999999999998,0.090859999999999996,2.9620000000000002,3.22,3.5110000000000001,3.8380000000000001,4.21,4.6340000000000003,5.1189999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,52.3,-0.38329999999999997,3.8622999999999998,0.090870000000000006,2.98,3.24,3.532,3.8620000000000001,4.2370000000000001,4.6630000000000003,5.1509999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,52.4,-0.38329999999999997,3.8862999999999999,0.090880000000000002,2.9990000000000001,3.26,3.5539999999999998,3.8860000000000001,4.2629999999999999,4.6920000000000002,5.1829999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,52.5,-0.38329999999999997,3.9104999999999999,0.090889999999999999,3.0169999999999999,3.28,3.5760000000000001,3.91,4.29,4.7210000000000001,5.2160000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,52.6,-0.38329999999999997,3.9348000000000001,0.090899999999999995,3.036,3.3010000000000002,3.5979999999999999,3.9350000000000001,4.3159999999999998,4.7510000000000003,5.2480000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,52.7,-0.38329999999999997,3.9592000000000001,0.090910000000000005,3.0550000000000002,3.3210000000000002,3.621,3.9590000000000001,4.343,4.78,5.2809999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,52.8,-0.38329999999999997,3.9836999999999998,0.090920000000000001,3.073,3.3420000000000001,3.6429999999999998,3.984,4.37,4.8099999999999996,5.3140000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,52.9,-0.38329999999999997,4.0084,0.090929999999999997,3.0920000000000001,3.3620000000000001,3.6659999999999999,4.008,4.3970000000000002,4.84,5.3470000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,53,-0.38329999999999997,4.0331999999999999,0.090929999999999997,3.1120000000000001,3.383,3.6880000000000002,4.0330000000000004,4.4240000000000004,4.87,5.38 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,53.1,-0.38329999999999997,4.0580999999999996,0.090939999999999993,3.1309999999999998,3.4039999999999999,3.7109999999999999,4.0579999999999998,4.452,4.9000000000000004,5.4130000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,53.2,-0.38329999999999997,4.0831999999999997,0.090950000000000003,3.15,3.4249999999999998,3.734,4.0830000000000002,4.4790000000000001,4.93,5.4470000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,53.3,-0.38329999999999997,4.1083999999999996,0.090959999999999999,3.169,3.4460000000000002,3.7570000000000001,4.1079999999999997,4.5069999999999997,4.9610000000000003,5.4809999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,53.4,-0.38329999999999997,4.1337000000000002,0.090969999999999995,3.1890000000000001,3.4670000000000001,3.78,4.1340000000000003,4.5350000000000001,4.992,5.5149999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,53.5,-0.38329999999999997,4.1590999999999996,0.090980000000000005,3.2080000000000002,3.488,3.8029999999999999,4.1589999999999998,4.5629999999999997,5.0220000000000002,5.5490000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,53.6,-0.38329999999999997,4.1845999999999997,0.090990000000000001,3.2280000000000002,3.51,3.827,4.1849999999999996,4.5910000000000002,5.0529999999999999,5.5830000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,53.7,-0.38329999999999997,4.2102000000000004,0.090990000000000001,3.2480000000000002,3.5310000000000001,3.85,4.21,4.6189999999999998,5.0839999999999996,5.617 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,53.8,-0.38329999999999997,4.2359,0.090999999999999998,3.2669999999999999,3.5529999999999999,3.8730000000000002,4.2359999999999998,4.6470000000000002,5.1150000000000002,5.6520000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,53.9,-0.38329999999999997,4.2617000000000003,0.091009999999999994,3.2869999999999999,3.5739999999999998,3.8969999999999998,4.2619999999999996,4.6749999999999998,5.1470000000000002,5.6859999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,54,-0.38329999999999997,4.2874999999999996,0.091020000000000004,3.3069999999999999,3.5960000000000001,3.9209999999999998,4.2880000000000003,4.7039999999999997,5.1779999999999999,5.7210000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,54.1,-0.38329999999999997,4.3135000000000003,0.09103,3.327,3.617,3.944,4.3140000000000001,4.7320000000000002,5.2089999999999996,5.7560000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,54.2,-0.38329999999999997,4.3395000000000001,0.091039999999999996,3.347,3.6389999999999998,3.968,4.34,4.7610000000000001,5.2409999999999997,5.7910000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,54.3,-0.38329999999999997,4.3654999999999999,0.091050000000000006,3.367,3.661,3.992,4.3659999999999997,4.7889999999999997,5.2720000000000002,5.8259999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,54.4,-0.38329999999999997,4.3917000000000002,0.091050000000000006,3.387,3.6829999999999998,4.016,4.3920000000000003,4.8179999999999996,5.3040000000000003,5.8609999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,54.5,-0.38329999999999997,4.4179000000000004,0.091060000000000002,3.407,3.7050000000000001,4.04,4.4180000000000001,4.8470000000000004,5.3360000000000003,5.8959999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,54.6,-0.38329999999999997,4.4442000000000004,0.091069999999999998,3.427,3.7269999999999999,4.0640000000000001,4.444,4.8760000000000003,5.3680000000000003,5.931 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,54.7,-0.38329999999999997,4.4705000000000004,0.091079999999999994,3.4470000000000001,3.7490000000000001,4.0880000000000001,4.47,4.9050000000000002,5.4,5.9660000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,54.8,-0.38329999999999997,4.4969000000000001,0.091090000000000004,3.468,3.7709999999999999,4.1120000000000001,4.4969999999999999,4.9340000000000002,5.4320000000000004,6.0019999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,54.9,-0.38329999999999997,4.5232999999999999,0.091090000000000004,3.488,3.7930000000000001,4.1360000000000001,4.5229999999999997,4.9630000000000001,5.4640000000000004,6.0369999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,55,-0.38329999999999997,4.5498000000000003,0.0911,3.508,3.8149999999999999,4.16,4.55,4.992,5.4960000000000004,6.0730000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,55.1,-0.38329999999999997,4.5762999999999998,0.091109999999999997,3.5289999999999999,3.8370000000000002,4.1840000000000002,4.5759999999999996,5.0209999999999999,5.5279999999999996,6.1079999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,55.2,-0.38329999999999997,4.6029,0.091120000000000007,3.5489999999999999,3.859,4.2089999999999996,4.6029999999999998,5.05,5.56,6.1440000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,55.3,-0.38329999999999997,4.6295000000000002,0.091130000000000003,3.57,3.8820000000000001,4.2329999999999997,4.63,5.0789999999999997,5.5919999999999996,6.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,55.4,-0.38329999999999997,4.6561000000000003,0.091130000000000003,3.59,3.9039999999999999,4.2569999999999997,4.6559999999999997,5.109,5.6239999999999997,6.2149999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,55.5,-0.38329999999999997,4.6826999999999996,0.091139999999999999,3.6110000000000002,3.9260000000000002,4.2809999999999997,4.6829999999999998,5.1379999999999999,5.657,6.2510000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,55.6,-0.38329999999999997,4.7093999999999996,0.091149999999999995,3.6309999999999998,3.9489999999999998,4.306,4.7089999999999996,5.1669999999999998,5.6890000000000001,6.2869999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,55.7,-0.38329999999999997,4.7361000000000004,0.091160000000000005,3.6520000000000001,3.9710000000000001,4.33,4.7359999999999998,5.1970000000000001,5.7210000000000001,6.3230000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,55.8,-0.38329999999999997,4.7628000000000004,0.091160000000000005,3.6720000000000002,3.9929999999999999,4.3550000000000004,4.7629999999999999,5.226,5.7539999999999996,6.3579999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,55.9,-0.38329999999999997,4.7895000000000003,0.091170000000000001,3.6930000000000001,4.016,4.3789999999999996,4.79,5.2549999999999999,5.7859999999999996,6.3940000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,56,-0.38329999999999997,4.8162000000000003,0.091179999999999997,3.7130000000000001,4.0380000000000003,4.4029999999999996,4.8159999999999998,5.2850000000000001,5.8179999999999996,6.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,56.1,-0.38329999999999997,4.843,0.091189999999999993,3.734,4.0599999999999996,4.4279999999999999,4.843,5.3140000000000001,5.851,6.4660000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,56.2,-0.38329999999999997,4.8696999999999999,0.091189999999999993,3.754,4.0830000000000002,4.452,4.87,5.343,5.883,6.5019999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,56.3,-0.38329999999999997,4.8963999999999999,0.091200000000000003,3.7749999999999999,4.1050000000000004,4.4770000000000003,4.8959999999999999,5.3730000000000002,5.9160000000000004,6.5369999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,56.4,-0.38329999999999997,4.9231999999999996,0.091209999999999999,3.7949999999999999,4.1269999999999998,4.5010000000000003,4.923,5.4020000000000001,5.9480000000000004,6.5730000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,56.5,-0.38329999999999997,4.95,0.091209999999999999,3.8159999999999998,4.1500000000000004,4.5259999999999998,4.95,5.4320000000000004,5.98,6.609 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,56.6,-0.38329999999999997,4.9767000000000001,0.091219999999999996,3.8359999999999999,4.1719999999999997,4.55,4.9770000000000003,5.4610000000000003,6.0129999999999999,6.6449999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,56.7,-0.38329999999999997,5.0034000000000001,0.091230000000000006,3.8570000000000002,4.194,4.5739999999999998,5.0030000000000001,5.49,6.0449999999999999,6.681 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,56.8,-0.38329999999999997,5.0301999999999998,0.091230000000000006,3.8780000000000001,4.2169999999999996,4.5990000000000002,5.03,5.52,6.0780000000000003,6.7169999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,56.9,-0.38329999999999997,5.0568999999999997,0.091240000000000002,3.8980000000000001,4.2389999999999999,4.6230000000000002,5.0570000000000004,5.5490000000000004,6.11,6.7530000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,57,-0.38329999999999997,5.0837000000000003,0.091249999999999998,3.919,4.2619999999999996,4.6479999999999997,5.0839999999999996,5.5789999999999997,6.1429999999999998,6.7889999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,57.1,-0.38329999999999997,5.1104000000000003,0.091249999999999998,3.9390000000000001,4.2839999999999998,4.6719999999999997,5.1100000000000003,5.6079999999999997,6.1749999999999998,6.8239999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,57.2,-0.38329999999999997,5.1371000000000002,0.091259999999999994,3.96,4.306,4.6959999999999997,5.1369999999999996,5.6369999999999996,6.2069999999999999,6.86 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,57.3,-0.38329999999999997,5.1638999999999999,0.091259999999999994,3.98,4.3289999999999997,4.7210000000000001,5.1639999999999997,5.6669999999999998,6.24,6.8959999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,57.4,-0.38329999999999997,5.1905999999999999,0.091270000000000004,4.0010000000000003,4.351,4.7450000000000001,5.1909999999999998,5.6959999999999997,6.2720000000000002,6.9320000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,57.5,-0.38329999999999997,5.2172999999999998,0.09128,4.0209999999999999,4.3730000000000002,4.7699999999999996,5.2169999999999996,5.7249999999999996,6.3040000000000003,6.968 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,57.6,-0.38329999999999997,5.2439999999999998,0.09128,4.0419999999999998,4.3959999999999999,4.7939999999999996,5.2439999999999998,5.7549999999999999,6.3369999999999997,7.0030000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,57.7,-0.38329999999999997,5.2706999999999997,0.091289999999999996,4.0620000000000003,4.4180000000000001,4.8179999999999996,5.2709999999999999,5.7839999999999998,6.3689999999999998,7.0389999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,57.8,-0.38329999999999997,5.2973999999999997,0.091289999999999996,4.0830000000000002,4.4400000000000004,4.843,5.2969999999999997,5.8129999999999997,6.4009999999999998,7.0750000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,57.9,-0.38329999999999997,5.3239999999999998,0.091300000000000006,4.1029999999999998,4.4630000000000001,4.867,5.3239999999999998,5.843,6.4340000000000002,7.1109999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,58,-0.38329999999999997,5.3506999999999998,0.091300000000000006,4.1239999999999997,4.4850000000000003,4.891,5.351,5.8719999999999999,6.4660000000000002,7.1459999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,58.1,-0.38329999999999997,5.3773,0.091310000000000002,4.1440000000000001,4.5069999999999997,4.9160000000000004,5.3769999999999998,5.9009999999999998,6.4980000000000002,7.1820000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,58.2,-0.38329999999999997,5.4039000000000001,0.091310000000000002,4.165,4.5289999999999999,4.9400000000000004,5.4039999999999999,5.93,6.53,7.218 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,58.3,-0.38329999999999997,5.4303999999999997,0.091310000000000002,4.1849999999999996,4.5519999999999996,4.9640000000000004,5.43,5.9589999999999996,6.5620000000000003,7.2530000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,58.4,-0.38329999999999997,5.4569000000000001,0.091319999999999998,4.2050000000000001,4.5739999999999998,4.9880000000000004,5.4569999999999999,5.9880000000000004,6.5940000000000003,7.2889999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,58.5,-0.38329999999999997,5.4833999999999996,0.091319999999999998,4.226,4.5960000000000001,5.0129999999999999,5.4829999999999997,6.0179999999999998,6.6260000000000003,7.3239999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,58.6,-0.38329999999999997,5.5098000000000003,0.091329999999999995,4.2460000000000004,4.6180000000000003,5.0369999999999999,5.51,6.0469999999999997,6.6589999999999998,7.36 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,58.7,-0.38329999999999997,5.5362,0.091329999999999995,4.266,4.6399999999999997,5.0609999999999999,5.5359999999999996,6.0759999999999996,6.69,7.3949999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,58.8,-0.38329999999999997,5.5625,0.091329999999999995,4.2869999999999999,4.6619999999999999,5.085,5.5620000000000003,6.1040000000000001,6.7220000000000004,7.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,58.9,-0.38329999999999997,5.5888,0.091340000000000005,4.3070000000000004,4.6840000000000002,5.109,5.5890000000000004,6.133,6.7539999999999996,7.4649999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,59,-0.38329999999999997,5.6151,0.091340000000000005,4.327,4.7060000000000004,5.133,5.6150000000000002,6.1619999999999999,6.7859999999999996,7.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,59.1,-0.38329999999999997,5.6413000000000002,0.091340000000000005,4.3470000000000004,4.7279999999999998,5.157,5.641,6.1909999999999998,6.8179999999999996,7.5350000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,59.2,-0.38329999999999997,5.6673999999999998,0.091350000000000001,4.367,4.75,5.181,5.6669999999999998,6.22,6.8490000000000002,7.5709999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,59.3,-0.38329999999999997,5.6935000000000002,0.091350000000000001,4.3869999999999996,4.7720000000000002,5.2050000000000001,5.694,6.2480000000000002,6.8810000000000002,7.6050000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,59.4,-0.38329999999999997,5.7195,0.091350000000000001,4.407,4.7939999999999996,5.2279999999999998,5.72,6.2770000000000001,6.9119999999999999,7.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,59.5,-0.38329999999999997,5.7454000000000001,0.091350000000000001,4.4269999999999996,4.8150000000000004,5.2519999999999998,5.7450000000000001,6.3049999999999997,6.944,7.6749999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,59.6,-0.38329999999999997,5.7713000000000001,0.091359999999999997,4.4470000000000001,4.8369999999999997,5.2759999999999998,5.7709999999999999,6.3339999999999996,6.9749999999999996,7.71 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,59.7,-0.38329999999999997,5.7971000000000004,0.091359999999999997,4.4669999999999996,4.859,5.2990000000000004,5.7969999999999997,6.3620000000000001,7.0060000000000002,7.7439999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,59.8,-0.38329999999999997,5.8228999999999997,0.091359999999999997,4.4870000000000001,4.88,5.3230000000000004,5.8230000000000004,6.39,7.0369999999999999,7.7789999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,59.9,-0.38329999999999997,5.8484999999999996,0.091359999999999997,4.5069999999999997,4.9020000000000001,5.3460000000000001,5.8479999999999999,6.4180000000000001,7.0679999999999996,7.8129999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,60,-0.38329999999999997,5.8742000000000001,0.091359999999999997,4.5270000000000001,4.923,5.37,5.8739999999999997,6.4470000000000001,7.0990000000000002,7.8470000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,60.1,-0.38329999999999997,5.8997000000000002,0.091359999999999997,4.5460000000000003,4.9450000000000003,5.3929999999999998,5.9,6.4749999999999996,7.13,7.8810000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,60.2,-0.38329999999999997,5.9252000000000002,0.091370000000000007,4.5659999999999998,4.9660000000000002,5.4160000000000004,5.9249999999999998,6.5030000000000001,7.1609999999999996,7.915 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,60.3,-0.38329999999999997,5.9507000000000003,0.091370000000000007,4.585,4.9870000000000001,5.44,5.9509999999999996,6.5309999999999997,7.1920000000000002,7.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,60.4,-0.38329999999999997,5.9760999999999997,0.091370000000000007,4.6050000000000004,5.0090000000000003,5.4630000000000001,5.976,6.5590000000000002,7.2229999999999999,7.9829999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,60.5,-0.38329999999999997,6.0014000000000003,0.091370000000000007,4.6239999999999997,5.03,5.4859999999999998,6.0010000000000003,6.5860000000000003,7.2530000000000001,8.0169999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,60.6,-0.38329999999999997,6.0266000000000002,0.091370000000000007,4.6440000000000001,5.0510000000000002,5.5090000000000003,6.0270000000000001,6.6139999999999999,7.2839999999999998,8.0510000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,60.7,-0.38329999999999997,6.0518000000000001,0.091370000000000007,4.6630000000000003,5.0720000000000001,5.532,6.0519999999999996,6.6420000000000003,7.3140000000000001,8.0850000000000009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,60.8,-0.38329999999999997,6.0769000000000002,0.091370000000000007,4.6829999999999998,5.093,5.5549999999999997,6.077,6.6689999999999996,7.3440000000000003,8.1180000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,60.9,-0.38329999999999997,6.1020000000000003,0.091370000000000007,4.702,5.1139999999999999,5.5780000000000003,6.1020000000000003,6.6970000000000001,7.375,8.1519999999999992 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,61,-0.38329999999999997,6.1269999999999998,0.091370000000000007,4.7210000000000001,5.1349999999999998,5.601,6.1269999999999998,6.7240000000000002,7.4050000000000002,8.1850000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,61.1,-0.38329999999999997,6.1519000000000004,0.091370000000000007,4.74,5.1559999999999997,5.6239999999999997,6.1520000000000001,6.7519999999999998,7.4349999999999996,8.218 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,61.2,-0.38329999999999997,6.1768000000000001,0.091359999999999997,4.76,5.1769999999999996,5.6459999999999999,6.1769999999999996,6.7789999999999999,7.4649999999999999,8.2509999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,61.3,-0.38329999999999997,6.2016999999999998,0.091359999999999997,4.7789999999999999,5.1980000000000004,5.6689999999999996,6.202,6.806,7.4950000000000001,8.2850000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,61.4,-0.38329999999999997,6.2263999999999999,0.091359999999999997,4.798,5.218,5.6920000000000002,6.226,6.8330000000000002,7.5250000000000004,8.3179999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,61.5,-0.38329999999999997,6.2511000000000001,0.091359999999999997,4.8170000000000002,5.2389999999999999,5.7140000000000004,6.2510000000000003,6.86,7.5549999999999997,8.3510000000000009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,61.6,-0.38329999999999997,6.2758000000000003,0.091359999999999997,4.8360000000000003,5.26,5.7370000000000001,6.2759999999999998,6.8869999999999996,7.585,8.3840000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,61.7,-0.38329999999999997,6.3003999999999998,0.091359999999999997,4.8550000000000004,5.28,5.7590000000000003,6.3,6.9139999999999997,7.6139999999999999,8.4160000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,61.8,-0.38329999999999997,6.3249000000000004,0.091350000000000001,4.8739999999999997,5.3010000000000002,5.782,6.3250000000000002,6.9409999999999998,7.6440000000000001,8.4489999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,61.9,-0.38329999999999997,6.3494000000000002,0.091350000000000001,4.8929999999999998,5.3220000000000001,5.8040000000000003,6.3490000000000002,6.968,7.673,8.4819999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,62,-0.38329999999999997,6.3738000000000001,0.091350000000000001,4.9119999999999999,5.3419999999999996,5.8259999999999996,6.3739999999999997,6.9950000000000001,7.7030000000000003,8.5139999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,62.1,-0.38329999999999997,6.3981000000000003,0.091350000000000001,4.93,5.3620000000000001,5.8490000000000002,6.3979999999999997,7.0220000000000002,7.7320000000000002,8.5470000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,62.2,-0.38329999999999997,6.4223999999999997,0.091340000000000005,4.9489999999999998,5.383,5.8710000000000004,6.4219999999999997,7.048,7.7619999999999996,8.5790000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,62.3,-0.38329999999999997,6.4466000000000001,0.091340000000000005,4.968,5.4029999999999996,5.8929999999999998,6.4470000000000001,7.0750000000000002,7.7910000000000004,8.6110000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,62.4,-0.38329999999999997,6.4707999999999997,0.091340000000000005,4.9870000000000001,5.423,5.915,6.4710000000000001,7.101,7.82,8.6430000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,62.5,-0.38329999999999997,6.4947999999999997,0.091329999999999995,5.0049999999999999,5.444,5.9370000000000003,6.4950000000000001,7.1280000000000001,7.8490000000000002,8.6750000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,62.6,-0.38329999999999997,6.5189000000000004,0.091329999999999995,5.024,5.4640000000000004,5.9589999999999996,6.5190000000000001,7.1539999999999999,7.8780000000000001,8.7070000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,62.7,-0.38329999999999997,6.5429000000000004,0.091329999999999995,5.0419999999999998,5.484,5.9809999999999999,6.5430000000000001,7.18,7.907,8.7390000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,62.8,-0.38329999999999997,6.5667999999999997,0.091319999999999998,5.0609999999999999,5.5039999999999996,6.0030000000000001,6.5670000000000002,7.2060000000000004,7.9359999999999999,8.7710000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,62.9,-0.38329999999999997,6.5906000000000002,0.091319999999999998,5.0789999999999997,5.524,6.0250000000000004,6.5910000000000002,7.2329999999999997,7.9640000000000004,8.8030000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,63,-0.38329999999999997,6.6143999999999998,0.091310000000000002,5.0979999999999999,5.5439999999999996,6.0469999999999997,6.6139999999999999,7.2590000000000003,7.9930000000000003,8.8339999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,63.1,-0.38329999999999997,6.6382000000000003,0.091310000000000002,5.1159999999999997,5.5640000000000001,6.0679999999999996,6.6379999999999999,7.2850000000000001,8.0220000000000002,8.8659999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,63.2,-0.38329999999999997,6.6619000000000002,0.091300000000000006,5.1340000000000003,5.5839999999999996,6.09,6.6619999999999999,7.3109999999999999,8.0500000000000007,8.8979999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,63.3,-0.38329999999999997,6.6856,0.091300000000000006,5.1529999999999996,5.6040000000000001,6.1120000000000001,6.6859999999999999,7.3369999999999997,8.0790000000000006,8.9290000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,63.4,-0.38329999999999997,6.7092000000000001,0.091289999999999996,5.1710000000000003,5.6239999999999997,6.133,6.7089999999999996,7.3630000000000004,8.1069999999999993,8.9600000000000009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,63.5,-0.38329999999999997,6.7328000000000001,0.091289999999999996,5.1890000000000001,5.6440000000000001,6.1550000000000002,6.7329999999999997,7.3879999999999999,8.1359999999999992,8.9920000000000009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,63.6,-0.38329999999999997,6.7563000000000004,0.09128,5.2069999999999999,5.6630000000000003,6.1769999999999996,6.7560000000000002,7.4139999999999997,8.1639999999999997,9.0229999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,63.7,-0.38329999999999997,6.7797999999999998,0.09128,5.2249999999999996,5.6829999999999998,6.1980000000000004,6.78,7.44,8.1920000000000002,9.0540000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,63.8,-0.38329999999999997,6.8033000000000001,0.091270000000000004,5.2439999999999998,5.7030000000000003,6.22,6.8029999999999999,7.4660000000000002,8.2210000000000001,9.0850000000000009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,63.9,-0.38329999999999997,6.8266999999999998,0.091270000000000004,5.2619999999999996,5.7220000000000004,6.2409999999999997,6.827,7.4909999999999997,8.2490000000000006,9.1170000000000009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,64,-0.38329999999999997,6.8501000000000003,0.091259999999999994,5.28,5.742,6.2619999999999996,6.85,7.5170000000000003,8.2769999999999992,9.1479999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,64.099999999999994,-0.38329999999999997,6.8734000000000002,0.091249999999999998,5.298,5.7619999999999996,6.2839999999999998,6.8730000000000002,7.5419999999999998,8.3049999999999997,9.1780000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,64.2,-0.38329999999999997,6.8967000000000001,0.091249999999999998,5.3159999999999998,5.7809999999999997,6.3049999999999997,6.8970000000000002,7.5679999999999996,8.3330000000000002,9.2100000000000009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,64.3,-0.38329999999999997,6.9199000000000002,0.091240000000000002,5.3339999999999996,5.8010000000000002,6.3259999999999996,6.92,7.593,8.3610000000000007,9.24 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,64.400000000000006,-0.38329999999999997,6.9431000000000003,0.091230000000000006,5.3520000000000003,5.82,6.3479999999999999,6.9429999999999996,7.6189999999999998,8.3889999999999993,9.2710000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,64.5,-0.38329999999999997,6.9661999999999997,0.091230000000000006,5.37,5.84,6.3689999999999998,6.9660000000000002,7.6440000000000001,8.4169999999999998,9.3019999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,64.599999999999994,-0.38329999999999997,6.9893000000000001,0.091219999999999996,5.3879999999999999,5.859,6.39,6.9889999999999999,7.6689999999999996,8.4440000000000008,9.3320000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,64.7,-0.38329999999999997,7.0124000000000004,0.091209999999999999,5.4059999999999997,5.8789999999999996,6.4109999999999996,7.0119999999999996,7.6950000000000003,8.4719999999999995,9.3629999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,64.8,-0.38329999999999997,7.0354000000000001,0.091200000000000003,5.4240000000000004,5.8979999999999997,6.4320000000000004,7.0350000000000001,7.72,8.5,9.3930000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,64.900000000000006,-0.38329999999999997,7.0583,0.091200000000000003,5.4409999999999998,5.9169999999999998,6.4530000000000003,7.0579999999999998,7.7450000000000001,8.5269999999999992,9.4239999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,65,-0.38329999999999997,7.0811999999999999,0.091189999999999993,5.4589999999999996,5.9370000000000003,6.4740000000000002,7.0810000000000004,7.77,8.5549999999999997,9.4540000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,65.099999999999994,-0.38329999999999997,7.1040999999999999,0.091179999999999997,5.4770000000000003,5.9560000000000004,6.4950000000000001,7.1040000000000001,7.7949999999999999,8.5820000000000007,9.484 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,65.2,-0.38329999999999997,7.1269,0.091170000000000001,5.4950000000000001,5.9749999999999996,6.516,7.1269999999999998,7.82,8.61,9.5139999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,65.3,-0.38329999999999997,7.1497000000000002,0.091160000000000005,5.5119999999999996,5.9939999999999998,6.5369999999999999,7.15,7.8449999999999998,8.6370000000000005,9.5449999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,65.400000000000006,-0.38329999999999997,7.1723999999999997,0.091160000000000005,5.53,6.0140000000000002,6.5579999999999998,7.1719999999999997,7.87,8.6649999999999991,9.5749999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,65.5,-0.38329999999999997,7.1950000000000003,0.091149999999999995,5.5469999999999997,6.0330000000000004,6.5780000000000003,7.1950000000000003,7.8949999999999996,8.6920000000000002,9.6050000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,65.599999999999994,-0.38329999999999997,7.2176999999999998,0.091139999999999999,5.5650000000000004,6.0519999999999996,6.5990000000000002,7.218,7.9189999999999996,8.7189999999999994,9.6349999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,65.7,-0.38329999999999997,7.2401999999999997,0.091130000000000003,5.5830000000000002,6.0709999999999997,6.62,7.24,7.944,8.7460000000000004,9.6639999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,65.8,-0.38329999999999997,7.2626999999999997,0.091120000000000007,5.6,6.09,6.64,7.2629999999999999,7.9690000000000003,8.7729999999999997,9.6940000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,65.900000000000006,-0.38329999999999997,7.2851999999999997,0.091109999999999997,5.6180000000000003,6.109,6.6609999999999996,7.2850000000000001,7.9930000000000003,8.8000000000000007,9.7240000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,66,-0.38329999999999997,7.3075999999999999,0.0911,5.6349999999999998,6.1280000000000001,6.6820000000000004,7.3079999999999998,8.0180000000000007,8.827,9.7530000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,66.099999999999994,-0.38329999999999997,7.33,0.091090000000000004,5.6520000000000001,6.1459999999999999,6.702,7.33,8.0419999999999998,8.8539999999999992,9.7829999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,66.2,-0.38329999999999997,7.3522999999999996,0.091090000000000004,5.67,6.165,6.7229999999999999,7.3520000000000003,8.0670000000000002,8.8810000000000002,9.8130000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,66.3,-0.38329999999999997,7.3745000000000003,0.091079999999999994,5.6870000000000003,6.1840000000000002,6.7430000000000003,7.3739999999999997,8.0909999999999993,8.907,9.8420000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,66.400000000000006,-0.38329999999999997,7.3967000000000001,0.091069999999999998,5.7039999999999997,6.2030000000000003,6.7629999999999999,7.3970000000000002,8.1150000000000002,8.9339999999999993,9.8710000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,66.5,-0.38329999999999997,7.4188999999999998,0.091060000000000002,5.7210000000000001,6.2210000000000001,6.7839999999999998,7.4189999999999996,8.1389999999999993,8.9600000000000009,9.9009999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,66.599999999999994,-0.38329999999999997,7.4409999999999998,0.091050000000000006,5.7389999999999999,6.24,6.8040000000000003,7.4409999999999998,8.1639999999999997,8.9870000000000001,9.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,66.7,-0.38329999999999997,7.4630000000000001,0.091039999999999996,5.7560000000000002,6.2590000000000003,6.8239999999999998,7.4630000000000001,8.1880000000000006,9.0129999999999999,9.9589999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,66.8,-0.38329999999999997,7.4850000000000003,0.09103,5.7729999999999997,6.2770000000000001,6.8440000000000003,7.4850000000000003,8.2119999999999997,9.0399999999999991,9.9879999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,66.900000000000006,-0.38329999999999997,7.5068999999999999,0.091020000000000004,5.79,6.2960000000000003,6.8639999999999999,7.5069999999999997,8.2360000000000007,9.0660000000000007,10.016999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,67,-0.38329999999999997,7.5288000000000004,0.091009999999999994,5.8070000000000004,6.3140000000000001,6.8849999999999998,7.5289999999999999,8.26,9.0920000000000005,10.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,67.099999999999994,-0.38329999999999997,7.5507,0.090999999999999998,5.8239999999999998,6.3330000000000002,6.9050000000000002,7.5510000000000002,8.2829999999999995,9.1180000000000003,10.074 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,67.2,-0.38329999999999997,7.5724,0.090990000000000001,5.8410000000000002,6.351,6.9249999999999998,7.5720000000000001,8.3070000000000004,9.1440000000000001,10.103 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,67.3,-0.38329999999999997,7.5941999999999998,0.090980000000000005,5.8579999999999997,6.3689999999999998,6.9450000000000003,7.5940000000000003,8.3309999999999995,9.1709999999999994,10.132 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,67.400000000000006,-0.38329999999999997,7.6158000000000001,0.090969999999999995,5.875,6.3879999999999999,6.9640000000000004,7.6159999999999997,8.3550000000000004,9.1959999999999997,10.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,67.5,-0.38329999999999997,7.6375000000000002,0.090959999999999999,5.8920000000000003,6.4059999999999997,6.984,7.6379999999999999,8.3780000000000001,9.2219999999999995,10.189 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,67.599999999999994,-0.38329999999999997,7.6589999999999998,0.090950000000000003,5.9080000000000004,6.4240000000000004,7.0039999999999996,7.6589999999999998,8.4019999999999992,9.2479999999999993,10.217000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,67.7,-0.38329999999999997,7.6806000000000001,0.090939999999999993,5.9249999999999998,6.4420000000000002,7.024,7.681,8.4250000000000007,9.2739999999999991,10.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,67.8,-0.38329999999999997,7.702,0.090929999999999997,5.9420000000000002,6.46,7.0430000000000001,7.702,8.4489999999999998,9.3000000000000007,10.273999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,67.900000000000006,-0.38329999999999997,7.7233999999999998,0.090910000000000005,5.9589999999999996,6.4790000000000001,7.0629999999999997,7.7229999999999999,8.4719999999999995,9.3249999999999993,10.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,68,-0.38329999999999997,7.7447999999999997,0.090899999999999995,5.9749999999999996,6.4969999999999999,7.0830000000000002,7.7450000000000001,8.4960000000000004,9.3510000000000009,10.33 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,68.099999999999994,-0.38329999999999997,7.7660999999999998,0.090889999999999999,5.992,6.5149999999999997,7.1020000000000003,7.766,8.5190000000000001,9.3759999999999994,10.358000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,68.2,-0.38329999999999997,7.7873999999999999,0.090880000000000002,6.0090000000000003,6.5330000000000004,7.1219999999999999,7.7869999999999999,8.5419999999999998,9.4019999999999992,10.385999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,68.3,-0.38329999999999997,7.8086000000000002,0.090870000000000006,6.0250000000000004,6.55,7.141,7.8090000000000002,8.5649999999999995,9.4269999999999996,10.414 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,68.400000000000006,-0.38329999999999997,7.8297999999999996,0.090859999999999996,6.0419999999999998,6.5679999999999996,7.1609999999999996,7.83,8.5879999999999992,9.4529999999999994,10.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,68.5,-0.38329999999999997,7.8509000000000002,0.09085,6.0579999999999998,6.5860000000000003,7.18,7.851,8.6110000000000007,9.4779999999999998,10.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,68.599999999999994,-0.38329999999999997,7.8719999999999999,0.090840000000000004,6.0750000000000002,6.6040000000000001,7.2,7.8719999999999999,8.6349999999999998,9.5030000000000001,10.497999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,68.7,-0.38329999999999997,7.8929999999999998,0.090829999999999994,6.0910000000000002,6.6219999999999999,7.2190000000000003,7.8929999999999998,8.657,9.5280000000000005,10.525 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,68.8,-0.38329999999999997,7.9139999999999997,0.090819999999999998,6.1070000000000002,6.64,7.2380000000000004,7.9139999999999997,8.68,9.5530000000000008,10.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,68.900000000000006,-0.38329999999999997,7.9349999999999996,0.090800000000000006,6.1239999999999997,6.657,7.2569999999999997,7.9349999999999996,8.7029999999999994,9.5779999999999994,10.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,69,-0.38329999999999997,7.9558999999999997,0.090789999999999996,6.14,6.6749999999999998,7.2770000000000001,7.9560000000000004,8.7260000000000009,9.6029999999999998,10.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,69.099999999999994,-0.38329999999999997,7.9767999999999999,0.09078,6.1559999999999997,6.6929999999999996,7.2960000000000003,7.9770000000000003,8.7490000000000006,9.6280000000000001,10.635 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,69.2,-0.38329999999999997,7.9976000000000003,0.090770000000000003,6.173,6.71,7.3150000000000004,7.9980000000000002,8.7720000000000002,9.6530000000000005,10.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,69.3,-0.38329999999999997,8.0183999999999997,0.090759999999999993,6.1890000000000001,6.7279999999999998,7.3339999999999996,8.0180000000000007,8.7940000000000005,9.6780000000000008,10.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,69.400000000000006,-0.38329999999999997,8.0391999999999992,0.090749999999999997,6.2050000000000001,6.7450000000000001,7.3529999999999998,8.0389999999999997,8.8170000000000002,9.7029999999999994,10.717000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,69.5,-0.38329999999999997,8.0599000000000007,0.090740000000000001,6.2210000000000001,6.7629999999999999,7.3719999999999999,8.06,8.84,9.7279999999999998,10.744999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,69.599999999999994,-0.38329999999999997,8.0806000000000004,0.090719999999999995,6.2380000000000004,6.7809999999999997,7.391,8.0809999999999995,8.8620000000000001,9.7530000000000001,10.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,69.7,-0.38329999999999997,8.1012000000000004,0.090709999999999999,6.2539999999999996,6.798,7.41,8.1010000000000009,8.8849999999999998,9.7769999999999992,10.798 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,69.8,-0.38329999999999997,8.1218000000000004,0.090700000000000003,6.27,6.8150000000000004,7.4290000000000003,8.1219999999999999,8.907,9.8019999999999996,10.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,69.900000000000006,-0.38329999999999997,8.1424000000000003,0.090690000000000007,6.2859999999999996,6.8330000000000002,7.4480000000000004,8.1419999999999995,8.93,9.8260000000000005,10.853 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,70,-0.38329999999999997,8.1630000000000003,0.090679999999999997,6.3019999999999996,6.85,7.4669999999999996,8.1630000000000003,8.952,9.8510000000000009,10.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,70.099999999999994,-0.38329999999999997,8.1835000000000004,0.090670000000000001,6.3179999999999996,6.8680000000000003,7.4859999999999998,8.1839999999999993,8.9749999999999996,9.8759999999999994,10.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,70.2,-0.38329999999999997,8.2039000000000009,0.090649999999999994,6.3339999999999996,6.8849999999999998,7.5039999999999996,8.2040000000000006,8.9969999999999999,9.9,10.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,70.3,-0.38329999999999997,8.2243999999999993,0.090639999999999998,6.35,6.9020000000000001,7.5229999999999997,8.2240000000000002,9.0190000000000001,9.9239999999999995,10.96 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,70.400000000000006,-0.38329999999999997,8.2447999999999997,0.090630000000000002,6.3659999999999997,6.9189999999999996,7.5419999999999998,8.2449999999999992,9.0410000000000004,9.9489999999999998,10.987 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,70.5,-0.38329999999999997,8.2651000000000003,0.090620000000000006,6.3819999999999997,6.9370000000000003,7.5609999999999999,8.2650000000000006,9.0640000000000001,9.9730000000000008,11.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,70.599999999999994,-0.38329999999999997,8.2855000000000008,0.090609999999999996,6.3979999999999997,6.9539999999999997,7.5789999999999997,8.2859999999999996,9.0860000000000003,9.9969999999999999,11.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,70.7,-0.38329999999999997,8.3057999999999996,0.090590000000000004,6.4139999999999997,6.9710000000000001,7.5979999999999999,8.3059999999999992,9.1080000000000005,10.021000000000001,11.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,70.8,-0.38329999999999997,8.3261000000000003,0.090579999999999994,6.4290000000000003,6.9880000000000004,7.617,8.3260000000000005,9.1300000000000008,10.045999999999999,11.093 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,70.900000000000006,-0.38329999999999997,8.3463999999999992,0.090569999999999998,6.4450000000000003,7.0060000000000002,7.6349999999999998,8.3460000000000001,9.1519999999999992,10.07,11.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,71,-0.38329999999999997,8.3666,0.090560000000000002,6.4610000000000003,7.0229999999999997,7.6539999999999999,8.3670000000000009,9.1739999999999995,10.093999999999999,11.147 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,71.099999999999994,-0.38329999999999997,8.3869000000000007,0.090550000000000005,6.4770000000000003,7.04,7.673,8.3870000000000005,9.1969999999999992,10.118,11.173 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,71.2,-0.38329999999999997,8.4070999999999998,0.090529999999999999,6.4930000000000003,7.0570000000000004,7.6909999999999998,8.407,9.2189999999999994,10.141999999999999,11.199 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,71.3,-0.38329999999999997,8.4273000000000007,0.090520000000000003,6.5090000000000003,7.0739999999999998,7.71,8.4269999999999996,9.2409999999999997,10.167,11.226000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,71.400000000000006,-0.38329999999999997,8.4474,0.090509999999999993,6.524,7.0910000000000002,7.7279999999999998,8.4469999999999992,9.2629999999999999,10.191000000000001,11.252000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,71.5,-0.38329999999999997,8.4675999999999991,0.090499999999999997,6.54,7.1079999999999997,7.7469999999999999,8.468,9.2850000000000001,10.215,11.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,71.599999999999994,-0.38329999999999997,8.4877000000000002,0.090480000000000005,6.556,7.125,7.7649999999999997,8.4879999999999995,9.3059999999999992,10.239000000000001,11.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,71.7,-0.38329999999999997,8.5077999999999996,0.090469999999999995,6.5720000000000001,7.1420000000000003,7.7839999999999998,8.5079999999999991,9.3279999999999994,10.263,11.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,71.8,-0.38329999999999997,8.5277999999999992,0.090459999999999999,6.5869999999999997,7.1589999999999998,7.8019999999999996,8.5280000000000005,9.35,10.286,11.358000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,71.900000000000006,-0.38329999999999997,8.5479000000000003,0.090450000000000003,6.6029999999999998,7.1760000000000002,7.8209999999999997,8.548,9.3719999999999999,10.311,11.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,72,-0.38329999999999997,8.5678999999999998,0.090429999999999996,6.6189999999999998,7.1929999999999996,7.8390000000000004,8.5679999999999996,9.3940000000000001,10.334,11.41 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,72.099999999999994,-0.38329999999999997,8.5878999999999994,0.09042,6.6349999999999998,7.21,7.8570000000000002,8.5879999999999992,9.4160000000000004,10.358000000000001,11.436 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,72.2,-0.38329999999999997,8.6077999999999992,0.090410000000000004,6.65,7.2270000000000003,7.8760000000000003,8.6080000000000005,9.4369999999999994,10.382,11.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,72.3,-0.38329999999999997,8.6277000000000008,0.090399999999999994,6.6660000000000004,7.2439999999999998,7.8940000000000001,8.6280000000000001,9.4589999999999996,10.406000000000001,11.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,72.400000000000006,-0.38329999999999997,8.6476000000000006,0.090389999999999998,6.681,7.2610000000000001,7.9119999999999999,8.6479999999999997,9.4809999999999999,10.429,11.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,72.5,-0.38329999999999997,8.6674000000000007,0.090370000000000006,6.6970000000000001,7.2779999999999996,7.931,8.6669999999999998,9.5020000000000007,10.452999999999999,11.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,72.599999999999994,-0.38329999999999997,8.6872000000000007,0.090359999999999996,6.7119999999999997,7.2939999999999996,7.9489999999999998,8.6869999999999994,9.5239999999999991,10.477,11.566000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,72.7,-0.38329999999999997,8.7070000000000007,0.09035,6.7279999999999998,7.3109999999999999,7.9669999999999996,8.7070000000000007,9.5459999999999994,10.5,11.592000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,72.8,-0.38329999999999997,8.7266999999999992,0.090340000000000004,6.7430000000000003,7.3280000000000003,7.9850000000000003,8.7270000000000003,9.5670000000000002,10.523999999999999,11.618 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,72.900000000000006,-0.38329999999999997,8.7463999999999995,0.090319999999999998,6.7590000000000003,7.3449999999999998,8.0030000000000001,8.7460000000000004,9.5879999999999992,10.547000000000001,11.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,73,-0.38329999999999997,8.7660999999999998,0.090310000000000001,6.774,7.3609999999999998,8.0210000000000008,8.766,9.61,10.571,11.669 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,73.099999999999994,-0.38329999999999997,8.7857000000000003,0.090300000000000005,6.79,7.3780000000000001,8.0389999999999997,8.7859999999999996,9.6310000000000002,10.593999999999999,11.695 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,73.2,-0.38329999999999997,8.8053000000000008,0.090279999999999999,6.8049999999999997,7.3949999999999996,8.0570000000000004,8.8049999999999997,9.6530000000000005,10.617000000000001,11.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,73.3,-0.38329999999999997,8.8247999999999998,0.090270000000000003,6.82,7.4109999999999996,8.0749999999999993,8.8249999999999993,9.6739999999999995,10.64,11.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,73.400000000000006,-0.38329999999999997,8.8443000000000005,0.090260000000000007,6.8360000000000003,7.4279999999999999,8.093,8.8439999999999994,9.6950000000000003,10.664,11.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,73.5,-0.38329999999999997,8.8637999999999995,0.090249999999999997,6.851,7.444,8.1110000000000007,8.8640000000000008,9.7159999999999993,10.686999999999999,11.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,73.599999999999994,-0.38329999999999997,8.8831000000000007,0.090230000000000005,6.8659999999999997,7.4610000000000003,8.1289999999999996,8.8829999999999991,9.7370000000000001,10.71,11.821999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,73.7,-0.38329999999999997,8.9024999999999999,0.090219999999999995,6.8810000000000002,7.4770000000000003,8.1470000000000002,8.9019999999999992,9.7590000000000003,10.733000000000001,11.847 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,73.8,-0.38329999999999997,8.9216999999999995,0.090209999999999999,6.8959999999999999,7.4930000000000003,8.1649999999999991,8.9220000000000006,9.7799999999999994,10.756,11.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,73.900000000000006,-0.38329999999999997,8.9410000000000007,0.090200000000000002,6.9109999999999996,7.51,8.1820000000000004,8.9410000000000007,9.8010000000000002,10.779,11.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,74,-0.38329999999999997,8.9601000000000006,0.090179999999999996,6.9269999999999996,7.5259999999999998,8.1999999999999993,8.9600000000000009,9.8209999999999997,10.801,11.922000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,74.099999999999994,-0.38329999999999997,8.9792000000000005,0.09017,6.9420000000000002,7.5419999999999998,8.2170000000000005,8.9789999999999992,9.8420000000000005,10.824,11.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,74.2,-0.38329999999999997,8.9983000000000004,0.090160000000000004,6.9569999999999999,7.5590000000000002,8.2349999999999994,8.9979999999999993,9.8629999999999995,10.847,11.972 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,74.3,-0.38329999999999997,9.0173000000000005,0.090139999999999998,6.9720000000000004,7.5750000000000002,8.2530000000000001,9.0169999999999995,9.8840000000000003,10.869,11.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,74.400000000000006,-0.38329999999999997,9.0363000000000007,0.090130000000000002,6.9859999999999998,7.5910000000000002,8.27,9.0359999999999996,9.9039999999999999,10.891999999999999,12.022 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,74.5,-0.38329999999999997,9.0551999999999992,0.090120000000000006,7.0010000000000003,7.6070000000000002,8.2870000000000008,9.0549999999999997,9.9250000000000007,10.914999999999999,12.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,74.599999999999994,-0.38329999999999997,9.0739999999999998,0.090109999999999996,7.016,7.6230000000000002,8.3049999999999997,9.0739999999999998,9.9450000000000003,10.936999999999999,12.071 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,74.7,-0.38329999999999997,9.0928000000000004,0.090090000000000003,7.0309999999999997,7.6390000000000002,8.3219999999999992,9.093,9.9659999999999993,10.959,12.095000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,74.8,-0.38329999999999997,9.1115999999999993,0.090079999999999993,7.0460000000000003,7.6550000000000002,8.3390000000000004,9.1120000000000001,9.9860000000000007,10.981999999999999,12.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,74.900000000000006,-0.38329999999999997,9.1303000000000001,0.090069999999999997,7.06,7.6710000000000003,8.3569999999999993,9.1300000000000008,10.007,11.004,12.144 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,75,-0.38329999999999997,9.1489999999999991,0.090050000000000005,7.0750000000000002,7.6870000000000003,8.3740000000000006,9.1489999999999991,10.026999999999999,11.026,12.167999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,75.099999999999994,-0.38329999999999997,9.1676000000000002,0.090039999999999995,7.09,7.702,8.391,9.1679999999999993,10.047000000000001,11.048,12.193 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,75.2,-0.38329999999999997,9.1861999999999995,0.090029999999999999,7.1040000000000001,7.718,8.4079999999999995,9.1859999999999999,10.068,11.07,12.217000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,75.3,-0.38329999999999997,9.2048000000000005,0.090010000000000007,7.1189999999999998,7.734,8.4250000000000007,9.2050000000000001,10.087999999999999,11.092000000000001,12.241 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,75.400000000000006,-0.38329999999999997,9.2233000000000001,0.09,7.1340000000000003,7.75,8.4420000000000002,9.2230000000000008,10.108000000000001,11.114000000000001,12.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,75.5,-0.38329999999999997,9.2417999999999996,0.089990000000000001,7.1479999999999997,7.766,8.4589999999999996,9.2420000000000009,10.128,11.135999999999999,12.289 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,75.599999999999994,-0.38329999999999997,9.2601999999999993,0.089969999999999994,7.1630000000000003,7.7809999999999997,8.4760000000000009,9.26,10.148,11.157999999999999,12.313000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,75.7,-0.38329999999999997,9.2786000000000008,0.089959999999999998,7.1769999999999996,7.7969999999999997,8.4930000000000003,9.2789999999999999,10.167999999999999,11.18,12.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,75.8,-0.38329999999999997,9.2970000000000006,0.089950000000000002,7.1920000000000002,7.8120000000000003,8.51,9.2970000000000006,10.188000000000001,11.202,12.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,75.900000000000006,-0.38329999999999997,9.3154000000000003,0.089929999999999996,7.2060000000000004,7.8280000000000003,8.5269999999999992,9.3149999999999995,10.208,11.224,12.385 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,76,-0.38329999999999997,9.3337000000000003,0.08992,7.2210000000000001,7.8440000000000003,8.5440000000000005,9.3339999999999996,10.228,11.246,12.407999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,76.099999999999994,-0.38329999999999997,9.3520000000000003,0.089910000000000004,7.2350000000000003,7.859,8.5609999999999999,9.3520000000000003,10.247999999999999,11.266999999999999,12.432 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,76.2,-0.38329999999999997,9.3703000000000003,0.089889999999999998,7.2489999999999997,7.875,8.5779999999999994,9.3699999999999992,10.268000000000001,11.289,12.456 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,76.3,-0.38329999999999997,9.3886000000000003,0.089880000000000002,7.2640000000000002,7.89,8.5950000000000006,9.3889999999999993,10.288,11.311,12.48 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,76.400000000000006,-0.38329999999999997,9.4069000000000003,0.089870000000000005,7.2779999999999996,7.9059999999999997,8.6110000000000007,9.407,10.308,11.333,12.504 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,76.5,-0.38329999999999997,9.4252000000000002,0.089849999999999999,7.2930000000000001,7.9219999999999997,8.6280000000000001,9.4250000000000007,10.327999999999999,11.353999999999999,12.526999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,76.599999999999994,-0.38329999999999997,9.4435000000000002,0.089840000000000003,7.3070000000000004,7.9370000000000003,8.6449999999999996,9.4440000000000008,10.348000000000001,11.375999999999999,12.551 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,76.7,-0.38329999999999997,9.4617000000000004,0.089829999999999993,7.3209999999999997,7.9530000000000003,8.6620000000000008,9.4619999999999997,10.367000000000001,11.398,12.574999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,76.8,-0.38329999999999997,9.48,0.089810000000000001,7.3360000000000003,7.968,8.6790000000000003,9.48,10.387,11.419,12.598000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,76.900000000000006,-0.38329999999999997,9.4983000000000004,0.089800000000000005,7.35,7.984,8.6959999999999997,9.4979999999999993,10.407,11.441000000000001,12.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,77,-0.38329999999999997,9.5166000000000004,0.089789999999999995,7.3650000000000002,7.9989999999999997,8.7119999999999997,9.5169999999999995,10.427,11.462999999999999,12.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,77.099999999999994,-0.38329999999999997,9.5350000000000001,0.089770000000000003,7.3789999999999996,8.0150000000000006,8.73,9.5350000000000001,10.446999999999999,11.484,12.67 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,77.2,-0.38329999999999997,9.5533000000000001,0.089760000000000006,7.3940000000000001,8.0310000000000006,8.7460000000000004,9.5530000000000008,10.467000000000001,11.506,12.694000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,77.3,-0.38329999999999997,9.5716999999999999,0.089749999999999996,7.4080000000000004,8.0459999999999994,8.7629999999999999,9.5719999999999992,10.487,11.528,12.718 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,77.400000000000006,-0.38329999999999997,9.5900999999999996,0.089730000000000004,7.423,8.0619999999999994,8.7799999999999994,9.59,10.507,11.55,12.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,77.5,-0.38329999999999997,9.6085999999999991,0.089719999999999994,7.4370000000000003,8.0779999999999994,8.7970000000000006,9.609,10.526999999999999,11.571999999999999,12.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,77.599999999999994,-0.38329999999999997,9.6271000000000004,0.089709999999999998,7.452,8.0939999999999994,8.8140000000000001,9.6270000000000007,10.547000000000001,11.593999999999999,12.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,77.7,-0.38329999999999997,9.6456,0.089690000000000006,7.4660000000000002,8.109,8.8309999999999995,9.6460000000000008,10.567,11.616,12.813000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,77.8,-0.38329999999999997,9.6641999999999992,0.089679999999999996,7.4809999999999999,8.125,8.8490000000000002,9.6639999999999997,10.587999999999999,11.638,12.837999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,77.900000000000006,-0.38329999999999997,9.6828000000000003,0.089660000000000004,7.4960000000000004,8.141,8.8659999999999997,9.6829999999999998,10.608000000000001,11.66,12.861000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,78,-0.38329999999999997,9.7014999999999993,0.089649999999999994,7.5110000000000001,8.157,8.8829999999999991,9.702,10.628,11.682,12.885999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,78.099999999999994,-0.38329999999999997,9.7202000000000002,0.089639999999999997,7.5250000000000004,8.173,8.9,9.7200000000000006,10.648999999999999,11.704000000000001,12.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,78.2,-0.38329999999999997,9.7390000000000008,0.089630000000000001,7.54,8.1890000000000001,8.9169999999999998,9.7390000000000008,10.669,11.727,12.935 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,78.3,-0.38329999999999997,9.7577999999999996,0.089609999999999995,7.5549999999999997,8.2050000000000001,8.9350000000000005,9.7579999999999991,10.689,11.749000000000001,12.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,78.400000000000006,-0.38329999999999997,9.7766999999999999,0.089599999999999999,7.57,8.2210000000000001,8.952,9.7769999999999992,10.71,11.771000000000001,12.984 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,78.5,-0.38329999999999997,9.7957000000000001,0.089590000000000003,7.585,8.2370000000000001,8.9700000000000006,9.7959999999999994,10.731,11.794,13.007999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,78.599999999999994,-0.38329999999999997,9.8147000000000002,0.089569999999999997,7.6,8.2530000000000001,8.9870000000000001,9.8149999999999995,10.750999999999999,11.816000000000001,13.032999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,78.7,-0.38329999999999997,9.8338000000000001,0.089560000000000001,7.6150000000000002,8.27,9.0050000000000008,9.8339999999999996,10.772,11.839,13.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,78.8,-0.38329999999999997,9.8529999999999998,0.089550000000000005,7.63,8.2859999999999996,9.0229999999999997,9.8529999999999998,10.792999999999999,11.862,13.083 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,78.900000000000006,-0.38329999999999997,9.8721999999999994,0.089529999999999998,7.6449999999999996,8.3019999999999996,9.0399999999999991,9.8719999999999999,10.814,11.884,13.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,79,-0.38329999999999997,9.8915000000000006,0.089520000000000002,7.66,8.3190000000000008,9.0579999999999998,9.8919999999999995,10.835000000000001,11.907,13.132 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,79.099999999999994,-0.38329999999999997,9.9108999999999998,0.089510000000000006,7.6760000000000002,8.3350000000000009,9.0760000000000005,9.9109999999999996,10.856,11.93,13.157999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,79.2,-0.38329999999999997,9.9303000000000008,0.089499999999999996,7.6909999999999998,8.3520000000000003,9.0939999999999994,9.93,10.877000000000001,11.954000000000001,13.183 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,79.3,-0.38329999999999997,9.9498999999999995,0.089480000000000004,7.7060000000000004,8.3680000000000003,9.1120000000000001,9.9499999999999993,10.898,11.977,13.208 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,79.400000000000006,-0.38329999999999997,9.9695,0.089469999999999994,7.7220000000000004,8.3849999999999998,9.1300000000000008,9.9700000000000006,10.92,12,13.234 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,79.5,-0.38329999999999997,9.9892000000000003,0.089459999999999998,7.7370000000000001,8.4019999999999992,9.1479999999999997,9.9890000000000008,10.941000000000001,12.023,13.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,79.599999999999994,-0.38329999999999997,10.009,0.089450000000000002,7.7530000000000001,8.4190000000000005,9.1660000000000004,10.009,10.962999999999999,12.047000000000001,13.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,79.7,-0.38329999999999997,10.0289,0.089429999999999996,7.7690000000000001,8.4359999999999999,9.1850000000000005,10.029,10.984,12.07,13.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,79.8,-0.38329999999999997,10.0489,0.089419999999999999,7.7839999999999998,8.4529999999999994,9.2029999999999994,10.048999999999999,11.006,12.093999999999999,13.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,79.900000000000006,-0.38329999999999997,10.069000000000001,0.089410000000000003,7.8,8.4700000000000006,9.2219999999999995,10.069000000000001,11.028,12.118,13.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,80,-0.38329999999999997,10.0891,0.089399999999999993,7.8159999999999998,8.4870000000000001,9.24,10.089,11.05,12.141999999999999,13.388999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,80.099999999999994,-0.38329999999999997,10.109400000000001,0.089389999999999997,7.8319999999999999,8.5039999999999996,9.2590000000000003,10.109,11.071999999999999,12.166,13.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,80.2,-0.38329999999999997,10.129799999999999,0.089370000000000005,7.8479999999999999,8.5220000000000002,9.2780000000000005,10.130000000000001,11.093999999999999,12.19,13.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,80.3,-0.38329999999999997,10.1503,0.089359999999999995,7.8639999999999999,8.5389999999999997,9.2970000000000006,10.15,11.116,12.215,13.468999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,80.400000000000006,-0.38329999999999997,10.1709,0.089349999999999999,7.88,8.5559999999999992,9.3149999999999995,10.170999999999999,11.138999999999999,12.239000000000001,13.496 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,80.5,-0.38329999999999997,10.191599999999999,0.089340000000000003,7.8970000000000002,8.5739999999999998,9.3350000000000009,10.192,11.161,12.263999999999999,13.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,80.599999999999994,-0.38329999999999997,10.212300000000001,0.089330000000000007,7.9130000000000003,8.5920000000000005,9.3539999999999992,10.212,11.183999999999999,12.289,13.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,80.7,-0.38329999999999997,10.2332,0.089319999999999997,7.9290000000000003,8.609,9.3729999999999993,10.233000000000001,11.207000000000001,12.313000000000001,13.577 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,80.8,-0.38329999999999997,10.254200000000001,0.089300000000000004,7.9459999999999997,8.6270000000000007,9.3919999999999995,10.254,11.23,12.337999999999999,13.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,80.900000000000006,-0.38329999999999997,10.2753,0.089289999999999994,7.9630000000000001,8.6449999999999996,9.4120000000000008,10.275,11.253,12.363,13.632 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,81,-0.38329999999999997,10.2965,0.089279999999999998,7.9790000000000001,8.6630000000000003,9.4309999999999992,10.295999999999999,11.276,12.388,13.659000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,81.099999999999994,-0.38329999999999997,10.3178,0.089270000000000002,7.9960000000000004,8.6809999999999992,9.4510000000000005,10.318,11.298999999999999,12.414,13.686999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,81.2,-0.38329999999999997,10.3393,0.089260000000000006,8.0129999999999999,8.6999999999999993,9.4710000000000001,10.339,11.321999999999999,12.439,13.715 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,81.3,-0.38329999999999997,10.360799999999999,0.089249999999999996,8.0299999999999994,8.718,9.49,10.361000000000001,11.346,12.465,13.743 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,81.400000000000006,-0.38329999999999997,10.382400000000001,0.08924,8.0470000000000006,8.7360000000000007,9.51,10.382,11.369,12.491,13.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,81.5,-0.38329999999999997,10.4041,0.089230000000000004,8.0640000000000001,8.7550000000000008,9.5299999999999994,10.404,11.393000000000001,12.516999999999999,13.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,81.599999999999994,-0.38329999999999997,10.425800000000001,0.089219999999999994,8.0809999999999995,8.7729999999999997,9.5500000000000007,10.426,11.417,12.542,13.827999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,81.7,-0.38329999999999997,10.447699999999999,0.089209999999999998,8.0980000000000008,8.7919999999999998,9.57,10.448,11.44,12.569000000000001,13.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,81.8,-0.38329999999999997,10.4697,0.089200000000000002,8.1150000000000002,8.81,9.5909999999999993,10.47,11.464,12.595000000000001,13.885 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,81.900000000000006,-0.38329999999999997,10.4918,0.089190000000000005,8.1329999999999991,8.8290000000000006,9.6110000000000007,10.492000000000001,11.488,12.621,13.914 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,82,-0.38329999999999997,10.513999999999999,0.089179999999999995,8.15,8.8480000000000008,9.6310000000000002,10.513999999999999,11.513,12.647,13.943 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,82.1,-0.38329999999999997,10.536300000000001,0.089169999999999999,8.1669999999999998,8.8670000000000009,9.6519999999999992,10.536,11.537000000000001,12.673999999999999,13.972 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,82.2,-0.38329999999999997,10.5586,0.089160000000000003,8.1850000000000005,8.8859999999999992,9.6720000000000006,10.558999999999999,11.561,12.701000000000001,14.000999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,82.3,-0.38329999999999997,10.581099999999999,0.089149999999999993,8.2029999999999994,8.9049999999999994,9.6929999999999996,10.581,11.586,12.727,14.031000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,82.4,-0.38329999999999997,10.6037,0.089149999999999993,8.2200000000000006,8.9239999999999995,9.7140000000000004,10.603999999999999,11.611000000000001,12.755000000000001,14.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,82.5,-0.38329999999999997,10.626300000000001,0.089139999999999997,8.2379999999999995,8.9429999999999996,9.7349999999999994,10.625999999999999,11.635,12.781000000000001,14.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,82.6,-0.38329999999999997,10.649100000000001,0.089130000000000001,8.2560000000000002,8.9619999999999997,9.7560000000000002,10.648999999999999,11.66,12.808999999999999,14.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,82.7,-0.38329999999999997,10.671900000000001,0.089120000000000005,8.2739999999999991,8.9819999999999993,9.7769999999999992,10.672000000000001,11.685,12.836,14.15 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,82.8,-0.38329999999999997,10.694800000000001,0.089109999999999995,8.2919999999999998,9.0009999999999994,9.798,10.695,11.71,12.863,14.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,82.9,-0.38329999999999997,10.7178,0.089099999999999999,8.31,9.0210000000000008,9.8190000000000008,10.718,11.734999999999999,12.89,14.21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,83,-0.38329999999999997,10.741,0.089099999999999999,8.3279999999999994,9.0399999999999991,9.84,10.741,11.76,12.917999999999999,14.24 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,83.1,-0.38329999999999997,10.764099999999999,0.089090000000000003,8.3460000000000001,9.06,9.8610000000000007,10.763999999999999,11.785,12.946,14.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,83.2,-0.38329999999999997,10.7874,0.089080000000000006,8.3640000000000008,9.08,9.8829999999999991,10.787000000000001,11.811,12.974,14.301 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,83.3,-0.38329999999999997,10.8108,0.089069999999999996,8.3829999999999991,9.1,9.9039999999999999,10.811,11.836,13.000999999999999,14.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,83.4,-0.38329999999999997,10.834300000000001,0.089069999999999996,8.4009999999999998,9.1189999999999998,9.9260000000000002,10.834,11.862,13.03,14.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,83.5,-0.38329999999999997,10.857799999999999,0.08906,8.4190000000000005,9.1389999999999993,9.9469999999999992,10.858000000000001,11.888,13.058,14.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,83.6,-0.38329999999999997,10.881399999999999,0.089050000000000004,8.4380000000000006,9.1590000000000007,9.9689999999999994,10.881,11.913,13.086,14.423999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,83.7,-0.38329999999999997,10.905099999999999,0.089050000000000004,8.4559999999999995,9.1790000000000003,9.9909999999999997,10.904999999999999,11.939,13.114000000000001,14.455 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,83.8,-0.38329999999999997,10.928900000000001,0.089039999999999994,8.4749999999999996,9.1989999999999998,10.013,10.929,11.965,13.143000000000001,14.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,83.9,-0.38329999999999997,10.9527,0.089029999999999998,8.4930000000000003,9.2200000000000006,10.035,10.952999999999999,11.991,13.170999999999999,14.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,84,-0.38329999999999997,10.976699999999999,0.089029999999999998,8.5120000000000005,9.24,10.057,10.977,12.016999999999999,13.2,14.548999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,84.1,-0.38329999999999997,11.0007,0.089020000000000002,8.5310000000000006,9.26,10.079000000000001,11.000999999999999,12.044,13.228,14.581 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,84.2,-0.38329999999999997,11.024800000000001,0.089020000000000002,8.5500000000000007,9.2810000000000006,10.101000000000001,11.025,12.07,13.257,14.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,84.3,-0.38329999999999997,11.0489,0.089010000000000006,8.5690000000000008,9.3010000000000002,10.122999999999999,11.048999999999999,12.096,13.286,14.644 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,84.4,-0.38329999999999997,11.0731,0.089010000000000006,8.5869999999999997,9.3209999999999997,10.145,11.073,12.122999999999999,13.315,14.676 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,84.5,-0.38329999999999997,11.0974,0.088999999999999996,8.6059999999999999,9.3420000000000005,10.167,11.097,12.148999999999999,13.343999999999999,14.708 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,84.6,-0.38329999999999997,11.1218,0.088999999999999996,8.625,9.3629999999999995,10.19,11.122,12.176,13.372999999999999,14.74 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,84.7,-0.38329999999999997,11.1462,0.08899,8.6440000000000001,9.3829999999999991,10.212,11.146000000000001,12.202999999999999,13.401999999999999,14.772 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,84.8,-0.38329999999999997,11.1707,0.08899,8.6630000000000003,9.4039999999999999,10.234999999999999,11.170999999999999,12.228999999999999,13.432,14.805 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,84.9,-0.38329999999999997,11.1952,0.08899,8.6820000000000004,9.4250000000000007,10.257,11.195,12.256,13.461,14.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,85,-0.38329999999999997,11.219799999999999,0.088980000000000004,8.702,9.4450000000000003,10.28,11.22,12.282999999999999,13.491,14.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,85.1,-0.38329999999999997,11.244400000000001,0.088980000000000004,8.7210000000000001,9.4659999999999993,10.302,11.244,12.31,13.52,14.901999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,85.2,-0.38329999999999997,11.2691,0.088969999999999994,8.74,9.4870000000000001,10.324999999999999,11.269,12.337,13.55,14.933999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,85.3,-0.38329999999999997,11.293900000000001,0.088969999999999994,8.76,9.5079999999999991,10.348000000000001,11.294,12.364000000000001,13.58,14.967000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,85.4,-0.38329999999999997,11.3187,0.088969999999999994,8.7789999999999999,9.5289999999999999,10.371,11.319000000000001,12.391,13.609,15 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,85.5,-0.38329999999999997,11.343500000000001,0.088969999999999994,8.798,9.5500000000000007,10.393000000000001,11.343999999999999,12.417999999999999,13.638999999999999,15.032999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,85.6,-0.38329999999999997,11.368399999999999,0.088959999999999997,8.8179999999999996,9.5709999999999997,10.416,11.368,12.445,13.669,15.065 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,85.7,-0.38329999999999997,11.3934,0.088959999999999997,8.8369999999999997,9.5920000000000005,10.439,11.393000000000001,12.473000000000001,13.699,15.098000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,85.8,-0.38329999999999997,11.4183,0.088959999999999997,8.8559999999999999,9.6129999999999995,10.462,11.417999999999999,12.5,13.728999999999999,15.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,85.9,-0.38329999999999997,11.4434,0.088959999999999997,8.8759999999999994,9.6340000000000003,10.484999999999999,11.443,12.526999999999999,13.759,15.164 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,86,-0.38329999999999997,11.468400000000001,0.088950000000000001,8.8949999999999996,9.6549999999999994,10.507999999999999,11.468,12.555,13.789,15.196999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,86.1,-0.38329999999999997,11.493499999999999,0.088950000000000001,8.9149999999999991,9.6760000000000002,10.531000000000001,11.494,12.582000000000001,13.819000000000001,15.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,86.2,-0.38329999999999997,11.518599999999999,0.088950000000000001,8.9339999999999993,9.6969999999999992,10.554,11.519,12.61,13.849,15.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,86.3,-0.38329999999999997,11.543699999999999,0.088950000000000001,8.9540000000000006,9.7189999999999994,10.577,11.544,12.637,13.879,15.297000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,86.4,-0.38329999999999997,11.568899999999999,0.088950000000000001,8.9730000000000008,9.74,10.6,11.569000000000001,12.664999999999999,13.91,15.33 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,86.5,-0.38329999999999997,11.593999999999999,0.088950000000000001,8.9930000000000003,9.7609999999999992,10.622999999999999,11.593999999999999,12.692,13.94,15.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,86.6,-0.38329999999999997,11.619199999999999,0.088950000000000001,9.0120000000000005,9.782,10.646000000000001,11.619,12.72,13.97,15.397 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,86.7,-0.38329999999999997,11.644399999999999,0.088950000000000001,9.032,9.8030000000000008,10.669,11.644,12.747,14,15.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,86.8,-0.38329999999999997,11.669600000000001,0.088950000000000001,9.0510000000000002,9.8249999999999993,10.692,11.67,12.775,14.031000000000001,15.464 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,86.9,-0.38329999999999997,11.694800000000001,0.088950000000000001,9.0709999999999997,9.8460000000000001,10.715,11.695,12.803000000000001,14.061,15.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,87,-0.38329999999999997,11.7201,0.088950000000000001,9.0909999999999993,9.8670000000000009,10.739000000000001,11.72,12.83,14.090999999999999,15.531000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,87.1,-0.38329999999999997,11.7453,0.088950000000000001,9.11,9.8879999999999999,10.762,11.744999999999999,12.858000000000001,14.122,15.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,87.2,-0.38329999999999997,11.7705,0.088950000000000001,9.1300000000000008,9.91,10.785,11.77,12.885,14.151999999999999,15.597 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,87.3,-0.38329999999999997,11.7957,0.088950000000000001,9.1489999999999991,9.9309999999999992,10.808,11.795999999999999,12.913,14.182,15.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,87.4,-0.38329999999999997,11.8209,0.088950000000000001,9.1690000000000005,9.952,10.831,11.821,12.941000000000001,14.212999999999999,15.664 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,87.5,-0.38329999999999997,11.8461,0.088950000000000001,9.1880000000000006,9.9730000000000008,10.853999999999999,11.846,12.968,14.243,15.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,87.6,-0.38329999999999997,11.8713,0.088959999999999997,9.2080000000000002,9.9939999999999998,10.877000000000001,11.871,12.996,14.273,15.731 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,87.7,-0.38329999999999997,11.8965,0.088959999999999997,9.2270000000000003,10.015000000000001,10.9,11.896000000000001,13.023999999999999,14.304,15.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,87.8,-0.38329999999999997,11.9217,0.088959999999999997,9.2469999999999999,10.037000000000001,10.923,11.922000000000001,13.051,14.334,15.798 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,87.9,-0.38329999999999997,11.9468,0.088959999999999997,9.266,10.058,10.946,11.946999999999999,13.079000000000001,14.364000000000001,15.832000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,88,-0.38329999999999997,11.972,0.088959999999999997,9.2859999999999996,10.079000000000001,10.968999999999999,11.972,13.106,14.395,15.865 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,88.1,-0.38329999999999997,11.9971,0.088969999999999994,9.3049999999999997,10.1,10.992000000000001,11.997,13.134,14.425000000000001,15.898999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,88.2,-0.38329999999999997,12.0223,0.088969999999999994,9.3239999999999998,10.121,11.015000000000001,12.022,13.161,14.455,15.932 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,88.3,-0.38329999999999997,12.0474,0.088969999999999994,9.3439999999999994,10.141999999999999,11.038,12.047000000000001,13.189,14.484999999999999,15.965 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,88.4,-0.38329999999999997,12.0725,0.088980000000000004,9.3629999999999995,10.163,11.061,12.071999999999999,13.215999999999999,14.516,15.999000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,88.5,-0.38329999999999997,12.0976,0.088980000000000004,9.3829999999999991,10.183999999999999,11.084,12.098000000000001,13.244,14.545999999999999,16.032 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,88.6,-0.38329999999999997,12.1227,0.088980000000000004,9.4019999999999992,10.205,11.106999999999999,12.122999999999999,13.271000000000001,14.576000000000001,16.065999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,88.7,-0.38329999999999997,12.1478,0.08899,9.4209999999999994,10.226000000000001,11.13,12.148,13.298999999999999,14.606999999999999,16.099 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,88.8,-0.38329999999999997,12.172800000000001,0.08899,9.4410000000000007,10.247,11.153,12.173,13.326000000000001,14.637,16.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,88.9,-0.38329999999999997,12.197800000000001,0.088999999999999996,9.4600000000000009,10.268000000000001,11.176,12.198,13.353999999999999,14.667,16.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,89,-0.38329999999999997,12.222899999999999,0.088999999999999996,9.4789999999999992,10.289,11.199,12.223000000000001,13.381,14.696999999999999,16.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,89.1,-0.38329999999999997,12.2479,0.089010000000000006,9.4979999999999993,10.31,11.221,12.247999999999999,13.409000000000001,14.728,16.233000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,89.2,-0.38329999999999997,12.2729,0.089010000000000006,9.5180000000000007,10.331,11.244,12.273,13.436,14.757999999999999,16.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,89.3,-0.38329999999999997,12.297800000000001,0.089020000000000002,9.5370000000000008,10.352,11.266999999999999,12.298,13.464,14.788,16.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,89.4,-0.38329999999999997,12.322800000000001,0.089020000000000002,9.5559999999999992,10.372999999999999,11.29,12.323,13.491,14.818,16.332999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,89.5,-0.38329999999999997,12.3477,0.089029999999999998,9.5749999999999993,10.394,11.313000000000001,12.348000000000001,13.518000000000001,14.848000000000001,16.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,89.6,-0.38329999999999997,12.3727,0.089029999999999998,9.5950000000000006,10.414999999999999,11.336,12.372999999999999,13.545999999999999,14.879,16.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,89.7,-0.38329999999999997,12.397600000000001,0.089039999999999994,9.6140000000000008,10.436,11.358000000000001,12.398,13.573,14.909000000000001,16.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,89.8,-0.38329999999999997,12.422499999999999,0.089039999999999994,9.6329999999999991,10.457000000000001,11.381,12.422000000000001,13.6,14.939,16.466000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,89.9,-0.38329999999999997,12.4474,0.089050000000000004,9.6519999999999992,10.477,11.404,12.446999999999999,13.628,14.968999999999999,16.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,90,-0.38329999999999997,12.472300000000001,0.08906,9.6709999999999994,10.497999999999999,11.427,12.472,13.654999999999999,14.999000000000001,16.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,90.1,-0.38329999999999997,12.4971,0.08906,9.69,10.519,11.449,12.497,13.682,15.029,16.565999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,90.2,-0.38329999999999997,12.522,0.089069999999999996,9.7089999999999996,10.54,11.472,12.522,13.71,15.058999999999999,16.600000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,90.3,-0.38329999999999997,12.546799999999999,0.089080000000000006,9.7279999999999998,10.561,11.494999999999999,12.547000000000001,13.737,15.09,16.632999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,90.4,-0.38329999999999997,12.5717,0.089090000000000003,9.7469999999999999,10.581,11.516999999999999,12.571999999999999,13.765000000000001,15.12,16.667000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,90.5,-0.38329999999999997,12.596500000000001,0.089090000000000003,9.7669999999999995,10.602,11.54,12.596,13.792,15.15,16.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,90.6,-0.38329999999999997,12.6213,0.089099999999999999,9.7859999999999996,10.622999999999999,11.563000000000001,12.621,13.819000000000001,15.18,16.733000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,90.7,-0.38329999999999997,12.646100000000001,0.089109999999999995,9.8049999999999997,10.644,11.585000000000001,12.646000000000001,13.846,15.21,16.766999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,90.8,-0.38329999999999997,12.6709,0.089120000000000005,9.8239999999999998,10.664,11.608000000000001,12.670999999999999,13.874000000000001,15.24,16.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,90.9,-0.38329999999999997,12.6957,0.089120000000000005,9.843,10.685,11.631,12.696,13.901,15.27,16.832999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,91,-0.38329999999999997,12.720499999999999,0.089130000000000001,9.8620000000000001,10.706,11.653,12.72,13.928000000000001,15.3,16.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,91.1,-0.38329999999999997,12.7453,0.089139999999999997,9.8810000000000002,10.726000000000001,11.676,12.744999999999999,13.955,15.33,16.899999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,91.2,-0.38329999999999997,12.77,0.089149999999999993,9.9,10.747,11.698,12.77,13.983000000000001,15.36,16.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,91.3,-0.38329999999999997,12.7948,0.089160000000000003,9.9179999999999993,10.768000000000001,11.721,12.795,14.01,15.39,16.966999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,91.4,-0.38329999999999997,12.819599999999999,0.089169999999999999,9.9369999999999994,10.788,11.743,12.82,14.037000000000001,15.420999999999999,17 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,91.5,-0.38329999999999997,12.8443,0.089179999999999995,9.9559999999999995,10.808999999999999,11.766,12.843999999999999,14.064,15.451000000000001,17.033000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,91.6,-0.38329999999999997,12.8691,0.089190000000000005,9.9749999999999996,10.83,11.789,12.869,14.092000000000001,15.481,17.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,91.7,-0.38329999999999997,12.8939,0.089200000000000002,9.9939999999999998,10.85,11.811,12.894,14.119,15.510999999999999,17.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,91.8,-0.38329999999999997,12.9186,0.089209999999999998,10.013,10.871,11.834,12.919,14.146000000000001,15.541,17.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,91.9,-0.38329999999999997,12.9434,0.089219999999999994,10.032,10.891999999999999,11.856,12.943,14.173,15.571,17.167000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,92,-0.38329999999999997,12.9681,0.089230000000000004,10.051,10.912000000000001,11.879,12.968,14.201000000000001,15.601000000000001,17.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,92.1,-0.38329999999999997,12.992900000000001,0.08924,10.07,10.933,11.901,12.993,14.228,15.631,17.234000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,92.2,-0.38329999999999997,13.0177,0.089249999999999996,10.089,10.952999999999999,11.923999999999999,13.018000000000001,14.255000000000001,15.662000000000001,17.266999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,92.3,-0.38329999999999997,13.042400000000001,0.089260000000000006,10.108000000000001,10.974,11.946999999999999,13.042,14.282,15.692,17.300999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,92.4,-0.38329999999999997,13.0672,0.089270000000000002,10.127000000000001,10.994999999999999,11.968999999999999,13.067,14.31,15.722,17.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,92.5,-0.38329999999999997,13.092000000000001,0.089279999999999998,10.146000000000001,11.015000000000001,11.992000000000001,13.092000000000001,14.337,15.752000000000001,17.367999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,92.6,-0.38329999999999997,13.1167,0.089300000000000004,10.164,11.036,12.013999999999999,13.117000000000001,14.364000000000001,15.782,17.402000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,92.7,-0.38329999999999997,13.141500000000001,0.08931,10.183,11.055999999999999,12.037000000000001,13.141999999999999,14.391999999999999,15.813000000000001,17.434999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,92.8,-0.38329999999999997,13.1663,0.089319999999999997,10.202,11.077,12.058999999999999,13.166,14.419,15.843,17.469000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,92.9,-0.38329999999999997,13.1911,0.089330000000000007,10.221,11.098000000000001,12.082000000000001,13.191000000000001,14.446,15.872999999999999,17.501999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,93,-0.38329999999999997,13.2158,0.089340000000000003,10.24,11.118,12.103999999999999,13.215999999999999,14.473000000000001,15.903,17.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,93.1,-0.38329999999999997,13.240600000000001,0.089359999999999995,10.257999999999999,11.138999999999999,12.127000000000001,13.241,14.500999999999999,15.933999999999999,17.568999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,93.2,-0.38329999999999997,13.2654,0.089370000000000005,10.276999999999999,11.159000000000001,12.148999999999999,13.265000000000001,14.528,15.964,17.603000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,93.3,-0.38329999999999997,13.2902,0.089380000000000001,10.295999999999999,11.18,12.172000000000001,13.29,14.555999999999999,15.994,17.635999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,93.4,-0.38329999999999997,13.315099999999999,0.089399999999999993,10.315,11.201000000000001,12.195,13.315,14.583,16.024999999999999,17.670999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,93.5,-0.38329999999999997,13.3399,0.089410000000000003,10.334,11.221,12.217000000000001,13.34,14.61,16.055,17.704000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,93.6,-0.38329999999999997,13.364699999999999,0.089419999999999999,10.353,11.242000000000001,12.24,13.365,14.638,16.085000000000001,17.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,93.7,-0.38329999999999997,13.3896,0.089440000000000006,10.372,11.262,12.262,13.39,14.664999999999999,16.116,17.771999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,93.8,-0.38329999999999997,13.4145,0.089450000000000002,10.391,11.282999999999999,12.285,13.414,14.693,16.146000000000001,17.806000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,93.9,-0.38329999999999997,13.439399999999999,0.089469999999999994,10.409000000000001,11.304,12.308,13.439,14.72,16.177,17.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,94,-0.38329999999999997,13.4643,0.089480000000000004,10.428000000000001,11.324,12.33,13.464,14.747999999999999,16.207000000000001,17.873000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,94.1,-0.38329999999999997,13.4892,0.08949,10.446999999999999,11.345000000000001,12.353,13.489000000000001,14.775,16.236999999999998,17.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,94.2,-0.38329999999999997,13.514200000000001,0.089510000000000006,10.465999999999999,11.366,12.375999999999999,13.513999999999999,14.803000000000001,16.268000000000001,17.942 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,94.3,-0.38329999999999997,13.539099999999999,0.089520000000000002,10.484999999999999,11.385999999999999,12.398,13.539,14.83,16.297999999999998,17.975000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,94.4,-0.38329999999999997,13.5641,0.089539999999999995,10.504,11.407,12.420999999999999,13.564,14.858000000000001,16.329000000000001,18.010000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,94.5,-0.38329999999999997,13.5892,0.089550000000000005,10.523,11.428000000000001,12.444000000000001,13.589,14.885999999999999,16.36,18.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,94.6,-0.38329999999999997,13.6142,0.089569999999999997,10.542,11.448,12.467000000000001,13.614000000000001,14.913,16.39,18.077999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,94.7,-0.38329999999999997,13.6393,0.089590000000000003,10.561,11.468999999999999,12.489000000000001,13.638999999999999,14.941000000000001,16.420999999999999,18.111999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,94.8,-0.38329999999999997,13.664400000000001,0.089599999999999999,10.58,11.49,12.512,13.664,14.968999999999999,16.452000000000002,18.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,94.9,-0.38329999999999997,13.689500000000001,0.089620000000000005,10.599,11.510999999999999,12.535,13.69,14.997,16.483000000000001,18.181000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,95,-0.38329999999999997,13.714600000000001,0.089630000000000001,10.618,11.532,12.558,13.715,15.023999999999999,16.513000000000002,18.215 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,95.1,-0.38329999999999997,13.739800000000001,0.089649999999999994,10.637,11.552,12.581,13.74,15.052,16.545000000000002,18.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,95.2,-0.38329999999999997,13.765000000000001,0.08967,10.656000000000001,11.573,12.603,13.765000000000001,15.08,16.576000000000001,18.283999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,95.3,-0.38329999999999997,13.7902,0.089679999999999996,10.675000000000001,11.593999999999999,12.625999999999999,13.79,15.108000000000001,16.606000000000002,18.318000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,95.4,-0.38329999999999997,13.8155,0.089700000000000002,10.694000000000001,11.615,12.648999999999999,13.816000000000001,15.135999999999999,16.637,18.353000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,95.5,-0.38329999999999997,13.8408,0.089719999999999994,10.712999999999999,11.635999999999999,12.672000000000001,13.840999999999999,15.164,16.669,18.388000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,95.6,-0.38329999999999997,13.866099999999999,0.08974,10.731999999999999,11.657,12.695,13.866,15.192,16.7,18.422999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,95.7,-0.38329999999999997,13.891400000000001,0.089749999999999996,10.750999999999999,11.678000000000001,12.718,13.891,15.22,16.731000000000002,18.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,95.8,-0.38329999999999997,13.9168,0.089770000000000003,10.77,11.699,12.741,13.917,15.247999999999999,16.762,18.492000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,95.9,-0.38329999999999997,13.9422,0.089789999999999995,10.789,11.718999999999999,12.763999999999999,13.942,15.276,16.792999999999999,18.527000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,96,-0.38329999999999997,13.967599999999999,0.089810000000000001,10.808999999999999,11.74,12.787000000000001,13.968,15.304,16.824999999999999,18.562000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,96.1,-0.38329999999999997,13.9931,0.089829999999999993,10.827999999999999,11.760999999999999,12.81,13.993,15.333,16.856000000000002,18.597000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,96.2,-0.38329999999999997,14.018599999999999,0.089840000000000003,10.847,11.782999999999999,12.833,14.019,15.361000000000001,16.887,18.632000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,96.3,-0.38329999999999997,14.0441,0.089859999999999995,10.866,11.804,12.856999999999999,14.044,15.388999999999999,16.919,18.667000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,96.4,-0.38329999999999997,14.069699999999999,0.089880000000000002,10.885,11.824999999999999,12.88,14.07,15.417,16.95,18.702000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,96.5,-0.38329999999999997,14.0953,0.089899999999999994,10.904999999999999,11.846,12.903,14.095000000000001,15.446,16.981999999999999,18.736999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,96.6,-0.38329999999999997,14.120900000000001,0.08992,10.923999999999999,11.867000000000001,12.926,14.121,15.474,17.013000000000002,18.773 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,96.7,-0.38329999999999997,14.146599999999999,0.089940000000000006,10.943,11.888,12.949,14.147,15.502000000000001,17.045000000000002,18.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,96.8,-0.38329999999999997,14.1724,0.089959999999999998,10.962999999999999,11.909000000000001,12.973000000000001,14.172000000000001,15.531000000000001,17.077000000000002,18.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,96.9,-0.38329999999999997,14.1981,0.089980000000000004,10.981999999999999,11.93,12.996,14.198,15.56,17.109000000000002,18.879000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,97,-0.38329999999999997,14.2239,0.09,11.000999999999999,11.952,13.019,14.224,15.587999999999999,17.14,18.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,97.1,-0.38329999999999997,14.2498,0.090020000000000003,11.021000000000001,11.973000000000001,13.042999999999999,14.25,15.617000000000001,17.172000000000001,18.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,97.2,-0.38329999999999997,14.275700000000001,0.090039999999999995,11.04,11.994,13.066000000000001,14.276,15.646000000000001,17.204000000000001,18.986000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,97.3,-0.38329999999999997,14.301600000000001,0.090060000000000001,11.058999999999999,12.015000000000001,13.09,14.302,15.673999999999999,17.236000000000001,19.021999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,97.4,-0.38329999999999997,14.3276,0.090079999999999993,11.079000000000001,12.037000000000001,13.113,14.327999999999999,15.702999999999999,17.268000000000001,19.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,97.5,-0.38329999999999997,14.3537,0.0901,11.099,12.058,13.137,14.353999999999999,15.731999999999999,17.3,19.094000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,97.6,-0.38329999999999997,14.379799999999999,0.090120000000000006,11.118,12.08,13.161,14.38,15.760999999999999,17.332999999999998,19.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,97.7,-0.38329999999999997,14.405900000000001,0.090149999999999994,11.137,12.101000000000001,13.183999999999999,14.406000000000001,15.79,17.364999999999998,19.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,97.8,-0.38329999999999997,14.4321,0.09017,11.157,12.122999999999999,13.208,14.432,15.819000000000001,17.398,19.202999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,97.9,-0.38329999999999997,14.458399999999999,0.090190000000000006,11.177,12.144,13.231999999999999,14.458,15.848000000000001,17.43,19.239000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,98,-0.38329999999999997,14.4848,0.090209999999999999,11.196999999999999,12.166,13.256,14.484999999999999,15.878,17.463000000000001,19.274999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,98.1,-0.38329999999999997,14.511200000000001,0.090230000000000005,11.215999999999999,12.188000000000001,13.279,14.510999999999999,15.907,17.495000000000001,19.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,98.2,-0.38329999999999997,14.537599999999999,0.090260000000000007,11.236000000000001,12.209,13.303000000000001,14.538,15.936,17.527999999999999,19.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,98.3,-0.38329999999999997,14.5642,0.090279999999999999,11.256,12.231,13.327,14.564,15.965999999999999,17.561,19.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,98.4,-0.38329999999999997,14.5908,0.090300000000000005,11.276,12.253,13.351000000000001,14.590999999999999,15.994999999999999,17.594000000000001,19.422000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,98.5,-0.38329999999999997,14.6174,0.090329999999999994,11.295,12.275,13.375,14.617000000000001,16.024999999999999,17.626999999999999,19.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,98.6,-0.38329999999999997,14.6442,0.09035,11.315,12.297000000000001,13.4,14.644,16.055,17.66,19.495999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,98.7,-0.38329999999999997,14.670999999999999,0.090370000000000006,11.336,12.319000000000001,13.423999999999999,14.670999999999999,16.084,17.693000000000001,19.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,98.8,-0.38329999999999997,14.697900000000001,0.090399999999999994,11.355,12.340999999999999,13.448,14.698,16.114000000000001,17.727,19.571000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,98.9,-0.38329999999999997,14.7248,0.09042,11.375999999999999,12.363,13.472,14.725,16.143999999999998,17.760000000000002,19.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,99,-0.38329999999999997,14.751899999999999,0.090440000000000006,11.396000000000001,12.385,13.497,14.752000000000001,16.173999999999999,17.792999999999999,19.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,99.1,-0.38329999999999997,14.779,0.090469999999999995,11.416,12.407,13.521000000000001,14.779,16.204000000000001,17.827000000000002,19.684000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,99.2,-0.38329999999999997,14.8062,0.090490000000000001,11.436,12.429,13.545999999999999,14.805999999999999,16.234999999999999,17.861000000000001,19.721 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,99.3,-0.38329999999999997,14.833399999999999,0.090520000000000003,11.456,12.452,13.57,14.833,16.265000000000001,17.895,19.760000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,99.4,-0.38329999999999997,14.860799999999999,0.090539999999999995,11.477,12.474,13.595000000000001,14.861000000000001,16.295000000000002,17.928999999999998,19.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,99.5,-0.38329999999999997,14.888199999999999,0.090569999999999998,11.497,12.496,13.62,14.888,16.326000000000001,17.963000000000001,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,99.6,-0.38329999999999997,14.915699999999999,0.090590000000000004,11.518000000000001,12.519,13.645,14.916,16.356000000000002,17.997,19.873999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,99.7,-0.38329999999999997,14.9434,0.090620000000000006,11.538,12.542,13.67,14.943,16.387,18.030999999999999,19.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,99.8,-0.38329999999999997,14.9711,0.090639999999999998,11.558999999999999,12.564,13.695,14.971,16.417999999999999,18.065999999999999,19.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,99.9,-0.38329999999999997,14.998900000000001,0.090670000000000001,11.579000000000001,12.587,13.72,14.999000000000001,16.449000000000002,18.100000000000001,19.989999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,100,-0.38329999999999997,15.0267,0.090690000000000007,11.6,12.61,13.744999999999999,15.026999999999999,16.48,18.135000000000002,20.027999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,100.1,-0.38329999999999997,15.0547,0.090719999999999995,11.621,12.632999999999999,13.77,15.055,16.510999999999999,18.170000000000002,20.068000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,100.2,-0.38329999999999997,15.082800000000001,0.090749999999999997,11.641999999999999,12.654999999999999,13.795999999999999,15.083,16.542000000000002,18.204999999999998,20.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,100.3,-0.38329999999999997,15.110900000000001,0.090770000000000003,11.663,12.679,13.821,15.111000000000001,16.573,18.239000000000001,20.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,100.4,-0.38329999999999997,15.139200000000001,0.090800000000000006,11.683999999999999,12.702,13.846,15.138999999999999,16.605,18.274999999999999,20.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,100.5,-0.38329999999999997,15.1676,0.090829999999999994,11.705,12.725,13.872,15.167999999999999,16.637,18.309999999999999,20.225999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,100.6,-0.38329999999999997,15.196,0.09085,11.726000000000001,12.747999999999999,13.898,15.196,16.667999999999999,18.344999999999999,20.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,100.7,-0.38329999999999997,15.224600000000001,0.090880000000000002,11.747,12.771000000000001,13.923999999999999,15.225,16.7,18.381,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,100.8,-0.38329999999999997,15.2532,0.090910000000000005,11.768000000000001,12.795,13.949,15.253,16.731999999999999,18.417000000000002,20.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,100.9,-0.38329999999999997,15.2819,0.090929999999999997,11.79,12.818,13.975,15.282,16.763999999999999,18.452000000000002,20.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,101,-0.38329999999999997,15.3108,0.090959999999999999,11.811,12.842000000000001,14.000999999999999,15.311,16.795999999999999,18.488,20.425999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,101.1,-0.38329999999999997,15.339700000000001,0.090990000000000001,11.832000000000001,12.865,14.026999999999999,15.34,16.827999999999999,18.524000000000001,20.466000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,101.2,-0.38329999999999997,15.3687,0.091020000000000004,11.853999999999999,12.888999999999999,14.053000000000001,15.369,16.861000000000001,18.561,20.507000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,101.3,-0.38329999999999997,15.3979,0.091050000000000006,11.875,12.913,14.08,15.398,16.893000000000001,18.597000000000001,20.547999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,101.4,-0.38329999999999997,15.427099999999999,0.091069999999999998,11.897,12.936999999999999,14.106,15.427,16.925999999999998,18.632999999999999,20.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,101.5,-0.38329999999999997,15.4564,0.0911,11.919,12.96,14.132999999999999,15.456,16.957999999999998,18.670000000000002,20.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,101.6,-0.38329999999999997,15.485799999999999,0.091130000000000003,11.94,12.984,14.159000000000001,15.486000000000001,16.991,18.706,20.670999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,101.7,-0.38329999999999997,15.5154,0.091160000000000005,11.962,13.007999999999999,14.186,15.515000000000001,17.024000000000001,18.742999999999999,20.712 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,101.8,-0.38329999999999997,15.545,0.091189999999999993,11.984,13.032999999999999,14.212,15.545,17.056999999999999,18.78,20.754000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,101.9,-0.38329999999999997,15.5747,0.091219999999999996,12.006,13.057,14.239000000000001,15.574999999999999,17.09,18.817,20.795999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,102,-0.38329999999999997,15.6046,0.091249999999999998,12.028,13.081,14.266,15.605,17.123000000000001,18.855,20.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,102.1,-0.38329999999999997,15.634499999999999,0.09128,12.05,13.105,14.292999999999999,15.634,17.157,18.891999999999999,20.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,102.2,-0.38329999999999997,15.6646,0.091310000000000002,12.071999999999999,13.13,14.32,15.664999999999999,17.190000000000001,18.93,20.922000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,102.3,-0.38329999999999997,15.694699999999999,0.091329999999999995,12.095000000000001,13.154999999999999,14.347,15.695,17.224,18.966999999999999,20.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,102.4,-0.38329999999999997,15.725,0.091359999999999997,12.117000000000001,13.179,14.374000000000001,15.725,17.257999999999999,19.004999999999999,21.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,102.5,-0.38329999999999997,15.7553,0.091389999999999999,12.14,13.204000000000001,14.401999999999999,15.755000000000001,17.291,19.042999999999999,21.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,102.6,-0.38329999999999997,15.7858,0.091420000000000001,12.162000000000001,13.228999999999999,14.429,15.786,17.324999999999999,19.081,21.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,102.7,-0.38329999999999997,15.8164,0.09146,12.183999999999999,13.253,14.457000000000001,15.816000000000001,17.36,19.119,21.135999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,102.8,-0.38329999999999997,15.847,0.091490000000000002,12.207000000000001,13.278,14.484,15.847,17.393999999999998,19.157,21.178999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,102.9,-0.38329999999999997,15.877800000000001,0.091520000000000004,12.23,13.303000000000001,14.512,15.878,17.428000000000001,19.196000000000002,21.222000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,103,-0.38329999999999997,15.9087,0.091550000000000006,12.253,13.329000000000001,14.54,15.909000000000001,17.463000000000001,19.234999999999999,21.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,103.1,-0.38329999999999997,15.9396,0.091579999999999995,12.275,13.353999999999999,14.568,15.94,17.497,19.273,21.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,103.2,-0.38329999999999997,15.970700000000001,0.091609999999999997,12.298,13.379,14.596,15.971,17.532,19.312000000000001,21.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,103.3,-0.38329999999999997,16.001899999999999,0.091639999999999999,12.321,13.404,14.624000000000001,16.001999999999999,17.567,19.350999999999999,21.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,103.4,-0.38329999999999997,16.033200000000001,0.091670000000000001,12.343999999999999,13.43,14.651999999999999,16.033000000000001,17.600999999999999,19.39,21.44 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,103.5,-0.38329999999999997,16.064499999999999,0.091700000000000004,12.367000000000001,13.455,14.68,16.064,17.635999999999999,19.428999999999998,21.484000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,103.6,-0.38329999999999997,16.096,0.091730000000000006,12.391,13.481,14.708,16.096,17.670999999999999,19.469000000000001,21.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,103.7,-0.38329999999999997,16.127600000000001,0.091770000000000004,12.414,13.506,14.737,16.128,17.707000000000001,19.507999999999999,21.574000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,103.8,-0.38329999999999997,16.159300000000002,0.091800000000000007,12.436999999999999,13.532,14.765000000000001,16.158999999999999,17.742000000000001,19.547999999999998,21.617999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,103.9,-0.38329999999999997,16.190999999999999,0.091829999999999995,12.46,13.558,14.794,16.190999999999999,17.777999999999999,19.588000000000001,21.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,104,-0.38329999999999997,16.222899999999999,0.091859999999999997,12.484,13.584,14.821999999999999,16.222999999999999,17.812999999999999,19.628,21.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,104.1,-0.38329999999999997,16.254899999999999,0.091899999999999996,12.507,13.61,14.851000000000001,16.254999999999999,17.849,19.667999999999999,21.754000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,104.2,-0.38329999999999997,16.286999999999999,0.091929999999999998,12.531000000000001,13.635999999999999,14.88,16.286999999999999,17.885000000000002,19.707999999999998,21.798999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,104.3,-0.38329999999999997,16.319099999999999,0.09196,12.555,13.662000000000001,14.909000000000001,16.318999999999999,17.920999999999999,19.748000000000001,21.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,104.4,-0.38329999999999997,16.351400000000002,0.091990000000000002,12.577999999999999,13.688000000000001,14.938000000000001,16.350999999999999,17.957000000000001,19.789000000000001,21.888999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,104.5,-0.38329999999999997,16.383700000000001,0.092030000000000001,12.602,13.714,14.967000000000001,16.384,17.992999999999999,19.829000000000001,21.934999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,104.6,-0.38329999999999997,16.4162,0.092060000000000003,12.625999999999999,13.741,14.996,16.416,18.029,19.87,21.981000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,104.7,-0.38329999999999997,16.448799999999999,0.092090000000000005,12.65,13.766999999999999,15.026,16.449000000000002,18.065999999999999,19.911000000000001,22.027000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,104.8,-0.38329999999999997,16.481400000000001,0.092130000000000004,12.673999999999999,13.792999999999999,15.055,16.481000000000002,18.102,19.952000000000002,22.074000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,104.9,-0.38329999999999997,16.514199999999999,0.092160000000000006,12.698,13.82,15.084,16.513999999999999,18.138999999999999,19.992999999999999,22.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,105,-0.38329999999999997,16.547000000000001,0.092189999999999994,12.722,13.847,15.114000000000001,16.547000000000001,18.175000000000001,20.033999999999999,22.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,105.1,-0.38329999999999997,16.579999999999998,0.092230000000000006,12.746,13.872999999999999,15.143000000000001,16.579999999999998,18.212,20.076000000000001,22.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,105.2,-0.38329999999999997,16.613099999999999,0.092259999999999995,12.77,13.9,15.173,16.613,18.248999999999999,20.117000000000001,22.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,105.3,-0.38329999999999997,16.6462,0.092289999999999997,12.795,13.927,15.202999999999999,16.646000000000001,18.286000000000001,20.158000000000001,22.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,105.4,-0.38329999999999997,16.679500000000001,0.092329999999999995,12.819000000000001,13.954000000000001,15.233000000000001,16.68,18.323,20.2,22.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,105.5,-0.38329999999999997,16.712900000000001,0.092359999999999998,12.843999999999999,13.981,15.263,16.713000000000001,18.361000000000001,20.242000000000001,22.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,105.6,-0.38329999999999997,16.746400000000001,0.092399999999999996,12.868,14.007999999999999,15.292999999999999,16.745999999999999,18.398,20.283999999999999,22.449000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,105.7,-0.38329999999999997,16.78,0.092429999999999998,12.893000000000001,14.035,15.323,16.78,18.436,20.326000000000001,22.495999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,105.8,-0.38329999999999997,16.813700000000001,0.092469999999999997,12.917,14.063000000000001,15.353,16.814,18.474,20.369,22.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,105.9,-0.38329999999999997,16.8475,0.092499999999999999,12.942,14.09,15.384,16.847999999999999,18.510999999999999,20.411000000000001,22.591999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,106,-0.38329999999999997,16.881399999999999,0.092539999999999997,12.967000000000001,14.117000000000001,15.414,16.881,18.548999999999999,20.454000000000001,22.640999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,106.1,-0.38329999999999997,16.915400000000002,0.09257,12.992000000000001,14.145,15.445,16.914999999999999,18.587,20.497,22.687999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,106.2,-0.38329999999999997,16.9496,0.092609999999999998,13.016999999999999,14.173,15.475,16.95,18.626000000000001,20.54,22.736999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,106.3,-0.38329999999999997,16.983799999999999,0.09264,13.042,14.2,15.506,16.984000000000002,18.664000000000001,20.582999999999998,22.786000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,106.4,-0.38329999999999997,17.0182,0.092679999999999998,13.067,14.228,15.537000000000001,17.018000000000001,18.702000000000002,20.626000000000001,22.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,106.5,-0.38329999999999997,17.052700000000002,0.092710000000000001,13.092000000000001,14.256,15.568,17.053000000000001,18.741,20.669,22.882999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,106.6,-0.38329999999999997,17.087299999999999,0.092749999999999999,13.117000000000001,14.284000000000001,15.599,17.087,18.78,20.713000000000001,22.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,106.7,-0.38329999999999997,17.122,0.092780000000000001,13.143000000000001,14.311999999999999,15.63,17.122,18.818000000000001,20.756,22.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,106.8,-0.38329999999999997,17.1569,0.09282,13.167999999999999,14.34,15.661,17.157,18.858000000000001,20.8,23.032 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,106.9,-0.38329999999999997,17.191800000000001,0.092859999999999998,13.194000000000001,14.368,15.693,17.192,18.896999999999998,20.844999999999999,23.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,107,-0.38329999999999997,17.226900000000001,0.09289,13.22,14.397,15.724,17.227,18.936,20.888000000000002,23.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,107.1,-0.38329999999999997,17.262,0.092929999999999999,13.244999999999999,14.425000000000001,15.756,17.262,18.975000000000001,20.933,23.181000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,107.2,-0.38329999999999997,17.2973,0.092960000000000001,13.271000000000001,14.454000000000001,15.787000000000001,17.297000000000001,19.015000000000001,20.977,23.231000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,107.3,-0.38329999999999997,17.332699999999999,0.092999999999999999,13.297000000000001,14.481999999999999,15.819000000000001,17.332999999999998,19.053999999999998,21.021999999999998,23.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,107.4,-0.38329999999999997,17.368300000000001,0.093039999999999998,13.323,14.510999999999999,15.851000000000001,17.367999999999999,19.094000000000001,21.067,23.332999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,107.5,-0.38329999999999997,17.4039,0.09307,13.349,14.54,15.882999999999999,17.404,19.134,21.111000000000001,23.382999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,107.6,-0.38329999999999997,17.439699999999998,0.093109999999999998,13.375,14.569000000000001,15.914999999999999,17.440000000000001,19.173999999999999,21.157,23.434000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,107.7,-0.38329999999999997,17.4755,0.093149999999999997,13.401,14.598000000000001,15.946999999999999,17.475999999999999,19.213999999999999,21.202000000000002,23.484999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,107.8,-0.38329999999999997,17.511500000000002,0.093179999999999999,13.427,14.627000000000001,15.978999999999999,17.512,19.254000000000001,21.247,23.536000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,107.9,-0.38329999999999997,17.547599999999999,0.093219999999999997,13.454000000000001,14.656000000000001,16.012,17.547999999999998,19.295000000000002,21.292000000000002,23.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,108,-0.38329999999999997,17.5839,0.093259999999999996,13.48,14.685,16.044,17.584,19.335999999999999,21.338000000000001,23.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,108.1,-0.38329999999999997,17.620200000000001,0.093289999999999998,13.507,14.715,16.077000000000002,17.62,19.376000000000001,21.384,23.690999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,108.2,-0.38329999999999997,17.656700000000001,0.093329999999999996,13.532999999999999,14.744,16.11,17.657,19.417000000000002,21.43,23.742999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,108.3,-0.38329999999999997,17.693200000000001,0.093369999999999995,13.56,14.773,16.141999999999999,17.693000000000001,19.457999999999998,21.475999999999999,23.795999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,108.4,-0.38329999999999997,17.729900000000001,0.093410000000000007,13.586,14.803000000000001,16.175000000000001,17.73,19.498999999999999,21.523,23.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,108.5,-0.38329999999999997,17.7668,0.093439999999999995,13.614000000000001,14.833,16.207999999999998,17.766999999999999,19.54,21.568999999999999,23.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,108.6,-0.38329999999999997,17.803699999999999,0.093479999999999994,13.64,14.863,16.241,17.803999999999998,19.582000000000001,21.614999999999998,23.952999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,108.7,-0.38329999999999997,17.840699999999998,0.093520000000000006,13.667,14.891999999999999,16.274999999999999,17.841000000000001,19.623000000000001,21.661999999999999,24.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,108.8,-0.38329999999999997,17.8779,0.093560000000000004,13.694000000000001,14.922000000000001,16.308,17.878,19.664999999999999,21.709,24.059000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,108.9,-0.38329999999999997,17.915199999999999,0.093590000000000007,13.722,14.952999999999999,16.341000000000001,17.914999999999999,19.707000000000001,21.756,24.111999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,109,-0.38329999999999997,17.9526,0.093630000000000005,13.749000000000001,14.983000000000001,16.375,17.952999999999999,19.748999999999999,21.803000000000001,24.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,109.1,-0.38329999999999997,17.990100000000002,0.093670000000000003,13.776,15.013,16.408000000000001,17.989999999999998,19.791,21.850999999999999,24.219000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,109.2,-0.38329999999999997,18.027699999999999,0.093710000000000002,13.803000000000001,15.042999999999999,16.442,18.027999999999999,19.832999999999998,21.898,24.273 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,109.3,-0.38329999999999997,18.0654,0.09375,13.831,15.073,16.475999999999999,18.065000000000001,19.875,21.946000000000002,24.327000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,109.4,-0.38329999999999997,18.103300000000001,0.093780000000000002,13.859,15.103999999999999,16.510000000000002,18.103000000000002,19.917999999999999,21.992999999999999,24.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,109.5,-0.38329999999999997,18.141200000000001,0.093820000000000001,13.885999999999999,15.135,16.544,18.140999999999998,19.96,22.041,24.434999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,109.6,-0.38329999999999997,18.179200000000002,0.093859999999999999,13.914,15.164999999999999,16.577999999999999,18.178999999999998,20.003,22.088999999999999,24.489000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,109.7,-0.38329999999999997,18.217400000000001,0.093899999999999997,13.942,15.196,16.611999999999998,18.216999999999999,20.045999999999999,22.138000000000002,24.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,109.8,-0.38329999999999997,18.255600000000001,0.093939999999999996,13.968999999999999,15.227,16.646000000000001,18.256,20.088000000000001,22.186,24.599 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,109.9,-0.38329999999999997,18.294,0.093969999999999998,13.997999999999999,15.257999999999999,16.681000000000001,18.294,20.131,22.234000000000002,24.652999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-girls-zscore-expanded-table.xlsx,expanded,female,length,110,-0.38329999999999997,18.3324,0.094009999999999996,14.025,15.289,16.715,18.332000000000001,20.173999999999999,22.283000000000001,24.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,65,-0.38329999999999997,7.2401999999999997,0.091130000000000003,5.5830000000000002,6.0709999999999997,6.62,7.24,7.944,8.7460000000000004,9.6639999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,65.099999999999994,-0.38329999999999997,7.2626999999999997,0.091120000000000007,5.6,6.09,6.64,7.2629999999999999,7.9690000000000003,8.7729999999999997,9.6940000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,65.2,-0.38329999999999997,7.2851999999999997,0.091109999999999997,5.6180000000000003,6.109,6.6609999999999996,7.2850000000000001,7.9930000000000003,8.8000000000000007,9.7240000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,65.3,-0.38329999999999997,7.3075999999999999,0.0911,5.6349999999999998,6.1280000000000001,6.6820000000000004,7.3079999999999998,8.0180000000000007,8.827,9.7530000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,65.400000000000006,-0.38329999999999997,7.33,0.091090000000000004,5.6520000000000001,6.1459999999999999,6.702,7.33,8.0419999999999998,8.8539999999999992,9.7829999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,65.5,-0.38329999999999997,7.3522999999999996,0.091090000000000004,5.67,6.165,6.7229999999999999,7.3520000000000003,8.0670000000000002,8.8810000000000002,9.8130000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,65.599999999999994,-0.38329999999999997,7.3745000000000003,0.091079999999999994,5.6870000000000003,6.1840000000000002,6.7430000000000003,7.3739999999999997,8.0909999999999993,8.907,9.8420000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,65.7,-0.38329999999999997,7.3967000000000001,0.091069999999999998,5.7039999999999997,6.2030000000000003,6.7629999999999999,7.3970000000000002,8.1150000000000002,8.9339999999999993,9.8710000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,65.8,-0.38329999999999997,7.4188999999999998,0.091060000000000002,5.7210000000000001,6.2210000000000001,6.7839999999999998,7.4189999999999996,8.1389999999999993,8.9600000000000009,9.9009999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,65.900000000000006,-0.38329999999999997,7.4409999999999998,0.091050000000000006,5.7389999999999999,6.24,6.8040000000000003,7.4409999999999998,8.1639999999999997,8.9870000000000001,9.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,66,-0.38329999999999997,7.4630000000000001,0.091039999999999996,5.7560000000000002,6.2590000000000003,6.8239999999999998,7.4630000000000001,8.1880000000000006,9.0129999999999999,9.9589999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,66.099999999999994,-0.38329999999999997,7.4850000000000003,0.09103,5.7729999999999997,6.2770000000000001,6.8440000000000003,7.4850000000000003,8.2119999999999997,9.0399999999999991,9.9879999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,66.2,-0.38329999999999997,7.5068999999999999,0.091020000000000004,5.79,6.2960000000000003,6.8639999999999999,7.5069999999999997,8.2360000000000007,9.0660000000000007,10.016999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,66.3,-0.38329999999999997,7.5288000000000004,0.091009999999999994,5.8070000000000004,6.3140000000000001,6.8849999999999998,7.5289999999999999,8.26,9.0920000000000005,10.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,66.400000000000006,-0.38329999999999997,7.5507,0.090999999999999998,5.8239999999999998,6.3330000000000002,6.9050000000000002,7.5510000000000002,8.2829999999999995,9.1180000000000003,10.074 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,66.5,-0.38329999999999997,7.5724,0.090990000000000001,5.8410000000000002,6.351,6.9249999999999998,7.5720000000000001,8.3070000000000004,9.1440000000000001,10.103 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,66.599999999999994,-0.38329999999999997,7.5941999999999998,0.090980000000000005,5.8579999999999997,6.3689999999999998,6.9450000000000003,7.5940000000000003,8.3309999999999995,9.1709999999999994,10.132 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,66.7,-0.38329999999999997,7.6158000000000001,0.090969999999999995,5.875,6.3879999999999999,6.9640000000000004,7.6159999999999997,8.3550000000000004,9.1959999999999997,10.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,66.8,-0.38329999999999997,7.6375000000000002,0.090959999999999999,5.8920000000000003,6.4059999999999997,6.984,7.6379999999999999,8.3780000000000001,9.2219999999999995,10.189 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,66.900000000000006,-0.38329999999999997,7.6589999999999998,0.090950000000000003,5.9080000000000004,6.4240000000000004,7.0039999999999996,7.6589999999999998,8.4019999999999992,9.2479999999999993,10.217000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,67,-0.38329999999999997,7.6806000000000001,0.090939999999999993,5.9249999999999998,6.4420000000000002,7.024,7.681,8.4250000000000007,9.2739999999999991,10.246 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,67.099999999999994,-0.38329999999999997,7.702,0.090929999999999997,5.9420000000000002,6.46,7.0430000000000001,7.702,8.4489999999999998,9.3000000000000007,10.273999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,67.2,-0.38329999999999997,7.7233999999999998,0.090910000000000005,5.9589999999999996,6.4790000000000001,7.0629999999999997,7.7229999999999999,8.4719999999999995,9.3249999999999993,10.302 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,67.3,-0.38329999999999997,7.7447999999999997,0.090899999999999995,5.9749999999999996,6.4969999999999999,7.0830000000000002,7.7450000000000001,8.4960000000000004,9.3510000000000009,10.33 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,67.400000000000006,-0.38329999999999997,7.7660999999999998,0.090889999999999999,5.992,6.5149999999999997,7.1020000000000003,7.766,8.5190000000000001,9.3759999999999994,10.358000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,67.5,-0.38329999999999997,7.7873999999999999,0.090880000000000002,6.0090000000000003,6.5330000000000004,7.1219999999999999,7.7869999999999999,8.5419999999999998,9.4019999999999992,10.385999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,67.599999999999994,-0.38329999999999997,7.8086000000000002,0.090870000000000006,6.0250000000000004,6.55,7.141,7.8090000000000002,8.5649999999999995,9.4269999999999996,10.414 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,67.7,-0.38329999999999997,7.8297999999999996,0.090859999999999996,6.0419999999999998,6.5679999999999996,7.1609999999999996,7.83,8.5879999999999992,9.4529999999999994,10.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,67.8,-0.38329999999999997,7.8509000000000002,0.09085,6.0579999999999998,6.5860000000000003,7.18,7.851,8.6110000000000007,9.4779999999999998,10.47 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,67.900000000000006,-0.38329999999999997,7.8719999999999999,0.090840000000000004,6.0750000000000002,6.6040000000000001,7.2,7.8719999999999999,8.6349999999999998,9.5030000000000001,10.497999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,68,-0.38329999999999997,7.8929999999999998,0.090829999999999994,6.0910000000000002,6.6219999999999999,7.2190000000000003,7.8929999999999998,8.657,9.5280000000000005,10.525 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,68.099999999999994,-0.38329999999999997,7.9139999999999997,0.090819999999999998,6.1070000000000002,6.64,7.2380000000000004,7.9139999999999997,8.68,9.5530000000000008,10.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,68.2,-0.38329999999999997,7.9349999999999996,0.090800000000000006,6.1239999999999997,6.657,7.2569999999999997,7.9349999999999996,8.7029999999999994,9.5779999999999994,10.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,68.3,-0.38329999999999997,7.9558999999999997,0.090789999999999996,6.14,6.6749999999999998,7.2770000000000001,7.9560000000000004,8.7260000000000009,9.6029999999999998,10.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,68.400000000000006,-0.38329999999999997,7.9767999999999999,0.09078,6.1559999999999997,6.6929999999999996,7.2960000000000003,7.9770000000000003,8.7490000000000006,9.6280000000000001,10.635 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,68.5,-0.38329999999999997,7.9976000000000003,0.090770000000000003,6.173,6.71,7.3150000000000004,7.9980000000000002,8.7720000000000002,9.6530000000000005,10.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,68.599999999999994,-0.38329999999999997,8.0183999999999997,0.090759999999999993,6.1890000000000001,6.7279999999999998,7.3339999999999996,8.0180000000000007,8.7940000000000005,9.6780000000000008,10.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,68.7,-0.38329999999999997,8.0391999999999992,0.090749999999999997,6.2050000000000001,6.7450000000000001,7.3529999999999998,8.0389999999999997,8.8170000000000002,9.7029999999999994,10.717000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,68.8,-0.38329999999999997,8.0599000000000007,0.090740000000000001,6.2210000000000001,6.7629999999999999,7.3719999999999999,8.06,8.84,9.7279999999999998,10.744999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,68.900000000000006,-0.38329999999999997,8.0806000000000004,0.090719999999999995,6.2380000000000004,6.7809999999999997,7.391,8.0809999999999995,8.8620000000000001,9.7530000000000001,10.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,69,-0.38329999999999997,8.1012000000000004,0.090709999999999999,6.2539999999999996,6.798,7.41,8.1010000000000009,8.8849999999999998,9.7769999999999992,10.798 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,69.099999999999994,-0.38329999999999997,8.1218000000000004,0.090700000000000003,6.27,6.8150000000000004,7.4290000000000003,8.1219999999999999,8.907,9.8019999999999996,10.826000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,69.2,-0.38329999999999997,8.1424000000000003,0.090690000000000007,6.2859999999999996,6.8330000000000002,7.4480000000000004,8.1419999999999995,8.93,9.8260000000000005,10.853 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,69.3,-0.38329999999999997,8.1630000000000003,0.090679999999999997,6.3019999999999996,6.85,7.4669999999999996,8.1630000000000003,8.952,9.8510000000000009,10.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,69.400000000000006,-0.38329999999999997,8.1835000000000004,0.090670000000000001,6.3179999999999996,6.8680000000000003,7.4859999999999998,8.1839999999999993,8.9749999999999996,9.8759999999999994,10.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,69.5,-0.38329999999999997,8.2039000000000009,0.090649999999999994,6.3339999999999996,6.8849999999999998,7.5039999999999996,8.2040000000000006,8.9969999999999999,9.9,10.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,69.599999999999994,-0.38329999999999997,8.2243999999999993,0.090639999999999998,6.35,6.9020000000000001,7.5229999999999997,8.2240000000000002,9.0190000000000001,9.9239999999999995,10.96 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,69.7,-0.38329999999999997,8.2447999999999997,0.090630000000000002,6.3659999999999997,6.9189999999999996,7.5419999999999998,8.2449999999999992,9.0410000000000004,9.9489999999999998,10.987 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,69.8,-0.38329999999999997,8.2651000000000003,0.090620000000000006,6.3819999999999997,6.9370000000000003,7.5609999999999999,8.2650000000000006,9.0640000000000001,9.9730000000000008,11.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,69.900000000000006,-0.38329999999999997,8.2855000000000008,0.090609999999999996,6.3979999999999997,6.9539999999999997,7.5789999999999997,8.2859999999999996,9.0860000000000003,9.9969999999999999,11.04 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,70,-0.38329999999999997,8.3057999999999996,0.090590000000000004,6.4139999999999997,6.9710000000000001,7.5979999999999999,8.3059999999999992,9.1080000000000005,10.021000000000001,11.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,70.099999999999994,-0.38329999999999997,8.3261000000000003,0.090579999999999994,6.4290000000000003,6.9880000000000004,7.617,8.3260000000000005,9.1300000000000008,10.045999999999999,11.093 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,70.2,-0.38329999999999997,8.3463999999999992,0.090569999999999998,6.4450000000000003,7.0060000000000002,7.6349999999999998,8.3460000000000001,9.1519999999999992,10.07,11.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,70.3,-0.38329999999999997,8.3666,0.090560000000000002,6.4610000000000003,7.0229999999999997,7.6539999999999999,8.3670000000000009,9.1739999999999995,10.093999999999999,11.147 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,70.400000000000006,-0.38329999999999997,8.3869000000000007,0.090550000000000005,6.4770000000000003,7.04,7.673,8.3870000000000005,9.1969999999999992,10.118,11.173 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,70.5,-0.38329999999999997,8.4070999999999998,0.090529999999999999,6.4930000000000003,7.0570000000000004,7.6909999999999998,8.407,9.2189999999999994,10.141999999999999,11.199 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,70.599999999999994,-0.38329999999999997,8.4273000000000007,0.090520000000000003,6.5090000000000003,7.0739999999999998,7.71,8.4269999999999996,9.2409999999999997,10.167,11.226000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,70.7,-0.38329999999999997,8.4474,0.090509999999999993,6.524,7.0910000000000002,7.7279999999999998,8.4469999999999992,9.2629999999999999,10.191000000000001,11.252000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,70.8,-0.38329999999999997,8.4675999999999991,0.090499999999999997,6.54,7.1079999999999997,7.7469999999999999,8.468,9.2850000000000001,10.215,11.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,70.900000000000006,-0.38329999999999997,8.4877000000000002,0.090480000000000005,6.556,7.125,7.7649999999999997,8.4879999999999995,9.3059999999999992,10.239000000000001,11.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,71,-0.38329999999999997,8.5077999999999996,0.090469999999999995,6.5720000000000001,7.1420000000000003,7.7839999999999998,8.5079999999999991,9.3279999999999994,10.263,11.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,71.099999999999994,-0.38329999999999997,8.5277999999999992,0.090459999999999999,6.5869999999999997,7.1589999999999998,7.8019999999999996,8.5280000000000005,9.35,10.286,11.358000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,71.2,-0.38329999999999997,8.5479000000000003,0.090450000000000003,6.6029999999999998,7.1760000000000002,7.8209999999999997,8.548,9.3719999999999999,10.311,11.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,71.3,-0.38329999999999997,8.5678999999999998,0.090429999999999996,6.6189999999999998,7.1929999999999996,7.8390000000000004,8.5679999999999996,9.3940000000000001,10.334,11.41 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,71.400000000000006,-0.38329999999999997,8.5878999999999994,0.09042,6.6349999999999998,7.21,7.8570000000000002,8.5879999999999992,9.4160000000000004,10.358000000000001,11.436 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,71.5,-0.38329999999999997,8.6077999999999992,0.090410000000000004,6.65,7.2270000000000003,7.8760000000000003,8.6080000000000005,9.4369999999999994,10.382,11.462 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,71.599999999999994,-0.38329999999999997,8.6277000000000008,0.090399999999999994,6.6660000000000004,7.2439999999999998,7.8940000000000001,8.6280000000000001,9.4589999999999996,10.406000000000001,11.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,71.7,-0.38329999999999997,8.6476000000000006,0.090389999999999998,6.681,7.2610000000000001,7.9119999999999999,8.6479999999999997,9.4809999999999999,10.429,11.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,71.8,-0.38329999999999997,8.6674000000000007,0.090370000000000006,6.6970000000000001,7.2779999999999996,7.931,8.6669999999999998,9.5020000000000007,10.452999999999999,11.54 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,71.900000000000006,-0.38329999999999997,8.6872000000000007,0.090359999999999996,6.7119999999999997,7.2939999999999996,7.9489999999999998,8.6869999999999994,9.5239999999999991,10.477,11.566000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,72,-0.38329999999999997,8.7070000000000007,0.09035,6.7279999999999998,7.3109999999999999,7.9669999999999996,8.7070000000000007,9.5459999999999994,10.5,11.592000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,72.099999999999994,-0.38329999999999997,8.7266999999999992,0.090340000000000004,6.7430000000000003,7.3280000000000003,7.9850000000000003,8.7270000000000003,9.5670000000000002,10.523999999999999,11.618 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,72.2,-0.38329999999999997,8.7463999999999995,0.090319999999999998,6.7590000000000003,7.3449999999999998,8.0030000000000001,8.7460000000000004,9.5879999999999992,10.547000000000001,11.643000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,72.3,-0.38329999999999997,8.7660999999999998,0.090310000000000001,6.774,7.3609999999999998,8.0210000000000008,8.766,9.61,10.571,11.669 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,72.400000000000006,-0.38329999999999997,8.7857000000000003,0.090300000000000005,6.79,7.3780000000000001,8.0389999999999997,8.7859999999999996,9.6310000000000002,10.593999999999999,11.695 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,72.5,-0.38329999999999997,8.8053000000000008,0.090279999999999999,6.8049999999999997,7.3949999999999996,8.0570000000000004,8.8049999999999997,9.6530000000000005,10.617000000000001,11.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,72.599999999999994,-0.38329999999999997,8.8247999999999998,0.090270000000000003,6.82,7.4109999999999996,8.0749999999999993,8.8249999999999993,9.6739999999999995,10.64,11.746 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,72.7,-0.38329999999999997,8.8443000000000005,0.090260000000000007,6.8360000000000003,7.4279999999999999,8.093,8.8439999999999994,9.6950000000000003,10.664,11.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,72.8,-0.38329999999999997,8.8637999999999995,0.090249999999999997,6.851,7.444,8.1110000000000007,8.8640000000000008,9.7159999999999993,10.686999999999999,11.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,72.900000000000006,-0.38329999999999997,8.8831000000000007,0.090230000000000005,6.8659999999999997,7.4610000000000003,8.1289999999999996,8.8829999999999991,9.7370000000000001,10.71,11.821999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,73,-0.38329999999999997,8.9024999999999999,0.090219999999999995,6.8810000000000002,7.4770000000000003,8.1470000000000002,8.9019999999999992,9.7590000000000003,10.733000000000001,11.847 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,73.099999999999994,-0.38329999999999997,8.9216999999999995,0.090209999999999999,6.8959999999999999,7.4930000000000003,8.1649999999999991,8.9220000000000006,9.7799999999999994,10.756,11.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,73.2,-0.38329999999999997,8.9410000000000007,0.090200000000000002,6.9109999999999996,7.51,8.1820000000000004,8.9410000000000007,9.8010000000000002,10.779,11.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,73.3,-0.38329999999999997,8.9601000000000006,0.090179999999999996,6.9269999999999996,7.5259999999999998,8.1999999999999993,8.9600000000000009,9.8209999999999997,10.801,11.922000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,73.400000000000006,-0.38329999999999997,8.9792000000000005,0.09017,6.9420000000000002,7.5419999999999998,8.2170000000000005,8.9789999999999992,9.8420000000000005,10.824,11.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,73.5,-0.38329999999999997,8.9983000000000004,0.090160000000000004,6.9569999999999999,7.5590000000000002,8.2349999999999994,8.9979999999999993,9.8629999999999995,10.847,11.972 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,73.599999999999994,-0.38329999999999997,9.0173000000000005,0.090139999999999998,6.9720000000000004,7.5750000000000002,8.2530000000000001,9.0169999999999995,9.8840000000000003,10.869,11.997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,73.7,-0.38329999999999997,9.0363000000000007,0.090130000000000002,6.9859999999999998,7.5910000000000002,8.27,9.0359999999999996,9.9039999999999999,10.891999999999999,12.022 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,73.8,-0.38329999999999997,9.0551999999999992,0.090120000000000006,7.0010000000000003,7.6070000000000002,8.2870000000000008,9.0549999999999997,9.9250000000000007,10.914999999999999,12.045999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,73.900000000000006,-0.38329999999999997,9.0739999999999998,0.090109999999999996,7.016,7.6230000000000002,8.3049999999999997,9.0739999999999998,9.9450000000000003,10.936999999999999,12.071 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,74,-0.38329999999999997,9.0928000000000004,0.090090000000000003,7.0309999999999997,7.6390000000000002,8.3219999999999992,9.093,9.9659999999999993,10.959,12.095000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,74.099999999999994,-0.38329999999999997,9.1115999999999993,0.090079999999999993,7.0460000000000003,7.6550000000000002,8.3390000000000004,9.1120000000000001,9.9860000000000007,10.981999999999999,12.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,74.2,-0.38329999999999997,9.1303000000000001,0.090069999999999997,7.06,7.6710000000000003,8.3569999999999993,9.1300000000000008,10.007,11.004,12.144 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,74.3,-0.38329999999999997,9.1489999999999991,0.090050000000000005,7.0750000000000002,7.6870000000000003,8.3740000000000006,9.1489999999999991,10.026999999999999,11.026,12.167999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,74.400000000000006,-0.38329999999999997,9.1676000000000002,0.090039999999999995,7.09,7.702,8.391,9.1679999999999993,10.047000000000001,11.048,12.193 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,74.5,-0.38329999999999997,9.1861999999999995,0.090029999999999999,7.1040000000000001,7.718,8.4079999999999995,9.1859999999999999,10.068,11.07,12.217000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,74.599999999999994,-0.38329999999999997,9.2048000000000005,0.090010000000000007,7.1189999999999998,7.734,8.4250000000000007,9.2050000000000001,10.087999999999999,11.092000000000001,12.241 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,74.7,-0.38329999999999997,9.2233000000000001,0.09,7.1340000000000003,7.75,8.4420000000000002,9.2230000000000008,10.108000000000001,11.114000000000001,12.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,74.8,-0.38329999999999997,9.2417999999999996,0.089990000000000001,7.1479999999999997,7.766,8.4589999999999996,9.2420000000000009,10.128,11.135999999999999,12.289 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,74.900000000000006,-0.38329999999999997,9.2601999999999993,0.089969999999999994,7.1630000000000003,7.7809999999999997,8.4760000000000009,9.26,10.148,11.157999999999999,12.313000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,75,-0.38329999999999997,9.2786000000000008,0.089959999999999998,7.1769999999999996,7.7969999999999997,8.4930000000000003,9.2789999999999999,10.167999999999999,11.18,12.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,75.099999999999994,-0.38329999999999997,9.2970000000000006,0.089950000000000002,7.1920000000000002,7.8120000000000003,8.51,9.2970000000000006,10.188000000000001,11.202,12.361000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,75.2,-0.38329999999999997,9.3154000000000003,0.089929999999999996,7.2060000000000004,7.8280000000000003,8.5269999999999992,9.3149999999999995,10.208,11.224,12.385 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,75.3,-0.38329999999999997,9.3337000000000003,0.08992,7.2210000000000001,7.8440000000000003,8.5440000000000005,9.3339999999999996,10.228,11.246,12.407999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,75.400000000000006,-0.38329999999999997,9.3520000000000003,0.089910000000000004,7.2350000000000003,7.859,8.5609999999999999,9.3520000000000003,10.247999999999999,11.266999999999999,12.432 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,75.5,-0.38329999999999997,9.3703000000000003,0.089889999999999998,7.2489999999999997,7.875,8.5779999999999994,9.3699999999999992,10.268000000000001,11.289,12.456 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,75.599999999999994,-0.38329999999999997,9.3886000000000003,0.089880000000000002,7.2640000000000002,7.89,8.5950000000000006,9.3889999999999993,10.288,11.311,12.48 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,75.7,-0.38329999999999997,9.4069000000000003,0.089870000000000005,7.2779999999999996,7.9059999999999997,8.6110000000000007,9.407,10.308,11.333,12.504 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,75.8,-0.38329999999999997,9.4252000000000002,0.089849999999999999,7.2930000000000001,7.9219999999999997,8.6280000000000001,9.4250000000000007,10.327999999999999,11.353999999999999,12.526999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,75.900000000000006,-0.38329999999999997,9.4435000000000002,0.089840000000000003,7.3070000000000004,7.9370000000000003,8.6449999999999996,9.4440000000000008,10.348000000000001,11.375999999999999,12.551 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,76,-0.38329999999999997,9.4617000000000004,0.089829999999999993,7.3209999999999997,7.9530000000000003,8.6620000000000008,9.4619999999999997,10.367000000000001,11.398,12.574999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,76.099999999999994,-0.38329999999999997,9.48,0.089810000000000001,7.3360000000000003,7.968,8.6790000000000003,9.48,10.387,11.419,12.598000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,76.2,-0.38329999999999997,9.4983000000000004,0.089800000000000005,7.35,7.984,8.6959999999999997,9.4979999999999993,10.407,11.441000000000001,12.622 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,76.3,-0.38329999999999997,9.5166000000000004,0.089789999999999995,7.3650000000000002,7.9989999999999997,8.7119999999999997,9.5169999999999995,10.427,11.462999999999999,12.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,76.400000000000006,-0.38329999999999997,9.5350000000000001,0.089770000000000003,7.3789999999999996,8.0150000000000006,8.73,9.5350000000000001,10.446999999999999,11.484,12.67 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,76.5,-0.38329999999999997,9.5533000000000001,0.089760000000000006,7.3940000000000001,8.0310000000000006,8.7460000000000004,9.5530000000000008,10.467000000000001,11.506,12.694000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,76.599999999999994,-0.38329999999999997,9.5716999999999999,0.089749999999999996,7.4080000000000004,8.0459999999999994,8.7629999999999999,9.5719999999999992,10.487,11.528,12.718 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,76.7,-0.38329999999999997,9.5900999999999996,0.089730000000000004,7.423,8.0619999999999994,8.7799999999999994,9.59,10.507,11.55,12.741 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,76.8,-0.38329999999999997,9.6085999999999991,0.089719999999999994,7.4370000000000003,8.0779999999999994,8.7970000000000006,9.609,10.526999999999999,11.571999999999999,12.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,76.900000000000006,-0.38329999999999997,9.6271000000000004,0.089709999999999998,7.452,8.0939999999999994,8.8140000000000001,9.6270000000000007,10.547000000000001,11.593999999999999,12.79 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,77,-0.38329999999999997,9.6456,0.089690000000000006,7.4660000000000002,8.109,8.8309999999999995,9.6460000000000008,10.567,11.616,12.813000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,77.099999999999994,-0.38329999999999997,9.6641999999999992,0.089679999999999996,7.4809999999999999,8.125,8.8490000000000002,9.6639999999999997,10.587999999999999,11.638,12.837999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,77.2,-0.38329999999999997,9.6828000000000003,0.089660000000000004,7.4960000000000004,8.141,8.8659999999999997,9.6829999999999998,10.608000000000001,11.66,12.861000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,77.3,-0.38329999999999997,9.7014999999999993,0.089649999999999994,7.5110000000000001,8.157,8.8829999999999991,9.702,10.628,11.682,12.885999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,77.400000000000006,-0.38329999999999997,9.7202000000000002,0.089639999999999997,7.5250000000000004,8.173,8.9,9.7200000000000006,10.648999999999999,11.704000000000001,12.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,77.5,-0.38329999999999997,9.7390000000000008,0.089630000000000001,7.54,8.1890000000000001,8.9169999999999998,9.7390000000000008,10.669,11.727,12.935 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,77.599999999999994,-0.38329999999999997,9.7577999999999996,0.089609999999999995,7.5549999999999997,8.2050000000000001,8.9350000000000005,9.7579999999999991,10.689,11.749000000000001,12.959 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,77.7,-0.38329999999999997,9.7766999999999999,0.089599999999999999,7.57,8.2210000000000001,8.952,9.7769999999999992,10.71,11.771000000000001,12.984 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,77.8,-0.38329999999999997,9.7957000000000001,0.089590000000000003,7.585,8.2370000000000001,8.9700000000000006,9.7959999999999994,10.731,11.794,13.007999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,77.900000000000006,-0.38329999999999997,9.8147000000000002,0.089569999999999997,7.6,8.2530000000000001,8.9870000000000001,9.8149999999999995,10.750999999999999,11.816000000000001,13.032999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,78,-0.38329999999999997,9.8338000000000001,0.089560000000000001,7.6150000000000002,8.27,9.0050000000000008,9.8339999999999996,10.772,11.839,13.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,78.099999999999994,-0.38329999999999997,9.8529999999999998,0.089550000000000005,7.63,8.2859999999999996,9.0229999999999997,9.8529999999999998,10.792999999999999,11.862,13.083 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,78.2,-0.38329999999999997,9.8721999999999994,0.089529999999999998,7.6449999999999996,8.3019999999999996,9.0399999999999991,9.8719999999999999,10.814,11.884,13.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,78.3,-0.38329999999999997,9.8915000000000006,0.089520000000000002,7.66,8.3190000000000008,9.0579999999999998,9.8919999999999995,10.835000000000001,11.907,13.132 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,78.400000000000006,-0.38329999999999997,9.9108999999999998,0.089510000000000006,7.6760000000000002,8.3350000000000009,9.0760000000000005,9.9109999999999996,10.856,11.93,13.157999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,78.5,-0.38329999999999997,9.9303000000000008,0.089499999999999996,7.6909999999999998,8.3520000000000003,9.0939999999999994,9.93,10.877000000000001,11.954000000000001,13.183 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,78.599999999999994,-0.38329999999999997,9.9498999999999995,0.089480000000000004,7.7060000000000004,8.3680000000000003,9.1120000000000001,9.9499999999999993,10.898,11.977,13.208 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,78.7,-0.38329999999999997,9.9695,0.089469999999999994,7.7220000000000004,8.3849999999999998,9.1300000000000008,9.9700000000000006,10.92,12,13.234 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,78.8,-0.38329999999999997,9.9892000000000003,0.089459999999999998,7.7370000000000001,8.4019999999999992,9.1479999999999997,9.9890000000000008,10.941000000000001,12.023,13.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,78.900000000000006,-0.38329999999999997,10.009,0.089450000000000002,7.7530000000000001,8.4190000000000005,9.1660000000000004,10.009,10.962999999999999,12.047000000000001,13.285 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,79,-0.38329999999999997,10.0289,0.089429999999999996,7.7690000000000001,8.4359999999999999,9.1850000000000005,10.029,10.984,12.07,13.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,79.099999999999994,-0.38329999999999997,10.0489,0.089419999999999999,7.7839999999999998,8.4529999999999994,9.2029999999999994,10.048999999999999,11.006,12.093999999999999,13.337 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,79.2,-0.38329999999999997,10.069000000000001,0.089410000000000003,7.8,8.4700000000000006,9.2219999999999995,10.069000000000001,11.028,12.118,13.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,79.3,-0.38329999999999997,10.0891,0.089399999999999993,7.8159999999999998,8.4870000000000001,9.24,10.089,11.05,12.141999999999999,13.388999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,79.400000000000006,-0.38329999999999997,10.109400000000001,0.089389999999999997,7.8319999999999999,8.5039999999999996,9.2590000000000003,10.109,11.071999999999999,12.166,13.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,79.5,-0.38329999999999997,10.129799999999999,0.089370000000000005,7.8479999999999999,8.5220000000000002,9.2780000000000005,10.130000000000001,11.093999999999999,12.19,13.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,79.599999999999994,-0.38329999999999997,10.1503,0.089359999999999995,7.8639999999999999,8.5389999999999997,9.2970000000000006,10.15,11.116,12.215,13.468999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,79.7,-0.38329999999999997,10.1709,0.089349999999999999,7.88,8.5559999999999992,9.3149999999999995,10.170999999999999,11.138999999999999,12.239000000000001,13.496 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,79.8,-0.38329999999999997,10.191599999999999,0.089340000000000003,7.8970000000000002,8.5739999999999998,9.3350000000000009,10.192,11.161,12.263999999999999,13.523 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,79.900000000000006,-0.38329999999999997,10.212300000000001,0.089330000000000007,7.9130000000000003,8.5920000000000005,9.3539999999999992,10.212,11.183999999999999,12.289,13.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,80,-0.38329999999999997,10.2332,0.089319999999999997,7.9290000000000003,8.609,9.3729999999999993,10.233000000000001,11.207000000000001,12.313000000000001,13.577 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,80.099999999999994,-0.38329999999999997,10.254200000000001,0.089300000000000004,7.9459999999999997,8.6270000000000007,9.3919999999999995,10.254,11.23,12.337999999999999,13.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,80.2,-0.38329999999999997,10.2753,0.089289999999999994,7.9630000000000001,8.6449999999999996,9.4120000000000008,10.275,11.253,12.363,13.632 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,80.3,-0.38329999999999997,10.2965,0.089279999999999998,7.9790000000000001,8.6630000000000003,9.4309999999999992,10.295999999999999,11.276,12.388,13.659000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,80.400000000000006,-0.38329999999999997,10.3178,0.089270000000000002,7.9960000000000004,8.6809999999999992,9.4510000000000005,10.318,11.298999999999999,12.414,13.686999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,80.5,-0.38329999999999997,10.3393,0.089260000000000006,8.0129999999999999,8.6999999999999993,9.4710000000000001,10.339,11.321999999999999,12.439,13.715 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,80.599999999999994,-0.38329999999999997,10.360799999999999,0.089249999999999996,8.0299999999999994,8.718,9.49,10.361000000000001,11.346,12.465,13.743 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,80.7,-0.38329999999999997,10.382400000000001,0.08924,8.0470000000000006,8.7360000000000007,9.51,10.382,11.369,12.491,13.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,80.8,-0.38329999999999997,10.4041,0.089230000000000004,8.0640000000000001,8.7550000000000008,9.5299999999999994,10.404,11.393000000000001,12.516999999999999,13.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,80.900000000000006,-0.38329999999999997,10.425800000000001,0.089219999999999994,8.0809999999999995,8.7729999999999997,9.5500000000000007,10.426,11.417,12.542,13.827999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,81,-0.38329999999999997,10.447699999999999,0.089209999999999998,8.0980000000000008,8.7919999999999998,9.57,10.448,11.44,12.569000000000001,13.856999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,81.099999999999994,-0.38329999999999997,10.4697,0.089200000000000002,8.1150000000000002,8.81,9.5909999999999993,10.47,11.464,12.595000000000001,13.885 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,81.2,-0.38329999999999997,10.4918,0.089190000000000005,8.1329999999999991,8.8290000000000006,9.6110000000000007,10.492000000000001,11.488,12.621,13.914 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,81.3,-0.38329999999999997,10.513999999999999,0.089179999999999995,8.15,8.8480000000000008,9.6310000000000002,10.513999999999999,11.513,12.647,13.943 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,81.400000000000006,-0.38329999999999997,10.536300000000001,0.089169999999999999,8.1669999999999998,8.8670000000000009,9.6519999999999992,10.536,11.537000000000001,12.673999999999999,13.972 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,81.5,-0.38329999999999997,10.5586,0.089160000000000003,8.1850000000000005,8.8859999999999992,9.6720000000000006,10.558999999999999,11.561,12.701000000000001,14.000999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,81.599999999999994,-0.38329999999999997,10.581099999999999,0.089149999999999993,8.2029999999999994,8.9049999999999994,9.6929999999999996,10.581,11.586,12.727,14.031000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,81.7,-0.38329999999999997,10.6037,0.089149999999999993,8.2200000000000006,8.9239999999999995,9.7140000000000004,10.603999999999999,11.611000000000001,12.755000000000001,14.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,81.8,-0.38329999999999997,10.626300000000001,0.089139999999999997,8.2379999999999995,8.9429999999999996,9.7349999999999994,10.625999999999999,11.635,12.781000000000001,14.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,81.900000000000006,-0.38329999999999997,10.649100000000001,0.089130000000000001,8.2560000000000002,8.9619999999999997,9.7560000000000002,10.648999999999999,11.66,12.808999999999999,14.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,82,-0.38329999999999997,10.671900000000001,0.089120000000000005,8.2739999999999991,8.9819999999999993,9.7769999999999992,10.672000000000001,11.685,12.836,14.15 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,82.1,-0.38329999999999997,10.694800000000001,0.089109999999999995,8.2919999999999998,9.0009999999999994,9.798,10.695,11.71,12.863,14.18 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,82.2,-0.38329999999999997,10.7178,0.089099999999999999,8.31,9.0210000000000008,9.8190000000000008,10.718,11.734999999999999,12.89,14.21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,82.3,-0.38329999999999997,10.741,0.089099999999999999,8.3279999999999994,9.0399999999999991,9.84,10.741,11.76,12.917999999999999,14.24 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,82.4,-0.38329999999999997,10.764099999999999,0.089090000000000003,8.3460000000000001,9.06,9.8610000000000007,10.763999999999999,11.785,12.946,14.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,82.5,-0.38329999999999997,10.7874,0.089080000000000006,8.3640000000000008,9.08,9.8829999999999991,10.787000000000001,11.811,12.974,14.301 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,82.6,-0.38329999999999997,10.8108,0.089069999999999996,8.3829999999999991,9.1,9.9039999999999999,10.811,11.836,13.000999999999999,14.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,82.7,-0.38329999999999997,10.834300000000001,0.089069999999999996,8.4009999999999998,9.1189999999999998,9.9260000000000002,10.834,11.862,13.03,14.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,82.8,-0.38329999999999997,10.857799999999999,0.08906,8.4190000000000005,9.1389999999999993,9.9469999999999992,10.858000000000001,11.888,13.058,14.393000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,82.9,-0.38329999999999997,10.881399999999999,0.089050000000000004,8.4380000000000006,9.1590000000000007,9.9689999999999994,10.881,11.913,13.086,14.423999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,83,-0.38329999999999997,10.905099999999999,0.089050000000000004,8.4559999999999995,9.1790000000000003,9.9909999999999997,10.904999999999999,11.939,13.114000000000001,14.455 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,83.1,-0.38329999999999997,10.928900000000001,0.089039999999999994,8.4749999999999996,9.1989999999999998,10.013,10.929,11.965,13.143000000000001,14.486000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,83.2,-0.38329999999999997,10.9527,0.089029999999999998,8.4930000000000003,9.2200000000000006,10.035,10.952999999999999,11.991,13.170999999999999,14.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,83.3,-0.38329999999999997,10.976699999999999,0.089029999999999998,8.5120000000000005,9.24,10.057,10.977,12.016999999999999,13.2,14.548999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,83.4,-0.38329999999999997,11.0007,0.089020000000000002,8.5310000000000006,9.26,10.079000000000001,11.000999999999999,12.044,13.228,14.581 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,83.5,-0.38329999999999997,11.024800000000001,0.089020000000000002,8.5500000000000007,9.2810000000000006,10.101000000000001,11.025,12.07,13.257,14.613 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,83.6,-0.38329999999999997,11.0489,0.089010000000000006,8.5690000000000008,9.3010000000000002,10.122999999999999,11.048999999999999,12.096,13.286,14.644 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,83.7,-0.38329999999999997,11.0731,0.089010000000000006,8.5869999999999997,9.3209999999999997,10.145,11.073,12.122999999999999,13.315,14.676 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,83.8,-0.38329999999999997,11.0974,0.088999999999999996,8.6059999999999999,9.3420000000000005,10.167,11.097,12.148999999999999,13.343999999999999,14.708 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,83.9,-0.38329999999999997,11.1218,0.088999999999999996,8.625,9.3629999999999995,10.19,11.122,12.176,13.372999999999999,14.74 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,84,-0.38329999999999997,11.1462,0.08899,8.6440000000000001,9.3829999999999991,10.212,11.146000000000001,12.202999999999999,13.401999999999999,14.772 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,84.1,-0.38329999999999997,11.1707,0.08899,8.6630000000000003,9.4039999999999999,10.234999999999999,11.170999999999999,12.228999999999999,13.432,14.805 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,84.2,-0.38329999999999997,11.1952,0.08899,8.6820000000000004,9.4250000000000007,10.257,11.195,12.256,13.461,14.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,84.3,-0.38329999999999997,11.219799999999999,0.088980000000000004,8.702,9.4450000000000003,10.28,11.22,12.282999999999999,13.491,14.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,84.4,-0.38329999999999997,11.244400000000001,0.088980000000000004,8.7210000000000001,9.4659999999999993,10.302,11.244,12.31,13.52,14.901999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,84.5,-0.38329999999999997,11.2691,0.088969999999999994,8.74,9.4870000000000001,10.324999999999999,11.269,12.337,13.55,14.933999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,84.6,-0.38329999999999997,11.293900000000001,0.088969999999999994,8.76,9.5079999999999991,10.348000000000001,11.294,12.364000000000001,13.58,14.967000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,84.7,-0.38329999999999997,11.3187,0.088969999999999994,8.7789999999999999,9.5289999999999999,10.371,11.319000000000001,12.391,13.609,15 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,84.8,-0.38329999999999997,11.343500000000001,0.088969999999999994,8.798,9.5500000000000007,10.393000000000001,11.343999999999999,12.417999999999999,13.638999999999999,15.032999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,84.9,-0.38329999999999997,11.368399999999999,0.088959999999999997,8.8179999999999996,9.5709999999999997,10.416,11.368,12.445,13.669,15.065 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,85,-0.38329999999999997,11.3934,0.088959999999999997,8.8369999999999997,9.5920000000000005,10.439,11.393000000000001,12.473000000000001,13.699,15.098000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,85.1,-0.38329999999999997,11.4183,0.088959999999999997,8.8559999999999999,9.6129999999999995,10.462,11.417999999999999,12.5,13.728999999999999,15.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,85.2,-0.38329999999999997,11.4434,0.088959999999999997,8.8759999999999994,9.6340000000000003,10.484999999999999,11.443,12.526999999999999,13.759,15.164 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,85.3,-0.38329999999999997,11.468400000000001,0.088950000000000001,8.8949999999999996,9.6549999999999994,10.507999999999999,11.468,12.555,13.789,15.196999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,85.4,-0.38329999999999997,11.493499999999999,0.088950000000000001,8.9149999999999991,9.6760000000000002,10.531000000000001,11.494,12.582000000000001,13.819000000000001,15.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,85.5,-0.38329999999999997,11.518599999999999,0.088950000000000001,8.9339999999999993,9.6969999999999992,10.554,11.519,12.61,13.849,15.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,85.6,-0.38329999999999997,11.543699999999999,0.088950000000000001,8.9540000000000006,9.7189999999999994,10.577,11.544,12.637,13.879,15.297000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,85.7,-0.38329999999999997,11.568899999999999,0.088950000000000001,8.9730000000000008,9.74,10.6,11.569000000000001,12.664999999999999,13.91,15.33 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,85.8,-0.38329999999999997,11.593999999999999,0.088950000000000001,8.9930000000000003,9.7609999999999992,10.622999999999999,11.593999999999999,12.692,13.94,15.363 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,85.9,-0.38329999999999997,11.619199999999999,0.088950000000000001,9.0120000000000005,9.782,10.646000000000001,11.619,12.72,13.97,15.397 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,86,-0.38329999999999997,11.644399999999999,0.088950000000000001,9.032,9.8030000000000008,10.669,11.644,12.747,14,15.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,86.1,-0.38329999999999997,11.669600000000001,0.088950000000000001,9.0510000000000002,9.8249999999999993,10.692,11.67,12.775,14.031000000000001,15.464 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,86.2,-0.38329999999999997,11.694800000000001,0.088950000000000001,9.0709999999999997,9.8460000000000001,10.715,11.695,12.803000000000001,14.061,15.497 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,86.3,-0.38329999999999997,11.7201,0.088950000000000001,9.0909999999999993,9.8670000000000009,10.739000000000001,11.72,12.83,14.090999999999999,15.531000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,86.4,-0.38329999999999997,11.7453,0.088950000000000001,9.11,9.8879999999999999,10.762,11.744999999999999,12.858000000000001,14.122,15.564 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,86.5,-0.38329999999999997,11.7705,0.088950000000000001,9.1300000000000008,9.91,10.785,11.77,12.885,14.151999999999999,15.597 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,86.6,-0.38329999999999997,11.7957,0.088950000000000001,9.1489999999999991,9.9309999999999992,10.808,11.795999999999999,12.913,14.182,15.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,86.7,-0.38329999999999997,11.8209,0.088950000000000001,9.1690000000000005,9.952,10.831,11.821,12.941000000000001,14.212999999999999,15.664 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,86.8,-0.38329999999999997,11.8461,0.088950000000000001,9.1880000000000006,9.9730000000000008,10.853999999999999,11.846,12.968,14.243,15.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,86.9,-0.38329999999999997,11.8713,0.088959999999999997,9.2080000000000002,9.9939999999999998,10.877000000000001,11.871,12.996,14.273,15.731 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,87,-0.38329999999999997,11.8965,0.088959999999999997,9.2270000000000003,10.015000000000001,10.9,11.896000000000001,13.023999999999999,14.304,15.765000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,87.1,-0.38329999999999997,11.9217,0.088959999999999997,9.2469999999999999,10.037000000000001,10.923,11.922000000000001,13.051,14.334,15.798 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,87.2,-0.38329999999999997,11.9468,0.088959999999999997,9.266,10.058,10.946,11.946999999999999,13.079000000000001,14.364000000000001,15.832000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,87.3,-0.38329999999999997,11.972,0.088959999999999997,9.2859999999999996,10.079000000000001,10.968999999999999,11.972,13.106,14.395,15.865 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,87.4,-0.38329999999999997,11.9971,0.088969999999999994,9.3049999999999997,10.1,10.992000000000001,11.997,13.134,14.425000000000001,15.898999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,87.5,-0.38329999999999997,12.0223,0.088969999999999994,9.3239999999999998,10.121,11.015000000000001,12.022,13.161,14.455,15.932 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,87.6,-0.38329999999999997,12.0474,0.088969999999999994,9.3439999999999994,10.141999999999999,11.038,12.047000000000001,13.189,14.484999999999999,15.965 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,87.7,-0.38329999999999997,12.0725,0.088980000000000004,9.3629999999999995,10.163,11.061,12.071999999999999,13.215999999999999,14.516,15.999000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,87.8,-0.38329999999999997,12.0976,0.088980000000000004,9.3829999999999991,10.183999999999999,11.084,12.098000000000001,13.244,14.545999999999999,16.032 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,87.9,-0.38329999999999997,12.1227,0.088980000000000004,9.4019999999999992,10.205,11.106999999999999,12.122999999999999,13.271000000000001,14.576000000000001,16.065999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,88,-0.38329999999999997,12.1478,0.08899,9.4209999999999994,10.226000000000001,11.13,12.148,13.298999999999999,14.606999999999999,16.099 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,88.1,-0.38329999999999997,12.172800000000001,0.08899,9.4410000000000007,10.247,11.153,12.173,13.326000000000001,14.637,16.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,88.2,-0.38329999999999997,12.197800000000001,0.088999999999999996,9.4600000000000009,10.268000000000001,11.176,12.198,13.353999999999999,14.667,16.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,88.3,-0.38329999999999997,12.222899999999999,0.088999999999999996,9.4789999999999992,10.289,11.199,12.223000000000001,13.381,14.696999999999999,16.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,88.4,-0.38329999999999997,12.2479,0.089010000000000006,9.4979999999999993,10.31,11.221,12.247999999999999,13.409000000000001,14.728,16.233000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,88.5,-0.38329999999999997,12.2729,0.089010000000000006,9.5180000000000007,10.331,11.244,12.273,13.436,14.757999999999999,16.265999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,88.6,-0.38329999999999997,12.297800000000001,0.089020000000000002,9.5370000000000008,10.352,11.266999999999999,12.298,13.464,14.788,16.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,88.7,-0.38329999999999997,12.322800000000001,0.089020000000000002,9.5559999999999992,10.372999999999999,11.29,12.323,13.491,14.818,16.332999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,88.8,-0.38329999999999997,12.3477,0.089029999999999998,9.5749999999999993,10.394,11.313000000000001,12.348000000000001,13.518000000000001,14.848000000000001,16.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,88.9,-0.38329999999999997,12.3727,0.089029999999999998,9.5950000000000006,10.414999999999999,11.336,12.372999999999999,13.545999999999999,14.879,16.399999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,89,-0.38329999999999997,12.397600000000001,0.089039999999999994,9.6140000000000008,10.436,11.358000000000001,12.398,13.573,14.909000000000001,16.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,89.1,-0.38329999999999997,12.422499999999999,0.089039999999999994,9.6329999999999991,10.457000000000001,11.381,12.422000000000001,13.6,14.939,16.466000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,89.2,-0.38329999999999997,12.4474,0.089050000000000004,9.6519999999999992,10.477,11.404,12.446999999999999,13.628,14.968999999999999,16.5 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,89.3,-0.38329999999999997,12.472300000000001,0.08906,9.6709999999999994,10.497999999999999,11.427,12.472,13.654999999999999,14.999000000000001,16.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,89.4,-0.38329999999999997,12.4971,0.08906,9.69,10.519,11.449,12.497,13.682,15.029,16.565999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,89.5,-0.38329999999999997,12.522,0.089069999999999996,9.7089999999999996,10.54,11.472,12.522,13.71,15.058999999999999,16.600000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,89.6,-0.38329999999999997,12.546799999999999,0.089080000000000006,9.7279999999999998,10.561,11.494999999999999,12.547000000000001,13.737,15.09,16.632999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,89.7,-0.38329999999999997,12.5717,0.089090000000000003,9.7469999999999999,10.581,11.516999999999999,12.571999999999999,13.765000000000001,15.12,16.667000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,89.8,-0.38329999999999997,12.596500000000001,0.089090000000000003,9.7669999999999995,10.602,11.54,12.596,13.792,15.15,16.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,89.9,-0.38329999999999997,12.6213,0.089099999999999999,9.7859999999999996,10.622999999999999,11.563000000000001,12.621,13.819000000000001,15.18,16.733000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,90,-0.38329999999999997,12.646100000000001,0.089109999999999995,9.8049999999999997,10.644,11.585000000000001,12.646000000000001,13.846,15.21,16.766999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,90.1,-0.38329999999999997,12.6709,0.089120000000000005,9.8239999999999998,10.664,11.608000000000001,12.670999999999999,13.874000000000001,15.24,16.8 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,90.2,-0.38329999999999997,12.6957,0.089120000000000005,9.843,10.685,11.631,12.696,13.901,15.27,16.832999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,90.3,-0.38329999999999997,12.720499999999999,0.089130000000000001,9.8620000000000001,10.706,11.653,12.72,13.928000000000001,15.3,16.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,90.4,-0.38329999999999997,12.7453,0.089139999999999997,9.8810000000000002,10.726000000000001,11.676,12.744999999999999,13.955,15.33,16.899999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,90.5,-0.38329999999999997,12.77,0.089149999999999993,9.9,10.747,11.698,12.77,13.983000000000001,15.36,16.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,90.6,-0.38329999999999997,12.7948,0.089160000000000003,9.9179999999999993,10.768000000000001,11.721,12.795,14.01,15.39,16.966999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,90.7,-0.38329999999999997,12.819599999999999,0.089169999999999999,9.9369999999999994,10.788,11.743,12.82,14.037000000000001,15.420999999999999,17 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,90.8,-0.38329999999999997,12.8443,0.089179999999999995,9.9559999999999995,10.808999999999999,11.766,12.843999999999999,14.064,15.451000000000001,17.033000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,90.9,-0.38329999999999997,12.8691,0.089190000000000005,9.9749999999999996,10.83,11.789,12.869,14.092000000000001,15.481,17.067 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,91,-0.38329999999999997,12.8939,0.089200000000000002,9.9939999999999998,10.85,11.811,12.894,14.119,15.510999999999999,17.100000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,91.1,-0.38329999999999997,12.9186,0.089209999999999998,10.013,10.871,11.834,12.919,14.146000000000001,15.541,17.134 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,91.2,-0.38329999999999997,12.9434,0.089219999999999994,10.032,10.891999999999999,11.856,12.943,14.173,15.571,17.167000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,91.3,-0.38329999999999997,12.9681,0.089230000000000004,10.051,10.912000000000001,11.879,12.968,14.201000000000001,15.601000000000001,17.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,91.4,-0.38329999999999997,12.992900000000001,0.08924,10.07,10.933,11.901,12.993,14.228,15.631,17.234000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,91.5,-0.38329999999999997,13.0177,0.089249999999999996,10.089,10.952999999999999,11.923999999999999,13.018000000000001,14.255000000000001,15.662000000000001,17.266999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,91.6,-0.38329999999999997,13.042400000000001,0.089260000000000006,10.108000000000001,10.974,11.946999999999999,13.042,14.282,15.692,17.300999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,91.7,-0.38329999999999997,13.0672,0.089270000000000002,10.127000000000001,10.994999999999999,11.968999999999999,13.067,14.31,15.722,17.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,91.8,-0.38329999999999997,13.092000000000001,0.089279999999999998,10.146000000000001,11.015000000000001,11.992000000000001,13.092000000000001,14.337,15.752000000000001,17.367999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,91.9,-0.38329999999999997,13.1167,0.089300000000000004,10.164,11.036,12.013999999999999,13.117000000000001,14.364000000000001,15.782,17.402000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,92,-0.38329999999999997,13.141500000000001,0.08931,10.183,11.055999999999999,12.037000000000001,13.141999999999999,14.391999999999999,15.813000000000001,17.434999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,92.1,-0.38329999999999997,13.1663,0.089319999999999997,10.202,11.077,12.058999999999999,13.166,14.419,15.843,17.469000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,92.2,-0.38329999999999997,13.1911,0.089330000000000007,10.221,11.098000000000001,12.082000000000001,13.191000000000001,14.446,15.872999999999999,17.501999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,92.3,-0.38329999999999997,13.2158,0.089340000000000003,10.24,11.118,12.103999999999999,13.215999999999999,14.473000000000001,15.903,17.535 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,92.4,-0.38329999999999997,13.240600000000001,0.089359999999999995,10.257999999999999,11.138999999999999,12.127000000000001,13.241,14.500999999999999,15.933999999999999,17.568999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,92.5,-0.38329999999999997,13.2654,0.089370000000000005,10.276999999999999,11.159000000000001,12.148999999999999,13.265000000000001,14.528,15.964,17.603000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,92.6,-0.38329999999999997,13.2902,0.089380000000000001,10.295999999999999,11.18,12.172000000000001,13.29,14.555999999999999,15.994,17.635999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,92.7,-0.38329999999999997,13.315099999999999,0.089399999999999993,10.315,11.201000000000001,12.195,13.315,14.583,16.024999999999999,17.670999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,92.8,-0.38329999999999997,13.3399,0.089410000000000003,10.334,11.221,12.217000000000001,13.34,14.61,16.055,17.704000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,92.9,-0.38329999999999997,13.364699999999999,0.089419999999999999,10.353,11.242000000000001,12.24,13.365,14.638,16.085000000000001,17.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,93,-0.38329999999999997,13.3896,0.089440000000000006,10.372,11.262,12.262,13.39,14.664999999999999,16.116,17.771999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,93.1,-0.38329999999999997,13.4145,0.089450000000000002,10.391,11.282999999999999,12.285,13.414,14.693,16.146000000000001,17.806000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,93.2,-0.38329999999999997,13.439399999999999,0.089469999999999994,10.409000000000001,11.304,12.308,13.439,14.72,16.177,17.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,93.3,-0.38329999999999997,13.4643,0.089480000000000004,10.428000000000001,11.324,12.33,13.464,14.747999999999999,16.207000000000001,17.873000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,93.4,-0.38329999999999997,13.4892,0.08949,10.446999999999999,11.345000000000001,12.353,13.489000000000001,14.775,16.236999999999998,17.907 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,93.5,-0.38329999999999997,13.514200000000001,0.089510000000000006,10.465999999999999,11.366,12.375999999999999,13.513999999999999,14.803000000000001,16.268000000000001,17.942 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,93.6,-0.38329999999999997,13.539099999999999,0.089520000000000002,10.484999999999999,11.385999999999999,12.398,13.539,14.83,16.297999999999998,17.975000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,93.7,-0.38329999999999997,13.5641,0.089539999999999995,10.504,11.407,12.420999999999999,13.564,14.858000000000001,16.329000000000001,18.010000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,93.8,-0.38329999999999997,13.5892,0.089550000000000005,10.523,11.428000000000001,12.444000000000001,13.589,14.885999999999999,16.36,18.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,93.9,-0.38329999999999997,13.6142,0.089569999999999997,10.542,11.448,12.467000000000001,13.614000000000001,14.913,16.39,18.077999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,94,-0.38329999999999997,13.6393,0.089590000000000003,10.561,11.468999999999999,12.489000000000001,13.638999999999999,14.941000000000001,16.420999999999999,18.111999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,94.1,-0.38329999999999997,13.664400000000001,0.089599999999999999,10.58,11.49,12.512,13.664,14.968999999999999,16.452000000000002,18.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,94.2,-0.38329999999999997,13.689500000000001,0.089620000000000005,10.599,11.510999999999999,12.535,13.69,14.997,16.483000000000001,18.181000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,94.3,-0.38329999999999997,13.714600000000001,0.089630000000000001,10.618,11.532,12.558,13.715,15.023999999999999,16.513000000000002,18.215 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,94.4,-0.38329999999999997,13.739800000000001,0.089649999999999994,10.637,11.552,12.581,13.74,15.052,16.545000000000002,18.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,94.5,-0.38329999999999997,13.765000000000001,0.08967,10.656000000000001,11.573,12.603,13.765000000000001,15.08,16.576000000000001,18.283999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,94.6,-0.38329999999999997,13.7902,0.089679999999999996,10.675000000000001,11.593999999999999,12.625999999999999,13.79,15.108000000000001,16.606000000000002,18.318000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,94.7,-0.38329999999999997,13.8155,0.089700000000000002,10.694000000000001,11.615,12.648999999999999,13.816000000000001,15.135999999999999,16.637,18.353000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,94.8,-0.38329999999999997,13.8408,0.089719999999999994,10.712999999999999,11.635999999999999,12.672000000000001,13.840999999999999,15.164,16.669,18.388000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,94.9,-0.38329999999999997,13.866099999999999,0.08974,10.731999999999999,11.657,12.695,13.866,15.192,16.7,18.422999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,95,-0.38329999999999997,13.891400000000001,0.089749999999999996,10.750999999999999,11.678000000000001,12.718,13.891,15.22,16.731000000000002,18.457000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,95.1,-0.38329999999999997,13.9168,0.089770000000000003,10.77,11.699,12.741,13.917,15.247999999999999,16.762,18.492000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,95.2,-0.38329999999999997,13.9422,0.089789999999999995,10.789,11.718999999999999,12.763999999999999,13.942,15.276,16.792999999999999,18.527000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,95.3,-0.38329999999999997,13.967599999999999,0.089810000000000001,10.808999999999999,11.74,12.787000000000001,13.968,15.304,16.824999999999999,18.562000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,95.4,-0.38329999999999997,13.9931,0.089829999999999993,10.827999999999999,11.760999999999999,12.81,13.993,15.333,16.856000000000002,18.597000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,95.5,-0.38329999999999997,14.018599999999999,0.089840000000000003,10.847,11.782999999999999,12.833,14.019,15.361000000000001,16.887,18.632000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,95.6,-0.38329999999999997,14.0441,0.089859999999999995,10.866,11.804,12.856999999999999,14.044,15.388999999999999,16.919,18.667000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,95.7,-0.38329999999999997,14.069699999999999,0.089880000000000002,10.885,11.824999999999999,12.88,14.07,15.417,16.95,18.702000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,95.8,-0.38329999999999997,14.0953,0.089899999999999994,10.904999999999999,11.846,12.903,14.095000000000001,15.446,16.981999999999999,18.736999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,95.9,-0.38329999999999997,14.120900000000001,0.08992,10.923999999999999,11.867000000000001,12.926,14.121,15.474,17.013000000000002,18.773 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,96,-0.38329999999999997,14.146599999999999,0.089940000000000006,10.943,11.888,12.949,14.147,15.502000000000001,17.045000000000002,18.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,96.1,-0.38329999999999997,14.1724,0.089959999999999998,10.962999999999999,11.909000000000001,12.973000000000001,14.172000000000001,15.531000000000001,17.077000000000002,18.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,96.2,-0.38329999999999997,14.1981,0.089980000000000004,10.981999999999999,11.93,12.996,14.198,15.56,17.109000000000002,18.879000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,96.3,-0.38329999999999997,14.2239,0.09,11.000999999999999,11.952,13.019,14.224,15.587999999999999,17.14,18.914999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,96.4,-0.38329999999999997,14.2498,0.090020000000000003,11.021000000000001,11.973000000000001,13.042999999999999,14.25,15.617000000000001,17.172000000000001,18.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,96.5,-0.38329999999999997,14.275700000000001,0.090039999999999995,11.04,11.994,13.066000000000001,14.276,15.646000000000001,17.204000000000001,18.986000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,96.6,-0.38329999999999997,14.301600000000001,0.090060000000000001,11.058999999999999,12.015000000000001,13.09,14.302,15.673999999999999,17.236000000000001,19.021999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,96.7,-0.38329999999999997,14.3276,0.090079999999999993,11.079000000000001,12.037000000000001,13.113,14.327999999999999,15.702999999999999,17.268000000000001,19.058 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,96.8,-0.38329999999999997,14.3537,0.0901,11.099,12.058,13.137,14.353999999999999,15.731999999999999,17.3,19.094000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,96.9,-0.38329999999999997,14.379799999999999,0.090120000000000006,11.118,12.08,13.161,14.38,15.760999999999999,17.332999999999998,19.13 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,97,-0.38329999999999997,14.405900000000001,0.090149999999999994,11.137,12.101000000000001,13.183999999999999,14.406000000000001,15.79,17.364999999999998,19.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,97.1,-0.38329999999999997,14.4321,0.09017,11.157,12.122999999999999,13.208,14.432,15.819000000000001,17.398,19.202999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,97.2,-0.38329999999999997,14.458399999999999,0.090190000000000006,11.177,12.144,13.231999999999999,14.458,15.848000000000001,17.43,19.239000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,97.3,-0.38329999999999997,14.4848,0.090209999999999999,11.196999999999999,12.166,13.256,14.484999999999999,15.878,17.463000000000001,19.274999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,97.4,-0.38329999999999997,14.511200000000001,0.090230000000000005,11.215999999999999,12.188000000000001,13.279,14.510999999999999,15.907,17.495000000000001,19.312000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,97.5,-0.38329999999999997,14.537599999999999,0.090260000000000007,11.236000000000001,12.209,13.303000000000001,14.538,15.936,17.527999999999999,19.349 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,97.6,-0.38329999999999997,14.5642,0.090279999999999999,11.256,12.231,13.327,14.564,15.965999999999999,17.561,19.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,97.7,-0.38329999999999997,14.5908,0.090300000000000005,11.276,12.253,13.351000000000001,14.590999999999999,15.994999999999999,17.594000000000001,19.422000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,97.8,-0.38329999999999997,14.6174,0.090329999999999994,11.295,12.275,13.375,14.617000000000001,16.024999999999999,17.626999999999999,19.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,97.9,-0.38329999999999997,14.6442,0.09035,11.315,12.297000000000001,13.4,14.644,16.055,17.66,19.495999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,98,-0.38329999999999997,14.670999999999999,0.090370000000000006,11.336,12.319000000000001,13.423999999999999,14.670999999999999,16.084,17.693000000000001,19.533000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,98.1,-0.38329999999999997,14.697900000000001,0.090399999999999994,11.355,12.340999999999999,13.448,14.698,16.114000000000001,17.727,19.571000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,98.2,-0.38329999999999997,14.7248,0.09042,11.375999999999999,12.363,13.472,14.725,16.143999999999998,17.760000000000002,19.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,98.3,-0.38329999999999997,14.751899999999999,0.090440000000000006,11.396000000000001,12.385,13.497,14.752000000000001,16.173999999999999,17.792999999999999,19.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,98.4,-0.38329999999999997,14.779,0.090469999999999995,11.416,12.407,13.521000000000001,14.779,16.204000000000001,17.827000000000002,19.684000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,98.5,-0.38329999999999997,14.8062,0.090490000000000001,11.436,12.429,13.545999999999999,14.805999999999999,16.234999999999999,17.861000000000001,19.721 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,98.6,-0.38329999999999997,14.833399999999999,0.090520000000000003,11.456,12.452,13.57,14.833,16.265000000000001,17.895,19.760000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,98.7,-0.38329999999999997,14.860799999999999,0.090539999999999995,11.477,12.474,13.595000000000001,14.861000000000001,16.295000000000002,17.928999999999998,19.797000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,98.8,-0.38329999999999997,14.888199999999999,0.090569999999999998,11.497,12.496,13.62,14.888,16.326000000000001,17.963000000000001,19.835999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,98.9,-0.38329999999999997,14.915699999999999,0.090590000000000004,11.518000000000001,12.519,13.645,14.916,16.356000000000002,17.997,19.873999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,99,-0.38329999999999997,14.9434,0.090620000000000006,11.538,12.542,13.67,14.943,16.387,18.030999999999999,19.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,99.1,-0.38329999999999997,14.9711,0.090639999999999998,11.558999999999999,12.564,13.695,14.971,16.417999999999999,18.065999999999999,19.951000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,99.2,-0.38329999999999997,14.998900000000001,0.090670000000000001,11.579000000000001,12.587,13.72,14.999000000000001,16.449000000000002,18.100000000000001,19.989999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,99.3,-0.38329999999999997,15.0267,0.090690000000000007,11.6,12.61,13.744999999999999,15.026999999999999,16.48,18.135000000000002,20.027999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,99.4,-0.38329999999999997,15.0547,0.090719999999999995,11.621,12.632999999999999,13.77,15.055,16.510999999999999,18.170000000000002,20.068000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,99.5,-0.38329999999999997,15.082800000000001,0.090749999999999997,11.641999999999999,12.654999999999999,13.795999999999999,15.083,16.542000000000002,18.204999999999998,20.106999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,99.6,-0.38329999999999997,15.110900000000001,0.090770000000000003,11.663,12.679,13.821,15.111000000000001,16.573,18.239000000000001,20.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,99.7,-0.38329999999999997,15.139200000000001,0.090800000000000006,11.683999999999999,12.702,13.846,15.138999999999999,16.605,18.274999999999999,20.186 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,99.8,-0.38329999999999997,15.1676,0.090829999999999994,11.705,12.725,13.872,15.167999999999999,16.637,18.309999999999999,20.225999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,99.9,-0.38329999999999997,15.196,0.09085,11.726000000000001,12.747999999999999,13.898,15.196,16.667999999999999,18.344999999999999,20.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,100,-0.38329999999999997,15.224600000000001,0.090880000000000002,11.747,12.771000000000001,13.923999999999999,15.225,16.7,18.381,20.305 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,100.1,-0.38329999999999997,15.2532,0.090910000000000005,11.768000000000001,12.795,13.949,15.253,16.731999999999999,18.417000000000002,20.344999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,100.2,-0.38329999999999997,15.2819,0.090929999999999997,11.79,12.818,13.975,15.282,16.763999999999999,18.452000000000002,20.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,100.3,-0.38329999999999997,15.3108,0.090959999999999999,11.811,12.842000000000001,14.000999999999999,15.311,16.795999999999999,18.488,20.425999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,100.4,-0.38329999999999997,15.339700000000001,0.090990000000000001,11.832000000000001,12.865,14.026999999999999,15.34,16.827999999999999,18.524000000000001,20.466000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,100.5,-0.38329999999999997,15.3687,0.091020000000000004,11.853999999999999,12.888999999999999,14.053000000000001,15.369,16.861000000000001,18.561,20.507000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,100.6,-0.38329999999999997,15.3979,0.091050000000000006,11.875,12.913,14.08,15.398,16.893000000000001,18.597000000000001,20.547999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,100.7,-0.38329999999999997,15.427099999999999,0.091069999999999998,11.897,12.936999999999999,14.106,15.427,16.925999999999998,18.632999999999999,20.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,100.8,-0.38329999999999997,15.4564,0.0911,11.919,12.96,14.132999999999999,15.456,16.957999999999998,18.670000000000002,20.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,100.9,-0.38329999999999997,15.485799999999999,0.091130000000000003,11.94,12.984,14.159000000000001,15.486000000000001,16.991,18.706,20.670999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,101,-0.38329999999999997,15.5154,0.091160000000000005,11.962,13.007999999999999,14.186,15.515000000000001,17.024000000000001,18.742999999999999,20.712 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,101.1,-0.38329999999999997,15.545,0.091189999999999993,11.984,13.032999999999999,14.212,15.545,17.056999999999999,18.78,20.754000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,101.2,-0.38329999999999997,15.5747,0.091219999999999996,12.006,13.057,14.239000000000001,15.574999999999999,17.09,18.817,20.795999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,101.3,-0.38329999999999997,15.6046,0.091249999999999998,12.028,13.081,14.266,15.605,17.123000000000001,18.855,20.838000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,101.4,-0.38329999999999997,15.634499999999999,0.09128,12.05,13.105,14.292999999999999,15.634,17.157,18.891999999999999,20.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,101.5,-0.38329999999999997,15.6646,0.091310000000000002,12.071999999999999,13.13,14.32,15.664999999999999,17.190000000000001,18.93,20.922000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,101.6,-0.38329999999999997,15.694699999999999,0.091329999999999995,12.095000000000001,13.154999999999999,14.347,15.695,17.224,18.966999999999999,20.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,101.7,-0.38329999999999997,15.725,0.091359999999999997,12.117000000000001,13.179,14.374000000000001,15.725,17.257999999999999,19.004999999999999,21.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,101.8,-0.38329999999999997,15.7553,0.091389999999999999,12.14,13.204000000000001,14.401999999999999,15.755000000000001,17.291,19.042999999999999,21.048999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,101.9,-0.38329999999999997,15.7858,0.091420000000000001,12.162000000000001,13.228999999999999,14.429,15.786,17.324999999999999,19.081,21.091999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,102,-0.38329999999999997,15.8164,0.09146,12.183999999999999,13.253,14.457000000000001,15.816000000000001,17.36,19.119,21.135999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,102.1,-0.38329999999999997,15.847,0.091490000000000002,12.207000000000001,13.278,14.484,15.847,17.393999999999998,19.157,21.178999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,102.2,-0.38329999999999997,15.877800000000001,0.091520000000000004,12.23,13.303000000000001,14.512,15.878,17.428000000000001,19.196000000000002,21.222000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,102.3,-0.38329999999999997,15.9087,0.091550000000000006,12.253,13.329000000000001,14.54,15.909000000000001,17.463000000000001,19.234999999999999,21.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,102.4,-0.38329999999999997,15.9396,0.091579999999999995,12.275,13.353999999999999,14.568,15.94,17.497,19.273,21.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,102.5,-0.38329999999999997,15.970700000000001,0.091609999999999997,12.298,13.379,14.596,15.971,17.532,19.312000000000001,21.352 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,102.6,-0.38329999999999997,16.001899999999999,0.091639999999999999,12.321,13.404,14.624000000000001,16.001999999999999,17.567,19.350999999999999,21.396000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,102.7,-0.38329999999999997,16.033200000000001,0.091670000000000001,12.343999999999999,13.43,14.651999999999999,16.033000000000001,17.600999999999999,19.39,21.44 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,102.8,-0.38329999999999997,16.064499999999999,0.091700000000000004,12.367000000000001,13.455,14.68,16.064,17.635999999999999,19.428999999999998,21.484000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,102.9,-0.38329999999999997,16.096,0.091730000000000006,12.391,13.481,14.708,16.096,17.670999999999999,19.469000000000001,21.529 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,103,-0.38329999999999997,16.127600000000001,0.091770000000000004,12.414,13.506,14.737,16.128,17.707000000000001,19.507999999999999,21.574000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,103.1,-0.38329999999999997,16.159300000000002,0.091800000000000007,12.436999999999999,13.532,14.765000000000001,16.158999999999999,17.742000000000001,19.547999999999998,21.617999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,103.2,-0.38329999999999997,16.190999999999999,0.091829999999999995,12.46,13.558,14.794,16.190999999999999,17.777999999999999,19.588000000000001,21.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,103.3,-0.38329999999999997,16.222899999999999,0.091859999999999997,12.484,13.584,14.821999999999999,16.222999999999999,17.812999999999999,19.628,21.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,103.4,-0.38329999999999997,16.254899999999999,0.091899999999999996,12.507,13.61,14.851000000000001,16.254999999999999,17.849,19.667999999999999,21.754000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,103.5,-0.38329999999999997,16.286999999999999,0.091929999999999998,12.531000000000001,13.635999999999999,14.88,16.286999999999999,17.885000000000002,19.707999999999998,21.798999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,103.6,-0.38329999999999997,16.319099999999999,0.09196,12.555,13.662000000000001,14.909000000000001,16.318999999999999,17.920999999999999,19.748000000000001,21.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,103.7,-0.38329999999999997,16.351400000000002,0.091990000000000002,12.577999999999999,13.688000000000001,14.938000000000001,16.350999999999999,17.957000000000001,19.789000000000001,21.888999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,103.8,-0.38329999999999997,16.383700000000001,0.092030000000000001,12.602,13.714,14.967000000000001,16.384,17.992999999999999,19.829000000000001,21.934999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,103.9,-0.38329999999999997,16.4162,0.092060000000000003,12.625999999999999,13.741,14.996,16.416,18.029,19.87,21.981000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,104,-0.38329999999999997,16.448799999999999,0.092090000000000005,12.65,13.766999999999999,15.026,16.449000000000002,18.065999999999999,19.911000000000001,22.027000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,104.1,-0.38329999999999997,16.481400000000001,0.092130000000000004,12.673999999999999,13.792999999999999,15.055,16.481000000000002,18.102,19.952000000000002,22.074000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,104.2,-0.38329999999999997,16.514199999999999,0.092160000000000006,12.698,13.82,15.084,16.513999999999999,18.138999999999999,19.992999999999999,22.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,104.3,-0.38329999999999997,16.547000000000001,0.092189999999999994,12.722,13.847,15.114000000000001,16.547000000000001,18.175000000000001,20.033999999999999,22.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,104.4,-0.38329999999999997,16.579999999999998,0.092230000000000006,12.746,13.872999999999999,15.143000000000001,16.579999999999998,18.212,20.076000000000001,22.213000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,104.5,-0.38329999999999997,16.613099999999999,0.092259999999999995,12.77,13.9,15.173,16.613,18.248999999999999,20.117000000000001,22.26 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,104.6,-0.38329999999999997,16.6462,0.092289999999999997,12.795,13.927,15.202999999999999,16.646000000000001,18.286000000000001,20.158000000000001,22.306000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,104.7,-0.38329999999999997,16.679500000000001,0.092329999999999995,12.819000000000001,13.954000000000001,15.233000000000001,16.68,18.323,20.2,22.353999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,104.8,-0.38329999999999997,16.712900000000001,0.092359999999999998,12.843999999999999,13.981,15.263,16.713000000000001,18.361000000000001,20.242000000000001,22.401 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,104.9,-0.38329999999999997,16.746400000000001,0.092399999999999996,12.868,14.007999999999999,15.292999999999999,16.745999999999999,18.398,20.283999999999999,22.449000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,105,-0.38329999999999997,16.78,0.092429999999999998,12.893000000000001,14.035,15.323,16.78,18.436,20.326000000000001,22.495999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,105.1,-0.38329999999999997,16.813700000000001,0.092469999999999997,12.917,14.063000000000001,15.353,16.814,18.474,20.369,22.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,105.2,-0.38329999999999997,16.8475,0.092499999999999999,12.942,14.09,15.384,16.847999999999999,18.510999999999999,20.411000000000001,22.591999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,105.3,-0.38329999999999997,16.881399999999999,0.092539999999999997,12.967000000000001,14.117000000000001,15.414,16.881,18.548999999999999,20.454000000000001,22.640999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,105.4,-0.38329999999999997,16.915400000000002,0.09257,12.992000000000001,14.145,15.445,16.914999999999999,18.587,20.497,22.687999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,105.5,-0.38329999999999997,16.9496,0.092609999999999998,13.016999999999999,14.173,15.475,16.95,18.626000000000001,20.54,22.736999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,105.6,-0.38329999999999997,16.983799999999999,0.09264,13.042,14.2,15.506,16.984000000000002,18.664000000000001,20.582999999999998,22.786000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,105.7,-0.38329999999999997,17.0182,0.092679999999999998,13.067,14.228,15.537000000000001,17.018000000000001,18.702000000000002,20.626000000000001,22.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,105.8,-0.38329999999999997,17.052700000000002,0.092710000000000001,13.092000000000001,14.256,15.568,17.053000000000001,18.741,20.669,22.882999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,105.9,-0.38329999999999997,17.087299999999999,0.092749999999999999,13.117000000000001,14.284000000000001,15.599,17.087,18.78,20.713000000000001,22.933 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,106,-0.38329999999999997,17.122,0.092780000000000001,13.143000000000001,14.311999999999999,15.63,17.122,18.818000000000001,20.756,22.981999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,106.1,-0.38329999999999997,17.1569,0.09282,13.167999999999999,14.34,15.661,17.157,18.858000000000001,20.8,23.032 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,106.2,-0.38329999999999997,17.191800000000001,0.092859999999999998,13.194000000000001,14.368,15.693,17.192,18.896999999999998,20.844999999999999,23.082000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,106.3,-0.38329999999999997,17.226900000000001,0.09289,13.22,14.397,15.724,17.227,18.936,20.888000000000002,23.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,106.4,-0.38329999999999997,17.262,0.092929999999999999,13.244999999999999,14.425000000000001,15.756,17.262,18.975000000000001,20.933,23.181000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,106.5,-0.38329999999999997,17.2973,0.092960000000000001,13.271000000000001,14.454000000000001,15.787000000000001,17.297000000000001,19.015000000000001,20.977,23.231000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,106.6,-0.38329999999999997,17.332699999999999,0.092999999999999999,13.297000000000001,14.481999999999999,15.819000000000001,17.332999999999998,19.053999999999998,21.021999999999998,23.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,106.7,-0.38329999999999997,17.368300000000001,0.093039999999999998,13.323,14.510999999999999,15.851000000000001,17.367999999999999,19.094000000000001,21.067,23.332999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,106.8,-0.38329999999999997,17.4039,0.09307,13.349,14.54,15.882999999999999,17.404,19.134,21.111000000000001,23.382999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,106.9,-0.38329999999999997,17.439699999999998,0.093109999999999998,13.375,14.569000000000001,15.914999999999999,17.440000000000001,19.173999999999999,21.157,23.434000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,107,-0.38329999999999997,17.4755,0.093149999999999997,13.401,14.598000000000001,15.946999999999999,17.475999999999999,19.213999999999999,21.202000000000002,23.484999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,107.1,-0.38329999999999997,17.511500000000002,0.093179999999999999,13.427,14.627000000000001,15.978999999999999,17.512,19.254000000000001,21.247,23.536000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,107.2,-0.38329999999999997,17.547599999999999,0.093219999999999997,13.454000000000001,14.656000000000001,16.012,17.547999999999998,19.295000000000002,21.292000000000002,23.588000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,107.3,-0.38329999999999997,17.5839,0.093259999999999996,13.48,14.685,16.044,17.584,19.335999999999999,21.338000000000001,23.64 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,107.4,-0.38329999999999997,17.620200000000001,0.093289999999999998,13.507,14.715,16.077000000000002,17.62,19.376000000000001,21.384,23.690999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,107.5,-0.38329999999999997,17.656700000000001,0.093329999999999996,13.532999999999999,14.744,16.11,17.657,19.417000000000002,21.43,23.742999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,107.6,-0.38329999999999997,17.693200000000001,0.093369999999999995,13.56,14.773,16.141999999999999,17.693000000000001,19.457999999999998,21.475999999999999,23.795999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,107.7,-0.38329999999999997,17.729900000000001,0.093410000000000007,13.586,14.803000000000001,16.175000000000001,17.73,19.498999999999999,21.523,23.847999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,107.8,-0.38329999999999997,17.7668,0.093439999999999995,13.614000000000001,14.833,16.207999999999998,17.766999999999999,19.54,21.568999999999999,23.9 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,107.9,-0.38329999999999997,17.803699999999999,0.093479999999999994,13.64,14.863,16.241,17.803999999999998,19.582000000000001,21.614999999999998,23.952999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,108,-0.38329999999999997,17.840699999999998,0.093520000000000006,13.667,14.891999999999999,16.274999999999999,17.841000000000001,19.623000000000001,21.661999999999999,24.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,108.1,-0.38329999999999997,17.8779,0.093560000000000004,13.694000000000001,14.922000000000001,16.308,17.878,19.664999999999999,21.709,24.059000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,108.2,-0.38329999999999997,17.915199999999999,0.093590000000000007,13.722,14.952999999999999,16.341000000000001,17.914999999999999,19.707000000000001,21.756,24.111999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,108.3,-0.38329999999999997,17.9526,0.093630000000000005,13.749000000000001,14.983000000000001,16.375,17.952999999999999,19.748999999999999,21.803000000000001,24.166 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,108.4,-0.38329999999999997,17.990100000000002,0.093670000000000003,13.776,15.013,16.408000000000001,17.989999999999998,19.791,21.850999999999999,24.219000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,108.5,-0.38329999999999997,18.027699999999999,0.093710000000000002,13.803000000000001,15.042999999999999,16.442,18.027999999999999,19.832999999999998,21.898,24.273 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,108.6,-0.38329999999999997,18.0654,0.09375,13.831,15.073,16.475999999999999,18.065000000000001,19.875,21.946000000000002,24.327000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,108.7,-0.38329999999999997,18.103300000000001,0.093780000000000002,13.859,15.103999999999999,16.510000000000002,18.103000000000002,19.917999999999999,21.992999999999999,24.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,108.8,-0.38329999999999997,18.141200000000001,0.093820000000000001,13.885999999999999,15.135,16.544,18.140999999999998,19.96,22.041,24.434999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,108.9,-0.38329999999999997,18.179200000000002,0.093859999999999999,13.914,15.164999999999999,16.577999999999999,18.178999999999998,20.003,22.088999999999999,24.489000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,109,-0.38329999999999997,18.217400000000001,0.093899999999999997,13.942,15.196,16.611999999999998,18.216999999999999,20.045999999999999,22.138000000000002,24.544 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,109.1,-0.38329999999999997,18.255600000000001,0.093939999999999996,13.968999999999999,15.227,16.646000000000001,18.256,20.088000000000001,22.186,24.599 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,109.2,-0.38329999999999997,18.294,0.093969999999999998,13.997999999999999,15.257999999999999,16.681000000000001,18.294,20.131,22.234000000000002,24.652999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,109.3,-0.38329999999999997,18.3324,0.094009999999999996,14.025,15.289,16.715,18.332000000000001,20.173999999999999,22.283000000000001,24.707999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,109.4,-0.38329999999999997,18.370999999999999,0.094049999999999995,14.053000000000001,15.32,16.75,18.370999999999999,20.218,22.332000000000001,24.763999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,109.5,-0.38329999999999997,18.409600000000001,0.094089999999999993,14.081,15.351000000000001,16.783999999999999,18.41,20.260999999999999,22.38,24.818999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,109.6,-0.38329999999999997,18.448399999999999,0.094130000000000005,14.11,15.382,16.818999999999999,18.448,20.305,22.428999999999998,24.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,109.7,-0.38329999999999997,18.487200000000001,0.094170000000000004,14.138,15.413,16.853999999999999,18.486999999999998,20.347999999999999,22.478999999999999,24.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,109.8,-0.38329999999999997,18.526199999999999,0.094210000000000002,14.166,15.445,16.888999999999999,18.526,20.391999999999999,22.527999999999999,24.986000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,109.9,-0.38329999999999997,18.565200000000001,0.094240000000000004,14.195,15.476000000000001,16.923999999999999,18.565000000000001,20.434999999999999,22.577000000000002,25.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,110,-0.38329999999999997,18.604299999999999,0.094280000000000003,14.223000000000001,15.507999999999999,16.959,18.603999999999999,20.478999999999999,22.626000000000001,25.097999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,110.1,-0.38329999999999997,18.643599999999999,0.094320000000000001,14.250999999999999,15.539,16.994,18.643999999999998,20.523,22.675999999999998,25.154 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,110.2,-0.38329999999999997,18.6829,0.094359999999999999,14.28,15.571,17.029,18.683,20.568000000000001,22.725999999999999,25.21 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,110.3,-0.38329999999999997,18.722300000000001,0.094399999999999998,14.308999999999999,15.603,17.064,18.722000000000001,20.611999999999998,22.776,25.266999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,110.4,-0.38329999999999997,18.761800000000001,0.094439999999999996,14.337,15.634,17.100000000000001,18.762,20.655999999999999,22.826000000000001,25.324000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,110.5,-0.38329999999999997,18.801500000000001,0.094479999999999995,14.366,15.666,17.135000000000002,18.802,20.701000000000001,22.876000000000001,25.381 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,110.6,-0.38329999999999997,18.841200000000001,0.094520000000000007,14.395,15.698,17.170999999999999,18.841000000000001,20.745000000000001,22.925999999999998,25.437999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,110.7,-0.38329999999999997,18.8809,0.094560000000000005,14.423999999999999,15.73,17.206,18.881,20.79,22.977,25.495000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,110.8,-0.38329999999999997,18.9208,0.094600000000000004,14.452,15.762,17.242000000000001,18.920999999999999,20.835000000000001,23.027000000000001,25.552 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,110.9,-0.38329999999999997,18.960799999999999,0.094640000000000002,14.481,15.794,17.277999999999999,18.960999999999999,20.88,23.077999999999999,25.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,111,-0.38329999999999997,19.000900000000001,0.094670000000000004,14.510999999999999,15.827,17.314,19.001000000000001,20.923999999999999,23.128,25.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,111.1,-0.38329999999999997,19.041,0.094710000000000003,14.54,15.859,17.349,19.041,20.969000000000001,23.178999999999998,25.724 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,111.2,-0.38329999999999997,19.081199999999999,0.094750000000000001,14.569000000000001,15.891,17.385000000000002,19.081,21.015000000000001,23.23,25.782 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,111.3,-0.38329999999999997,19.121500000000001,0.094789999999999999,14.598000000000001,15.923999999999999,17.420999999999999,19.122,21.06,23.280999999999999,25.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,111.4,-0.38329999999999997,19.161899999999999,0.094829999999999998,14.627000000000001,15.956,17.457999999999998,19.161999999999999,21.105,23.332000000000001,25.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,111.5,-0.38329999999999997,19.202400000000001,0.094869999999999996,14.657,15.989000000000001,17.494,19.202000000000002,21.151,23.382999999999999,25.956 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,111.6,-0.38329999999999997,19.242999999999999,0.094909999999999994,14.686,16.021000000000001,17.53,19.242999999999999,21.196000000000002,23.434999999999999,26.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,111.7,-0.38329999999999997,19.2836,0.094950000000000007,14.715999999999999,16.053999999999998,17.565999999999999,19.283999999999999,21.242000000000001,23.486000000000001,26.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,111.8,-0.38329999999999997,19.324300000000001,0.094990000000000005,14.744999999999999,16.087,17.603000000000002,19.324000000000002,21.288,23.538,26.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,111.9,-0.38329999999999997,19.365100000000002,0.095030000000000003,14.775,16.119,17.638999999999999,19.364999999999998,21.332999999999998,23.59,26.19 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,112,-0.38329999999999997,19.405999999999999,0.095070000000000002,14.804,16.152000000000001,17.675999999999998,19.405999999999999,21.379000000000001,23.641999999999999,26.248999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,112.1,-0.38329999999999997,19.446999999999999,0.09511,14.834,16.184999999999999,17.713000000000001,19.446999999999999,21.425000000000001,23.693999999999999,26.308 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,112.2,-0.38329999999999997,19.488,0.095149999999999998,14.864000000000001,16.218,17.748999999999999,19.488,21.472000000000001,23.745999999999999,26.367000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,112.3,-0.38329999999999997,19.5291,0.095189999999999997,14.893000000000001,16.251000000000001,17.786000000000001,19.529,21.518000000000001,23.797999999999998,26.425999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,112.4,-0.38329999999999997,19.5703,0.095229999999999995,14.923,16.283999999999999,17.823,19.57,21.564,23.85,26.484999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,112.5,-0.38329999999999997,19.611599999999999,0.095269999999999994,14.952999999999999,16.317,17.86,19.611999999999998,21.61,23.902000000000001,26.545000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,112.6,-0.38329999999999997,19.652899999999999,0.095310000000000006,14.983000000000001,16.350000000000001,17.896999999999998,19.652999999999999,21.657,23.954999999999998,26.603999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,112.7,-0.38329999999999997,19.694299999999998,0.095339999999999994,15.013,16.384,17.934000000000001,19.693999999999999,21.702999999999999,24.007000000000001,26.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,112.8,-0.38329999999999997,19.735800000000001,0.095380000000000006,15.042999999999999,16.417000000000002,17.971,19.736000000000001,21.75,24.059000000000001,26.722999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,112.9,-0.38329999999999997,19.7774,0.095420000000000005,15.073,16.451000000000001,18.007999999999999,19.777000000000001,21.795999999999999,24.111999999999998,26.783000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,113,-0.38329999999999997,19.818999999999999,0.095460000000000003,15.103,16.484000000000002,18.045000000000002,19.818999999999999,21.843,24.164999999999999,26.843 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,113.1,-0.38329999999999997,19.860700000000001,0.095500000000000002,15.132999999999999,16.516999999999999,18.082999999999998,19.861000000000001,21.89,24.218,26.902999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,113.2,-0.38329999999999997,19.9024,0.09554,15.164,16.550999999999998,18.12,19.902000000000001,21.937000000000001,24.271000000000001,26.963000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,113.3,-0.38329999999999997,19.944199999999999,0.095579999999999998,15.194000000000001,16.584,18.157,19.943999999999999,21.984000000000002,24.324000000000002,27.023 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,113.4,-0.38329999999999997,19.9861,0.095619999999999997,15.224,16.617999999999999,18.195,19.986000000000001,22.030999999999999,24.376999999999999,27.084 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,113.5,-0.38329999999999997,20.027999999999999,0.095659999999999995,15.254,16.652000000000001,18.231999999999999,20.027999999999999,22.077999999999999,24.43,27.143999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,113.6,-0.38329999999999997,20.07,0.095699999999999993,15.285,16.684999999999999,18.27,20.07,22.125,24.484000000000002,27.204999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,113.7,-0.38329999999999997,20.111999999999998,0.095740000000000006,15.315,16.719000000000001,18.306999999999999,20.111999999999998,22.172999999999998,24.536999999999999,27.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,113.8,-0.38329999999999997,20.1541,0.095780000000000004,15.345000000000001,16.753,18.344999999999999,20.154,22.22,24.591000000000001,27.326000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,113.9,-0.38329999999999997,20.196300000000001,0.095820000000000002,15.375999999999999,16.786000000000001,18.382000000000001,20.196000000000002,22.266999999999999,24.643999999999998,27.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,114,-0.38329999999999997,20.238499999999998,0.095860000000000001,15.406000000000001,16.82,18.420000000000002,20.238,22.315000000000001,24.698,27.448 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,114.1,-0.38329999999999997,20.2807,0.095899999999999999,15.436999999999999,16.853999999999999,18.457999999999998,20.280999999999999,22.361999999999998,24.751000000000001,27.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,114.2,-0.38329999999999997,20.323,0.095939999999999998,15.467000000000001,16.888000000000002,18.495999999999999,20.323,22.41,24.805,27.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,114.3,-0.38329999999999997,20.365300000000001,0.095979999999999996,15.497999999999999,16.922000000000001,18.533000000000001,20.364999999999998,22.457000000000001,24.859000000000002,27.631 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,114.4,-0.38329999999999997,20.407699999999998,0.096019999999999994,15.528,16.956,18.571000000000002,20.408000000000001,22.504999999999999,24.913,27.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,114.5,-0.38329999999999997,20.450199999999999,0.096060000000000006,15.558999999999999,16.989999999999998,18.609000000000002,20.45,22.553000000000001,24.966999999999999,27.754000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,114.6,-0.38329999999999997,20.492599999999999,0.096100000000000005,15.59,17.024000000000001,18.646999999999998,20.492999999999999,22.600999999999999,25.021000000000001,27.815000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,114.7,-0.38329999999999997,20.5351,0.096140000000000003,15.62,17.058,18.684999999999999,20.535,22.648,25.074999999999999,27.876000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,114.8,-0.38329999999999997,20.5777,0.096180000000000002,15.651,17.091999999999999,18.722999999999999,20.577999999999999,22.696000000000002,25.129000000000001,27.937999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,114.9,-0.38329999999999997,20.6203,0.09622,15.682,17.126000000000001,18.760999999999999,20.62,22.744,25.183,28 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,115,-0.38329999999999997,20.6629,0.096259999999999998,15.712,17.16,18.798999999999999,20.663,22.792000000000002,25.238,28.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,115.1,-0.38329999999999997,20.7056,0.096299999999999997,15.743,17.193999999999999,18.837,20.706,22.84,25.292000000000002,28.123000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,115.2,-0.38329999999999997,20.7483,0.096339999999999995,15.773999999999999,17.228999999999999,18.875,20.748000000000001,22.888000000000002,25.346,28.184999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,115.3,-0.38329999999999997,20.791,0.096379999999999993,15.805,17.263000000000002,18.914000000000001,20.791,22.936,25.401,28.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,115.4,-0.38329999999999997,20.8338,0.096420000000000006,15.836,17.297000000000001,18.952000000000002,20.834,22.984999999999999,25.454999999999998,28.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,115.5,-0.38329999999999997,20.8766,0.096460000000000004,15.866,17.331,18.989999999999998,20.876999999999999,23.033000000000001,25.51,28.370999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,115.6,-0.38329999999999997,20.9194,0.096500000000000002,15.897,17.364999999999998,19.027999999999999,20.919,23.081,25.564,28.433 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,115.7,-0.38329999999999997,20.962199999999999,0.096540000000000001,15.928000000000001,17.399999999999999,19.065999999999999,20.962,23.129000000000001,25.619,28.495000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,115.8,-0.38329999999999997,21.005099999999999,0.096579999999999999,15.959,17.434000000000001,19.105,21.004999999999999,23.177,25.672999999999998,28.556999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,115.9,-0.38329999999999997,21.047999999999998,0.096619999999999998,15.99,17.468,19.143000000000001,21.047999999999998,23.225999999999999,25.728000000000002,28.619 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,116,-0.38329999999999997,21.090900000000001,0.096659999999999996,16.021000000000001,17.503,19.181000000000001,21.091000000000001,23.274000000000001,25.783000000000001,28.681000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,116.1,-0.38329999999999997,21.133900000000001,0.096699999999999994,16.052,17.536999999999999,19.22,21.134,23.321999999999999,25.837,28.744 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,116.2,-0.38329999999999997,21.1769,0.096740000000000007,16.082000000000001,17.571000000000002,19.257999999999999,21.177,23.370999999999999,25.891999999999999,28.806000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,116.3,-0.38329999999999997,21.219899999999999,0.096780000000000005,16.113,17.606000000000002,19.295999999999999,21.22,23.419,25.946999999999999,28.867999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,116.4,-0.38329999999999997,21.262899999999998,0.096820000000000003,16.143999999999998,17.64,19.335000000000001,21.263000000000002,23.468,26.001999999999999,28.931000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,116.5,-0.38329999999999997,21.305900000000001,0.096860000000000002,16.175000000000001,17.673999999999999,19.373000000000001,21.306000000000001,23.515999999999998,26.056999999999999,28.992999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,116.6,-0.38329999999999997,21.3489,0.096909999999999996,16.206,17.707999999999998,19.411000000000001,21.349,23.565000000000001,26.111999999999998,29.056999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,116.7,-0.38329999999999997,21.391999999999999,0.096949999999999995,16.236999999999998,17.742999999999999,19.45,21.391999999999999,23.613,26.167000000000002,29.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,116.8,-0.38329999999999997,21.435099999999998,0.096990000000000007,16.268000000000001,17.777000000000001,19.488,21.434999999999999,23.661999999999999,26.222000000000001,29.181999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,116.9,-0.38329999999999997,21.478200000000001,0.097030000000000005,16.297999999999998,17.812000000000001,19.526,21.478000000000002,23.710999999999999,26.277000000000001,29.244 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,117,-0.38329999999999997,21.5213,0.097070000000000004,16.329000000000001,17.846,19.565000000000001,21.521000000000001,23.759,26.332000000000001,29.306999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,117.1,-0.38329999999999997,21.564399999999999,0.097110000000000002,16.36,17.881,19.603000000000002,21.564,23.808,26.387,29.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,117.2,-0.38329999999999997,21.607500000000002,0.09715,16.390999999999998,17.914999999999999,19.641999999999999,21.608000000000001,23.856000000000002,26.442,29.431999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,117.3,-0.38329999999999997,21.650700000000001,0.097189999999999999,16.422000000000001,17.949000000000002,19.68,21.651,23.905000000000001,26.497,29.495000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,117.4,-0.38329999999999997,21.6938,0.097229999999999997,16.452999999999999,17.984000000000002,19.719000000000001,21.693999999999999,23.954000000000001,26.552,29.558 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,117.5,-0.38329999999999997,21.736999999999998,0.097269999999999995,16.484000000000002,18.018000000000001,19.757000000000001,21.736999999999998,24.001999999999999,26.606999999999999,29.620999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,117.6,-0.38329999999999997,21.780200000000001,0.097309999999999994,16.515000000000001,18.053000000000001,19.795999999999999,21.78,24.050999999999998,26.663,29.684000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,117.7,-0.38329999999999997,21.8233,0.097350000000000006,16.545999999999999,18.087,19.834,21.823,24.099,26.718,29.745999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,117.8,-0.38329999999999997,21.866499999999998,0.097390000000000004,16.577000000000002,18.122,19.873000000000001,21.866,24.148,26.773,29.809000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,117.9,-0.38329999999999997,21.909700000000001,0.097430000000000003,16.608000000000001,18.155999999999999,19.911000000000001,21.91,24.196999999999999,26.827999999999999,29.872 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,118,-0.38329999999999997,21.9529,0.097470000000000001,16.638999999999999,18.190000000000001,19.95,21.952999999999999,24.245999999999999,26.882999999999999,29.934999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,118.1,-0.38329999999999997,21.996099999999998,0.097509999999999999,16.670000000000002,18.225000000000001,19.988,21.995999999999999,24.294,26.939,29.998000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,118.2,-0.38329999999999997,22.039300000000001,0.097549999999999998,16.701000000000001,18.259,20.027000000000001,22.039000000000001,24.343,26.994,30.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,118.3,-0.38329999999999997,22.0825,0.097589999999999996,16.731999999999999,18.294,20.065000000000001,22.082000000000001,24.391999999999999,27.048999999999999,30.123999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,118.4,-0.38329999999999997,22.125800000000002,0.097629999999999995,16.763000000000002,18.327999999999999,20.103999999999999,22.126000000000001,24.440999999999999,27.103999999999999,30.187000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,118.5,-0.38329999999999997,22.169,0.097670000000000007,16.794,18.363,20.141999999999999,22.169,24.489000000000001,27.16,30.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,118.6,-0.38329999999999997,22.212199999999999,0.097710000000000005,16.824999999999999,18.396999999999998,20.181000000000001,22.212,24.538,27.215,30.312999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,118.7,-0.38329999999999997,22.255400000000002,0.097750000000000004,16.855,18.431999999999999,20.219000000000001,22.254999999999999,24.587,27.27,30.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,118.8,-0.38329999999999997,22.2986,0.097799999999999998,16.885999999999999,18.466000000000001,20.257000000000001,22.298999999999999,24.635999999999999,27.326000000000001,30.44 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,118.9,-0.38329999999999997,22.341899999999999,0.097839999999999996,16.917000000000002,18.5,20.295999999999999,22.341999999999999,24.684999999999999,27.382000000000001,30.504000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,119,-0.38329999999999997,22.385100000000001,0.097879999999999995,16.948,18.533999999999999,20.334,22.385000000000002,24.734000000000002,27.437000000000001,30.567 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,119.1,-0.38329999999999997,22.4283,0.097919999999999993,16.978999999999999,18.568999999999999,20.373000000000001,22.428000000000001,24.782,27.492000000000001,30.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,119.2,-0.38329999999999997,22.471499999999999,0.097960000000000005,17.010000000000002,18.603000000000002,20.411000000000001,22.472000000000001,24.831,27.547999999999998,30.693000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,119.3,-0.38329999999999997,22.514800000000001,0.098000000000000004,17.04,18.638000000000002,20.45,22.515000000000001,24.88,27.603000000000002,30.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,119.4,-0.38329999999999997,22.558,0.098040000000000002,17.071000000000002,18.672000000000001,20.488,22.558,24.928999999999998,27.658000000000001,30.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,119.5,-0.38329999999999997,22.601199999999999,0.098080000000000001,17.102,18.706,20.527000000000001,22.600999999999999,24.977,27.713999999999999,30.882999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,119.6,-0.38329999999999997,22.644400000000001,0.098119999999999999,17.132999999999999,18.741,20.565000000000001,22.643999999999998,25.026,27.768999999999998,30.946000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,119.7,-0.38329999999999997,22.6877,0.098159999999999997,17.164000000000001,18.774999999999999,20.603999999999999,22.687999999999999,25.074999999999999,27.824999999999999,31.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,119.8,-0.38329999999999997,22.730899999999998,0.098199999999999996,17.195,18.809999999999999,20.641999999999999,22.731000000000002,25.123999999999999,27.88,31.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,119.9,-0.38329999999999997,22.774100000000001,0.098239999999999994,17.225999999999999,18.844000000000001,20.68,22.774000000000001,25.172999999999998,27.934999999999999,31.135999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-girls-zscore-expanded-tables.xlsx,expanded,female,height,120,-0.38329999999999997,22.817299999999999,0.098280000000000006,17.256,18.878,20.719000000000001,22.817,25.222000000000001,27.991,31.199000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,45,-0.35210000000000002,2.4409999999999998,0.091819999999999999,1.877,2.0430000000000001,2.23,2.4409999999999998,2.68,2.9510000000000001,3.2610000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,45.1,-0.35210000000000002,2.4577,0.091759999999999994,1.89,2.0569999999999999,2.2450000000000001,2.4580000000000002,2.698,2.9710000000000001,3.2829999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,45.2,-0.35210000000000002,2.4744000000000002,0.091700000000000004,1.903,2.0720000000000001,2.2610000000000001,2.4740000000000002,2.7160000000000002,2.9910000000000001,3.3050000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,45.3,-0.35210000000000002,2.4910999999999999,0.091639999999999999,1.9159999999999999,2.0859999999999999,2.2759999999999998,2.4910000000000001,2.734,3.0110000000000001,3.3260000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,45.4,-0.35210000000000002,2.5078,0.091590000000000005,1.929,2.1,2.2919999999999998,2.508,2.7519999999999998,3.0310000000000001,3.3479999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,45.5,-0.35210000000000002,2.5244,0.09153,1.9419999999999999,2.1139999999999999,2.3069999999999999,2.524,2.7709999999999999,3.05,3.37 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,45.6,-0.35210000000000002,2.5411000000000001,0.091469999999999996,1.956,2.1280000000000001,2.3220000000000001,2.5409999999999999,2.7890000000000001,3.07,3.391 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,45.7,-0.35210000000000002,2.5577999999999999,0.091410000000000005,1.9690000000000001,2.1419999999999999,2.3380000000000001,2.5579999999999998,2.8069999999999999,3.09,3.4129999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,45.8,-0.35210000000000002,2.5743999999999998,0.091350000000000001,1.982,2.157,2.3530000000000002,2.5739999999999998,2.8250000000000002,3.109,3.4340000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,45.9,-0.35210000000000002,2.5911,0.091289999999999996,1.9950000000000001,2.1709999999999998,2.3679999999999999,2.5910000000000002,2.843,3.129,3.456 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,46,-0.35210000000000002,2.6076999999999999,0.091240000000000002,2.008,2.1850000000000001,2.3839999999999999,2.6080000000000001,2.8610000000000002,3.149,3.4769999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,46.1,-0.35210000000000002,2.6244000000000001,0.091179999999999997,2.0209999999999999,2.1989999999999998,2.399,2.6240000000000001,2.879,3.169,3.4990000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,46.2,-0.35210000000000002,2.6410999999999998,0.091120000000000007,2.0339999999999998,2.2130000000000001,2.415,2.641,2.8969999999999998,3.1880000000000002,3.5209999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,46.3,-0.35210000000000002,2.6577999999999999,0.091060000000000002,2.048,2.2280000000000002,2.4300000000000002,2.6579999999999999,2.9159999999999999,3.2080000000000002,3.5419999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,46.4,-0.35210000000000002,2.6745000000000001,0.090999999999999998,2.0609999999999999,2.242,2.4449999999999998,2.6739999999999999,2.9340000000000002,3.2280000000000002,3.5640000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,46.5,-0.35210000000000002,2.6913,0.090939999999999993,2.0739999999999998,2.2559999999999998,2.4609999999999999,2.6909999999999998,2.952,3.2480000000000002,3.585 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,46.6,-0.35210000000000002,2.7081,0.090880000000000002,2.0870000000000002,2.2709999999999999,2.476,2.7080000000000002,2.97,3.2679999999999998,3.6070000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,46.7,-0.35210000000000002,2.7248999999999999,0.090829999999999994,2.101,2.2850000000000001,2.492,2.7250000000000001,2.988,3.2879999999999998,3.629 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,46.8,-0.35210000000000002,2.7416999999999998,0.090770000000000003,2.1139999999999999,2.2989999999999999,2.5070000000000001,2.742,3.0070000000000001,3.3069999999999999,3.65 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,46.9,-0.35210000000000002,2.7585999999999999,0.090709999999999999,2.1269999999999998,2.3140000000000001,2.5230000000000001,2.7589999999999999,3.0249999999999999,3.327,3.6720000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,47,-0.35210000000000002,2.7755000000000001,0.090649999999999994,2.141,2.3279999999999998,2.5390000000000001,2.7759999999999998,3.0430000000000001,3.347,3.694 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,47.1,-0.35210000000000002,2.7925,0.090590000000000004,2.1539999999999999,2.343,2.5539999999999998,2.7919999999999998,3.0619999999999998,3.367,3.7160000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,47.2,-0.35210000000000002,2.8094999999999999,0.090529999999999999,2.1680000000000001,2.3570000000000002,2.57,2.81,3.08,3.3879999999999999,3.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,47.3,-0.35210000000000002,2.8266,0.090469999999999995,2.181,2.3719999999999999,2.5859999999999999,2.827,3.0990000000000002,3.4079999999999999,3.76 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,47.4,-0.35210000000000002,2.8437000000000001,0.09042,2.1949999999999998,2.3860000000000001,2.6019999999999999,2.8439999999999999,3.117,3.4279999999999999,3.782 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,47.5,-0.35210000000000002,2.8609,0.090359999999999996,2.2080000000000002,2.4009999999999998,2.617,2.8610000000000002,3.1360000000000001,3.448,3.8039999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,47.6,-0.35210000000000002,2.8782000000000001,0.090300000000000005,2.222,2.4159999999999999,2.633,2.8780000000000001,3.1549999999999998,3.4689999999999999,3.8260000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,47.7,-0.35210000000000002,2.8955000000000002,0.090240000000000001,2.2360000000000002,2.431,2.649,2.8959999999999999,3.1739999999999999,3.4889999999999999,3.8479999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,47.8,-0.35210000000000002,2.9129,0.090179999999999996,2.25,2.4460000000000002,2.665,2.9129999999999998,3.1920000000000002,3.51,3.871 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,47.9,-0.35210000000000002,2.9304000000000001,0.090120000000000006,2.2629999999999999,2.4609999999999999,2.6819999999999999,2.93,3.2109999999999999,3.53,3.8929999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,48,-0.35210000000000002,2.948,0.090069999999999997,2.2770000000000001,2.476,2.698,2.948,3.2309999999999999,3.5510000000000002,3.9159999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,48.1,-0.35210000000000002,2.9657,0.090010000000000007,2.2909999999999999,2.4910000000000001,2.714,2.9660000000000002,3.25,3.5720000000000001,3.9390000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,48.2,-0.35210000000000002,2.9834999999999998,0.089950000000000002,2.306,2.5059999999999998,2.7309999999999999,2.984,3.2690000000000001,3.593,3.9620000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,48.3,-0.35210000000000002,3.0013999999999998,0.089889999999999998,2.3199999999999998,2.5209999999999999,2.7469999999999999,3.0009999999999999,3.2879999999999998,3.6139999999999999,3.9849999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,48.4,-0.35210000000000002,3.0194999999999999,0.089829999999999993,2.3340000000000001,2.5369999999999999,2.7639999999999998,3.02,3.3079999999999998,3.6349999999999998,4.008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,48.5,-0.35210000000000002,3.0377000000000001,0.089770000000000003,2.3490000000000002,2.552,2.7810000000000001,3.0379999999999998,3.3279999999999998,3.657,4.0309999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,48.6,-0.35210000000000002,3.056,0.089719999999999994,2.363,2.5680000000000001,2.798,3.056,3.3479999999999999,3.6779999999999999,4.0549999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,48.7,-0.35210000000000002,3.0745,0.089660000000000004,2.3780000000000001,2.5840000000000001,2.8149999999999999,3.0739999999999998,3.3679999999999999,3.7,4.0780000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,48.8,-0.35210000000000002,3.0931000000000002,0.089599999999999999,2.3929999999999998,2.6,2.8319999999999999,3.093,3.3879999999999999,3.722,4.1020000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,48.9,-0.35210000000000002,3.1118999999999999,0.089539999999999995,2.407,2.6160000000000001,2.8490000000000002,3.1120000000000001,3.4079999999999999,3.7440000000000002,4.1260000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,49,-0.35210000000000002,3.1307999999999998,0.089480000000000004,2.4220000000000002,2.6320000000000001,2.867,3.1309999999999998,3.4289999999999998,3.766,4.1509999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,49.1,-0.35210000000000002,3.1499000000000001,0.089429999999999996,2.4380000000000002,2.6480000000000001,2.8839999999999999,3.15,3.45,3.7890000000000001,4.1749999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,49.2,-0.35210000000000002,3.1690999999999998,0.089370000000000005,2.4529999999999998,2.665,2.9020000000000001,3.169,3.47,3.8119999999999998,4.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,49.3,-0.35210000000000002,3.1884000000000001,0.08931,2.468,2.681,2.92,3.1880000000000002,3.4910000000000001,3.8340000000000001,4.2249999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,49.4,-0.35210000000000002,3.2079,0.089249999999999996,2.484,2.698,2.9380000000000002,3.2080000000000002,3.512,3.8570000000000002,4.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,49.5,-0.35210000000000002,3.2275999999999998,0.089190000000000005,2.4990000000000001,2.7149999999999999,2.956,3.2280000000000002,3.5339999999999998,3.8809999999999998,4.2750000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,49.6,-0.35210000000000002,3.2473000000000001,0.089130000000000001,2.5150000000000001,2.7320000000000002,2.9740000000000002,3.2469999999999999,3.5550000000000002,3.9039999999999999,4.3 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,49.7,-0.35210000000000002,3.2671999999999999,0.089080000000000006,2.5310000000000001,2.7490000000000001,2.9929999999999999,3.2669999999999999,3.577,3.927,4.3259999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,49.8,-0.35210000000000002,3.2873000000000001,0.089020000000000002,2.5470000000000002,2.766,3.0110000000000001,3.2869999999999999,3.5979999999999999,3.9510000000000001,4.3520000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,49.9,-0.35210000000000002,3.3075000000000001,0.088959999999999997,2.5630000000000002,2.7829999999999999,3.03,3.3079999999999998,3.62,3.9750000000000001,4.3769999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,50,-0.35210000000000002,3.3277999999999999,0.088900000000000007,2.5790000000000002,2.8010000000000002,3.0489999999999999,3.3279999999999998,3.6419999999999999,3.9990000000000001,4.4029999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,50.1,-0.35210000000000002,3.3481999999999998,0.088840000000000002,2.5950000000000002,2.8180000000000001,3.0680000000000001,3.3479999999999999,3.6640000000000001,4.0229999999999997,4.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,50.2,-0.35210000000000002,3.3687999999999998,0.088779999999999998,2.6120000000000001,2.8359999999999999,3.0870000000000002,3.3690000000000002,3.6869999999999998,4.0469999999999997,4.4560000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,50.3,-0.35210000000000002,3.3894000000000002,0.088719999999999993,2.6280000000000001,2.8530000000000002,3.1059999999999999,3.3889999999999998,3.7090000000000001,4.0709999999999997,4.4820000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,50.4,-0.35210000000000002,3.4102000000000001,0.088669999999999999,2.645,2.871,3.125,3.41,3.7320000000000002,4.0960000000000001,4.5090000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,50.5,-0.35210000000000002,3.4310999999999998,0.088609999999999994,2.661,2.8889999999999998,3.1440000000000001,3.431,3.754,4.12,4.5359999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,50.6,-0.35210000000000002,3.4521999999999999,0.088550000000000004,2.6779999999999999,2.907,3.1640000000000001,3.452,3.7770000000000001,4.1449999999999996,4.5629999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,50.7,-0.35210000000000002,3.4733000000000001,0.088489999999999999,2.6949999999999998,2.9249999999999998,3.1829999999999998,3.4729999999999999,3.8,4.17,4.59 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,50.8,-0.35210000000000002,3.4946000000000002,0.088429999999999995,2.7120000000000002,2.944,3.2029999999999998,3.4950000000000001,3.823,4.1950000000000003,4.617 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,50.9,-0.35210000000000002,3.5160999999999998,0.088370000000000004,2.7290000000000001,2.9620000000000002,3.2229999999999999,3.516,3.8460000000000001,4.22,4.6440000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,51,-0.35210000000000002,3.5375999999999999,0.08831,2.746,2.9809999999999999,3.2429999999999999,3.5379999999999998,3.87,4.2450000000000001,4.6719999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,51.1,-0.35210000000000002,3.5592999999999999,0.088249999999999995,2.7629999999999999,2.9990000000000001,3.2629999999999999,3.5590000000000002,3.8929999999999998,4.2709999999999999,4.7 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,51.2,-0.35210000000000002,3.5811999999999999,0.088190000000000004,2.7810000000000001,3.0179999999999998,3.2829999999999999,3.581,3.9169999999999998,4.2960000000000003,4.7279999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,51.3,-0.35210000000000002,3.6032000000000002,0.08813,2.798,3.0369999999999999,3.3039999999999998,3.6030000000000002,3.9409999999999998,4.3220000000000001,4.7560000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,51.4,-0.35210000000000002,3.6254,0.088069999999999996,2.8159999999999998,3.056,3.3239999999999998,3.625,3.9649999999999999,4.3479999999999999,4.7839999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,51.5,-0.35210000000000002,3.6476999999999999,0.088010000000000005,2.8340000000000001,3.0750000000000002,3.3450000000000002,3.6480000000000001,3.9889999999999999,4.375,4.8129999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,51.6,-0.35210000000000002,3.6701999999999999,0.08795,2.8519999999999999,3.0939999999999999,3.3660000000000001,3.67,4.0129999999999999,4.4009999999999998,4.8410000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,51.7,-0.35210000000000002,3.6928999999999998,0.087889999999999996,2.87,3.1139999999999999,3.387,3.6930000000000001,4.0380000000000003,4.4279999999999999,4.87 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,51.8,-0.35210000000000002,3.7157,0.087830000000000005,2.8879999999999999,3.133,3.4079999999999999,3.7160000000000002,4.0620000000000003,4.4539999999999997,4.899 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,51.9,-0.35210000000000002,3.7387999999999999,0.087770000000000001,2.907,3.153,3.4289999999999998,3.7389999999999999,4.0869999999999997,4.4820000000000002,4.9290000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,52,-0.35210000000000002,3.762,0.087709999999999996,2.9249999999999998,3.173,3.4510000000000001,3.762,4.1130000000000004,4.5090000000000003,4.9580000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,52.1,-0.35210000000000002,3.7854999999999999,0.087650000000000006,2.944,3.1930000000000001,3.472,3.786,4.1379999999999999,4.5359999999999996,4.9880000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,52.2,-0.35210000000000002,3.8092000000000001,0.087590000000000001,2.9630000000000001,3.214,3.4940000000000002,3.8090000000000002,4.1639999999999997,4.5640000000000001,5.0190000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,52.3,-0.35210000000000002,3.8330000000000002,0.087529999999999997,2.9820000000000002,3.234,3.516,3.8330000000000002,4.1890000000000001,4.5919999999999996,5.0490000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,52.4,-0.35210000000000002,3.8571,0.087470000000000006,3.0009999999999999,3.2549999999999999,3.5390000000000001,3.8570000000000002,4.2149999999999999,4.62,5.08 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,52.5,-0.35210000000000002,3.8814000000000002,0.087410000000000002,3.02,3.2759999999999998,3.5609999999999999,3.8809999999999998,4.242,4.649,5.1109999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,52.6,-0.35210000000000002,3.9058999999999999,0.087349999999999997,3.04,3.2970000000000002,3.5840000000000001,3.9060000000000001,4.2679999999999998,4.6779999999999999,5.1420000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,52.7,-0.35210000000000002,3.9306000000000001,0.087290000000000006,3.06,3.3180000000000001,3.6070000000000002,3.931,4.2949999999999999,4.7069999999999999,5.173 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,52.8,-0.35210000000000002,3.9554999999999998,0.087230000000000002,3.08,3.339,3.63,3.956,4.3220000000000001,4.7359999999999998,5.2050000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,52.9,-0.35210000000000002,3.9805999999999999,0.087169999999999997,3.1,3.3610000000000002,3.653,3.9809999999999999,4.3490000000000002,4.7649999999999997,5.2370000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,53,-0.35210000000000002,4.0060000000000002,0.087110000000000007,3.12,3.383,3.677,4.0060000000000002,4.3769999999999998,4.7949999999999999,5.27 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,53.1,-0.35210000000000002,4.0315000000000003,0.087050000000000002,3.14,3.4049999999999998,3.7,4.032,4.4039999999999999,4.8250000000000002,5.3019999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,53.2,-0.35210000000000002,4.0571999999999999,0.086989999999999998,3.161,3.427,3.7240000000000002,4.0570000000000004,4.4320000000000004,4.8550000000000004,5.335 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,53.3,-0.35210000000000002,4.0831,0.086929999999999993,3.1819999999999999,3.4489999999999998,3.7480000000000002,4.0830000000000002,4.46,4.8849999999999998,5.3680000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,53.4,-0.35210000000000002,4.1092000000000004,0.086870000000000003,3.202,3.472,3.7719999999999998,4.109,4.4880000000000004,4.9160000000000004,5.4009999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,53.5,-0.35210000000000002,4.1353999999999997,0.086809999999999998,3.2229999999999999,3.4940000000000002,3.7959999999999998,4.1349999999999998,4.5170000000000003,4.9470000000000001,5.4340000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,53.6,-0.35210000000000002,4.1619000000000002,0.086749999999999994,3.2450000000000001,3.5169999999999999,3.8210000000000002,4.1619999999999999,4.5449999999999999,4.9779999999999998,5.468 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,53.7,-0.35210000000000002,4.1885000000000003,0.086690000000000003,3.266,3.54,3.8460000000000001,4.1879999999999997,4.5739999999999998,5.0090000000000003,5.5019999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,53.8,-0.35210000000000002,4.2153,0.086629999999999999,3.2869999999999999,3.5630000000000002,3.871,4.2149999999999999,4.6029999999999998,5.04,5.5359999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,53.9,-0.35210000000000002,4.2422000000000004,0.086569999999999994,3.3090000000000002,3.5859999999999999,3.895,4.242,4.6319999999999997,5.0720000000000001,5.57 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,54,-0.35210000000000002,4.2693000000000003,0.086510000000000004,3.33,3.609,3.9209999999999998,4.2690000000000001,4.6609999999999996,5.1040000000000001,5.6050000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,54.1,-0.35210000000000002,4.2965,0.086449999999999999,3.3519999999999999,3.633,3.9460000000000002,4.2960000000000003,4.6909999999999998,5.1360000000000001,5.6390000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,54.2,-0.35210000000000002,4.3239000000000001,0.086389999999999995,3.3740000000000001,3.6560000000000001,3.9710000000000001,4.3239999999999998,4.72,5.1680000000000001,5.6740000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,54.3,-0.35210000000000002,4.3513000000000002,0.086330000000000004,3.3959999999999999,3.68,3.9969999999999999,4.351,4.75,5.2,5.7089999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,54.4,-0.35210000000000002,4.3788999999999998,0.086269999999999999,3.4180000000000001,3.7040000000000002,4.0220000000000002,4.3789999999999996,4.78,5.2320000000000002,5.7439999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,54.5,-0.35210000000000002,4.4066000000000001,0.086209999999999995,3.44,3.7269999999999999,4.048,4.407,4.8099999999999996,5.2640000000000002,5.7789999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,54.6,-0.35210000000000002,4.4344000000000001,0.086150000000000004,3.4630000000000001,3.7509999999999999,4.0739999999999998,4.4340000000000002,4.84,5.2969999999999997,5.8150000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,54.7,-0.35210000000000002,4.4622999999999999,0.086099999999999996,3.4849999999999999,3.7749999999999999,4.0990000000000002,4.4619999999999997,4.87,5.33,5.85 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,54.8,-0.35210000000000002,4.4903000000000004,0.086040000000000005,3.5070000000000001,3.7989999999999999,4.125,4.49,4.9000000000000004,5.3630000000000004,5.8860000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,54.9,-0.35210000000000002,4.5185000000000004,0.085980000000000001,3.53,3.8239999999999998,4.1520000000000001,4.5179999999999998,4.931,5.3959999999999999,5.9219999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,55,-0.35210000000000002,4.5467000000000004,0.085919999999999996,3.5529999999999999,3.8479999999999999,4.1779999999999999,4.5469999999999997,4.9610000000000003,5.4279999999999999,5.9569999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,55.1,-0.35210000000000002,4.5750000000000002,0.085860000000000006,3.5750000000000002,3.8719999999999999,4.2039999999999997,4.5750000000000002,4.992,5.4619999999999997,5.9930000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,55.2,-0.35210000000000002,4.6033999999999997,0.085800000000000001,3.5979999999999999,3.8969999999999998,4.2300000000000004,4.6029999999999998,5.0220000000000002,5.4950000000000001,6.0289999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,55.3,-0.35210000000000002,4.6318999999999999,0.085750000000000007,3.621,3.9209999999999998,4.2569999999999997,4.6319999999999997,5.0529999999999999,5.5279999999999996,6.0659999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,55.4,-0.35210000000000002,4.6604999999999999,0.085690000000000002,3.6440000000000001,3.9460000000000002,4.2830000000000004,4.66,5.0839999999999996,5.5620000000000003,6.1020000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,55.5,-0.35210000000000002,4.6891999999999996,0.085629999999999998,3.6669999999999998,3.9710000000000001,4.3099999999999996,4.6890000000000001,5.1150000000000002,5.5949999999999998,6.1379999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,55.6,-0.35210000000000002,4.718,0.085580000000000003,3.69,3.996,4.3369999999999997,4.718,5.1459999999999999,5.6289999999999996,6.1749999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,55.7,-0.35210000000000002,4.7469000000000001,0.085519999999999999,3.7130000000000001,4.0199999999999996,4.3630000000000004,4.7469999999999999,5.1779999999999999,5.6630000000000003,6.2110000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,55.8,-0.35210000000000002,4.7758000000000003,0.085459999999999994,3.7360000000000002,4.0449999999999999,4.3899999999999997,4.7759999999999998,5.2089999999999996,5.6959999999999997,6.2480000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,55.9,-0.35210000000000002,4.8048000000000002,0.08541,3.76,4.07,4.4169999999999998,4.8049999999999997,5.24,5.73,6.2850000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,56,-0.35210000000000002,4.8338000000000001,0.085349999999999995,3.7829999999999999,4.0949999999999998,4.444,4.8339999999999996,5.2709999999999999,5.7640000000000002,6.3220000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,56.1,-0.35210000000000002,4.8628999999999998,0.085290000000000005,3.806,4.1210000000000004,4.4710000000000001,4.8630000000000004,5.3029999999999999,5.798,6.3579999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,56.2,-0.35210000000000002,4.8920000000000003,0.085239999999999996,3.83,4.1459999999999999,4.4980000000000002,4.8920000000000003,5.3339999999999996,5.8319999999999999,6.3949999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,56.3,-0.35210000000000002,4.9211999999999998,0.085180000000000006,3.8530000000000002,4.1710000000000003,4.5250000000000004,4.9210000000000003,5.3659999999999997,5.8659999999999997,6.4320000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,56.4,-0.35210000000000002,4.9504000000000001,0.085129999999999997,3.8759999999999999,4.1959999999999997,4.5519999999999996,4.95,5.3970000000000002,5.9009999999999998,6.4690000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,56.5,-0.35210000000000002,4.9795999999999996,0.085070000000000007,3.9,4.2210000000000001,4.5789999999999997,4.9800000000000004,5.4290000000000003,5.9349999999999996,6.5060000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,56.6,-0.35210000000000002,5.0087999999999999,0.085019999999999998,3.923,4.2460000000000004,4.6059999999999999,5.0090000000000003,5.46,5.9690000000000003,6.5430000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,56.7,-0.35210000000000002,5.0381,0.084970000000000004,3.9470000000000001,4.2720000000000002,4.633,5.0380000000000003,5.492,6.0030000000000001,6.5810000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,56.8,-0.35210000000000002,5.0673000000000004,0.084909999999999999,3.97,4.2969999999999997,4.6609999999999996,5.0670000000000002,5.524,6.0369999999999999,6.617 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,56.9,-0.35210000000000002,5.0965999999999996,0.084860000000000005,3.9940000000000002,4.3220000000000001,4.6879999999999997,5.0970000000000004,5.5549999999999997,6.0709999999999997,6.6550000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,57,-0.35210000000000002,5.1258999999999997,0.084809999999999997,4.0170000000000003,4.3470000000000004,4.7149999999999999,5.1260000000000003,5.5869999999999997,6.1059999999999999,6.6920000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,57.1,-0.35210000000000002,5.1551,0.084750000000000006,4.0410000000000004,4.3730000000000002,4.742,5.1550000000000002,5.6180000000000003,6.14,6.7279999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,57.2,-0.35210000000000002,5.1844000000000001,0.084699999999999998,4.0640000000000001,4.3979999999999997,4.7690000000000001,5.1840000000000002,5.65,6.1740000000000004,6.766 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,57.3,-0.35210000000000002,5.2137000000000002,0.084650000000000003,4.0880000000000001,4.423,4.7960000000000003,5.2140000000000004,5.6820000000000004,6.2080000000000002,6.8029999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,57.4,-0.35210000000000002,5.2428999999999997,0.084599999999999995,4.1109999999999998,4.4480000000000004,4.8239999999999998,5.2430000000000003,5.7130000000000001,6.242,6.84 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,57.5,-0.35210000000000002,5.2721,0.08455,4.1349999999999998,4.4740000000000002,4.851,5.2720000000000002,5.7450000000000001,6.2759999999999998,6.8769999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,57.6,-0.35210000000000002,5.3014000000000001,0.084489999999999996,4.1589999999999998,4.4989999999999997,4.8780000000000001,5.3010000000000002,5.7759999999999998,6.31,6.9130000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,57.7,-0.35210000000000002,5.3305999999999996,0.084440000000000001,4.1820000000000004,4.524,4.9050000000000002,5.3310000000000004,5.8079999999999998,6.3440000000000003,6.95 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,57.8,-0.35210000000000002,5.3597999999999999,0.084390000000000007,4.2060000000000004,4.5490000000000004,4.9320000000000004,5.36,5.8390000000000004,6.3780000000000001,6.9870000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,57.9,-0.35210000000000002,5.3888999999999996,0.084339999999999998,4.2290000000000001,4.5739999999999998,4.9589999999999996,5.3890000000000002,5.8710000000000004,6.4119999999999999,7.024 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,58,-0.35210000000000002,5.4180000000000001,0.0843,4.2519999999999998,4.5990000000000002,4.9859999999999998,5.4180000000000001,5.9020000000000001,6.4470000000000001,7.0609999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,58.1,-0.35210000000000002,5.4470999999999998,0.084250000000000005,4.2759999999999998,4.625,5.0129999999999999,5.4470000000000001,5.9329999999999998,6.48,7.0979999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,58.2,-0.35210000000000002,5.4762000000000004,0.084199999999999997,4.2990000000000004,4.6500000000000004,5.04,5.476,5.9649999999999999,6.5140000000000002,7.1349999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,58.3,-0.35210000000000002,5.5053000000000001,0.084150000000000003,4.3230000000000004,4.6749999999999998,5.0670000000000002,5.5049999999999999,5.9960000000000004,6.548,7.1710000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,58.4,-0.35210000000000002,5.5343,0.084099999999999994,4.3460000000000001,4.7,5.0940000000000003,5.5339999999999998,6.0279999999999996,6.5819999999999999,7.2080000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,58.5,-0.35210000000000002,5.5632000000000001,0.084059999999999996,4.3689999999999998,4.7249999999999996,5.1210000000000004,5.5629999999999997,6.0590000000000002,6.6159999999999997,7.2450000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,58.6,-0.35210000000000002,5.5922000000000001,0.084010000000000001,4.3929999999999998,4.75,5.1479999999999997,5.5919999999999996,6.09,6.65,7.2809999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,58.7,-0.35210000000000002,5.6210000000000004,0.083970000000000003,4.4160000000000004,4.7750000000000004,5.1749999999999998,5.6210000000000004,6.1210000000000004,6.6829999999999998,7.3179999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,58.8,-0.35210000000000002,5.6498999999999997,0.083919999999999995,4.4390000000000001,4.8,5.2009999999999996,5.65,6.1520000000000001,6.7169999999999996,7.3540000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,58.9,-0.35210000000000002,5.6787000000000001,0.083879999999999996,4.4619999999999997,4.8250000000000002,5.2279999999999998,5.6790000000000003,6.1829999999999998,6.7510000000000003,7.391 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,59,-0.35210000000000002,5.7073999999999998,0.083830000000000002,4.4850000000000003,4.8490000000000002,5.2549999999999999,5.7069999999999999,6.2140000000000004,6.7839999999999998,7.4269999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,59.1,-0.35210000000000002,5.7361000000000004,0.083790000000000003,4.508,4.8739999999999997,5.2809999999999997,5.7359999999999998,6.2450000000000001,6.8179999999999996,7.4630000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,59.2,-0.35210000000000002,5.7647000000000004,0.083750000000000005,4.5309999999999997,4.899,5.3079999999999998,5.7649999999999997,6.2759999999999998,6.851,7.4989999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,59.3,-0.35210000000000002,5.7933000000000003,0.083699999999999997,4.5540000000000003,4.9240000000000004,5.335,5.7930000000000001,6.3070000000000004,6.8840000000000003,7.5350000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,59.4,-0.35210000000000002,5.8216999999999999,0.083659999999999998,4.577,4.9480000000000004,5.3609999999999998,5.8220000000000001,6.3380000000000001,6.9169999999999998,7.5709999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,59.5,-0.35210000000000002,5.8501000000000003,0.08362,4.5999999999999996,4.9729999999999999,5.3869999999999996,5.85,6.3680000000000003,6.9509999999999996,7.6070000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,59.6,-0.35210000000000002,5.8784000000000001,0.083580000000000002,4.6230000000000002,4.9969999999999999,5.4139999999999997,5.8780000000000001,6.399,6.984,7.6429999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,59.7,-0.35210000000000002,5.9066999999999998,0.083540000000000003,4.6459999999999999,5.0220000000000002,5.44,5.907,6.4290000000000003,7.0170000000000003,7.6790000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,59.8,-0.35210000000000002,5.9348000000000001,0.083500000000000005,4.6680000000000001,5.0460000000000003,5.4660000000000002,5.9349999999999996,6.46,7.0490000000000004,7.7140000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,59.9,-0.35210000000000002,5.9627999999999997,0.083460000000000006,4.6909999999999998,5.07,5.492,5.9630000000000001,6.49,7.0819999999999999,7.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,60,-0.35210000000000002,5.9907000000000004,0.083419999999999994,4.7130000000000001,5.0940000000000003,5.5179999999999998,5.9909999999999997,6.52,7.1150000000000002,7.7850000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,60.1,-0.35210000000000002,6.0185000000000004,0.083390000000000006,4.7350000000000003,5.1180000000000003,5.5439999999999996,6.0179999999999998,6.55,7.1470000000000002,7.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,60.2,-0.35210000000000002,6.0461,0.083349999999999994,4.758,5.1420000000000003,5.569,6.0460000000000003,6.58,7.1790000000000003,7.8550000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,60.3,-0.35210000000000002,6.0736999999999997,0.083309999999999995,4.78,5.1660000000000004,5.5949999999999998,6.0739999999999998,6.61,7.2110000000000003,7.89 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,60.4,-0.35210000000000002,6.1010999999999997,0.083280000000000007,4.8019999999999996,5.1890000000000001,5.62,6.101,6.6390000000000002,7.2439999999999998,7.9249999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,60.5,-0.35210000000000002,6.1284000000000001,0.083239999999999995,4.8239999999999998,5.2130000000000001,5.6459999999999999,6.1280000000000001,6.6689999999999996,7.2750000000000004,7.9589999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,60.6,-0.35210000000000002,6.1555999999999997,0.083210000000000006,4.8460000000000001,5.2359999999999998,5.6710000000000003,6.1559999999999997,6.6980000000000004,7.3070000000000004,7.9939999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,60.7,-0.35210000000000002,6.1826999999999996,0.083169999999999994,4.8680000000000003,5.26,5.6959999999999997,6.1829999999999998,6.7270000000000003,7.3390000000000004,8.0280000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,60.8,-0.35210000000000002,6.2096,0.083140000000000006,4.8890000000000002,5.2830000000000004,5.7210000000000001,6.21,6.7560000000000002,7.37,8.0619999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,60.9,-0.35210000000000002,6.2365000000000004,0.083110000000000003,4.9109999999999996,5.306,5.7460000000000004,6.2359999999999998,6.7850000000000001,7.4020000000000001,8.0960000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,61,-0.35210000000000002,6.2632000000000003,0.083080000000000001,4.9320000000000004,5.3289999999999997,5.7709999999999999,6.2629999999999999,6.8140000000000001,7.4329999999999998,8.1300000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,61.1,-0.35210000000000002,6.2899000000000003,0.083040000000000003,4.9539999999999997,5.3520000000000003,5.7960000000000003,6.29,6.843,7.4640000000000004,8.1639999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,61.2,-0.35210000000000002,6.3163999999999998,0.08301,4.9749999999999996,5.375,5.82,6.3159999999999998,6.8719999999999999,7.4950000000000001,8.1969999999999992 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,61.3,-0.35210000000000002,6.3428000000000004,0.082979999999999998,4.9960000000000004,5.3979999999999997,5.8449999999999998,6.343,6.9,7.5259999999999998,8.2309999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,61.4,-0.35210000000000002,6.3692000000000002,0.082949999999999996,5.0170000000000003,5.4210000000000003,5.8689999999999998,6.3689999999999998,6.9290000000000003,7.5570000000000004,8.2639999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,61.5,-0.35210000000000002,6.3954000000000004,0.082919999999999994,5.0389999999999997,5.4429999999999996,5.8929999999999998,6.3949999999999996,6.9569999999999999,7.5869999999999997,8.2970000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,61.6,-0.35210000000000002,6.4215,0.082900000000000001,5.0590000000000002,5.4660000000000002,5.9180000000000001,6.4219999999999997,6.9850000000000003,7.6180000000000003,8.33 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,61.7,-0.35210000000000002,6.4474999999999998,0.082869999999999999,5.08,5.4880000000000004,5.9420000000000002,6.4480000000000004,7.0129999999999999,7.6479999999999997,8.3629999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,61.8,-0.35210000000000002,6.4734999999999996,0.082839999999999997,5.101,5.5110000000000001,5.9660000000000002,6.4740000000000002,7.0410000000000004,7.6790000000000003,8.3960000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,61.9,-0.35210000000000002,6.4992999999999999,0.082809999999999995,5.1219999999999999,5.5330000000000004,5.99,6.4989999999999997,7.069,7.7089999999999996,8.4290000000000003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,62,-0.35210000000000002,6.5251000000000001,0.082790000000000002,5.1429999999999998,5.5549999999999997,6.0140000000000002,6.5250000000000004,7.0970000000000004,7.7389999999999999,8.4619999999999997 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,62.1,-0.35210000000000002,6.5507999999999997,0.08276,5.1630000000000003,5.577,6.0380000000000003,6.5510000000000002,7.125,7.7690000000000001,8.4939999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,62.2,-0.35210000000000002,6.5763999999999996,0.082729999999999998,5.1840000000000002,5.5990000000000002,6.0609999999999999,6.5759999999999996,7.1520000000000001,7.7990000000000004,8.5269999999999992 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,62.3,-0.35210000000000002,6.6018999999999997,0.082710000000000006,5.2039999999999997,5.6210000000000004,6.085,6.6020000000000003,7.18,7.8289999999999997,8.5589999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,62.4,-0.35210000000000002,6.6273,0.082680000000000003,5.2249999999999996,5.6429999999999998,6.109,6.6269999999999998,7.2069999999999999,7.8579999999999997,8.5909999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,62.5,-0.35210000000000002,6.6527000000000003,0.082659999999999997,5.2450000000000001,5.665,6.1319999999999997,6.6529999999999996,7.2350000000000003,7.8879999999999999,8.6240000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,62.6,-0.35210000000000002,6.6779999999999999,0.082640000000000005,5.2649999999999997,5.6870000000000003,6.1559999999999997,6.6779999999999999,7.2619999999999996,7.9180000000000001,8.6560000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,62.7,-0.35210000000000002,6.7032999999999996,0.082610000000000003,5.2859999999999996,5.7089999999999996,6.1790000000000003,6.7030000000000003,7.29,7.9470000000000001,8.6880000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,62.8,-0.35210000000000002,6.7283999999999997,0.082589999999999997,5.306,5.73,6.202,6.7279999999999998,7.3170000000000002,7.9770000000000003,8.7200000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,62.9,-0.35210000000000002,6.7534999999999998,0.082570000000000005,5.3259999999999996,5.7519999999999998,6.226,6.7539999999999996,7.3440000000000003,8.0060000000000002,8.7520000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,63,-0.35210000000000002,6.7786,0.082549999999999998,5.3460000000000001,5.774,6.2489999999999997,6.7789999999999999,7.3710000000000004,8.0350000000000001,8.7840000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,63.1,-0.35210000000000002,6.8034999999999997,0.082530000000000006,5.3659999999999997,5.7949999999999999,6.2720000000000002,6.8040000000000003,7.3979999999999997,8.0649999999999995,8.8149999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,63.2,-0.35210000000000002,6.8285,0.08251,5.3860000000000001,5.8170000000000002,6.2949999999999999,6.8280000000000003,7.4249999999999998,8.0939999999999994,8.8469999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,63.3,-0.35210000000000002,6.8532999999999999,0.082489999999999994,5.4059999999999997,5.8380000000000001,6.3179999999999996,6.8529999999999998,7.452,8.1229999999999993,8.8789999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,63.4,-0.35210000000000002,6.8780999999999999,0.082470000000000002,5.4260000000000002,5.859,6.3410000000000002,6.8780000000000001,7.4790000000000001,8.1519999999999992,8.91 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,63.5,-0.35210000000000002,6.9028,0.082449999999999996,5.4450000000000003,5.88,6.3639999999999999,6.9029999999999996,7.5049999999999999,8.1809999999999992,8.9420000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,63.6,-0.35210000000000002,6.9275000000000002,0.082430000000000003,5.4649999999999999,5.9020000000000001,6.3869999999999996,6.9279999999999999,7.532,8.2100000000000009,8.9730000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,63.7,-0.35210000000000002,6.9520999999999997,0.082409999999999997,5.4850000000000003,5.923,6.41,6.952,7.5590000000000002,8.2390000000000008,9.0039999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,63.8,-0.35210000000000002,6.9766000000000004,0.082400000000000001,5.5039999999999996,5.944,6.4320000000000004,6.9770000000000003,7.585,8.2680000000000007,9.0359999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,63.9,-0.35210000000000002,7.0011000000000001,0.082379999999999995,5.524,5.9649999999999999,6.4550000000000001,7.0010000000000003,7.6120000000000001,8.2959999999999994,9.0670000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,64,-0.35210000000000002,7.0255000000000001,0.082360000000000003,5.5439999999999996,5.9859999999999998,6.4779999999999998,7.0259999999999998,7.6379999999999999,8.3249999999999993,9.0980000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,64.099999999999994,-0.35210000000000002,7.0499000000000001,0.082350000000000007,5.5629999999999997,6.0069999999999997,6.5,7.05,7.6639999999999997,8.3539999999999992,9.1289999999999996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,64.2,-0.35210000000000002,7.0742000000000003,0.08233,5.5819999999999999,6.0279999999999996,6.5229999999999997,7.0739999999999998,7.6909999999999998,8.3819999999999997,9.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,64.3,-0.35210000000000002,7.0983999999999998,0.082320000000000004,5.6020000000000003,6.0490000000000004,6.5449999999999999,7.0979999999999999,7.7169999999999996,8.41,9.1910000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,64.400000000000006,-0.35210000000000002,7.1226000000000003,0.082299999999999998,5.6210000000000004,6.069,6.5679999999999996,7.1230000000000002,7.7430000000000003,8.4390000000000001,9.2219999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,64.5,-0.35210000000000002,7.1467000000000001,0.082290000000000002,5.64,6.09,6.59,7.1470000000000002,7.7690000000000001,8.4670000000000005,9.2530000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,64.599999999999994,-0.35210000000000002,7.1707999999999998,0.082280000000000006,5.6589999999999998,6.1109999999999998,6.6120000000000001,7.1710000000000003,7.7949999999999999,8.4960000000000004,9.2840000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,64.7,-0.35210000000000002,7.1947999999999999,0.082269999999999996,5.6790000000000003,6.1310000000000002,6.6340000000000003,7.1950000000000003,7.8209999999999997,8.5239999999999991,9.3140000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,64.8,-0.35210000000000002,7.2187999999999999,0.082250000000000004,5.6980000000000004,6.1520000000000001,6.657,7.2190000000000003,7.8470000000000004,8.5519999999999996,9.3450000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,64.900000000000006,-0.35210000000000002,7.2427000000000001,0.082239999999999994,5.7169999999999996,6.1719999999999997,6.6790000000000003,7.2430000000000003,7.8730000000000002,8.58,9.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,65,-0.35210000000000002,7.2666000000000004,0.082229999999999998,5.7359999999999998,6.1929999999999996,6.7009999999999996,7.2670000000000003,7.899,8.6080000000000005,9.4060000000000006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,65.099999999999994,-0.35210000000000002,7.2904999999999998,0.082220000000000001,5.7549999999999999,6.2130000000000001,6.7229999999999999,7.29,7.9249999999999998,8.6359999999999992,9.4369999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,65.2,-0.35210000000000002,7.3143000000000002,0.082210000000000005,5.774,6.234,6.7450000000000001,7.3140000000000001,7.9509999999999996,8.6639999999999997,9.4670000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,65.3,-0.35210000000000002,7.3380000000000001,0.082199999999999995,5.7930000000000001,6.2539999999999996,6.7670000000000003,7.3380000000000001,7.976,8.6920000000000002,9.4979999999999993 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,65.400000000000006,-0.35210000000000002,7.3616999999999999,0.082189999999999999,5.8120000000000003,6.274,6.7889999999999997,7.3620000000000001,8.0020000000000007,8.7200000000000006,9.5280000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,65.5,-0.35210000000000002,7.3853999999999997,0.082180000000000003,5.83,6.2949999999999999,6.8109999999999999,7.3849999999999998,8.0280000000000005,8.7479999999999993,9.5579999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,65.599999999999994,-0.35210000000000002,7.4090999999999996,0.082180000000000003,5.8490000000000002,6.3150000000000004,6.8330000000000002,7.4089999999999998,8.0530000000000008,8.7759999999999998,9.5890000000000004 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,65.7,-0.35210000000000002,7.4326999999999996,0.082170000000000007,5.8680000000000003,6.335,6.8540000000000001,7.4329999999999998,8.0790000000000006,8.8040000000000003,9.6189999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,65.8,-0.35210000000000002,7.4562999999999997,0.082159999999999997,5.8869999999999996,6.3550000000000004,6.8760000000000003,7.4560000000000004,8.1050000000000004,8.8309999999999995,9.6489999999999991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,65.900000000000006,-0.35210000000000002,7.4798999999999998,0.082159999999999997,5.9050000000000002,6.3760000000000003,6.8979999999999997,7.48,8.1300000000000008,8.859,9.68 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,66,-0.35210000000000002,7.5034000000000001,0.082150000000000001,5.9240000000000004,6.3959999999999999,6.92,7.5030000000000001,8.1560000000000006,8.8870000000000005,9.7100000000000009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,66.099999999999994,-0.35210000000000002,7.5269000000000004,0.082140000000000005,5.9429999999999996,6.4160000000000004,6.9409999999999998,7.5270000000000001,8.1809999999999992,8.9149999999999991,9.74 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,66.2,-0.35210000000000002,7.5503999999999998,0.082140000000000005,5.9610000000000003,6.4359999999999999,6.9630000000000001,7.55,8.2070000000000007,8.9429999999999996,9.7710000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,66.3,-0.35210000000000002,7.5738000000000003,0.082140000000000005,5.98,6.4560000000000004,6.9850000000000003,7.5739999999999998,8.2319999999999993,8.9700000000000006,9.8010000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,66.400000000000006,-0.35210000000000002,7.5972999999999997,0.082129999999999995,5.9989999999999997,6.476,7.0060000000000002,7.5970000000000004,8.2579999999999991,8.9979999999999993,9.8309999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,66.5,-0.35210000000000002,7.6205999999999996,0.082129999999999995,6.0170000000000003,6.4960000000000004,7.0279999999999996,7.6210000000000004,8.2829999999999995,9.0259999999999998,9.8610000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,66.599999999999994,-0.35210000000000002,7.6440000000000001,0.082129999999999995,6.0350000000000001,6.516,7.0490000000000004,7.6440000000000001,8.3079999999999998,9.0530000000000008,9.891 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,66.7,-0.35210000000000002,7.6673,0.082119999999999999,6.0540000000000003,6.5359999999999996,7.0709999999999997,7.6669999999999998,8.3339999999999996,9.0809999999999995,9.9209999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,66.8,-0.35210000000000002,7.6905999999999999,0.082119999999999999,6.0720000000000001,6.556,7.093,7.6909999999999998,8.359,9.1080000000000005,9.9510000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,66.900000000000006,-0.35210000000000002,7.7138,0.082119999999999999,6.0910000000000002,6.5750000000000002,7.1139999999999999,7.7140000000000004,8.3840000000000003,9.1359999999999992,9.9809999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,67,-0.35210000000000002,7.7370000000000001,0.082119999999999999,6.109,6.5949999999999998,7.1349999999999998,7.7370000000000001,8.4090000000000007,9.1630000000000003,10.010999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,67.099999999999994,-0.35210000000000002,7.7602000000000002,0.082119999999999999,6.1269999999999998,6.6150000000000002,7.157,7.76,8.4350000000000005,9.1910000000000007,10.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,67.2,-0.35210000000000002,7.7834000000000003,0.082119999999999999,6.1459999999999999,6.6349999999999998,7.1779999999999999,7.7830000000000004,8.4600000000000009,9.218,10.071 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,67.3,-0.35210000000000002,7.8064999999999998,0.082119999999999999,6.1639999999999997,6.6539999999999999,7.1989999999999998,7.806,8.4849999999999994,9.2460000000000004,10.101000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,67.400000000000006,-0.35210000000000002,7.8296000000000001,0.082119999999999999,6.1820000000000004,6.6740000000000004,7.2210000000000001,7.83,8.51,9.2729999999999997,10.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,67.5,-0.35210000000000002,7.8525999999999998,0.082119999999999999,6.2,6.694,7.242,7.8529999999999998,8.5350000000000001,9.3000000000000007,10.161 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,67.599999999999994,-0.35210000000000002,7.8757000000000001,0.082119999999999999,6.218,6.7130000000000001,7.2629999999999999,7.8760000000000003,8.56,9.327,10.191000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,67.7,-0.35210000000000002,7.8986000000000001,0.082129999999999995,6.2359999999999998,6.7329999999999997,7.2839999999999998,7.899,8.5850000000000009,9.3550000000000004,10.221 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,67.8,-0.35210000000000002,7.9215999999999998,0.082129999999999995,6.2549999999999999,6.7519999999999998,7.306,7.9219999999999997,8.61,9.3819999999999997,10.250999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,67.900000000000006,-0.35210000000000002,7.9444999999999997,0.082129999999999995,6.2729999999999997,6.7720000000000002,7.327,7.944,8.6349999999999998,9.4090000000000007,10.28 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,68,-0.35210000000000002,7.9673999999999996,0.082140000000000005,6.2910000000000004,6.7910000000000004,7.3479999999999999,7.9669999999999996,8.66,9.4359999999999999,10.31 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,68.099999999999994,-0.35210000000000002,7.9903000000000004,0.082140000000000005,6.3090000000000002,6.8109999999999999,7.3689999999999998,7.99,8.6850000000000005,9.4640000000000004,10.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,68.2,-0.35210000000000002,8.0131999999999994,0.082140000000000005,6.327,6.83,7.39,8.0129999999999999,8.7100000000000009,9.4909999999999997,10.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,68.3,-0.35210000000000002,8.0359999999999996,0.082150000000000001,6.3449999999999998,6.85,7.4109999999999996,8.0359999999999996,8.7349999999999994,9.5180000000000007,10.398999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,68.400000000000006,-0.35210000000000002,8.0587999999999997,0.082150000000000001,6.3630000000000004,6.8689999999999998,7.4320000000000004,8.0589999999999993,8.7590000000000003,9.5449999999999999,10.429 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,68.5,-0.35210000000000002,8.0815999999999999,0.082159999999999997,6.38,6.8879999999999999,7.4530000000000003,8.0820000000000007,8.7840000000000007,9.5719999999999992,10.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,68.599999999999994,-0.35210000000000002,8.1044,0.082170000000000007,6.3979999999999997,6.9080000000000004,7.4740000000000002,8.1039999999999992,8.8089999999999993,9.5990000000000002,10.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,68.7,-0.35210000000000002,8.1272000000000002,0.082170000000000007,6.4160000000000004,6.9269999999999996,7.4950000000000001,8.1270000000000007,8.8339999999999996,9.6259999999999994,10.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,68.8,-0.35210000000000002,8.15,0.082180000000000003,6.4340000000000002,6.9459999999999997,7.516,8.15,8.859,9.6539999999999999,10.548 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,68.900000000000006,-0.35210000000000002,8.1727000000000007,0.082189999999999999,6.452,6.9660000000000002,7.5369999999999999,8.173,8.8840000000000003,9.6809999999999992,10.577999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,69,-0.35210000000000002,8.1954999999999991,0.082189999999999999,6.47,6.9850000000000003,7.5579999999999998,8.1959999999999997,8.9079999999999995,9.7080000000000002,10.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,69.099999999999994,-0.35210000000000002,8.2182999999999993,0.082199999999999995,6.4880000000000004,7.0039999999999996,7.5789999999999997,8.218,8.9329999999999998,9.7349999999999994,10.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,69.2,-0.35210000000000002,8.2409999999999997,0.082210000000000005,6.5049999999999999,7.024,7.5990000000000002,8.2409999999999997,8.9580000000000002,9.7620000000000005,10.667 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,69.3,-0.35210000000000002,8.2637999999999998,0.082220000000000001,6.5229999999999997,7.0430000000000001,7.62,8.2639999999999993,8.9830000000000005,9.7889999999999997,10.696999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,69.400000000000006,-0.35210000000000002,8.2865000000000002,0.082229999999999998,6.5410000000000004,7.0620000000000003,7.641,8.2859999999999996,9.0079999999999991,9.8160000000000007,10.726000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,69.5,-0.35210000000000002,8.3092000000000006,0.082239999999999994,6.5590000000000002,7.0810000000000004,7.6619999999999999,8.3089999999999993,9.032,9.843,10.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,69.599999999999994,-0.35210000000000002,8.3320000000000007,0.082250000000000004,6.5759999999999996,7.101,7.6829999999999998,8.3320000000000007,9.0570000000000004,9.8710000000000004,10.786 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,69.7,-0.35210000000000002,8.3546999999999993,0.08226,6.5940000000000003,7.12,7.7039999999999997,8.3550000000000004,9.0820000000000007,9.8979999999999997,10.816000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,69.8,-0.35210000000000002,8.3773999999999997,0.082269999999999996,6.6120000000000001,7.1390000000000002,7.7249999999999996,8.3770000000000007,9.1069999999999993,9.9250000000000007,10.845000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,69.900000000000006,-0.35210000000000002,8.4001000000000001,0.082280000000000006,6.63,7.1580000000000004,7.7460000000000004,8.4,9.1319999999999997,9.952,10.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,70,-0.35210000000000002,8.4227000000000007,0.082290000000000002,6.6470000000000002,7.1769999999999996,7.766,8.423,9.1560000000000006,9.9789999999999992,10.904999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,70.099999999999994,-0.35210000000000002,8.4453999999999994,0.082299999999999998,6.665,7.1970000000000001,7.7869999999999999,8.4450000000000003,9.1809999999999992,10.006,10.933999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,70.2,-0.35210000000000002,8.468,0.082309999999999994,6.6829999999999998,7.2160000000000002,7.8079999999999998,8.468,9.2059999999999995,10.032999999999999,10.964 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,70.3,-0.35210000000000002,8.4906000000000006,0.082320000000000004,6.7,7.2350000000000003,7.8289999999999997,8.4909999999999997,9.23,10.06,10.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,70.400000000000006,-0.35210000000000002,8.5131999999999994,0.08233,6.718,7.2539999999999996,7.85,8.5129999999999999,9.2550000000000008,10.087,11.023 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,70.5,-0.35210000000000002,8.5358000000000001,0.082350000000000007,6.7350000000000003,7.2729999999999997,7.87,8.5359999999999996,9.2799999999999994,10.114000000000001,11.053000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,70.599999999999994,-0.35210000000000002,8.5582999999999991,0.082360000000000003,6.7530000000000001,7.2919999999999998,7.891,8.5579999999999998,9.3040000000000003,10.141,11.083 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,70.7,-0.35210000000000002,8.5808,0.082369999999999999,6.7709999999999999,7.3109999999999999,7.9119999999999999,8.5809999999999995,9.3290000000000006,10.167999999999999,11.112 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,70.8,-0.35210000000000002,8.6031999999999993,0.082379999999999995,6.7880000000000003,7.33,7.9320000000000004,8.6029999999999998,9.3529999999999998,10.195,11.141999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,70.900000000000006,-0.35210000000000002,8.6257000000000001,0.082400000000000001,6.8049999999999997,7.3490000000000002,7.9530000000000003,8.6259999999999994,9.3780000000000001,10.222,11.172000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,71,-0.35210000000000002,8.6479999999999997,0.082409999999999997,6.8230000000000004,7.3680000000000003,7.9729999999999999,8.6479999999999997,9.4019999999999992,10.247999999999999,11.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,71.099999999999994,-0.35210000000000002,8.6704000000000008,0.082419999999999993,6.84,7.3869999999999996,7.9939999999999998,8.67,9.4269999999999996,10.275,11.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,71.2,-0.35210000000000002,8.6927000000000003,0.082430000000000003,6.8579999999999997,7.4059999999999997,8.0139999999999993,8.6929999999999996,9.4510000000000005,10.302,11.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,71.3,-0.35210000000000002,8.7149999999999999,0.082449999999999996,6.875,7.4240000000000004,8.0350000000000001,8.7149999999999999,9.4760000000000009,10.329000000000001,11.289 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,71.400000000000006,-0.35210000000000002,8.7371999999999996,0.082460000000000006,6.8920000000000003,7.4429999999999996,8.0549999999999997,8.7370000000000001,9.5,10.355,11.318 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,71.5,-0.35210000000000002,8.7593999999999994,0.082479999999999998,6.9089999999999998,7.4619999999999997,8.0749999999999993,8.7590000000000003,9.5239999999999991,10.382,11.348000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,71.599999999999994,-0.35210000000000002,8.7814999999999994,0.082489999999999994,6.9269999999999996,7.48,8.0960000000000001,8.782,9.548,10.407999999999999,11.377000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,71.7,-0.35210000000000002,8.8035999999999994,0.082500000000000004,6.944,7.4989999999999997,8.1159999999999997,8.8040000000000003,9.5719999999999992,10.435,11.406000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,71.8,-0.35210000000000002,8.8256999999999994,0.082519999999999996,6.9610000000000003,7.5179999999999998,8.1359999999999992,8.8260000000000005,9.5969999999999995,10.461,11.435 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,71.900000000000006,-0.35210000000000002,8.8476999999999997,0.082530000000000006,6.9779999999999998,7.5359999999999996,8.1560000000000006,8.8480000000000008,9.6210000000000004,10.488,11.464 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,72,-0.35210000000000002,8.8696999999999999,0.082540000000000002,6.9950000000000001,7.5549999999999997,8.1769999999999996,8.8699999999999992,9.6449999999999996,10.513999999999999,11.493 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,72.099999999999994,-0.35210000000000002,8.8916000000000004,0.082559999999999995,7.0119999999999996,7.5730000000000004,8.1969999999999992,8.8919999999999995,9.6690000000000005,10.54,11.522 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,72.2,-0.35210000000000002,8.9135000000000009,0.082570000000000005,7.0289999999999999,7.5919999999999996,8.2170000000000005,8.9139999999999997,9.6929999999999996,10.567,11.551 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,72.3,-0.35210000000000002,8.9352999999999998,0.082589999999999997,7.0460000000000003,7.61,8.2370000000000001,8.9350000000000005,9.7159999999999993,10.593,11.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,72.400000000000006,-0.35210000000000002,8.9571000000000005,0.082600000000000007,7.0629999999999997,7.6280000000000001,8.2569999999999997,8.9570000000000007,9.74,10.619,11.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,72.5,-0.35210000000000002,8.9787999999999997,0.082619999999999999,7.08,7.6470000000000002,8.2769999999999992,8.9789999999999992,9.7639999999999993,10.645,11.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,72.599999999999994,-0.35210000000000002,9.0005000000000006,0.082629999999999995,7.0970000000000004,7.665,8.2959999999999994,9,9.7880000000000003,10.670999999999999,11.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,72.7,-0.35210000000000002,9.0221,0.082640000000000005,7.1130000000000004,7.6829999999999998,8.3160000000000007,9.0220000000000002,9.8109999999999999,10.696999999999999,11.694000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,72.8,-0.35210000000000002,9.0435999999999996,0.082659999999999997,7.13,7.7009999999999996,8.3360000000000003,9.0440000000000005,9.8350000000000009,10.723000000000001,11.723000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,72.900000000000006,-0.35210000000000002,9.0650999999999993,0.082669999999999993,7.1470000000000002,7.7190000000000003,8.3559999999999999,9.0649999999999995,9.8580000000000005,10.749000000000001,11.750999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,73,-0.35210000000000002,9.0864999999999991,0.08269,7.1630000000000003,7.7370000000000001,8.375,9.0860000000000003,9.8819999999999997,10.773999999999999,11.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,73.099999999999994,-0.35210000000000002,9.1079000000000008,0.082699999999999996,7.18,7.7549999999999999,8.3949999999999996,9.1080000000000005,9.9049999999999994,10.8,11.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,73.2,-0.35210000000000002,9.1292000000000009,0.082720000000000002,7.1959999999999997,7.7729999999999997,8.4139999999999997,9.1289999999999996,9.9290000000000003,10.826000000000001,11.836 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,73.3,-0.35210000000000002,9.1503999999999994,0.082729999999999998,7.2130000000000001,7.7910000000000004,8.4339999999999993,9.15,9.952,10.851000000000001,11.864000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,73.400000000000006,-0.35210000000000002,9.1715999999999998,0.082739999999999994,7.2290000000000001,7.8090000000000002,8.4529999999999994,9.1720000000000006,9.9749999999999996,10.877000000000001,11.891999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,73.5,-0.35210000000000002,9.1927000000000003,0.08276,7.2460000000000004,7.827,8.4730000000000008,9.1929999999999996,9.9979999999999993,10.901999999999999,11.92 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,73.599999999999994,-0.35210000000000002,9.2136999999999993,0.082769999999999996,7.2619999999999996,7.8440000000000003,8.4920000000000009,9.2140000000000004,10.021000000000001,10.927,11.948 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,73.7,-0.35210000000000002,9.2347000000000001,0.082780000000000006,7.2779999999999996,7.8620000000000001,8.5109999999999992,9.2349999999999994,10.044,10.952,11.975 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,73.8,-0.35210000000000002,9.2556999999999992,0.082799999999999999,7.2939999999999996,7.88,8.5299999999999994,9.2560000000000002,10.067,10.978,12.003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,73.900000000000006,-0.35210000000000002,9.2766000000000002,0.082809999999999995,7.3109999999999999,7.8970000000000002,8.5489999999999995,9.2769999999999992,10.09,11.003,12.031000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,74,-0.35210000000000002,9.2973999999999997,0.082830000000000001,7.327,7.915,8.5679999999999996,9.2970000000000006,10.113,11.028,12.058999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,74.099999999999994,-0.35210000000000002,9.3181999999999992,0.082839999999999997,7.343,7.9320000000000004,8.5879999999999992,9.3179999999999996,10.135,11.053000000000001,12.086 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,74.2,-0.35210000000000002,9.3390000000000004,0.082849999999999993,7.359,7.95,8.6069999999999993,9.3390000000000004,10.157999999999999,11.077999999999999,12.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,74.3,-0.35210000000000002,9.3597000000000001,0.082869999999999999,7.375,7.9669999999999996,8.6259999999999994,9.36,10.180999999999999,11.103,12.141 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,74.400000000000006,-0.35210000000000002,9.3803000000000001,0.082879999999999995,7.391,7.9850000000000003,8.6440000000000001,9.3800000000000008,10.202999999999999,11.127000000000001,12.167999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,74.5,-0.35210000000000002,9.4009999999999998,0.082890000000000005,7.407,8.0020000000000007,8.6630000000000003,9.4009999999999998,10.226000000000001,11.151999999999999,12.195 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,74.599999999999994,-0.35210000000000002,9.4215,0.082900000000000001,7.423,8.0190000000000001,8.6820000000000004,9.4220000000000006,10.247999999999999,11.177,12.222 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,74.7,-0.35210000000000002,9.4420000000000002,0.082919999999999994,7.4390000000000001,8.0359999999999996,8.7010000000000005,9.4420000000000002,10.271000000000001,11.201000000000001,12.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,74.8,-0.35210000000000002,9.4625000000000004,0.082930000000000004,7.4550000000000001,8.0540000000000003,8.7200000000000006,9.4619999999999997,10.292999999999999,11.226000000000001,12.276999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,74.900000000000006,-0.35210000000000002,9.4829000000000008,0.08294,7.4710000000000001,8.0709999999999997,8.7379999999999995,9.4830000000000005,10.316000000000001,11.25,12.304 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,75,-0.35210000000000002,9.5031999999999996,0.082949999999999996,7.4859999999999998,8.0879999999999992,8.7569999999999997,9.5030000000000001,10.337999999999999,11.275,12.33 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,75.099999999999994,-0.35210000000000002,9.5235000000000003,0.082970000000000002,7.5019999999999998,8.1050000000000004,8.7759999999999998,9.5239999999999991,10.36,11.298999999999999,12.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,75.2,-0.35210000000000002,9.5437999999999992,0.082979999999999998,7.5179999999999998,8.1219999999999999,8.7940000000000005,9.5440000000000005,10.382,11.324,12.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,75.3,-0.35210000000000002,9.5639000000000003,0.082989999999999994,7.5330000000000004,8.1389999999999993,8.8130000000000006,9.5640000000000001,10.404,11.348000000000001,12.411 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,75.400000000000006,-0.35210000000000002,9.5840999999999994,0.083000000000000004,7.5490000000000004,8.1560000000000006,8.8309999999999995,9.5839999999999996,10.426,11.372,12.436999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,75.5,-0.35210000000000002,9.6041000000000007,0.08301,7.5650000000000004,8.173,8.85,9.6039999999999992,10.448,11.396000000000001,12.464 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,75.599999999999994,-0.35210000000000002,9.6241000000000003,0.083019999999999997,7.58,8.19,8.8680000000000003,9.6240000000000006,10.47,11.42,12.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,75.7,-0.35210000000000002,9.6440000000000001,0.083030000000000007,7.5960000000000001,8.2070000000000007,8.8859999999999992,9.6440000000000001,10.492000000000001,11.444000000000001,12.516 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,75.8,-0.35210000000000002,9.6638999999999999,0.083049999999999999,7.6109999999999998,8.2230000000000008,8.9039999999999999,9.6639999999999997,10.513999999999999,11.468,12.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,75.900000000000006,-0.35210000000000002,9.6836000000000002,0.083059999999999995,7.6260000000000003,8.24,8.9220000000000006,9.6839999999999993,10.535,11.492000000000001,12.569000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,76,-0.35210000000000002,9.7033000000000005,0.083070000000000005,7.641,8.2569999999999997,8.94,9.7029999999999994,10.557,11.515000000000001,12.595000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,76.099999999999994,-0.35210000000000002,9.7230000000000008,0.083070000000000005,7.657,8.2729999999999997,8.9589999999999996,9.7230000000000008,10.577999999999999,11.539,12.621 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,76.2,-0.35210000000000002,9.7424999999999997,0.083080000000000001,7.6719999999999997,8.2899999999999991,8.9760000000000009,9.7420000000000009,10.6,11.561999999999999,12.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,76.3,-0.35210000000000002,9.7620000000000005,0.083089999999999997,7.6870000000000003,8.3059999999999992,8.9939999999999998,9.7620000000000005,10.621,11.585000000000001,12.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,76.400000000000006,-0.35210000000000002,9.7813999999999997,0.083099999999999993,7.702,8.3230000000000004,9.0120000000000005,9.7810000000000006,10.641999999999999,11.609,12.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,76.5,-0.35210000000000002,9.8007000000000009,0.083110000000000003,7.7169999999999996,8.3390000000000004,9.0299999999999994,9.8010000000000002,10.663,11.632,12.723000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,76.599999999999994,-0.35210000000000002,9.82,0.083119999999999999,7.7320000000000002,8.3550000000000004,9.048,9.82,10.683999999999999,11.654999999999999,12.749000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,76.7,-0.35210000000000002,9.8391999999999999,0.083119999999999999,7.7469999999999999,8.3710000000000004,9.0649999999999995,9.8390000000000004,10.705,11.678000000000001,12.773 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,76.8,-0.35210000000000002,9.8582999999999998,0.083129999999999996,7.7619999999999996,8.3870000000000005,9.0830000000000002,9.8580000000000005,10.726000000000001,11.701000000000001,12.798999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,76.900000000000006,-0.35210000000000002,9.8773,0.083140000000000006,7.7770000000000001,8.4030000000000005,9.1,9.8770000000000007,10.747,11.723000000000001,12.824 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,77,-0.35210000000000002,9.8963000000000001,0.083140000000000006,7.7919999999999998,8.42,9.1180000000000003,9.8960000000000008,10.768000000000001,11.746,12.848000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,77.099999999999994,-0.35210000000000002,9.9152000000000005,0.083150000000000002,7.8070000000000004,8.4359999999999999,9.1349999999999998,9.9149999999999991,10.788,11.769,12.872999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,77.2,-0.35210000000000002,9.9341000000000008,0.083150000000000002,7.8209999999999997,8.452,9.1519999999999992,9.9339999999999993,10.808999999999999,11.791,12.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,77.3,-0.35210000000000002,9.9527999999999999,0.083159999999999998,7.8360000000000003,8.4670000000000005,9.17,9.9529999999999994,10.829000000000001,11.813000000000001,12.923 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,77.400000000000006,-0.35210000000000002,9.9716000000000005,0.083159999999999998,7.851,8.4830000000000005,9.1869999999999994,9.9719999999999995,10.85,11.836,12.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,77.5,-0.35210000000000002,9.9901999999999997,0.083169999999999994,7.8650000000000002,8.4990000000000006,9.2040000000000006,9.99,10.87,11.858000000000001,12.972 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,77.599999999999994,-0.35210000000000002,10.008800000000001,0.083169999999999994,7.88,8.5150000000000006,9.2210000000000001,10.009,10.89,11.88,12.996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,77.7,-0.35210000000000002,10.0274,0.083169999999999994,7.8949999999999996,8.5310000000000006,9.2379999999999995,10.026999999999999,10.911,11.901999999999999,13.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,77.8,-0.35210000000000002,10.0459,0.083180000000000004,7.9089999999999998,8.5459999999999994,9.2550000000000008,10.045999999999999,10.930999999999999,11.925000000000001,13.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,77.900000000000006,-0.35210000000000002,10.064299999999999,0.083180000000000004,7.923,8.5619999999999994,9.2720000000000002,10.064,10.951000000000001,11.946,13.068 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,78,-0.35210000000000002,10.082700000000001,0.083180000000000004,7.9379999999999997,8.5779999999999994,9.2889999999999997,10.083,10.971,11.968,13.092000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,78.099999999999994,-0.35210000000000002,10.101100000000001,0.083180000000000004,7.952,8.593,9.3059999999999992,10.101000000000001,10.991,11.99,13.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,78.2,-0.35210000000000002,10.119400000000001,0.083180000000000004,7.9669999999999996,8.609,9.3230000000000004,10.119,11.010999999999999,12.012,13.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,78.3,-0.35210000000000002,10.137700000000001,0.083180000000000004,7.9809999999999999,8.6240000000000006,9.34,10.138,11.031000000000001,12.032999999999999,13.164 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,78.400000000000006,-0.35210000000000002,10.155900000000001,0.083180000000000004,7.9950000000000001,8.64,9.3559999999999999,10.156000000000001,11.051,12.055,13.186999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,78.5,-0.35210000000000002,10.174099999999999,0.083180000000000004,8.01,8.6549999999999994,9.3729999999999993,10.173999999999999,11.07,12.077,13.211 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,78.599999999999994,-0.35210000000000002,10.192299999999999,0.083169999999999994,8.0239999999999991,8.6709999999999994,9.39,10.192,11.09,12.098000000000001,13.234 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,78.7,-0.35210000000000002,10.2105,0.083169999999999994,8.0389999999999997,8.6859999999999999,9.407,10.210000000000001,11.11,12.12,13.257999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,78.8,-0.35210000000000002,10.2286,0.083169999999999994,8.0530000000000008,8.702,9.4239999999999995,10.228999999999999,11.13,12.141,13.281000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,78.900000000000006,-0.35210000000000002,10.2468,0.083159999999999998,8.0670000000000002,8.718,9.44,10.247,11.148999999999999,12.162000000000001,13.304 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,79,-0.35210000000000002,10.264900000000001,0.083159999999999998,8.0820000000000007,8.7330000000000005,9.4570000000000007,10.265000000000001,11.169,12.183999999999999,13.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,79.099999999999994,-0.35210000000000002,10.283099999999999,0.083150000000000002,8.0960000000000001,8.7490000000000006,9.4740000000000002,10.282999999999999,11.189,12.205,13.351000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,79.2,-0.35210000000000002,10.3012,0.083150000000000002,8.1110000000000007,8.7639999999999993,9.4909999999999997,10.301,11.208,12.227,13.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,79.3,-0.35210000000000002,10.3194,0.083140000000000006,8.125,8.7799999999999994,9.5069999999999997,10.319000000000001,11.228,12.247999999999999,13.398 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,79.400000000000006,-0.35210000000000002,10.3376,0.083129999999999996,8.14,8.7949999999999999,9.5239999999999991,10.337999999999999,11.247999999999999,12.269,13.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,79.5,-0.35210000000000002,10.3558,0.083129999999999996,8.1539999999999999,8.8109999999999999,9.5410000000000004,10.356,11.266999999999999,12.291,13.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,79.599999999999994,-0.35210000000000002,10.3741,0.083119999999999999,8.1690000000000005,8.8260000000000005,9.5579999999999998,10.374000000000001,11.287000000000001,12.313000000000001,13.468 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,79.7,-0.35210000000000002,10.392300000000001,0.083110000000000003,8.1829999999999998,8.8420000000000005,9.5749999999999993,10.391999999999999,11.307,12.334,13.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,79.8,-0.35210000000000002,10.4107,0.083099999999999993,8.1980000000000004,8.8580000000000005,9.5920000000000005,10.411,11.327,12.355,13.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,79.900000000000006,-0.35210000000000002,10.4291,0.083089999999999997,8.2129999999999992,8.8740000000000006,9.609,10.429,11.347,12.377000000000001,13.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,80,-0.35210000000000002,10.4475,0.083080000000000001,8.2270000000000003,8.89,9.6259999999999994,10.448,11.367000000000001,12.398999999999999,13.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,80.099999999999994,-0.35210000000000002,10.465999999999999,0.083070000000000005,8.2420000000000009,8.9060000000000006,9.6430000000000007,10.465999999999999,11.387,12.42,13.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,80.2,-0.35210000000000002,10.484500000000001,0.083049999999999999,8.2569999999999997,8.9220000000000006,9.66,10.484,11.407,12.442,13.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,80.3,-0.35210000000000002,10.5031,0.083040000000000003,8.2720000000000002,8.9380000000000006,9.6780000000000008,10.503,11.427,12.464,13.632 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,80.400000000000006,-0.35210000000000002,10.521699999999999,0.083030000000000007,8.2870000000000008,8.9540000000000006,9.6950000000000003,10.522,11.446999999999999,12.484999999999999,13.654999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,80.5,-0.35210000000000002,10.5405,0.08301,8.3019999999999996,8.9700000000000006,9.7119999999999997,10.54,11.467000000000001,12.507,13.679 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,80.599999999999994,-0.35210000000000002,10.559200000000001,0.083000000000000004,8.3170000000000002,8.9860000000000007,9.73,10.558999999999999,11.487,12.529,13.702999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,80.7,-0.35210000000000002,10.578099999999999,0.082979999999999998,8.3320000000000007,9.0020000000000007,9.7469999999999999,10.577999999999999,11.507999999999999,12.551,13.726000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,80.8,-0.35210000000000002,10.597,0.082970000000000002,8.3480000000000008,9.0190000000000001,9.7650000000000006,10.597,11.528,12.573,13.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,80.900000000000006,-0.35210000000000002,10.616099999999999,0.082949999999999996,8.3629999999999995,9.0350000000000001,9.7829999999999995,10.616,11.548999999999999,12.595000000000001,13.773999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,81,-0.35210000000000002,10.635199999999999,0.082930000000000004,8.3789999999999996,9.0519999999999996,9.8000000000000007,10.635,11.569000000000001,12.617000000000001,13.798 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,81.099999999999994,-0.35210000000000002,10.654400000000001,0.082909999999999998,8.3940000000000001,9.0690000000000008,9.8179999999999996,10.654,11.59,12.64,13.821999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,81.2,-0.35210000000000002,10.6737,0.082900000000000001,8.41,9.0850000000000009,9.8360000000000003,10.673999999999999,11.611000000000001,12.662000000000001,13.847 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,81.3,-0.35210000000000002,10.693099999999999,0.082879999999999995,8.4250000000000007,9.1020000000000003,9.8539999999999992,10.693,11.631,12.685,13.871 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,81.400000000000006,-0.35210000000000002,10.7126,0.082860000000000003,8.4410000000000007,9.1189999999999998,9.8719999999999999,10.712999999999999,11.651999999999999,12.707000000000001,13.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,81.5,-0.35210000000000002,10.732200000000001,0.082839999999999997,8.4570000000000007,9.1359999999999992,9.891,10.731999999999999,11.673,12.73,13.92 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,81.599999999999994,-0.35210000000000002,10.752000000000001,0.082820000000000005,8.4730000000000008,9.1530000000000005,9.9090000000000007,10.752000000000001,11.695,12.753,13.945 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,81.7,-0.35210000000000002,10.771800000000001,0.082790000000000002,8.4890000000000008,9.1709999999999994,9.9280000000000008,10.772,11.715999999999999,12.776,13.968999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,81.8,-0.35210000000000002,10.7918,0.082769999999999996,8.5060000000000002,9.1880000000000006,9.9459999999999997,10.792,11.737,12.798999999999999,13.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,81.900000000000006,-0.35210000000000002,10.8119,0.082750000000000004,8.5220000000000002,9.2050000000000001,9.9649999999999999,10.811999999999999,11.759,12.821999999999999,14.019 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,82,-0.35210000000000002,10.832100000000001,0.082729999999999998,8.5380000000000003,9.2230000000000008,9.984,10.832000000000001,11.781000000000001,12.845000000000001,14.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,82.1,-0.35210000000000002,10.852399999999999,0.082699999999999996,8.5549999999999997,9.2409999999999997,10.003,10.852,11.803000000000001,12.869,14.069000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,82.2,-0.35210000000000002,10.8728,0.082680000000000003,8.5719999999999992,9.2579999999999991,10.022,10.872999999999999,11.824,12.891999999999999,14.095000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,82.3,-0.35210000000000002,10.8934,0.082650000000000001,8.5890000000000004,9.2769999999999992,10.041,10.893000000000001,11.847,12.916,14.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,82.4,-0.35210000000000002,10.914199999999999,0.082629999999999995,8.6059999999999999,9.2949999999999999,10.06,10.914,11.869,12.94,14.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,82.5,-0.35210000000000002,10.935,0.082600000000000007,8.6229999999999993,9.3130000000000006,10.08,10.935,11.891,12.964,14.172000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,82.6,-0.35210000000000002,10.956,0.082580000000000001,8.64,9.3309999999999995,10.099,10.956,11.914,12.988,14.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,82.7,-0.35210000000000002,10.9772,0.082549999999999998,8.657,9.35,10.119,10.977,11.936,13.013,14.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,82.8,-0.35210000000000002,10.9985,0.082519999999999996,8.6750000000000007,9.3680000000000003,10.138999999999999,10.997999999999999,11.959,13.037000000000001,14.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,82.9,-0.35210000000000002,11.0199,0.082489999999999994,8.6920000000000002,9.3870000000000005,10.159000000000001,11.02,11.981999999999999,13.061,14.276999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,83,-0.35210000000000002,11.041499999999999,0.082460000000000006,8.7100000000000009,9.4060000000000006,10.179,11.042,12.005000000000001,13.086,14.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,83.1,-0.35210000000000002,11.0632,0.082439999999999999,8.7279999999999998,9.4250000000000007,10.199999999999999,11.063000000000001,12.029,13.111000000000001,14.33 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,83.2,-0.35210000000000002,11.085100000000001,0.082409999999999997,8.7460000000000004,9.4440000000000008,10.220000000000001,11.085000000000001,12.052,13.137,14.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,83.3,-0.35210000000000002,11.107100000000001,0.082379999999999995,8.7639999999999993,9.4629999999999992,10.241,11.106999999999999,12.076000000000001,13.162000000000001,14.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,83.4,-0.35210000000000002,11.129300000000001,0.082350000000000007,8.782,9.4830000000000005,10.262,11.129,12.099,13.186999999999999,14.412000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,83.5,-0.35210000000000002,11.1516,0.082309999999999994,8.8000000000000007,9.5030000000000001,10.282,11.151999999999999,12.122999999999999,13.212999999999999,14.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,83.6,-0.35210000000000002,11.173999999999999,0.082280000000000006,8.8190000000000008,9.5220000000000002,10.303000000000001,11.173999999999999,12.147,13.238,14.465999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,83.7,-0.35210000000000002,11.1966,0.082250000000000004,8.8369999999999997,9.5419999999999998,10.324999999999999,11.196999999999999,12.170999999999999,13.263999999999999,14.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,83.8,-0.35210000000000002,11.2193,0.082220000000000001,8.8559999999999999,9.5619999999999994,10.346,11.218999999999999,12.196,13.29,14.522 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,83.9,-0.35210000000000002,11.2422,0.082189999999999999,8.875,9.5820000000000007,10.367000000000001,11.242000000000001,12.22,13.316000000000001,14.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,84,-0.35210000000000002,11.2651,0.082150000000000001,8.8940000000000001,9.6020000000000003,10.388999999999999,11.265000000000001,12.244,13.342000000000001,14.577999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,84.1,-0.35210000000000002,11.2882,0.082119999999999999,8.9130000000000003,9.6219999999999999,10.41,11.288,12.269,13.369,14.606 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,84.2,-0.35210000000000002,11.311400000000001,0.082089999999999996,8.9320000000000004,9.6430000000000007,10.432,11.311,12.294,13.396000000000001,14.635 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,84.3,-0.35210000000000002,11.3347,0.082049999999999998,8.9510000000000005,9.6630000000000003,10.454000000000001,11.335000000000001,12.319000000000001,13.422000000000001,14.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,84.4,-0.35210000000000002,11.3581,0.082019999999999996,8.9710000000000001,9.6839999999999993,10.476000000000001,11.358000000000001,12.343999999999999,13.449,14.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,84.5,-0.35210000000000002,11.3817,0.081979999999999997,8.99,9.7050000000000001,10.497999999999999,11.382,12.369,13.476000000000001,14.721 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,84.6,-0.35210000000000002,11.4053,0.081949999999999995,9.01,9.7249999999999996,10.52,11.404999999999999,12.394,13.503,14.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,84.7,-0.35210000000000002,11.429,0.081909999999999997,9.0289999999999999,9.7460000000000004,10.542,11.429,12.42,13.53,14.778 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,84.8,-0.35210000000000002,11.4529,0.081879999999999994,9.0489999999999995,9.7669999999999995,10.565,11.452999999999999,12.445,13.557,14.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,84.9,-0.35210000000000002,11.476800000000001,0.081839999999999996,9.0690000000000008,9.7880000000000003,10.587,11.477,12.471,13.584,14.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,85,-0.35210000000000002,11.5007,0.081809999999999994,9.0879999999999992,9.8089999999999993,10.61,11.500999999999999,12.496,13.612,14.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,85.1,-0.35210000000000002,11.524800000000001,0.081769999999999995,9.109,9.8309999999999995,10.632,11.525,12.522,13.638999999999999,14.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,85.2,-0.35210000000000002,11.548999999999999,0.081739999999999993,9.1280000000000001,9.8520000000000003,10.654999999999999,11.548999999999999,12.548,13.667,14.925000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,85.3,-0.35210000000000002,11.5732,0.081699999999999995,9.1489999999999991,9.8729999999999993,10.678000000000001,11.573,12.573,13.694000000000001,14.955 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,85.4,-0.35210000000000002,11.5975,0.081659999999999996,9.1690000000000005,9.8949999999999996,10.7,11.598000000000001,12.599,13.722,14.984 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,85.5,-0.35210000000000002,11.6218,0.081629999999999994,9.1890000000000001,9.9160000000000004,10.723000000000001,11.622,12.625,13.75,15.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,85.6,-0.35210000000000002,11.6462,0.081589999999999996,9.2089999999999996,9.9380000000000006,10.746,11.646000000000001,12.651,13.776999999999999,15.042999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,85.7,-0.35210000000000002,11.6707,0.081559999999999994,9.2289999999999992,9.9589999999999996,10.769,11.670999999999999,12.678000000000001,13.805999999999999,15.074 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,85.8,-0.35210000000000002,11.6952,0.081519999999999995,9.25,9.9809999999999999,10.792,11.695,12.704000000000001,13.833,15.103 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,85.9,-0.35210000000000002,11.719799999999999,0.081479999999999997,9.27,10.002000000000001,10.815,11.72,12.73,13.861000000000001,15.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,86,-0.35210000000000002,11.744400000000001,0.081449999999999995,9.2899999999999991,10.023999999999999,10.837999999999999,11.744,12.756,13.89,15.163 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,86.1,-0.35210000000000002,11.769,0.081409999999999996,9.3109999999999999,10.045999999999999,10.861000000000001,11.769,12.782,13.917,15.193 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,86.2,-0.35210000000000002,11.793699999999999,0.081379999999999994,9.3309999999999995,10.067,10.884,11.794,12.808999999999999,13.946,15.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,86.3,-0.35210000000000002,11.8184,0.081339999999999996,9.3520000000000003,10.089,10.907999999999999,11.818,12.835000000000001,13.974,15.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,86.4,-0.35210000000000002,11.8431,0.081309999999999993,9.3719999999999999,10.111000000000001,10.930999999999999,11.843,12.862,14.002000000000001,15.284000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,86.5,-0.35210000000000002,11.867800000000001,0.081280000000000005,9.3919999999999995,10.132999999999999,10.954000000000001,11.868,12.888,14.03,15.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,86.6,-0.35210000000000002,11.8926,0.081240000000000007,9.4130000000000003,10.154,10.977,11.893000000000001,12.914,14.058999999999999,15.343999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,86.7,-0.35210000000000002,11.917299999999999,0.081210000000000004,9.4329999999999998,10.176,11,11.917,12.941000000000001,14.087,15.374000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,86.8,-0.35210000000000002,11.9421,0.081180000000000002,9.4540000000000006,10.198,11.023,11.942,12.967000000000001,14.115,15.404999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,86.9,-0.35210000000000002,11.966799999999999,0.081140000000000004,9.4740000000000002,10.220000000000001,11.047000000000001,11.967000000000001,12.994,14.143000000000001,15.435 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,87,-0.35210000000000002,11.9916,0.081110000000000002,9.4949999999999992,10.242000000000001,11.07,11.992000000000001,13.02,14.172000000000001,15.465 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,87.1,-0.35210000000000002,12.016299999999999,0.081079999999999999,9.5150000000000006,10.263,11.093,12.016,13.047000000000001,14.2,15.496 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,87.2,-0.35210000000000002,12.0411,0.081049999999999997,9.5359999999999996,10.285,11.116,12.041,13.073,14.228,15.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,87.3,-0.35210000000000002,12.065799999999999,0.081019999999999995,9.5559999999999992,10.307,11.138999999999999,12.066000000000001,13.099,14.257,15.555999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,87.4,-0.35210000000000002,12.0905,0.080990000000000006,9.5760000000000005,10.327999999999999,11.163,12.09,13.125999999999999,14.285,15.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,87.5,-0.35210000000000002,12.1152,0.080960000000000004,9.5969999999999995,10.35,11.186,12.115,13.151999999999999,14.313000000000001,15.617000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,87.6,-0.35210000000000002,12.139799999999999,0.080930000000000002,9.6170000000000009,10.372,11.209,12.14,13.179,14.340999999999999,15.647 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,87.7,-0.35210000000000002,12.1645,0.0809,9.6370000000000005,10.393000000000001,11.231999999999999,12.164,13.205,14.37,15.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,87.8,-0.35210000000000002,12.1891,0.080869999999999997,9.6579999999999995,10.414999999999999,11.255000000000001,12.189,13.231,14.398,15.708 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,87.9,-0.35210000000000002,12.2136,0.080839999999999995,9.6780000000000008,10.436,11.278,12.214,13.257,14.426,15.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,88,-0.35210000000000002,12.238200000000001,0.080820000000000003,9.6980000000000004,10.458,11.301,12.238,13.284000000000001,14.454000000000001,15.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,88.1,-0.35210000000000002,12.262700000000001,0.080790000000000001,9.718,10.478999999999999,11.324,12.263,13.31,14.481999999999999,15.798 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,88.2,-0.35210000000000002,12.287100000000001,0.080759999999999998,9.7379999999999995,10.500999999999999,11.347,12.287000000000001,13.336,14.51,15.827999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,88.3,-0.35210000000000002,12.3116,0.080740000000000006,9.7579999999999991,10.522,11.369,12.311999999999999,13.362,14.538,15.859 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,88.4,-0.35210000000000002,12.336,0.080710000000000004,9.7780000000000005,10.544,11.391999999999999,12.336,13.388999999999999,14.566000000000001,15.888999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,88.5,-0.35210000000000002,12.360300000000001,0.080689999999999998,9.798,10.565,11.414999999999999,12.36,13.414999999999999,14.593999999999999,15.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,88.6,-0.35210000000000002,12.384600000000001,0.080670000000000006,9.8179999999999996,10.586,11.438000000000001,12.385,13.441000000000001,14.622,15.949 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,88.7,-0.35210000000000002,12.408899999999999,0.080640000000000003,9.8379999999999992,10.606999999999999,11.46,12.409000000000001,13.467000000000001,14.65,15.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,88.8,-0.35210000000000002,12.433199999999999,0.080619999999999997,9.8580000000000005,10.629,11.483000000000001,12.433,13.493,14.678000000000001,16.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,88.9,-0.35210000000000002,12.4574,0.080600000000000005,9.8770000000000007,10.65,11.506,12.457000000000001,13.519,14.706,16.039000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,89,-0.35210000000000002,12.4815,0.080579999999999999,9.8970000000000002,10.670999999999999,11.528,12.481999999999999,13.545,14.734,16.068999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,89.1,-0.35210000000000002,12.505699999999999,0.080560000000000007,9.9169999999999998,10.692,11.551,12.506,13.571,14.762,16.099 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,89.2,-0.35210000000000002,12.5298,0.08054,9.9369999999999994,10.712999999999999,11.573,12.53,13.597,14.79,16.129000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,89.3,-0.35210000000000002,12.553800000000001,0.080519999999999994,9.9559999999999995,10.734,11.596,12.554,13.622,14.818,16.158999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,89.4,-0.35210000000000002,12.5778,0.080500000000000002,9.9760000000000009,10.755000000000001,11.618,12.577999999999999,13.648,14.845000000000001,16.189 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,89.5,-0.35210000000000002,12.601699999999999,0.080479999999999996,9.9949999999999992,10.775,11.64,12.602,13.673999999999999,14.872999999999999,16.219000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,89.6,-0.35210000000000002,12.6257,0.08047,10.015000000000001,10.795999999999999,11.663,12.625999999999999,13.7,14.901,16.248999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,89.7,-0.35210000000000002,12.6495,0.080449999999999994,10.034000000000001,10.817,11.685,12.65,13.725,14.928000000000001,16.277999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,89.8,-0.35210000000000002,12.673400000000001,0.080439999999999998,10.053000000000001,10.837999999999999,11.707000000000001,12.673,13.750999999999999,14.956,16.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,89.9,-0.35210000000000002,12.6972,0.080420000000000005,10.073,10.858000000000001,11.728999999999999,12.696999999999999,13.776,14.984,16.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,90,-0.35210000000000002,12.7209,0.080409999999999995,10.092000000000001,10.879,11.750999999999999,12.721,13.802,15.010999999999999,16.367999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,90.1,-0.35210000000000002,12.7446,0.080390000000000003,10.111000000000001,10.898999999999999,11.773,12.744999999999999,13.827,15.039,16.398 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,90.2,-0.35210000000000002,12.7683,0.080379999999999993,10.130000000000001,10.92,11.795,12.768000000000001,13.853,15.066000000000001,16.428000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,90.3,-0.35210000000000002,12.792,0.080369999999999997,10.148999999999999,10.94,11.817,12.792,13.879,15.093999999999999,16.457999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,90.4,-0.35210000000000002,12.8156,0.080350000000000005,10.169,10.961,11.839,12.816000000000001,13.904,15.121,16.486999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,90.5,-0.35210000000000002,12.8392,0.080339999999999995,10.188000000000001,10.981,11.861000000000001,12.839,13.929,15.148999999999999,16.516999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,90.6,-0.35210000000000002,12.8628,0.080329999999999999,10.207000000000001,11.002000000000001,11.882999999999999,12.863,13.955,15.176,16.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,90.7,-0.35210000000000002,12.8864,0.080320000000000003,10.226000000000001,11.022,11.904999999999999,12.885999999999999,13.98,15.204000000000001,16.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,90.8,-0.35210000000000002,12.9099,0.080310000000000006,10.244,11.042999999999999,11.927,12.91,14.006,15.231,16.606000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,90.9,-0.35210000000000002,12.933400000000001,0.080299999999999996,10.263,11.063000000000001,11.949,12.933,14.031000000000001,15.257999999999999,16.635999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,91,-0.35210000000000002,12.956899999999999,0.080299999999999996,10.282,11.083,11.97,12.957000000000001,14.057,15.286,16.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,91.1,-0.35210000000000002,12.980399999999999,0.08029,10.301,11.103,11.992000000000001,12.98,14.082000000000001,15.314,16.696000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,91.2,-0.35210000000000002,13.0038,0.080280000000000004,10.32,11.122999999999999,12.013999999999999,13.004,14.106999999999999,15.340999999999999,16.725000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,91.3,-0.35210000000000002,13.0273,0.080269999999999994,10.339,11.144,12.036,13.026999999999999,14.132,15.368,16.754999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,91.4,-0.35210000000000002,13.050700000000001,0.080269999999999994,10.356999999999999,11.164,12.057,13.051,14.157999999999999,15.396000000000001,16.785 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,91.5,-0.35210000000000002,13.074199999999999,0.080259999999999998,10.375999999999999,11.183999999999999,12.079000000000001,13.074,14.183,15.423,16.815000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,91.6,-0.35210000000000002,13.0976,0.080259999999999998,10.395,11.204000000000001,12.101000000000001,13.098000000000001,14.209,15.451000000000001,16.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,91.7,-0.35210000000000002,13.120900000000001,0.080250000000000002,10.414,11.224,12.122999999999999,13.121,14.234,15.478,16.873999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,91.8,-0.35210000000000002,13.144299999999999,0.080250000000000002,10.432,11.244,12.144,13.144,14.259,15.506,16.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,91.9,-0.35210000000000002,13.1677,0.080250000000000002,10.451000000000001,11.263999999999999,12.166,13.167999999999999,14.284000000000001,15.532999999999999,16.934000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,92,-0.35210000000000002,13.191000000000001,0.080250000000000002,10.468999999999999,11.284000000000001,12.186999999999999,13.191000000000001,14.31,15.561,16.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,92.1,-0.35210000000000002,13.2143,0.080250000000000002,10.488,11.304,12.209,13.214,14.335000000000001,15.587999999999999,16.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,92.2,-0.35210000000000002,13.2376,0.080240000000000006,10.507,11.324,12.231,13.238,14.36,15.615,17.024000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,92.3,-0.35210000000000002,13.260899999999999,0.080240000000000006,10.525,11.343999999999999,12.252000000000001,13.260999999999999,14.385,15.643000000000001,17.053999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,92.4,-0.35210000000000002,13.2842,0.080240000000000006,10.544,11.364000000000001,12.273999999999999,13.284000000000001,14.411,15.67,17.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,92.5,-0.35210000000000002,13.307499999999999,0.080250000000000002,10.561999999999999,11.384,12.295,13.308,14.436,15.698,17.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,92.6,-0.35210000000000002,13.3308,0.080250000000000002,10.58,11.404,12.317,13.331,14.461,15.726000000000001,17.143999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,92.7,-0.35210000000000002,13.354100000000001,0.080250000000000002,10.599,11.423999999999999,12.337999999999999,13.353999999999999,14.487,15.753,17.173999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,92.8,-0.35210000000000002,13.3773,0.080250000000000002,10.617000000000001,11.444000000000001,12.359,13.377000000000001,14.512,15.78,17.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,92.9,-0.35210000000000002,13.400600000000001,0.080259999999999998,10.635,11.462999999999999,12.381,13.401,14.537000000000001,15.808,17.234000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,93,-0.35210000000000002,13.4239,0.080259999999999998,10.654,11.483000000000001,12.401999999999999,13.423999999999999,14.563000000000001,15.836,17.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,93.1,-0.35210000000000002,13.4472,0.080269999999999994,10.672000000000001,11.503,12.423999999999999,13.446999999999999,14.587999999999999,15.864000000000001,17.295000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,93.2,-0.35210000000000002,13.470499999999999,0.080269999999999994,10.691000000000001,11.523,12.445,13.47,14.613,15.891,17.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,93.3,-0.35210000000000002,13.4937,0.080280000000000004,10.709,11.542999999999999,12.467000000000001,13.494,14.638999999999999,15.919,17.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,93.4,-0.35210000000000002,13.517099999999999,0.080280000000000004,10.727,11.563000000000001,12.488,13.516999999999999,14.664,15.946,17.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,93.5,-0.35210000000000002,13.5404,0.08029,10.744999999999999,11.582000000000001,12.51,13.54,14.689,15.974,17.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,93.6,-0.35210000000000002,13.563700000000001,0.080299999999999996,10.763999999999999,11.602,12.531000000000001,13.564,14.715,16.001999999999999,17.446000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,93.7,-0.35210000000000002,13.587,0.080310000000000006,10.782,11.622,12.552,13.587,14.74,16.03,17.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,93.8,-0.35210000000000002,13.6104,0.080320000000000003,10.8,11.641,12.574,13.61,14.766,16.058,17.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,93.9,-0.35210000000000002,13.633800000000001,0.080329999999999999,10.818,11.661,12.595000000000001,13.634,14.791,16.085999999999999,17.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,94,-0.35210000000000002,13.6572,0.080339999999999995,10.837,11.680999999999999,12.617000000000001,13.657,14.817,16.114000000000001,17.568999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,94.1,-0.35210000000000002,13.6806,0.080350000000000005,10.855,11.701000000000001,12.638,13.680999999999999,14.842000000000001,16.141999999999999,17.600000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,94.2,-0.35210000000000002,13.7041,0.080360000000000001,10.872999999999999,11.721,12.66,13.704000000000001,14.868,16.170000000000002,17.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,94.3,-0.35210000000000002,13.727499999999999,0.080369999999999997,10.891,11.741,12.682,13.728,14.894,16.198,17.661000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,94.4,-0.35210000000000002,13.750999999999999,0.080379999999999993,10.91,11.76,12.702999999999999,13.750999999999999,14.919,16.225999999999999,17.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,94.5,-0.35210000000000002,13.7746,0.080399999999999999,10.928000000000001,11.78,12.725,13.775,14.945,16.254000000000001,17.722999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,94.6,-0.35210000000000002,13.7981,0.080409999999999995,10.946,11.8,12.746,13.798,14.971,16.282,17.754000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,94.7,-0.35210000000000002,13.8217,0.080430000000000001,10.964,11.82,12.768000000000001,13.821999999999999,14.997,16.311,17.786000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,94.8,-0.35210000000000002,13.8454,0.080439999999999998,10.983000000000001,11.84,12.79,13.845000000000001,15.023,16.338999999999999,17.817 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,94.9,-0.35210000000000002,13.8691,0.080460000000000004,11.000999999999999,11.86,12.811,13.869,15.048999999999999,16.367999999999999,17.849 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,95,-0.35210000000000002,13.892799999999999,0.08047,11.02,11.88,12.833,13.893000000000001,15.074,16.396000000000001,17.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,95.1,-0.35210000000000002,13.916499999999999,0.080490000000000006,11.038,11.898999999999999,12.855,13.916,15.1,16.425000000000001,17.911000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,95.2,-0.35210000000000002,13.940300000000001,0.080509999999999998,11.055999999999999,11.919,12.875999999999999,13.94,15.127000000000001,16.454000000000001,17.943000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,95.3,-0.35210000000000002,13.9642,0.080519999999999994,11.074999999999999,11.94,12.898,13.964,15.153,16.481999999999999,17.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,95.4,-0.35210000000000002,13.988099999999999,0.08054,11.093,11.96,12.92,13.988,15.179,16.510999999999999,18.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,95.5,-0.35210000000000002,14.012,0.080560000000000007,11.111000000000001,11.98,12.942,14.012,15.205,16.54,18.038 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,95.6,-0.35210000000000002,14.036,0.080579999999999999,11.13,12,12.964,14.036,15.231999999999999,16.568999999999999,18.07 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,95.7,-0.35210000000000002,14.06,0.080600000000000005,11.148,12.02,12.986000000000001,14.06,15.257999999999999,16.597999999999999,18.103000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,95.8,-0.35210000000000002,14.084099999999999,0.080619999999999997,11.167,12.04,13.007999999999999,14.084,15.284000000000001,16.626999999999999,18.135000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,95.9,-0.35210000000000002,14.1083,0.080640000000000003,11.185,12.06,13.03,14.108000000000001,15.311,16.657,18.167000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,96,-0.35210000000000002,14.1325,0.080670000000000006,11.204000000000001,12.08,13.052,14.132,15.337999999999999,16.686,18.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,96.1,-0.35210000000000002,14.156700000000001,0.080689999999999998,11.222,12.1,13.074,14.157,15.364000000000001,16.715,18.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,96.2,-0.35210000000000002,14.181100000000001,0.080710000000000004,11.241,12.121,13.096,14.180999999999999,15.391,16.745000000000001,18.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,96.3,-0.35210000000000002,14.205500000000001,0.080729999999999996,11.26,12.141,13.119,14.206,15.417999999999999,16.774999999999999,18.297999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,96.4,-0.35210000000000002,14.229900000000001,0.080759999999999998,11.278,12.161,13.141,14.23,15.445,16.803999999999998,18.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,96.5,-0.35210000000000002,14.2544,0.080780000000000005,11.297000000000001,12.182,13.163,14.254,15.472,16.834,18.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,96.6,-0.35210000000000002,14.279,0.080810000000000007,11.315,12.202,13.185,14.279,15.499000000000001,16.864000000000001,18.396999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,96.7,-0.35210000000000002,14.303699999999999,0.080829999999999999,11.334,12.223000000000001,13.208,14.304,15.526,16.893999999999998,18.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,96.8,-0.35210000000000002,14.3284,0.080860000000000001,11.353,12.243,13.23,14.327999999999999,15.553000000000001,16.923999999999999,18.463999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,96.9,-0.35210000000000002,14.353300000000001,0.080890000000000004,11.372,12.263999999999999,13.253,14.353,15.581,16.954999999999998,18.498000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,97,-0.35210000000000002,14.3782,0.080920000000000006,11.39,12.284000000000001,13.276,14.378,15.608000000000001,16.984999999999999,18.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,97.1,-0.35210000000000002,14.4031,0.080939999999999998,11.41,12.305,13.298,14.403,15.635999999999999,17.015000000000001,18.565000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,97.2,-0.35210000000000002,14.4282,0.08097,11.428000000000001,12.326000000000001,13.321,14.428000000000001,15.663,17.045999999999999,18.599 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,97.3,-0.35210000000000002,14.4533,0.081000000000000003,11.446999999999999,12.347,13.343999999999999,14.452999999999999,15.691000000000001,17.077000000000002,18.632999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,97.4,-0.35210000000000002,14.4785,0.081030000000000005,11.465999999999999,12.367000000000001,13.367000000000001,14.478,15.718999999999999,17.108000000000001,18.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,97.5,-0.35210000000000002,14.5038,0.081059999999999993,11.484999999999999,12.388,13.39,14.504,15.747,17.138999999999999,18.702000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,97.6,-0.35210000000000002,14.529199999999999,0.081089999999999995,11.505000000000001,12.409000000000001,13.413,14.529,15.775,17.170000000000002,18.736999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,97.7,-0.35210000000000002,14.5547,0.081119999999999998,11.523999999999999,12.43,13.436,14.555,15.803000000000001,17.201000000000001,18.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,97.8,-0.35210000000000002,14.5802,0.081159999999999996,11.542999999999999,12.451000000000001,13.459,14.58,15.832000000000001,17.233000000000001,18.806999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,97.9,-0.35210000000000002,14.6058,0.081189999999999998,11.561999999999999,12.472,13.481999999999999,14.606,15.86,17.263999999999999,18.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,98,-0.35210000000000002,14.631600000000001,0.081220000000000001,11.582000000000001,12.494,13.506,14.632,15.888,17.295999999999999,18.876999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,98.1,-0.35210000000000002,14.657400000000001,0.081250000000000003,11.601000000000001,12.515000000000001,13.529,14.657,15.917,17.327000000000002,18.911999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,98.2,-0.35210000000000002,14.683199999999999,0.081290000000000001,11.62,12.536,13.552,14.683,15.946,17.359000000000002,18.948 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,98.3,-0.35210000000000002,14.709199999999999,0.081320000000000003,11.64,12.558,13.576000000000001,14.709,15.974,17.390999999999998,18.983000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,98.4,-0.35210000000000002,14.735300000000001,0.081360000000000002,11.659000000000001,12.579000000000001,13.599,14.734999999999999,16.003,17.422999999999998,19.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,98.5,-0.35210000000000002,14.7614,0.081390000000000004,11.679,12.6,13.622999999999999,14.760999999999999,16.032,17.454999999999998,19.055 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,98.6,-0.35210000000000002,14.787699999999999,0.081430000000000002,11.698,12.622,13.647,14.788,16.061,17.488,19.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,98.7,-0.35210000000000002,14.814,0.081460000000000005,11.718,12.644,13.670999999999999,14.814,16.09,17.52,19.126999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,98.8,-0.35210000000000002,14.840400000000001,0.081500000000000003,11.738,12.664999999999999,13.695,14.84,16.12,17.553000000000001,19.164000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,98.9,-0.35210000000000002,14.866899999999999,0.081540000000000001,11.757,12.686999999999999,13.718999999999999,14.867000000000001,16.149000000000001,17.585999999999999,19.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,99,-0.35210000000000002,14.8934,0.081570000000000004,11.776999999999999,12.709,13.743,14.893000000000001,16.178000000000001,17.617999999999999,19.236999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,99.1,-0.35210000000000002,14.9201,0.081610000000000002,11.797000000000001,12.731,13.766999999999999,14.92,16.207999999999998,17.651,19.274000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,99.2,-0.35210000000000002,14.9468,0.08165,11.817,12.752000000000001,13.791,14.946999999999999,16.238,17.684000000000001,19.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,99.3,-0.35210000000000002,14.973599999999999,0.081689999999999999,11.837,12.773999999999999,13.815,14.974,16.268000000000001,17.718,19.347999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,99.4,-0.35210000000000002,15.000500000000001,0.081729999999999997,11.856999999999999,12.795999999999999,13.839,15,16.297999999999998,17.751000000000001,19.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,99.5,-0.35210000000000002,15.0275,0.081769999999999995,11.877000000000001,12.818,13.864000000000001,15.028,16.327999999999999,17.783999999999999,19.422999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,99.6,-0.35210000000000002,15.054600000000001,0.081809999999999994,11.897,12.84,13.888,15.055,16.358000000000001,17.818000000000001,19.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,99.7,-0.35210000000000002,15.081799999999999,0.081850000000000006,11.917,12.863,13.913,15.082000000000001,16.388000000000002,17.852,19.498000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,99.8,-0.35210000000000002,15.109,0.081890000000000004,11.936999999999999,12.885,13.936999999999999,15.109,16.417999999999999,17.885000000000002,19.536000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,99.9,-0.35210000000000002,15.1363,0.081939999999999999,11.957000000000001,12.907,13.962,15.135999999999999,16.449000000000002,17.920000000000002,19.574000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,100,-0.35210000000000002,15.1637,0.081979999999999997,11.978,12.929,13.986000000000001,15.164,16.478999999999999,17.954000000000001,19.611999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,100.1,-0.35210000000000002,15.1912,0.082019999999999996,11.997999999999999,12.952,14.010999999999999,15.191000000000001,16.510000000000002,17.988,19.649999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,100.2,-0.35210000000000002,15.2187,0.082059999999999994,12.018000000000001,12.974,14.036,15.218999999999999,16.54,18.021999999999998,19.687999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,100.3,-0.35210000000000002,15.2463,0.082110000000000002,12.038,12.997,14.061,15.246,16.571000000000002,18.056000000000001,19.727 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,100.4,-0.35210000000000002,15.273999999999999,0.082150000000000001,12.058999999999999,13.019,14.086,15.273999999999999,16.602,18.091000000000001,19.765999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,100.5,-0.35210000000000002,15.3018,0.082199999999999995,12.079000000000001,13.042,14.111000000000001,15.302,16.632999999999999,18.126000000000001,19.805 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,100.6,-0.35210000000000002,15.329700000000001,0.082239999999999994,12.1,13.065,14.135999999999999,15.33,16.664000000000001,18.16,19.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,100.7,-0.35210000000000002,15.3576,0.082290000000000002,12.12,13.087,14.161,15.358000000000001,16.695,18.195,19.882999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,100.8,-0.35210000000000002,15.3856,0.08233,12.141,13.11,14.186,15.385999999999999,16.725999999999999,18.23,19.922000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,100.9,-0.35210000000000002,15.4137,0.082379999999999995,12.162000000000001,13.132999999999999,14.211,15.414,16.757999999999999,18.265000000000001,19.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,101,-0.35210000000000002,15.4419,0.082430000000000003,12.182,13.154999999999999,14.237,15.442,16.789000000000001,18.3,20.001999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,101.1,-0.35210000000000002,15.4701,0.082470000000000002,12.202999999999999,13.178000000000001,14.262,15.47,16.821000000000002,18.335000000000001,20.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,101.2,-0.35210000000000002,15.4985,0.082519999999999996,12.224,13.201000000000001,14.288,15.497999999999999,16.852,18.370999999999999,20.081 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,101.3,-0.35210000000000002,15.5268,0.082570000000000005,12.244,13.224,14.313000000000001,15.526999999999999,16.884,18.405999999999999,20.120999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,101.4,-0.35210000000000002,15.555300000000001,0.082619999999999999,12.265000000000001,13.247,14.339,15.555,16.916,18.442,20.161000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,101.5,-0.35210000000000002,15.5838,0.082669999999999993,12.286,13.27,14.364000000000001,15.584,16.948,18.478000000000002,20.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,101.6,-0.35210000000000002,15.612500000000001,0.082720000000000002,12.307,13.292999999999999,14.39,15.612,16.98,18.513999999999999,20.242000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,101.7,-0.35210000000000002,15.6412,0.082769999999999996,12.327999999999999,13.317,14.416,15.641,17.012,18.55,20.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,101.8,-0.35210000000000002,15.6699,0.082809999999999995,12.349,13.34,14.442,15.67,17.044,18.585999999999999,20.321999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,101.9,-0.35210000000000002,15.698700000000001,0.082869999999999999,12.37,13.363,14.467000000000001,15.699,17.076000000000001,18.622,20.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,102,-0.35210000000000002,15.727600000000001,0.082919999999999994,12.391,13.385999999999999,14.493,15.728,17.108000000000001,18.658000000000001,20.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,102.1,-0.35210000000000002,15.756600000000001,0.082970000000000002,12.412000000000001,13.41,14.519,15.757,17.140999999999998,18.695,20.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,102.2,-0.35210000000000002,15.7857,0.083019999999999997,12.433,13.433,14.545,15.786,17.172999999999998,18.731000000000002,20.486999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,102.3,-0.35210000000000002,15.8148,0.083070000000000005,12.454000000000001,13.457000000000001,14.571999999999999,15.815,17.206,18.768000000000001,20.527999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,102.4,-0.35210000000000002,15.843999999999999,0.083119999999999999,12.476000000000001,13.48,14.598000000000001,15.843999999999999,17.239000000000001,18.803999999999998,20.568999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,102.5,-0.35210000000000002,15.873200000000001,0.083169999999999994,12.497,13.504,14.624000000000001,15.872999999999999,17.271000000000001,18.841000000000001,20.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,102.6,-0.35210000000000002,15.9026,0.083220000000000002,12.518000000000001,13.528,14.65,15.903,17.303999999999998,18.878,20.652000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,102.7,-0.35210000000000002,15.932,0.083280000000000007,12.539,13.551,14.676,15.932,17.337,18.914999999999999,20.693999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,102.8,-0.35210000000000002,15.961499999999999,0.083330000000000001,12.561,13.574999999999999,14.702999999999999,15.962,17.37,18.952000000000002,20.736000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,102.9,-0.35210000000000002,15.991,0.083379999999999996,12.582000000000001,13.599,14.728999999999999,15.991,17.402999999999999,18.989000000000001,20.777999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,103,-0.35210000000000002,16.020600000000002,0.083430000000000004,12.603999999999999,13.622999999999999,14.756,16.021000000000001,17.436,19.027000000000001,20.818999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,103.1,-0.35210000000000002,16.0503,0.083489999999999995,12.625,13.646000000000001,14.782,16.05,17.47,19.064,20.861999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,103.2,-0.35210000000000002,16.080100000000002,0.083540000000000003,12.647,13.67,14.808999999999999,16.079999999999998,17.503,19.102,20.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,103.3,-0.35210000000000002,16.1099,0.083589999999999998,12.669,13.694000000000001,14.836,16.11,17.536000000000001,19.138999999999999,20.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,103.4,-0.35210000000000002,16.139800000000001,0.083650000000000002,12.69,13.718,14.863,16.14,17.57,19.177,20.99 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,103.5,-0.35210000000000002,16.169699999999999,0.083699999999999997,12.712,13.742000000000001,14.888999999999999,16.170000000000002,17.603000000000002,19.215,21.032 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,103.6,-0.35210000000000002,16.1997,0.083760000000000001,12.733000000000001,13.766,14.916,16.2,17.637,19.253,21.074999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,103.7,-0.35210000000000002,16.229800000000001,0.083809999999999996,12.755000000000001,13.791,14.943,16.23,17.670999999999999,19.291,21.117999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,103.8,-0.35210000000000002,16.260000000000002,0.083860000000000004,12.776999999999999,13.815,14.97,16.260000000000002,17.704999999999998,19.329000000000001,21.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,103.9,-0.35210000000000002,16.290199999999999,0.083919999999999995,12.798999999999999,13.839,14.997,16.29,17.739000000000001,19.367000000000001,21.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,104,-0.35210000000000002,16.320399999999999,0.083970000000000003,12.821,13.863,15.023999999999999,16.32,17.771999999999998,19.405000000000001,21.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,104.1,-0.35210000000000002,16.3508,0.084029999999999994,12.842000000000001,13.888,15.051,16.350999999999999,17.806999999999999,19.443999999999999,21.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,104.2,-0.35210000000000002,16.3812,0.084080000000000002,12.865,13.912000000000001,15.079000000000001,16.381,17.841000000000001,19.481999999999999,21.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,104.3,-0.35210000000000002,16.4117,0.084140000000000006,12.885999999999999,13.936999999999999,15.106,16.411999999999999,17.875,19.521000000000001,21.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,104.4,-0.35210000000000002,16.4422,0.084190000000000001,12.909000000000001,13.961,15.132999999999999,16.442,17.908999999999999,19.559000000000001,21.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,104.5,-0.35210000000000002,16.472799999999999,0.084250000000000005,12.93,13.984999999999999,15.16,16.472999999999999,17.943999999999999,19.597999999999999,21.465 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,104.6,-0.35210000000000002,16.503499999999999,0.084309999999999996,12.952,14.01,15.188000000000001,16.504000000000001,17.978000000000002,19.637,21.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,104.7,-0.35210000000000002,16.534199999999998,0.084360000000000004,12.975,14.035,15.215,16.533999999999999,18.013000000000002,19.675000000000001,21.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,104.8,-0.35210000000000002,16.565000000000001,0.084419999999999995,12.997,14.058999999999999,15.243,16.565000000000001,18.047000000000001,19.715,21.597000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,104.9,-0.35210000000000002,16.5959,0.084470000000000003,13.019,14.084,15.27,16.596,18.082000000000001,19.753,21.640999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,105,-0.35210000000000002,16.626799999999999,0.084529999999999994,13.041,14.109,15.298,16.626999999999999,18.117000000000001,19.792999999999999,21.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,105.1,-0.35210000000000002,16.657900000000001,0.084580000000000002,13.064,14.134,15.326000000000001,16.658000000000001,18.151,19.832000000000001,21.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,105.2,-0.35210000000000002,16.6889,0.084640000000000007,13.086,14.159000000000001,15.353,16.689,18.186,19.870999999999999,21.774999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,105.3,-0.35210000000000002,16.720099999999999,0.084699999999999998,13.108000000000001,14.183,15.381,16.72,18.221,19.911000000000001,21.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,105.4,-0.35210000000000002,16.751300000000001,0.084750000000000006,13.131,14.209,15.409000000000001,16.751000000000001,18.256,19.95,21.864000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,105.5,-0.35210000000000002,16.782599999999999,0.084809999999999997,13.153,14.233000000000001,15.436999999999999,16.783000000000001,18.292000000000002,19.989999999999998,21.908999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,105.6,-0.35210000000000002,16.8139,0.084870000000000001,13.176,14.257999999999999,15.465,16.814,18.327000000000002,20.03,21.954000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,105.7,-0.35210000000000002,16.845400000000001,0.084930000000000005,13.198,14.282999999999999,15.493,16.844999999999999,18.361999999999998,20.07,22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,105.8,-0.35210000000000002,16.876899999999999,0.08498,13.221,14.308999999999999,15.521000000000001,16.876999999999999,18.398,20.11,22.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,105.9,-0.35210000000000002,16.9084,0.085040000000000004,13.243,14.334,15.548999999999999,16.908000000000001,18.433,20.149999999999999,22.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,106,-0.35210000000000002,16.940100000000001,0.085099999999999995,13.266,14.359,15.577999999999999,16.940000000000001,18.469000000000001,20.190000000000001,22.135999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,106.1,-0.35210000000000002,16.971800000000002,0.08516,13.289,14.384,15.606,16.972000000000001,18.504999999999999,20.231000000000002,22.181999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,106.2,-0.35210000000000002,17.003599999999999,0.085209999999999994,13.311999999999999,14.41,15.634,17.004000000000001,18.54,20.271000000000001,22.227 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,106.3,-0.35210000000000002,17.035499999999999,0.085269999999999999,13.335000000000001,14.435,15.663,17.036000000000001,18.576000000000001,20.311,22.273 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,106.4,-0.35210000000000002,17.067399999999999,0.085330000000000003,13.356999999999999,14.461,15.691000000000001,17.067,18.611999999999998,20.352,22.318999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,106.5,-0.35210000000000002,17.099499999999999,0.085389999999999994,13.38,14.486000000000001,15.72,17.100000000000001,18.648,20.393000000000001,22.364999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,106.6,-0.35210000000000002,17.131599999999999,0.085449999999999998,13.403,14.512,15.747999999999999,17.132000000000001,18.684000000000001,20.434000000000001,22.411999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,106.7,-0.35210000000000002,17.163699999999999,0.085510000000000003,13.426,14.537000000000001,15.776999999999999,17.164000000000001,18.721,20.475000000000001,22.457999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,106.8,-0.35210000000000002,17.196000000000002,0.085569999999999993,13.449,14.563000000000001,15.805999999999999,17.196000000000002,18.757000000000001,20.515999999999998,22.504999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,106.9,-0.35210000000000002,17.228300000000001,0.085620000000000002,13.473000000000001,14.589,15.835000000000001,17.228000000000002,18.792999999999999,20.556000000000001,22.550999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,107,-0.35210000000000002,17.2607,0.085680000000000006,13.496,14.615,15.863,17.260999999999999,18.829999999999998,20.597999999999999,22.597999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,107.1,-0.35210000000000002,17.293099999999999,0.085739999999999997,13.519,14.641,15.891999999999999,17.292999999999999,18.866,20.638999999999999,22.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,107.2,-0.35210000000000002,17.325600000000001,0.085800000000000001,13.542,14.667,15.920999999999999,17.326000000000001,18.902999999999999,20.68,22.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,107.3,-0.35210000000000002,17.3582,0.085860000000000006,13.565,14.692,15.95,17.358000000000001,18.939,20.722000000000001,22.739000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,107.4,-0.35210000000000002,17.390899999999998,0.085919999999999996,13.587999999999999,14.718,15.978999999999999,17.390999999999998,18.975999999999999,20.763999999999999,22.786000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,107.5,-0.35210000000000002,17.4237,0.085989999999999997,13.611000000000001,14.744,16.007999999999999,17.423999999999999,19.013999999999999,20.806000000000001,22.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,107.6,-0.35210000000000002,17.456499999999998,0.086050000000000001,13.635,14.77,16.038,17.456,19.05,20.847999999999999,22.882000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,107.7,-0.35210000000000002,17.4894,0.086110000000000006,13.657999999999999,14.797000000000001,16.067,17.489000000000001,19.088000000000001,20.89,22.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,107.8,-0.35210000000000002,17.522400000000001,0.086169999999999997,13.682,14.823,16.096,17.521999999999998,19.125,20.931999999999999,22.978000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,107.9,-0.35210000000000002,17.555399999999999,0.086230000000000001,13.705,14.849,16.126000000000001,17.555,19.161999999999999,20.974,23.024999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,108,-0.35210000000000002,17.5885,0.086290000000000006,13.728999999999999,14.875,16.155000000000001,17.588000000000001,19.199000000000002,21.015999999999998,23.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,108.1,-0.35210000000000002,17.621700000000001,0.086349999999999996,13.753,14.901999999999999,16.184999999999999,17.622,19.236999999999998,21.059000000000001,23.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,108.2,-0.35210000000000002,17.655000000000001,0.086410000000000001,13.776,14.928000000000001,16.213999999999999,17.655000000000001,19.274000000000001,21.100999999999999,23.17 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,108.3,-0.35210000000000002,17.688400000000001,0.086480000000000001,13.8,14.954000000000001,16.244,17.687999999999999,19.312000000000001,21.143999999999998,23.219000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,108.4,-0.35210000000000002,17.721800000000002,0.086540000000000006,13.823,14.981,16.274000000000001,17.722000000000001,19.350000000000001,21.187000000000001,23.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,108.5,-0.35210000000000002,17.755299999999998,0.086599999999999996,13.847,15.007999999999999,16.303000000000001,17.754999999999999,19.388000000000002,21.228999999999999,23.315999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,108.6,-0.35210000000000002,17.788900000000002,0.086660000000000001,13.871,15.034000000000001,16.332999999999998,17.789000000000001,19.425000000000001,21.271999999999998,23.364999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,108.7,-0.35210000000000002,17.822600000000001,0.086730000000000002,13.895,15.061,16.363,17.823,19.463999999999999,21.315999999999999,23.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,108.8,-0.35210000000000002,17.856400000000001,0.086790000000000006,13.919,15.087999999999999,16.393000000000001,17.856000000000002,19.501999999999999,21.359000000000002,23.463999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,108.9,-0.35210000000000002,17.8903,0.086849999999999997,13.943,15.115,16.422999999999998,17.89,19.54,21.402000000000001,23.513000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,109,-0.35210000000000002,17.924199999999999,0.086910000000000001,13.967000000000001,15.141999999999999,16.454000000000001,17.923999999999999,19.577999999999999,21.446000000000002,23.562000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,109.1,-0.35210000000000002,17.958300000000001,0.086980000000000002,13.991,15.167999999999999,16.484000000000002,17.957999999999998,19.617000000000001,21.49,23.611999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,109.2,-0.35210000000000002,17.9924,0.087040000000000006,14.015000000000001,15.195,16.513999999999999,17.992000000000001,19.655000000000001,21.533000000000001,23.661999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,109.3,-0.35210000000000002,18.026700000000002,0.087099999999999997,14.04,15.223000000000001,16.545000000000002,18.027000000000001,19.693999999999999,21.577000000000002,23.712 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,109.4,-0.35210000000000002,18.061,0.087169999999999997,14.064,15.25,16.574999999999999,18.061,19.733000000000001,21.620999999999999,23.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,109.5,-0.35210000000000002,18.095400000000001,0.087230000000000002,14.087999999999999,15.276999999999999,16.606000000000002,18.094999999999999,19.771999999999998,21.664999999999999,23.812000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,109.6,-0.35210000000000002,18.129899999999999,0.087300000000000003,14.112,15.304,16.635999999999999,18.13,19.811,21.71,23.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,109.7,-0.35210000000000002,18.1645,0.087359999999999993,14.137,15.332000000000001,16.667000000000002,18.164000000000001,19.850000000000001,21.754000000000001,23.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,109.8,-0.35210000000000002,18.199200000000001,0.087419999999999998,14.162000000000001,15.359,16.698,18.199000000000002,19.888999999999999,21.797999999999998,23.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,109.9,-0.35210000000000002,18.234000000000002,0.087489999999999998,14.186,15.385999999999999,16.728999999999999,18.234000000000002,19.928999999999998,21.843,24.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfl-boys-zscore-expanded-table.xlsx,expanded,male,length,110,-0.35210000000000002,18.268899999999999,0.087550000000000003,14.211,15.414,16.760000000000002,18.268999999999998,19.968,21.888000000000002,24.065999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,65,-0.35210000000000002,7.4326999999999996,0.082170000000000007,5.8680000000000003,6.335,6.8540000000000001,7.4329999999999998,8.0790000000000006,8.8040000000000003,9.6189999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,65.099999999999994,-0.35210000000000002,7.4562999999999997,0.082159999999999997,5.8869999999999996,6.3550000000000004,6.8760000000000003,7.4560000000000004,8.1050000000000004,8.8309999999999995,9.6489999999999991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,65.2,-0.35210000000000002,7.4798999999999998,0.082159999999999997,5.9050000000000002,6.3760000000000003,6.8979999999999997,7.48,8.1300000000000008,8.859,9.68 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,65.3,-0.35210000000000002,7.5034000000000001,0.082150000000000001,5.9240000000000004,6.3959999999999999,6.92,7.5030000000000001,8.1560000000000006,8.8870000000000005,9.7100000000000009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,65.400000000000006,-0.35210000000000002,7.5269000000000004,0.082140000000000005,5.9429999999999996,6.4160000000000004,6.9409999999999998,7.5270000000000001,8.1809999999999992,8.9149999999999991,9.74 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,65.5,-0.35210000000000002,7.5503999999999998,0.082140000000000005,5.9610000000000003,6.4359999999999999,6.9630000000000001,7.55,8.2070000000000007,8.9429999999999996,9.7710000000000008 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,65.599999999999994,-0.35210000000000002,7.5738000000000003,0.082140000000000005,5.98,6.4560000000000004,6.9850000000000003,7.5739999999999998,8.2319999999999993,8.9700000000000006,9.8010000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,65.7,-0.35210000000000002,7.5972999999999997,0.082129999999999995,5.9989999999999997,6.476,7.0060000000000002,7.5970000000000004,8.2579999999999991,8.9979999999999993,9.8309999999999995 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,65.8,-0.35210000000000002,7.6205999999999996,0.082129999999999995,6.0170000000000003,6.4960000000000004,7.0279999999999996,7.6210000000000004,8.2829999999999995,9.0259999999999998,9.8610000000000007 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,65.900000000000006,-0.35210000000000002,7.6440000000000001,0.082129999999999995,6.0350000000000001,6.516,7.0490000000000004,7.6440000000000001,8.3079999999999998,9.0530000000000008,9.891 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,66,-0.35210000000000002,7.6673,0.082119999999999999,6.0540000000000003,6.5359999999999996,7.0709999999999997,7.6669999999999998,8.3339999999999996,9.0809999999999995,9.9209999999999994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,66.099999999999994,-0.35210000000000002,7.6905999999999999,0.082119999999999999,6.0720000000000001,6.556,7.093,7.6909999999999998,8.359,9.1080000000000005,9.9510000000000005 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,66.2,-0.35210000000000002,7.7138,0.082119999999999999,6.0910000000000002,6.5750000000000002,7.1139999999999999,7.7140000000000004,8.3840000000000003,9.1359999999999992,9.9809999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,66.3,-0.35210000000000002,7.7370000000000001,0.082119999999999999,6.109,6.5949999999999998,7.1349999999999998,7.7370000000000001,8.4090000000000007,9.1630000000000003,10.010999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,66.400000000000006,-0.35210000000000002,7.7602000000000002,0.082119999999999999,6.1269999999999998,6.6150000000000002,7.157,7.76,8.4350000000000005,9.1910000000000007,10.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,66.5,-0.35210000000000002,7.7834000000000003,0.082119999999999999,6.1459999999999999,6.6349999999999998,7.1779999999999999,7.7830000000000004,8.4600000000000009,9.218,10.071 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,66.599999999999994,-0.35210000000000002,7.8064999999999998,0.082119999999999999,6.1639999999999997,6.6539999999999999,7.1989999999999998,7.806,8.4849999999999994,9.2460000000000004,10.101000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,66.7,-0.35210000000000002,7.8296000000000001,0.082119999999999999,6.1820000000000004,6.6740000000000004,7.2210000000000001,7.83,8.51,9.2729999999999997,10.131 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,66.8,-0.35210000000000002,7.8525999999999998,0.082119999999999999,6.2,6.694,7.242,7.8529999999999998,8.5350000000000001,9.3000000000000007,10.161 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,66.900000000000006,-0.35210000000000002,7.8757000000000001,0.082119999999999999,6.218,6.7130000000000001,7.2629999999999999,7.8760000000000003,8.56,9.327,10.191000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,67,-0.35210000000000002,7.8986000000000001,0.082129999999999995,6.2359999999999998,6.7329999999999997,7.2839999999999998,7.899,8.5850000000000009,9.3550000000000004,10.221 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,67.099999999999994,-0.35210000000000002,7.9215999999999998,0.082129999999999995,6.2549999999999999,6.7519999999999998,7.306,7.9219999999999997,8.61,9.3819999999999997,10.250999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,67.2,-0.35210000000000002,7.9444999999999997,0.082129999999999995,6.2729999999999997,6.7720000000000002,7.327,7.944,8.6349999999999998,9.4090000000000007,10.28 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,67.3,-0.35210000000000002,7.9673999999999996,0.082140000000000005,6.2910000000000004,6.7910000000000004,7.3479999999999999,7.9669999999999996,8.66,9.4359999999999999,10.31 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,67.400000000000006,-0.35210000000000002,7.9903000000000004,0.082140000000000005,6.3090000000000002,6.8109999999999999,7.3689999999999998,7.99,8.6850000000000005,9.4640000000000004,10.34 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,67.5,-0.35210000000000002,8.0131999999999994,0.082140000000000005,6.327,6.83,7.39,8.0129999999999999,8.7100000000000009,9.4909999999999997,10.369 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,67.599999999999994,-0.35210000000000002,8.0359999999999996,0.082150000000000001,6.3449999999999998,6.85,7.4109999999999996,8.0359999999999996,8.7349999999999994,9.5180000000000007,10.398999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,67.7,-0.35210000000000002,8.0587999999999997,0.082150000000000001,6.3630000000000004,6.8689999999999998,7.4320000000000004,8.0589999999999993,8.7590000000000003,9.5449999999999999,10.429 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,67.8,-0.35210000000000002,8.0815999999999999,0.082159999999999997,6.38,6.8879999999999999,7.4530000000000003,8.0820000000000007,8.7840000000000007,9.5719999999999992,10.459 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,67.900000000000006,-0.35210000000000002,8.1044,0.082170000000000007,6.3979999999999997,6.9080000000000004,7.4740000000000002,8.1039999999999992,8.8089999999999993,9.5990000000000002,10.488 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,68,-0.35210000000000002,8.1272000000000002,0.082170000000000007,6.4160000000000004,6.9269999999999996,7.4950000000000001,8.1270000000000007,8.8339999999999996,9.6259999999999994,10.518000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,68.099999999999994,-0.35210000000000002,8.15,0.082180000000000003,6.4340000000000002,6.9459999999999997,7.516,8.15,8.859,9.6539999999999999,10.548 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,68.2,-0.35210000000000002,8.1727000000000007,0.082189999999999999,6.452,6.9660000000000002,7.5369999999999999,8.173,8.8840000000000003,9.6809999999999992,10.577999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,68.3,-0.35210000000000002,8.1954999999999991,0.082189999999999999,6.47,6.9850000000000003,7.5579999999999998,8.1959999999999997,8.9079999999999995,9.7080000000000002,10.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,68.400000000000006,-0.35210000000000002,8.2182999999999993,0.082199999999999995,6.4880000000000004,7.0039999999999996,7.5789999999999997,8.218,8.9329999999999998,9.7349999999999994,10.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,68.5,-0.35210000000000002,8.2409999999999997,0.082210000000000005,6.5049999999999999,7.024,7.5990000000000002,8.2409999999999997,8.9580000000000002,9.7620000000000005,10.667 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,68.599999999999994,-0.35210000000000002,8.2637999999999998,0.082220000000000001,6.5229999999999997,7.0430000000000001,7.62,8.2639999999999993,8.9830000000000005,9.7889999999999997,10.696999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,68.7,-0.35210000000000002,8.2865000000000002,0.082229999999999998,6.5410000000000004,7.0620000000000003,7.641,8.2859999999999996,9.0079999999999991,9.8160000000000007,10.726000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,68.8,-0.35210000000000002,8.3092000000000006,0.082239999999999994,6.5590000000000002,7.0810000000000004,7.6619999999999999,8.3089999999999993,9.032,9.843,10.756 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,68.900000000000006,-0.35210000000000002,8.3320000000000007,0.082250000000000004,6.5759999999999996,7.101,7.6829999999999998,8.3320000000000007,9.0570000000000004,9.8710000000000004,10.786 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,69,-0.35210000000000002,8.3546999999999993,0.08226,6.5940000000000003,7.12,7.7039999999999997,8.3550000000000004,9.0820000000000007,9.8979999999999997,10.816000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,69.099999999999994,-0.35210000000000002,8.3773999999999997,0.082269999999999996,6.6120000000000001,7.1390000000000002,7.7249999999999996,8.3770000000000007,9.1069999999999993,9.9250000000000007,10.845000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,69.2,-0.35210000000000002,8.4001000000000001,0.082280000000000006,6.63,7.1580000000000004,7.7460000000000004,8.4,9.1319999999999997,9.952,10.875 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,69.3,-0.35210000000000002,8.4227000000000007,0.082290000000000002,6.6470000000000002,7.1769999999999996,7.766,8.423,9.1560000000000006,9.9789999999999992,10.904999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,69.400000000000006,-0.35210000000000002,8.4453999999999994,0.082299999999999998,6.665,7.1970000000000001,7.7869999999999999,8.4450000000000003,9.1809999999999992,10.006,10.933999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,69.5,-0.35210000000000002,8.468,0.082309999999999994,6.6829999999999998,7.2160000000000002,7.8079999999999998,8.468,9.2059999999999995,10.032999999999999,10.964 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,69.599999999999994,-0.35210000000000002,8.4906000000000006,0.082320000000000004,6.7,7.2350000000000003,7.8289999999999997,8.4909999999999997,9.23,10.06,10.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,69.7,-0.35210000000000002,8.5131999999999994,0.08233,6.718,7.2539999999999996,7.85,8.5129999999999999,9.2550000000000008,10.087,11.023 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,69.8,-0.35210000000000002,8.5358000000000001,0.082350000000000007,6.7350000000000003,7.2729999999999997,7.87,8.5359999999999996,9.2799999999999994,10.114000000000001,11.053000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,69.900000000000006,-0.35210000000000002,8.5582999999999991,0.082360000000000003,6.7530000000000001,7.2919999999999998,7.891,8.5579999999999998,9.3040000000000003,10.141,11.083 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,70,-0.35210000000000002,8.5808,0.082369999999999999,6.7709999999999999,7.3109999999999999,7.9119999999999999,8.5809999999999995,9.3290000000000006,10.167999999999999,11.112 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,70.099999999999994,-0.35210000000000002,8.6031999999999993,0.082379999999999995,6.7880000000000003,7.33,7.9320000000000004,8.6029999999999998,9.3529999999999998,10.195,11.141999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,70.2,-0.35210000000000002,8.6257000000000001,0.082400000000000001,6.8049999999999997,7.3490000000000002,7.9530000000000003,8.6259999999999994,9.3780000000000001,10.222,11.172000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,70.3,-0.35210000000000002,8.6479999999999997,0.082409999999999997,6.8230000000000004,7.3680000000000003,7.9729999999999999,8.6479999999999997,9.4019999999999992,10.247999999999999,11.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,70.400000000000006,-0.35210000000000002,8.6704000000000008,0.082419999999999993,6.84,7.3869999999999996,7.9939999999999998,8.67,9.4269999999999996,10.275,11.23 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,70.5,-0.35210000000000002,8.6927000000000003,0.082430000000000003,6.8579999999999997,7.4059999999999997,8.0139999999999993,8.6929999999999996,9.4510000000000005,10.302,11.259 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,70.599999999999994,-0.35210000000000002,8.7149999999999999,0.082449999999999996,6.875,7.4240000000000004,8.0350000000000001,8.7149999999999999,9.4760000000000009,10.329000000000001,11.289 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,70.7,-0.35210000000000002,8.7371999999999996,0.082460000000000006,6.8920000000000003,7.4429999999999996,8.0549999999999997,8.7370000000000001,9.5,10.355,11.318 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,70.8,-0.35210000000000002,8.7593999999999994,0.082479999999999998,6.9089999999999998,7.4619999999999997,8.0749999999999993,8.7590000000000003,9.5239999999999991,10.382,11.348000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,70.900000000000006,-0.35210000000000002,8.7814999999999994,0.082489999999999994,6.9269999999999996,7.48,8.0960000000000001,8.782,9.548,10.407999999999999,11.377000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,71,-0.35210000000000002,8.8035999999999994,0.082500000000000004,6.944,7.4989999999999997,8.1159999999999997,8.8040000000000003,9.5719999999999992,10.435,11.406000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,71.099999999999994,-0.35210000000000002,8.8256999999999994,0.082519999999999996,6.9610000000000003,7.5179999999999998,8.1359999999999992,8.8260000000000005,9.5969999999999995,10.461,11.435 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,71.2,-0.35210000000000002,8.8476999999999997,0.082530000000000006,6.9779999999999998,7.5359999999999996,8.1560000000000006,8.8480000000000008,9.6210000000000004,10.488,11.464 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,71.3,-0.35210000000000002,8.8696999999999999,0.082540000000000002,6.9950000000000001,7.5549999999999997,8.1769999999999996,8.8699999999999992,9.6449999999999996,10.513999999999999,11.493 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,71.400000000000006,-0.35210000000000002,8.8916000000000004,0.082559999999999995,7.0119999999999996,7.5730000000000004,8.1969999999999992,8.8919999999999995,9.6690000000000005,10.54,11.522 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,71.5,-0.35210000000000002,8.9135000000000009,0.082570000000000005,7.0289999999999999,7.5919999999999996,8.2170000000000005,8.9139999999999997,9.6929999999999996,10.567,11.551 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,71.599999999999994,-0.35210000000000002,8.9352999999999998,0.082589999999999997,7.0460000000000003,7.61,8.2370000000000001,8.9350000000000005,9.7159999999999993,10.593,11.58 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,71.7,-0.35210000000000002,8.9571000000000005,0.082600000000000007,7.0629999999999997,7.6280000000000001,8.2569999999999997,8.9570000000000007,9.74,10.619,11.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,71.8,-0.35210000000000002,8.9787999999999997,0.082619999999999999,7.08,7.6470000000000002,8.2769999999999992,8.9789999999999992,9.7639999999999993,10.645,11.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,71.900000000000006,-0.35210000000000002,9.0005000000000006,0.082629999999999995,7.0970000000000004,7.665,8.2959999999999994,9,9.7880000000000003,10.670999999999999,11.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,72,-0.35210000000000002,9.0221,0.082640000000000005,7.1130000000000004,7.6829999999999998,8.3160000000000007,9.0220000000000002,9.8109999999999999,10.696999999999999,11.694000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,72.099999999999994,-0.35210000000000002,9.0435999999999996,0.082659999999999997,7.13,7.7009999999999996,8.3360000000000003,9.0440000000000005,9.8350000000000009,10.723000000000001,11.723000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,72.2,-0.35210000000000002,9.0650999999999993,0.082669999999999993,7.1470000000000002,7.7190000000000003,8.3559999999999999,9.0649999999999995,9.8580000000000005,10.749000000000001,11.750999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,72.3,-0.35210000000000002,9.0864999999999991,0.08269,7.1630000000000003,7.7370000000000001,8.375,9.0860000000000003,9.8819999999999997,10.773999999999999,11.78 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,72.400000000000006,-0.35210000000000002,9.1079000000000008,0.082699999999999996,7.18,7.7549999999999999,8.3949999999999996,9.1080000000000005,9.9049999999999994,10.8,11.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,72.5,-0.35210000000000002,9.1292000000000009,0.082720000000000002,7.1959999999999997,7.7729999999999997,8.4139999999999997,9.1289999999999996,9.9290000000000003,10.826000000000001,11.836 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,72.599999999999994,-0.35210000000000002,9.1503999999999994,0.082729999999999998,7.2130000000000001,7.7910000000000004,8.4339999999999993,9.15,9.952,10.851000000000001,11.864000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,72.7,-0.35210000000000002,9.1715999999999998,0.082739999999999994,7.2290000000000001,7.8090000000000002,8.4529999999999994,9.1720000000000006,9.9749999999999996,10.877000000000001,11.891999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,72.8,-0.35210000000000002,9.1927000000000003,0.08276,7.2460000000000004,7.827,8.4730000000000008,9.1929999999999996,9.9979999999999993,10.901999999999999,11.92 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,72.900000000000006,-0.35210000000000002,9.2136999999999993,0.082769999999999996,7.2619999999999996,7.8440000000000003,8.4920000000000009,9.2140000000000004,10.021000000000001,10.927,11.948 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,73,-0.35210000000000002,9.2347000000000001,0.082780000000000006,7.2779999999999996,7.8620000000000001,8.5109999999999992,9.2349999999999994,10.044,10.952,11.975 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,73.099999999999994,-0.35210000000000002,9.2556999999999992,0.082799999999999999,7.2939999999999996,7.88,8.5299999999999994,9.2560000000000002,10.067,10.978,12.003 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,73.2,-0.35210000000000002,9.2766000000000002,0.082809999999999995,7.3109999999999999,7.8970000000000002,8.5489999999999995,9.2769999999999992,10.09,11.003,12.031000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,73.3,-0.35210000000000002,9.2973999999999997,0.082830000000000001,7.327,7.915,8.5679999999999996,9.2970000000000006,10.113,11.028,12.058999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,73.400000000000006,-0.35210000000000002,9.3181999999999992,0.082839999999999997,7.343,7.9320000000000004,8.5879999999999992,9.3179999999999996,10.135,11.053000000000001,12.086 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,73.5,-0.35210000000000002,9.3390000000000004,0.082849999999999993,7.359,7.95,8.6069999999999993,9.3390000000000004,10.157999999999999,11.077999999999999,12.113 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,73.599999999999994,-0.35210000000000002,9.3597000000000001,0.082869999999999999,7.375,7.9669999999999996,8.6259999999999994,9.36,10.180999999999999,11.103,12.141 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,73.7,-0.35210000000000002,9.3803000000000001,0.082879999999999995,7.391,7.9850000000000003,8.6440000000000001,9.3800000000000008,10.202999999999999,11.127000000000001,12.167999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,73.8,-0.35210000000000002,9.4009999999999998,0.082890000000000005,7.407,8.0020000000000007,8.6630000000000003,9.4009999999999998,10.226000000000001,11.151999999999999,12.195 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,73.900000000000006,-0.35210000000000002,9.4215,0.082900000000000001,7.423,8.0190000000000001,8.6820000000000004,9.4220000000000006,10.247999999999999,11.177,12.222 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,74,-0.35210000000000002,9.4420000000000002,0.082919999999999994,7.4390000000000001,8.0359999999999996,8.7010000000000005,9.4420000000000002,10.271000000000001,11.201000000000001,12.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,74.099999999999994,-0.35210000000000002,9.4625000000000004,0.082930000000000004,7.4550000000000001,8.0540000000000003,8.7200000000000006,9.4619999999999997,10.292999999999999,11.226000000000001,12.276999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,74.2,-0.35210000000000002,9.4829000000000008,0.08294,7.4710000000000001,8.0709999999999997,8.7379999999999995,9.4830000000000005,10.316000000000001,11.25,12.304 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,74.3,-0.35210000000000002,9.5031999999999996,0.082949999999999996,7.4859999999999998,8.0879999999999992,8.7569999999999997,9.5030000000000001,10.337999999999999,11.275,12.33 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,74.400000000000006,-0.35210000000000002,9.5235000000000003,0.082970000000000002,7.5019999999999998,8.1050000000000004,8.7759999999999998,9.5239999999999991,10.36,11.298999999999999,12.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,74.5,-0.35210000000000002,9.5437999999999992,0.082979999999999998,7.5179999999999998,8.1219999999999999,8.7940000000000005,9.5440000000000005,10.382,11.324,12.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,74.599999999999994,-0.35210000000000002,9.5639000000000003,0.082989999999999994,7.5330000000000004,8.1389999999999993,8.8130000000000006,9.5640000000000001,10.404,11.348000000000001,12.411 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,74.7,-0.35210000000000002,9.5840999999999994,0.083000000000000004,7.5490000000000004,8.1560000000000006,8.8309999999999995,9.5839999999999996,10.426,11.372,12.436999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,74.8,-0.35210000000000002,9.6041000000000007,0.08301,7.5650000000000004,8.173,8.85,9.6039999999999992,10.448,11.396000000000001,12.464 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,74.900000000000006,-0.35210000000000002,9.6241000000000003,0.083019999999999997,7.58,8.19,8.8680000000000003,9.6240000000000006,10.47,11.42,12.49 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,75,-0.35210000000000002,9.6440000000000001,0.083030000000000007,7.5960000000000001,8.2070000000000007,8.8859999999999992,9.6440000000000001,10.492000000000001,11.444000000000001,12.516 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,75.099999999999994,-0.35210000000000002,9.6638999999999999,0.083049999999999999,7.6109999999999998,8.2230000000000008,8.9039999999999999,9.6639999999999997,10.513999999999999,11.468,12.542999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,75.2,-0.35210000000000002,9.6836000000000002,0.083059999999999995,7.6260000000000003,8.24,8.9220000000000006,9.6839999999999993,10.535,11.492000000000001,12.569000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,75.3,-0.35210000000000002,9.7033000000000005,0.083070000000000005,7.641,8.2569999999999997,8.94,9.7029999999999994,10.557,11.515000000000001,12.595000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,75.400000000000006,-0.35210000000000002,9.7230000000000008,0.083070000000000005,7.657,8.2729999999999997,8.9589999999999996,9.7230000000000008,10.577999999999999,11.539,12.621 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,75.5,-0.35210000000000002,9.7424999999999997,0.083080000000000001,7.6719999999999997,8.2899999999999991,8.9760000000000009,9.7420000000000009,10.6,11.561999999999999,12.646000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,75.599999999999994,-0.35210000000000002,9.7620000000000005,0.083089999999999997,7.6870000000000003,8.3059999999999992,8.9939999999999998,9.7620000000000005,10.621,11.585000000000001,12.672000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,75.7,-0.35210000000000002,9.7813999999999997,0.083099999999999993,7.702,8.3230000000000004,9.0120000000000005,9.7810000000000006,10.641999999999999,11.609,12.698 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,75.8,-0.35210000000000002,9.8007000000000009,0.083110000000000003,7.7169999999999996,8.3390000000000004,9.0299999999999994,9.8010000000000002,10.663,11.632,12.723000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,75.900000000000006,-0.35210000000000002,9.82,0.083119999999999999,7.7320000000000002,8.3550000000000004,9.048,9.82,10.683999999999999,11.654999999999999,12.749000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,76,-0.35210000000000002,9.8391999999999999,0.083119999999999999,7.7469999999999999,8.3710000000000004,9.0649999999999995,9.8390000000000004,10.705,11.678000000000001,12.773 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,76.099999999999994,-0.35210000000000002,9.8582999999999998,0.083129999999999996,7.7619999999999996,8.3870000000000005,9.0830000000000002,9.8580000000000005,10.726000000000001,11.701000000000001,12.798999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,76.2,-0.35210000000000002,9.8773,0.083140000000000006,7.7770000000000001,8.4030000000000005,9.1,9.8770000000000007,10.747,11.723000000000001,12.824 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,76.3,-0.35210000000000002,9.8963000000000001,0.083140000000000006,7.7919999999999998,8.42,9.1180000000000003,9.8960000000000008,10.768000000000001,11.746,12.848000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,76.400000000000006,-0.35210000000000002,9.9152000000000005,0.083150000000000002,7.8070000000000004,8.4359999999999999,9.1349999999999998,9.9149999999999991,10.788,11.769,12.872999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,76.5,-0.35210000000000002,9.9341000000000008,0.083150000000000002,7.8209999999999997,8.452,9.1519999999999992,9.9339999999999993,10.808999999999999,11.791,12.898 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,76.599999999999994,-0.35210000000000002,9.9527999999999999,0.083159999999999998,7.8360000000000003,8.4670000000000005,9.17,9.9529999999999994,10.829000000000001,11.813000000000001,12.923 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,76.7,-0.35210000000000002,9.9716000000000005,0.083159999999999998,7.851,8.4830000000000005,9.1869999999999994,9.9719999999999995,10.85,11.836,12.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,76.8,-0.35210000000000002,9.9901999999999997,0.083169999999999994,7.8650000000000002,8.4990000000000006,9.2040000000000006,9.99,10.87,11.858000000000001,12.972 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,76.900000000000006,-0.35210000000000002,10.008800000000001,0.083169999999999994,7.88,8.5150000000000006,9.2210000000000001,10.009,10.89,11.88,12.996 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,77,-0.35210000000000002,10.0274,0.083169999999999994,7.8949999999999996,8.5310000000000006,9.2379999999999995,10.026999999999999,10.911,11.901999999999999,13.02 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,77.099999999999994,-0.35210000000000002,10.0459,0.083180000000000004,7.9089999999999998,8.5459999999999994,9.2550000000000008,10.045999999999999,10.930999999999999,11.925000000000001,13.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,77.2,-0.35210000000000002,10.064299999999999,0.083180000000000004,7.923,8.5619999999999994,9.2720000000000002,10.064,10.951000000000001,11.946,13.068 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,77.3,-0.35210000000000002,10.082700000000001,0.083180000000000004,7.9379999999999997,8.5779999999999994,9.2889999999999997,10.083,10.971,11.968,13.092000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,77.400000000000006,-0.35210000000000002,10.101100000000001,0.083180000000000004,7.952,8.593,9.3059999999999992,10.101000000000001,10.991,11.99,13.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,77.5,-0.35210000000000002,10.119400000000001,0.083180000000000004,7.9669999999999996,8.609,9.3230000000000004,10.119,11.010999999999999,12.012,13.14 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,77.599999999999994,-0.35210000000000002,10.137700000000001,0.083180000000000004,7.9809999999999999,8.6240000000000006,9.34,10.138,11.031000000000001,12.032999999999999,13.164 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,77.7,-0.35210000000000002,10.155900000000001,0.083180000000000004,7.9950000000000001,8.64,9.3559999999999999,10.156000000000001,11.051,12.055,13.186999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,77.8,-0.35210000000000002,10.174099999999999,0.083180000000000004,8.01,8.6549999999999994,9.3729999999999993,10.173999999999999,11.07,12.077,13.211 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,77.900000000000006,-0.35210000000000002,10.192299999999999,0.083169999999999994,8.0239999999999991,8.6709999999999994,9.39,10.192,11.09,12.098000000000001,13.234 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,78,-0.35210000000000002,10.2105,0.083169999999999994,8.0389999999999997,8.6859999999999999,9.407,10.210000000000001,11.11,12.12,13.257999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,78.099999999999994,-0.35210000000000002,10.2286,0.083169999999999994,8.0530000000000008,8.702,9.4239999999999995,10.228999999999999,11.13,12.141,13.281000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,78.2,-0.35210000000000002,10.2468,0.083159999999999998,8.0670000000000002,8.718,9.44,10.247,11.148999999999999,12.162000000000001,13.304 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,78.3,-0.35210000000000002,10.264900000000001,0.083159999999999998,8.0820000000000007,8.7330000000000005,9.4570000000000007,10.265000000000001,11.169,12.183999999999999,13.327999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,78.400000000000006,-0.35210000000000002,10.283099999999999,0.083150000000000002,8.0960000000000001,8.7490000000000006,9.4740000000000002,10.282999999999999,11.189,12.205,13.351000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,78.5,-0.35210000000000002,10.3012,0.083150000000000002,8.1110000000000007,8.7639999999999993,9.4909999999999997,10.301,11.208,12.227,13.375 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,78.599999999999994,-0.35210000000000002,10.3194,0.083140000000000006,8.125,8.7799999999999994,9.5069999999999997,10.319000000000001,11.228,12.247999999999999,13.398 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,78.7,-0.35210000000000002,10.3376,0.083129999999999996,8.14,8.7949999999999999,9.5239999999999991,10.337999999999999,11.247999999999999,12.269,13.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,78.8,-0.35210000000000002,10.3558,0.083129999999999996,8.1539999999999999,8.8109999999999999,9.5410000000000004,10.356,11.266999999999999,12.291,13.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,78.900000000000006,-0.35210000000000002,10.3741,0.083119999999999999,8.1690000000000005,8.8260000000000005,9.5579999999999998,10.374000000000001,11.287000000000001,12.313000000000001,13.468 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,79,-0.35210000000000002,10.392300000000001,0.083110000000000003,8.1829999999999998,8.8420000000000005,9.5749999999999993,10.391999999999999,11.307,12.334,13.491 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,79.099999999999994,-0.35210000000000002,10.4107,0.083099999999999993,8.1980000000000004,8.8580000000000005,9.5920000000000005,10.411,11.327,12.355,13.513999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,79.2,-0.35210000000000002,10.4291,0.083089999999999997,8.2129999999999992,8.8740000000000006,9.609,10.429,11.347,12.377000000000001,13.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,79.3,-0.35210000000000002,10.4475,0.083080000000000001,8.2270000000000003,8.89,9.6259999999999994,10.448,11.367000000000001,12.398999999999999,13.561 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,79.400000000000006,-0.35210000000000002,10.465999999999999,0.083070000000000005,8.2420000000000009,8.9060000000000006,9.6430000000000007,10.465999999999999,11.387,12.42,13.585000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,79.5,-0.35210000000000002,10.484500000000001,0.083049999999999999,8.2569999999999997,8.9220000000000006,9.66,10.484,11.407,12.442,13.608000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,79.599999999999994,-0.35210000000000002,10.5031,0.083040000000000003,8.2720000000000002,8.9380000000000006,9.6780000000000008,10.503,11.427,12.464,13.632 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,79.7,-0.35210000000000002,10.521699999999999,0.083030000000000007,8.2870000000000008,8.9540000000000006,9.6950000000000003,10.522,11.446999999999999,12.484999999999999,13.654999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,79.8,-0.35210000000000002,10.5405,0.08301,8.3019999999999996,8.9700000000000006,9.7119999999999997,10.54,11.467000000000001,12.507,13.679 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,79.900000000000006,-0.35210000000000002,10.559200000000001,0.083000000000000004,8.3170000000000002,8.9860000000000007,9.73,10.558999999999999,11.487,12.529,13.702999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,80,-0.35210000000000002,10.578099999999999,0.082979999999999998,8.3320000000000007,9.0020000000000007,9.7469999999999999,10.577999999999999,11.507999999999999,12.551,13.726000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,80.099999999999994,-0.35210000000000002,10.597,0.082970000000000002,8.3480000000000008,9.0190000000000001,9.7650000000000006,10.597,11.528,12.573,13.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,80.2,-0.35210000000000002,10.616099999999999,0.082949999999999996,8.3629999999999995,9.0350000000000001,9.7829999999999995,10.616,11.548999999999999,12.595000000000001,13.773999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,80.3,-0.35210000000000002,10.635199999999999,0.082930000000000004,8.3789999999999996,9.0519999999999996,9.8000000000000007,10.635,11.569000000000001,12.617000000000001,13.798 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,80.400000000000006,-0.35210000000000002,10.654400000000001,0.082909999999999998,8.3940000000000001,9.0690000000000008,9.8179999999999996,10.654,11.59,12.64,13.821999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,80.5,-0.35210000000000002,10.6737,0.082900000000000001,8.41,9.0850000000000009,9.8360000000000003,10.673999999999999,11.611000000000001,12.662000000000001,13.847 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,80.599999999999994,-0.35210000000000002,10.693099999999999,0.082879999999999995,8.4250000000000007,9.1020000000000003,9.8539999999999992,10.693,11.631,12.685,13.871 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,80.7,-0.35210000000000002,10.7126,0.082860000000000003,8.4410000000000007,9.1189999999999998,9.8719999999999999,10.712999999999999,11.651999999999999,12.707000000000001,13.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,80.8,-0.35210000000000002,10.732200000000001,0.082839999999999997,8.4570000000000007,9.1359999999999992,9.891,10.731999999999999,11.673,12.73,13.92 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,80.900000000000006,-0.35210000000000002,10.752000000000001,0.082820000000000005,8.4730000000000008,9.1530000000000005,9.9090000000000007,10.752000000000001,11.695,12.753,13.945 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,81,-0.35210000000000002,10.771800000000001,0.082790000000000002,8.4890000000000008,9.1709999999999994,9.9280000000000008,10.772,11.715999999999999,12.776,13.968999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,81.099999999999994,-0.35210000000000002,10.7918,0.082769999999999996,8.5060000000000002,9.1880000000000006,9.9459999999999997,10.792,11.737,12.798999999999999,13.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,81.2,-0.35210000000000002,10.8119,0.082750000000000004,8.5220000000000002,9.2050000000000001,9.9649999999999999,10.811999999999999,11.759,12.821999999999999,14.019 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,81.3,-0.35210000000000002,10.832100000000001,0.082729999999999998,8.5380000000000003,9.2230000000000008,9.984,10.832000000000001,11.781000000000001,12.845000000000001,14.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,81.400000000000006,-0.35210000000000002,10.852399999999999,0.082699999999999996,8.5549999999999997,9.2409999999999997,10.003,10.852,11.803000000000001,12.869,14.069000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,81.5,-0.35210000000000002,10.8728,0.082680000000000003,8.5719999999999992,9.2579999999999991,10.022,10.872999999999999,11.824,12.891999999999999,14.095000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,81.599999999999994,-0.35210000000000002,10.8934,0.082650000000000001,8.5890000000000004,9.2769999999999992,10.041,10.893000000000001,11.847,12.916,14.12 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,81.7,-0.35210000000000002,10.914199999999999,0.082629999999999995,8.6059999999999999,9.2949999999999999,10.06,10.914,11.869,12.94,14.146000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,81.8,-0.35210000000000002,10.935,0.082600000000000007,8.6229999999999993,9.3130000000000006,10.08,10.935,11.891,12.964,14.172000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,81.900000000000006,-0.35210000000000002,10.956,0.082580000000000001,8.64,9.3309999999999995,10.099,10.956,11.914,12.988,14.198 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,82,-0.35210000000000002,10.9772,0.082549999999999998,8.657,9.35,10.119,10.977,11.936,13.013,14.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,82.1,-0.35210000000000002,10.9985,0.082519999999999996,8.6750000000000007,9.3680000000000003,10.138999999999999,10.997999999999999,11.959,13.037000000000001,14.25 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,82.2,-0.35210000000000002,11.0199,0.082489999999999994,8.6920000000000002,9.3870000000000005,10.159000000000001,11.02,11.981999999999999,13.061,14.276999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,82.3,-0.35210000000000002,11.041499999999999,0.082460000000000006,8.7100000000000009,9.4060000000000006,10.179,11.042,12.005000000000001,13.086,14.303000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,82.4,-0.35210000000000002,11.0632,0.082439999999999999,8.7279999999999998,9.4250000000000007,10.199999999999999,11.063000000000001,12.029,13.111000000000001,14.33 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,82.5,-0.35210000000000002,11.085100000000001,0.082409999999999997,8.7460000000000004,9.4440000000000008,10.220000000000001,11.085000000000001,12.052,13.137,14.356999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,82.6,-0.35210000000000002,11.107100000000001,0.082379999999999995,8.7639999999999993,9.4629999999999992,10.241,11.106999999999999,12.076000000000001,13.162000000000001,14.384 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,82.7,-0.35210000000000002,11.129300000000001,0.082350000000000007,8.782,9.4830000000000005,10.262,11.129,12.099,13.186999999999999,14.412000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,82.8,-0.35210000000000002,11.1516,0.082309999999999994,8.8000000000000007,9.5030000000000001,10.282,11.151999999999999,12.122999999999999,13.212999999999999,14.439 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,82.9,-0.35210000000000002,11.173999999999999,0.082280000000000006,8.8190000000000008,9.5220000000000002,10.303000000000001,11.173999999999999,12.147,13.238,14.465999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,83,-0.35210000000000002,11.1966,0.082250000000000004,8.8369999999999997,9.5419999999999998,10.324999999999999,11.196999999999999,12.170999999999999,13.263999999999999,14.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,83.1,-0.35210000000000002,11.2193,0.082220000000000001,8.8559999999999999,9.5619999999999994,10.346,11.218999999999999,12.196,13.29,14.522 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,83.2,-0.35210000000000002,11.2422,0.082189999999999999,8.875,9.5820000000000007,10.367000000000001,11.242000000000001,12.22,13.316000000000001,14.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,83.3,-0.35210000000000002,11.2651,0.082150000000000001,8.8940000000000001,9.6020000000000003,10.388999999999999,11.265000000000001,12.244,13.342000000000001,14.577999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,83.4,-0.35210000000000002,11.2882,0.082119999999999999,8.9130000000000003,9.6219999999999999,10.41,11.288,12.269,13.369,14.606 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,83.5,-0.35210000000000002,11.311400000000001,0.082089999999999996,8.9320000000000004,9.6430000000000007,10.432,11.311,12.294,13.396000000000001,14.635 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,83.6,-0.35210000000000002,11.3347,0.082049999999999998,8.9510000000000005,9.6630000000000003,10.454000000000001,11.335000000000001,12.319000000000001,13.422000000000001,14.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,83.7,-0.35210000000000002,11.3581,0.082019999999999996,8.9710000000000001,9.6839999999999993,10.476000000000001,11.358000000000001,12.343999999999999,13.449,14.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,83.8,-0.35210000000000002,11.3817,0.081979999999999997,8.99,9.7050000000000001,10.497999999999999,11.382,12.369,13.476000000000001,14.721 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,83.9,-0.35210000000000002,11.4053,0.081949999999999995,9.01,9.7249999999999996,10.52,11.404999999999999,12.394,13.503,14.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,84,-0.35210000000000002,11.429,0.081909999999999997,9.0289999999999999,9.7460000000000004,10.542,11.429,12.42,13.53,14.778 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,84.1,-0.35210000000000002,11.4529,0.081879999999999994,9.0489999999999995,9.7669999999999995,10.565,11.452999999999999,12.445,13.557,14.808 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,84.2,-0.35210000000000002,11.476800000000001,0.081839999999999996,9.0690000000000008,9.7880000000000003,10.587,11.477,12.471,13.584,14.837 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,84.3,-0.35210000000000002,11.5007,0.081809999999999994,9.0879999999999992,9.8089999999999993,10.61,11.500999999999999,12.496,13.612,14.866 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,84.4,-0.35210000000000002,11.524800000000001,0.081769999999999995,9.109,9.8309999999999995,10.632,11.525,12.522,13.638999999999999,14.895 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,84.5,-0.35210000000000002,11.548999999999999,0.081739999999999993,9.1280000000000001,9.8520000000000003,10.654999999999999,11.548999999999999,12.548,13.667,14.925000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,84.6,-0.35210000000000002,11.5732,0.081699999999999995,9.1489999999999991,9.8729999999999993,10.678000000000001,11.573,12.573,13.694000000000001,14.955 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,84.7,-0.35210000000000002,11.5975,0.081659999999999996,9.1690000000000005,9.8949999999999996,10.7,11.598000000000001,12.599,13.722,14.984 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,84.8,-0.35210000000000002,11.6218,0.081629999999999994,9.1890000000000001,9.9160000000000004,10.723000000000001,11.622,12.625,13.75,15.013999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,84.9,-0.35210000000000002,11.6462,0.081589999999999996,9.2089999999999996,9.9380000000000006,10.746,11.646000000000001,12.651,13.776999999999999,15.042999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,85,-0.35210000000000002,11.6707,0.081559999999999994,9.2289999999999992,9.9589999999999996,10.769,11.670999999999999,12.678000000000001,13.805999999999999,15.074 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,85.1,-0.35210000000000002,11.6952,0.081519999999999995,9.25,9.9809999999999999,10.792,11.695,12.704000000000001,13.833,15.103 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,85.2,-0.35210000000000002,11.719799999999999,0.081479999999999997,9.27,10.002000000000001,10.815,11.72,12.73,13.861000000000001,15.132999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,85.3,-0.35210000000000002,11.744400000000001,0.081449999999999995,9.2899999999999991,10.023999999999999,10.837999999999999,11.744,12.756,13.89,15.163 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,85.4,-0.35210000000000002,11.769,0.081409999999999996,9.3109999999999999,10.045999999999999,10.861000000000001,11.769,12.782,13.917,15.193 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,85.5,-0.35210000000000002,11.793699999999999,0.081379999999999994,9.3309999999999995,10.067,10.884,11.794,12.808999999999999,13.946,15.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,85.6,-0.35210000000000002,11.8184,0.081339999999999996,9.3520000000000003,10.089,10.907999999999999,11.818,12.835000000000001,13.974,15.253 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,85.7,-0.35210000000000002,11.8431,0.081309999999999993,9.3719999999999999,10.111000000000001,10.930999999999999,11.843,12.862,14.002000000000001,15.284000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,85.8,-0.35210000000000002,11.867800000000001,0.081280000000000005,9.3919999999999995,10.132999999999999,10.954000000000001,11.868,12.888,14.03,15.314 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,85.9,-0.35210000000000002,11.8926,0.081240000000000007,9.4130000000000003,10.154,10.977,11.893000000000001,12.914,14.058999999999999,15.343999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,86,-0.35210000000000002,11.917299999999999,0.081210000000000004,9.4329999999999998,10.176,11,11.917,12.941000000000001,14.087,15.374000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,86.1,-0.35210000000000002,11.9421,0.081180000000000002,9.4540000000000006,10.198,11.023,11.942,12.967000000000001,14.115,15.404999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,86.2,-0.35210000000000002,11.966799999999999,0.081140000000000004,9.4740000000000002,10.220000000000001,11.047000000000001,11.967000000000001,12.994,14.143000000000001,15.435 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,86.3,-0.35210000000000002,11.9916,0.081110000000000002,9.4949999999999992,10.242000000000001,11.07,11.992000000000001,13.02,14.172000000000001,15.465 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,86.4,-0.35210000000000002,12.016299999999999,0.081079999999999999,9.5150000000000006,10.263,11.093,12.016,13.047000000000001,14.2,15.496 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,86.5,-0.35210000000000002,12.0411,0.081049999999999997,9.5359999999999996,10.285,11.116,12.041,13.073,14.228,15.526 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,86.6,-0.35210000000000002,12.065799999999999,0.081019999999999995,9.5559999999999992,10.307,11.138999999999999,12.066000000000001,13.099,14.257,15.555999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,86.7,-0.35210000000000002,12.0905,0.080990000000000006,9.5760000000000005,10.327999999999999,11.163,12.09,13.125999999999999,14.285,15.587 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,86.8,-0.35210000000000002,12.1152,0.080960000000000004,9.5969999999999995,10.35,11.186,12.115,13.151999999999999,14.313000000000001,15.617000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,86.9,-0.35210000000000002,12.139799999999999,0.080930000000000002,9.6170000000000009,10.372,11.209,12.14,13.179,14.340999999999999,15.647 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,87,-0.35210000000000002,12.1645,0.0809,9.6370000000000005,10.393000000000001,11.231999999999999,12.164,13.205,14.37,15.677 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,87.1,-0.35210000000000002,12.1891,0.080869999999999997,9.6579999999999995,10.414999999999999,11.255000000000001,12.189,13.231,14.398,15.708 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,87.2,-0.35210000000000002,12.2136,0.080839999999999995,9.6780000000000008,10.436,11.278,12.214,13.257,14.426,15.738 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,87.3,-0.35210000000000002,12.238200000000001,0.080820000000000003,9.6980000000000004,10.458,11.301,12.238,13.284000000000001,14.454000000000001,15.768000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,87.4,-0.35210000000000002,12.262700000000001,0.080790000000000001,9.718,10.478999999999999,11.324,12.263,13.31,14.481999999999999,15.798 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,87.5,-0.35210000000000002,12.287100000000001,0.080759999999999998,9.7379999999999995,10.500999999999999,11.347,12.287000000000001,13.336,14.51,15.827999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,87.6,-0.35210000000000002,12.3116,0.080740000000000006,9.7579999999999991,10.522,11.369,12.311999999999999,13.362,14.538,15.859 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,87.7,-0.35210000000000002,12.336,0.080710000000000004,9.7780000000000005,10.544,11.391999999999999,12.336,13.388999999999999,14.566000000000001,15.888999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,87.8,-0.35210000000000002,12.360300000000001,0.080689999999999998,9.798,10.565,11.414999999999999,12.36,13.414999999999999,14.593999999999999,15.919 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,87.9,-0.35210000000000002,12.384600000000001,0.080670000000000006,9.8179999999999996,10.586,11.438000000000001,12.385,13.441000000000001,14.622,15.949 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,88,-0.35210000000000002,12.408899999999999,0.080640000000000003,9.8379999999999992,10.606999999999999,11.46,12.409000000000001,13.467000000000001,14.65,15.978999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,88.1,-0.35210000000000002,12.433199999999999,0.080619999999999997,9.8580000000000005,10.629,11.483000000000001,12.433,13.493,14.678000000000001,16.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,88.2,-0.35210000000000002,12.4574,0.080600000000000005,9.8770000000000007,10.65,11.506,12.457000000000001,13.519,14.706,16.039000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,88.3,-0.35210000000000002,12.4815,0.080579999999999999,9.8970000000000002,10.670999999999999,11.528,12.481999999999999,13.545,14.734,16.068999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,88.4,-0.35210000000000002,12.505699999999999,0.080560000000000007,9.9169999999999998,10.692,11.551,12.506,13.571,14.762,16.099 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,88.5,-0.35210000000000002,12.5298,0.08054,9.9369999999999994,10.712999999999999,11.573,12.53,13.597,14.79,16.129000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,88.6,-0.35210000000000002,12.553800000000001,0.080519999999999994,9.9559999999999995,10.734,11.596,12.554,13.622,14.818,16.158999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,88.7,-0.35210000000000002,12.5778,0.080500000000000002,9.9760000000000009,10.755000000000001,11.618,12.577999999999999,13.648,14.845000000000001,16.189 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,88.8,-0.35210000000000002,12.601699999999999,0.080479999999999996,9.9949999999999992,10.775,11.64,12.602,13.673999999999999,14.872999999999999,16.219000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,88.9,-0.35210000000000002,12.6257,0.08047,10.015000000000001,10.795999999999999,11.663,12.625999999999999,13.7,14.901,16.248999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,89,-0.35210000000000002,12.6495,0.080449999999999994,10.034000000000001,10.817,11.685,12.65,13.725,14.928000000000001,16.277999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,89.1,-0.35210000000000002,12.673400000000001,0.080439999999999998,10.053000000000001,10.837999999999999,11.707000000000001,12.673,13.750999999999999,14.956,16.309000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,89.2,-0.35210000000000002,12.6972,0.080420000000000005,10.073,10.858000000000001,11.728999999999999,12.696999999999999,13.776,14.984,16.338000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,89.3,-0.35210000000000002,12.7209,0.080409999999999995,10.092000000000001,10.879,11.750999999999999,12.721,13.802,15.010999999999999,16.367999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,89.4,-0.35210000000000002,12.7446,0.080390000000000003,10.111000000000001,10.898999999999999,11.773,12.744999999999999,13.827,15.039,16.398 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,89.5,-0.35210000000000002,12.7683,0.080379999999999993,10.130000000000001,10.92,11.795,12.768000000000001,13.853,15.066000000000001,16.428000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,89.6,-0.35210000000000002,12.792,0.080369999999999997,10.148999999999999,10.94,11.817,12.792,13.879,15.093999999999999,16.457999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,89.7,-0.35210000000000002,12.8156,0.080350000000000005,10.169,10.961,11.839,12.816000000000001,13.904,15.121,16.486999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,89.8,-0.35210000000000002,12.8392,0.080339999999999995,10.188000000000001,10.981,11.861000000000001,12.839,13.929,15.148999999999999,16.516999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,89.9,-0.35210000000000002,12.8628,0.080329999999999999,10.207000000000001,11.002000000000001,11.882999999999999,12.863,13.955,15.176,16.545999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,90,-0.35210000000000002,12.8864,0.080320000000000003,10.226000000000001,11.022,11.904999999999999,12.885999999999999,13.98,15.204000000000001,16.576000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,90.1,-0.35210000000000002,12.9099,0.080310000000000006,10.244,11.042999999999999,11.927,12.91,14.006,15.231,16.606000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,90.2,-0.35210000000000002,12.933400000000001,0.080299999999999996,10.263,11.063000000000001,11.949,12.933,14.031000000000001,15.257999999999999,16.635999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,90.3,-0.35210000000000002,12.956899999999999,0.080299999999999996,10.282,11.083,11.97,12.957000000000001,14.057,15.286,16.666 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,90.4,-0.35210000000000002,12.980399999999999,0.08029,10.301,11.103,11.992000000000001,12.98,14.082000000000001,15.314,16.696000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,90.5,-0.35210000000000002,13.0038,0.080280000000000004,10.32,11.122999999999999,12.013999999999999,13.004,14.106999999999999,15.340999999999999,16.725000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,90.6,-0.35210000000000002,13.0273,0.080269999999999994,10.339,11.144,12.036,13.026999999999999,14.132,15.368,16.754999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,90.7,-0.35210000000000002,13.050700000000001,0.080269999999999994,10.356999999999999,11.164,12.057,13.051,14.157999999999999,15.396000000000001,16.785 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,90.8,-0.35210000000000002,13.074199999999999,0.080259999999999998,10.375999999999999,11.183999999999999,12.079000000000001,13.074,14.183,15.423,16.815000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,90.9,-0.35210000000000002,13.0976,0.080259999999999998,10.395,11.204000000000001,12.101000000000001,13.098000000000001,14.209,15.451000000000001,16.844999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,91,-0.35210000000000002,13.120900000000001,0.080250000000000002,10.414,11.224,12.122999999999999,13.121,14.234,15.478,16.873999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,91.1,-0.35210000000000002,13.144299999999999,0.080250000000000002,10.432,11.244,12.144,13.144,14.259,15.506,16.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,91.2,-0.35210000000000002,13.1677,0.080250000000000002,10.451000000000001,11.263999999999999,12.166,13.167999999999999,14.284000000000001,15.532999999999999,16.934000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,91.3,-0.35210000000000002,13.191000000000001,0.080250000000000002,10.468999999999999,11.284000000000001,12.186999999999999,13.191000000000001,14.31,15.561,16.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,91.4,-0.35210000000000002,13.2143,0.080250000000000002,10.488,11.304,12.209,13.214,14.335000000000001,15.587999999999999,16.994 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,91.5,-0.35210000000000002,13.2376,0.080240000000000006,10.507,11.324,12.231,13.238,14.36,15.615,17.024000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,91.6,-0.35210000000000002,13.260899999999999,0.080240000000000006,10.525,11.343999999999999,12.252000000000001,13.260999999999999,14.385,15.643000000000001,17.053999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,91.7,-0.35210000000000002,13.2842,0.080240000000000006,10.544,11.364000000000001,12.273999999999999,13.284000000000001,14.411,15.67,17.082999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,91.8,-0.35210000000000002,13.307499999999999,0.080250000000000002,10.561999999999999,11.384,12.295,13.308,14.436,15.698,17.114000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,91.9,-0.35210000000000002,13.3308,0.080250000000000002,10.58,11.404,12.317,13.331,14.461,15.726000000000001,17.143999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,92,-0.35210000000000002,13.354100000000001,0.080250000000000002,10.599,11.423999999999999,12.337999999999999,13.353999999999999,14.487,15.753,17.173999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,92.1,-0.35210000000000002,13.3773,0.080250000000000002,10.617000000000001,11.444000000000001,12.359,13.377000000000001,14.512,15.78,17.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,92.2,-0.35210000000000002,13.400600000000001,0.080259999999999998,10.635,11.462999999999999,12.381,13.401,14.537000000000001,15.808,17.234000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,92.3,-0.35210000000000002,13.4239,0.080259999999999998,10.654,11.483000000000001,12.401999999999999,13.423999999999999,14.563000000000001,15.836,17.263999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,92.4,-0.35210000000000002,13.4472,0.080269999999999994,10.672000000000001,11.503,12.423999999999999,13.446999999999999,14.587999999999999,15.864000000000001,17.295000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,92.5,-0.35210000000000002,13.470499999999999,0.080269999999999994,10.691000000000001,11.523,12.445,13.47,14.613,15.891,17.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,92.6,-0.35210000000000002,13.4937,0.080280000000000004,10.709,11.542999999999999,12.467000000000001,13.494,14.638999999999999,15.919,17.355 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,92.7,-0.35210000000000002,13.517099999999999,0.080280000000000004,10.727,11.563000000000001,12.488,13.516999999999999,14.664,15.946,17.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,92.8,-0.35210000000000002,13.5404,0.08029,10.744999999999999,11.582000000000001,12.51,13.54,14.689,15.974,17.416 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,92.9,-0.35210000000000002,13.563700000000001,0.080299999999999996,10.763999999999999,11.602,12.531000000000001,13.564,14.715,16.001999999999999,17.446000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,93,-0.35210000000000002,13.587,0.080310000000000006,10.782,11.622,12.552,13.587,14.74,16.03,17.477 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,93.1,-0.35210000000000002,13.6104,0.080320000000000003,10.8,11.641,12.574,13.61,14.766,16.058,17.507999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,93.2,-0.35210000000000002,13.633800000000001,0.080329999999999999,10.818,11.661,12.595000000000001,13.634,14.791,16.085999999999999,17.538 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,93.3,-0.35210000000000002,13.6572,0.080339999999999995,10.837,11.680999999999999,12.617000000000001,13.657,14.817,16.114000000000001,17.568999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,93.4,-0.35210000000000002,13.6806,0.080350000000000005,10.855,11.701000000000001,12.638,13.680999999999999,14.842000000000001,16.141999999999999,17.600000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,93.5,-0.35210000000000002,13.7041,0.080360000000000001,10.872999999999999,11.721,12.66,13.704000000000001,14.868,16.170000000000002,17.63 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,93.6,-0.35210000000000002,13.727499999999999,0.080369999999999997,10.891,11.741,12.682,13.728,14.894,16.198,17.661000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,93.7,-0.35210000000000002,13.750999999999999,0.080379999999999993,10.91,11.76,12.702999999999999,13.750999999999999,14.919,16.225999999999999,17.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,93.8,-0.35210000000000002,13.7746,0.080399999999999999,10.928000000000001,11.78,12.725,13.775,14.945,16.254000000000001,17.722999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,93.9,-0.35210000000000002,13.7981,0.080409999999999995,10.946,11.8,12.746,13.798,14.971,16.282,17.754000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,94,-0.35210000000000002,13.8217,0.080430000000000001,10.964,11.82,12.768000000000001,13.821999999999999,14.997,16.311,17.786000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,94.1,-0.35210000000000002,13.8454,0.080439999999999998,10.983000000000001,11.84,12.79,13.845000000000001,15.023,16.338999999999999,17.817 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,94.2,-0.35210000000000002,13.8691,0.080460000000000004,11.000999999999999,11.86,12.811,13.869,15.048999999999999,16.367999999999999,17.849 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,94.3,-0.35210000000000002,13.892799999999999,0.08047,11.02,11.88,12.833,13.893000000000001,15.074,16.396000000000001,17.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,94.4,-0.35210000000000002,13.916499999999999,0.080490000000000006,11.038,11.898999999999999,12.855,13.916,15.1,16.425000000000001,17.911000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,94.5,-0.35210000000000002,13.940300000000001,0.080509999999999998,11.055999999999999,11.919,12.875999999999999,13.94,15.127000000000001,16.454000000000001,17.943000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,94.6,-0.35210000000000002,13.9642,0.080519999999999994,11.074999999999999,11.94,12.898,13.964,15.153,16.481999999999999,17.974 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,94.7,-0.35210000000000002,13.988099999999999,0.08054,11.093,11.96,12.92,13.988,15.179,16.510999999999999,18.006 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,94.8,-0.35210000000000002,14.012,0.080560000000000007,11.111000000000001,11.98,12.942,14.012,15.205,16.54,18.038 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,94.9,-0.35210000000000002,14.036,0.080579999999999999,11.13,12,12.964,14.036,15.231999999999999,16.568999999999999,18.07 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,95,-0.35210000000000002,14.06,0.080600000000000005,11.148,12.02,12.986000000000001,14.06,15.257999999999999,16.597999999999999,18.103000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,95.1,-0.35210000000000002,14.084099999999999,0.080619999999999997,11.167,12.04,13.007999999999999,14.084,15.284000000000001,16.626999999999999,18.135000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,95.2,-0.35210000000000002,14.1083,0.080640000000000003,11.185,12.06,13.03,14.108000000000001,15.311,16.657,18.167000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,95.3,-0.35210000000000002,14.1325,0.080670000000000006,11.204000000000001,12.08,13.052,14.132,15.337999999999999,16.686,18.2 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,95.4,-0.35210000000000002,14.156700000000001,0.080689999999999998,11.222,12.1,13.074,14.157,15.364000000000001,16.715,18.231999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,95.5,-0.35210000000000002,14.181100000000001,0.080710000000000004,11.241,12.121,13.096,14.180999999999999,15.391,16.745000000000001,18.265000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,95.6,-0.35210000000000002,14.205500000000001,0.080729999999999996,11.26,12.141,13.119,14.206,15.417999999999999,16.774999999999999,18.297999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,95.7,-0.35210000000000002,14.229900000000001,0.080759999999999998,11.278,12.161,13.141,14.23,15.445,16.803999999999998,18.331 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,95.8,-0.35210000000000002,14.2544,0.080780000000000005,11.297000000000001,12.182,13.163,14.254,15.472,16.834,18.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,95.9,-0.35210000000000002,14.279,0.080810000000000007,11.315,12.202,13.185,14.279,15.499000000000001,16.864000000000001,18.396999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,96,-0.35210000000000002,14.303699999999999,0.080829999999999999,11.334,12.223000000000001,13.208,14.304,15.526,16.893999999999998,18.43 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,96.1,-0.35210000000000002,14.3284,0.080860000000000001,11.353,12.243,13.23,14.327999999999999,15.553000000000001,16.923999999999999,18.463999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,96.2,-0.35210000000000002,14.353300000000001,0.080890000000000004,11.372,12.263999999999999,13.253,14.353,15.581,16.954999999999998,18.498000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,96.3,-0.35210000000000002,14.3782,0.080920000000000006,11.39,12.284000000000001,13.276,14.378,15.608000000000001,16.984999999999999,18.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,96.4,-0.35210000000000002,14.4031,0.080939999999999998,11.41,12.305,13.298,14.403,15.635999999999999,17.015000000000001,18.565000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,96.5,-0.35210000000000002,14.4282,0.08097,11.428000000000001,12.326000000000001,13.321,14.428000000000001,15.663,17.045999999999999,18.599 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,96.6,-0.35210000000000002,14.4533,0.081000000000000003,11.446999999999999,12.347,13.343999999999999,14.452999999999999,15.691000000000001,17.077000000000002,18.632999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,96.7,-0.35210000000000002,14.4785,0.081030000000000005,11.465999999999999,12.367000000000001,13.367000000000001,14.478,15.718999999999999,17.108000000000001,18.667999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,96.8,-0.35210000000000002,14.5038,0.081059999999999993,11.484999999999999,12.388,13.39,14.504,15.747,17.138999999999999,18.702000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,96.9,-0.35210000000000002,14.529199999999999,0.081089999999999995,11.505000000000001,12.409000000000001,13.413,14.529,15.775,17.170000000000002,18.736999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,97,-0.35210000000000002,14.5547,0.081119999999999998,11.523999999999999,12.43,13.436,14.555,15.803000000000001,17.201000000000001,18.771000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,97.1,-0.35210000000000002,14.5802,0.081159999999999996,11.542999999999999,12.451000000000001,13.459,14.58,15.832000000000001,17.233000000000001,18.806999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,97.2,-0.35210000000000002,14.6058,0.081189999999999998,11.561999999999999,12.472,13.481999999999999,14.606,15.86,17.263999999999999,18.841999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,97.3,-0.35210000000000002,14.631600000000001,0.081220000000000001,11.582000000000001,12.494,13.506,14.632,15.888,17.295999999999999,18.876999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,97.4,-0.35210000000000002,14.657400000000001,0.081250000000000003,11.601000000000001,12.515000000000001,13.529,14.657,15.917,17.327000000000002,18.911999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,97.5,-0.35210000000000002,14.683199999999999,0.081290000000000001,11.62,12.536,13.552,14.683,15.946,17.359000000000002,18.948 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,97.6,-0.35210000000000002,14.709199999999999,0.081320000000000003,11.64,12.558,13.576000000000001,14.709,15.974,17.390999999999998,18.983000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,97.7,-0.35210000000000002,14.735300000000001,0.081360000000000002,11.659000000000001,12.579000000000001,13.599,14.734999999999999,16.003,17.422999999999998,19.018999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,97.8,-0.35210000000000002,14.7614,0.081390000000000004,11.679,12.6,13.622999999999999,14.760999999999999,16.032,17.454999999999998,19.055 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,97.9,-0.35210000000000002,14.787699999999999,0.081430000000000002,11.698,12.622,13.647,14.788,16.061,17.488,19.091000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,98,-0.35210000000000002,14.814,0.081460000000000005,11.718,12.644,13.670999999999999,14.814,16.09,17.52,19.126999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,98.1,-0.35210000000000002,14.840400000000001,0.081500000000000003,11.738,12.664999999999999,13.695,14.84,16.12,17.553000000000001,19.164000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,98.2,-0.35210000000000002,14.866899999999999,0.081540000000000001,11.757,12.686999999999999,13.718999999999999,14.867000000000001,16.149000000000001,17.585999999999999,19.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,98.3,-0.35210000000000002,14.8934,0.081570000000000004,11.776999999999999,12.709,13.743,14.893000000000001,16.178000000000001,17.617999999999999,19.236999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,98.4,-0.35210000000000002,14.9201,0.081610000000000002,11.797000000000001,12.731,13.766999999999999,14.92,16.207999999999998,17.651,19.274000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,98.5,-0.35210000000000002,14.9468,0.08165,11.817,12.752000000000001,13.791,14.946999999999999,16.238,17.684000000000001,19.311 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,98.6,-0.35210000000000002,14.973599999999999,0.081689999999999999,11.837,12.773999999999999,13.815,14.974,16.268000000000001,17.718,19.347999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,98.7,-0.35210000000000002,15.000500000000001,0.081729999999999997,11.856999999999999,12.795999999999999,13.839,15,16.297999999999998,17.751000000000001,19.385000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,98.8,-0.35210000000000002,15.0275,0.081769999999999995,11.877000000000001,12.818,13.864000000000001,15.028,16.327999999999999,17.783999999999999,19.422999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,98.9,-0.35210000000000002,15.054600000000001,0.081809999999999994,11.897,12.84,13.888,15.055,16.358000000000001,17.818000000000001,19.46 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,99,-0.35210000000000002,15.081799999999999,0.081850000000000006,11.917,12.863,13.913,15.082000000000001,16.388000000000002,17.852,19.498000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,99.1,-0.35210000000000002,15.109,0.081890000000000004,11.936999999999999,12.885,13.936999999999999,15.109,16.417999999999999,17.885000000000002,19.536000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,99.2,-0.35210000000000002,15.1363,0.081939999999999999,11.957000000000001,12.907,13.962,15.135999999999999,16.449000000000002,17.920000000000002,19.574000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,99.3,-0.35210000000000002,15.1637,0.081979999999999997,11.978,12.929,13.986000000000001,15.164,16.478999999999999,17.954000000000001,19.611999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,99.4,-0.35210000000000002,15.1912,0.082019999999999996,11.997999999999999,12.952,14.010999999999999,15.191000000000001,16.510000000000002,17.988,19.649999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,99.5,-0.35210000000000002,15.2187,0.082059999999999994,12.018000000000001,12.974,14.036,15.218999999999999,16.54,18.021999999999998,19.687999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,99.6,-0.35210000000000002,15.2463,0.082110000000000002,12.038,12.997,14.061,15.246,16.571000000000002,18.056000000000001,19.727 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,99.7,-0.35210000000000002,15.273999999999999,0.082150000000000001,12.058999999999999,13.019,14.086,15.273999999999999,16.602,18.091000000000001,19.765999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,99.8,-0.35210000000000002,15.3018,0.082199999999999995,12.079000000000001,13.042,14.111000000000001,15.302,16.632999999999999,18.126000000000001,19.805 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,99.9,-0.35210000000000002,15.329700000000001,0.082239999999999994,12.1,13.065,14.135999999999999,15.33,16.664000000000001,18.16,19.844000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,100,-0.35210000000000002,15.3576,0.082290000000000002,12.12,13.087,14.161,15.358000000000001,16.695,18.195,19.882999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,100.1,-0.35210000000000002,15.3856,0.08233,12.141,13.11,14.186,15.385999999999999,16.725999999999999,18.23,19.922000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,100.2,-0.35210000000000002,15.4137,0.082379999999999995,12.162000000000001,13.132999999999999,14.211,15.414,16.757999999999999,18.265000000000001,19.962 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,100.3,-0.35210000000000002,15.4419,0.082430000000000003,12.182,13.154999999999999,14.237,15.442,16.789000000000001,18.3,20.001999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,100.4,-0.35210000000000002,15.4701,0.082470000000000002,12.202999999999999,13.178000000000001,14.262,15.47,16.821000000000002,18.335000000000001,20.041 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,100.5,-0.35210000000000002,15.4985,0.082519999999999996,12.224,13.201000000000001,14.288,15.497999999999999,16.852,18.370999999999999,20.081 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,100.6,-0.35210000000000002,15.5268,0.082570000000000005,12.244,13.224,14.313000000000001,15.526999999999999,16.884,18.405999999999999,20.120999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,100.7,-0.35210000000000002,15.555300000000001,0.082619999999999999,12.265000000000001,13.247,14.339,15.555,16.916,18.442,20.161000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,100.8,-0.35210000000000002,15.5838,0.082669999999999993,12.286,13.27,14.364000000000001,15.584,16.948,18.478000000000002,20.201000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,100.9,-0.35210000000000002,15.612500000000001,0.082720000000000002,12.307,13.292999999999999,14.39,15.612,16.98,18.513999999999999,20.242000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,101,-0.35210000000000002,15.6412,0.082769999999999996,12.327999999999999,13.317,14.416,15.641,17.012,18.55,20.282 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,101.1,-0.35210000000000002,15.6699,0.082809999999999995,12.349,13.34,14.442,15.67,17.044,18.585999999999999,20.321999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,101.2,-0.35210000000000002,15.698700000000001,0.082869999999999999,12.37,13.363,14.467000000000001,15.699,17.076000000000001,18.622,20.364000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,101.3,-0.35210000000000002,15.727600000000001,0.082919999999999994,12.391,13.385999999999999,14.493,15.728,17.108000000000001,18.658000000000001,20.404 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,101.4,-0.35210000000000002,15.756600000000001,0.082970000000000002,12.412000000000001,13.41,14.519,15.757,17.140999999999998,18.695,20.445 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,101.5,-0.35210000000000002,15.7857,0.083019999999999997,12.433,13.433,14.545,15.786,17.172999999999998,18.731000000000002,20.486999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,101.6,-0.35210000000000002,15.8148,0.083070000000000005,12.454000000000001,13.457000000000001,14.571999999999999,15.815,17.206,18.768000000000001,20.527999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,101.7,-0.35210000000000002,15.843999999999999,0.083119999999999999,12.476000000000001,13.48,14.598000000000001,15.843999999999999,17.239000000000001,18.803999999999998,20.568999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,101.8,-0.35210000000000002,15.873200000000001,0.083169999999999994,12.497,13.504,14.624000000000001,15.872999999999999,17.271000000000001,18.841000000000001,20.61 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,101.9,-0.35210000000000002,15.9026,0.083220000000000002,12.518000000000001,13.528,14.65,15.903,17.303999999999998,18.878,20.652000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,102,-0.35210000000000002,15.932,0.083280000000000007,12.539,13.551,14.676,15.932,17.337,18.914999999999999,20.693999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,102.1,-0.35210000000000002,15.961499999999999,0.083330000000000001,12.561,13.574999999999999,14.702999999999999,15.962,17.37,18.952000000000002,20.736000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,102.2,-0.35210000000000002,15.991,0.083379999999999996,12.582000000000001,13.599,14.728999999999999,15.991,17.402999999999999,18.989000000000001,20.777999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,102.3,-0.35210000000000002,16.020600000000002,0.083430000000000004,12.603999999999999,13.622999999999999,14.756,16.021000000000001,17.436,19.027000000000001,20.818999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,102.4,-0.35210000000000002,16.0503,0.083489999999999995,12.625,13.646000000000001,14.782,16.05,17.47,19.064,20.861999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,102.5,-0.35210000000000002,16.080100000000002,0.083540000000000003,12.647,13.67,14.808999999999999,16.079999999999998,17.503,19.102,20.904 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,102.6,-0.35210000000000002,16.1099,0.083589999999999998,12.669,13.694000000000001,14.836,16.11,17.536000000000001,19.138999999999999,20.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,102.7,-0.35210000000000002,16.139800000000001,0.083650000000000002,12.69,13.718,14.863,16.14,17.57,19.177,20.99 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,102.8,-0.35210000000000002,16.169699999999999,0.083699999999999997,12.712,13.742000000000001,14.888999999999999,16.170000000000002,17.603000000000002,19.215,21.032 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,102.9,-0.35210000000000002,16.1997,0.083760000000000001,12.733000000000001,13.766,14.916,16.2,17.637,19.253,21.074999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,103,-0.35210000000000002,16.229800000000001,0.083809999999999996,12.755000000000001,13.791,14.943,16.23,17.670999999999999,19.291,21.117999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,103.1,-0.35210000000000002,16.260000000000002,0.083860000000000004,12.776999999999999,13.815,14.97,16.260000000000002,17.704999999999998,19.329000000000001,21.16 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,103.2,-0.35210000000000002,16.290199999999999,0.083919999999999995,12.798999999999999,13.839,14.997,16.29,17.739000000000001,19.367000000000001,21.204000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,103.3,-0.35210000000000002,16.320399999999999,0.083970000000000003,12.821,13.863,15.023999999999999,16.32,17.771999999999998,19.405000000000001,21.247 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,103.4,-0.35210000000000002,16.3508,0.084029999999999994,12.842000000000001,13.888,15.051,16.350999999999999,17.806999999999999,19.443999999999999,21.291 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,103.5,-0.35210000000000002,16.3812,0.084080000000000002,12.865,13.912000000000001,15.079000000000001,16.381,17.841000000000001,19.481999999999999,21.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,103.6,-0.35210000000000002,16.4117,0.084140000000000006,12.885999999999999,13.936999999999999,15.106,16.411999999999999,17.875,19.521000000000001,21.378 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,103.7,-0.35210000000000002,16.4422,0.084190000000000001,12.909000000000001,13.961,15.132999999999999,16.442,17.908999999999999,19.559000000000001,21.420999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,103.8,-0.35210000000000002,16.472799999999999,0.084250000000000005,12.93,13.984999999999999,15.16,16.472999999999999,17.943999999999999,19.597999999999999,21.465 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,103.9,-0.35210000000000002,16.503499999999999,0.084309999999999996,12.952,14.01,15.188000000000001,16.504000000000001,17.978000000000002,19.637,21.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,104,-0.35210000000000002,16.534199999999998,0.084360000000000004,12.975,14.035,15.215,16.533999999999999,18.013000000000002,19.675000000000001,21.553000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,104.1,-0.35210000000000002,16.565000000000001,0.084419999999999995,12.997,14.058999999999999,15.243,16.565000000000001,18.047000000000001,19.715,21.597000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,104.2,-0.35210000000000002,16.5959,0.084470000000000003,13.019,14.084,15.27,16.596,18.082000000000001,19.753,21.640999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,104.3,-0.35210000000000002,16.626799999999999,0.084529999999999994,13.041,14.109,15.298,16.626999999999999,18.117000000000001,19.792999999999999,21.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,104.4,-0.35210000000000002,16.657900000000001,0.084580000000000002,13.064,14.134,15.326000000000001,16.658000000000001,18.151,19.832000000000001,21.73 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,104.5,-0.35210000000000002,16.6889,0.084640000000000007,13.086,14.159000000000001,15.353,16.689,18.186,19.870999999999999,21.774999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,104.6,-0.35210000000000002,16.720099999999999,0.084699999999999998,13.108000000000001,14.183,15.381,16.72,18.221,19.911000000000001,21.82 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,104.7,-0.35210000000000002,16.751300000000001,0.084750000000000006,13.131,14.209,15.409000000000001,16.751000000000001,18.256,19.95,21.864000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,104.8,-0.35210000000000002,16.782599999999999,0.084809999999999997,13.153,14.233000000000001,15.436999999999999,16.783000000000001,18.292000000000002,19.989999999999998,21.908999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,104.9,-0.35210000000000002,16.8139,0.084870000000000001,13.176,14.257999999999999,15.465,16.814,18.327000000000002,20.03,21.954000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,105,-0.35210000000000002,16.845400000000001,0.084930000000000005,13.198,14.282999999999999,15.493,16.844999999999999,18.361999999999998,20.07,22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,105.1,-0.35210000000000002,16.876899999999999,0.08498,13.221,14.308999999999999,15.521000000000001,16.876999999999999,18.398,20.11,22.044 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,105.2,-0.35210000000000002,16.9084,0.085040000000000004,13.243,14.334,15.548999999999999,16.908000000000001,18.433,20.149999999999999,22.09 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,105.3,-0.35210000000000002,16.940100000000001,0.085099999999999995,13.266,14.359,15.577999999999999,16.940000000000001,18.469000000000001,20.190000000000001,22.135999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,105.4,-0.35210000000000002,16.971800000000002,0.08516,13.289,14.384,15.606,16.972000000000001,18.504999999999999,20.231000000000002,22.181999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,105.5,-0.35210000000000002,17.003599999999999,0.085209999999999994,13.311999999999999,14.41,15.634,17.004000000000001,18.54,20.271000000000001,22.227 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,105.6,-0.35210000000000002,17.035499999999999,0.085269999999999999,13.335000000000001,14.435,15.663,17.036000000000001,18.576000000000001,20.311,22.273 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,105.7,-0.35210000000000002,17.067399999999999,0.085330000000000003,13.356999999999999,14.461,15.691000000000001,17.067,18.611999999999998,20.352,22.318999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,105.8,-0.35210000000000002,17.099499999999999,0.085389999999999994,13.38,14.486000000000001,15.72,17.100000000000001,18.648,20.393000000000001,22.364999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,105.9,-0.35210000000000002,17.131599999999999,0.085449999999999998,13.403,14.512,15.747999999999999,17.132000000000001,18.684000000000001,20.434000000000001,22.411999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,106,-0.35210000000000002,17.163699999999999,0.085510000000000003,13.426,14.537000000000001,15.776999999999999,17.164000000000001,18.721,20.475000000000001,22.457999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,106.1,-0.35210000000000002,17.196000000000002,0.085569999999999993,13.449,14.563000000000001,15.805999999999999,17.196000000000002,18.757000000000001,20.515999999999998,22.504999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,106.2,-0.35210000000000002,17.228300000000001,0.085620000000000002,13.473000000000001,14.589,15.835000000000001,17.228000000000002,18.792999999999999,20.556000000000001,22.550999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,106.3,-0.35210000000000002,17.2607,0.085680000000000006,13.496,14.615,15.863,17.260999999999999,18.829999999999998,20.597999999999999,22.597999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,106.4,-0.35210000000000002,17.293099999999999,0.085739999999999997,13.519,14.641,15.891999999999999,17.292999999999999,18.866,20.638999999999999,22.645 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,106.5,-0.35210000000000002,17.325600000000001,0.085800000000000001,13.542,14.667,15.920999999999999,17.326000000000001,18.902999999999999,20.68,22.692 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,106.6,-0.35210000000000002,17.3582,0.085860000000000006,13.565,14.692,15.95,17.358000000000001,18.939,20.722000000000001,22.739000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,106.7,-0.35210000000000002,17.390899999999998,0.085919999999999996,13.587999999999999,14.718,15.978999999999999,17.390999999999998,18.975999999999999,20.763999999999999,22.786000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,106.8,-0.35210000000000002,17.4237,0.085989999999999997,13.611000000000001,14.744,16.007999999999999,17.423999999999999,19.013999999999999,20.806000000000001,22.835000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,106.9,-0.35210000000000002,17.456499999999998,0.086050000000000001,13.635,14.77,16.038,17.456,19.05,20.847999999999999,22.882000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,107,-0.35210000000000002,17.4894,0.086110000000000006,13.657999999999999,14.797000000000001,16.067,17.489000000000001,19.088000000000001,20.89,22.93 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,107.1,-0.35210000000000002,17.522400000000001,0.086169999999999997,13.682,14.823,16.096,17.521999999999998,19.125,20.931999999999999,22.978000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,107.2,-0.35210000000000002,17.555399999999999,0.086230000000000001,13.705,14.849,16.126000000000001,17.555,19.161999999999999,20.974,23.024999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,107.3,-0.35210000000000002,17.5885,0.086290000000000006,13.728999999999999,14.875,16.155000000000001,17.588000000000001,19.199000000000002,21.015999999999998,23.073 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,107.4,-0.35210000000000002,17.621700000000001,0.086349999999999996,13.753,14.901999999999999,16.184999999999999,17.622,19.236999999999998,21.059000000000001,23.122 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,107.5,-0.35210000000000002,17.655000000000001,0.086410000000000001,13.776,14.928000000000001,16.213999999999999,17.655000000000001,19.274000000000001,21.100999999999999,23.17 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,107.6,-0.35210000000000002,17.688400000000001,0.086480000000000001,13.8,14.954000000000001,16.244,17.687999999999999,19.312000000000001,21.143999999999998,23.219000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,107.7,-0.35210000000000002,17.721800000000002,0.086540000000000006,13.823,14.981,16.274000000000001,17.722000000000001,19.350000000000001,21.187000000000001,23.268000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,107.8,-0.35210000000000002,17.755299999999998,0.086599999999999996,13.847,15.007999999999999,16.303000000000001,17.754999999999999,19.388000000000002,21.228999999999999,23.315999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,107.9,-0.35210000000000002,17.788900000000002,0.086660000000000001,13.871,15.034000000000001,16.332999999999998,17.789000000000001,19.425000000000001,21.271999999999998,23.364999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,108,-0.35210000000000002,17.822600000000001,0.086730000000000002,13.895,15.061,16.363,17.823,19.463999999999999,21.315999999999999,23.414999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,108.1,-0.35210000000000002,17.856400000000001,0.086790000000000006,13.919,15.087999999999999,16.393000000000001,17.856000000000002,19.501999999999999,21.359000000000002,23.463999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,108.2,-0.35210000000000002,17.8903,0.086849999999999997,13.943,15.115,16.422999999999998,17.89,19.54,21.402000000000001,23.513000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,108.3,-0.35210000000000002,17.924199999999999,0.086910000000000001,13.967000000000001,15.141999999999999,16.454000000000001,17.923999999999999,19.577999999999999,21.446000000000002,23.562000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,108.4,-0.35210000000000002,17.958300000000001,0.086980000000000002,13.991,15.167999999999999,16.484000000000002,17.957999999999998,19.617000000000001,21.49,23.611999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,108.5,-0.35210000000000002,17.9924,0.087040000000000006,14.015000000000001,15.195,16.513999999999999,17.992000000000001,19.655000000000001,21.533000000000001,23.661999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,108.6,-0.35210000000000002,18.026700000000002,0.087099999999999997,14.04,15.223000000000001,16.545000000000002,18.027000000000001,19.693999999999999,21.577000000000002,23.712 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,108.7,-0.35210000000000002,18.061,0.087169999999999997,14.064,15.25,16.574999999999999,18.061,19.733000000000001,21.620999999999999,23.762 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,108.8,-0.35210000000000002,18.095400000000001,0.087230000000000002,14.087999999999999,15.276999999999999,16.606000000000002,18.094999999999999,19.771999999999998,21.664999999999999,23.812000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,108.9,-0.35210000000000002,18.129899999999999,0.087300000000000003,14.112,15.304,16.635999999999999,18.13,19.811,21.71,23.863 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,109,-0.35210000000000002,18.1645,0.087359999999999993,14.137,15.332000000000001,16.667000000000002,18.164000000000001,19.850000000000001,21.754000000000001,23.913 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,109.1,-0.35210000000000002,18.199200000000001,0.087419999999999998,14.162000000000001,15.359,16.698,18.199000000000002,19.888999999999999,21.797999999999998,23.963999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,109.2,-0.35210000000000002,18.234000000000002,0.087489999999999998,14.186,15.385999999999999,16.728999999999999,18.234000000000002,19.928999999999998,21.843,24.015000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,109.3,-0.35210000000000002,18.268899999999999,0.087550000000000003,14.211,15.414,16.760000000000002,18.268999999999998,19.968,21.888000000000002,24.065999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,109.4,-0.35210000000000002,18.303899999999999,0.087620000000000003,14.234999999999999,15.442,16.791,18.303999999999998,20.007999999999999,21.933,24.117999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,109.5,-0.35210000000000002,18.338999999999999,0.087679999999999994,14.26,15.47,16.821999999999999,18.338999999999999,20.047000000000001,21.978000000000002,24.169 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,109.6,-0.35210000000000002,18.374199999999998,0.087739999999999999,14.285,15.497,16.853000000000002,18.373999999999999,20.087,22.023,24.22 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,109.7,-0.35210000000000002,18.409400000000002,0.087809999999999999,14.31,15.525,16.884,18.408999999999999,20.126999999999999,22.068000000000001,24.271999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,109.8,-0.35210000000000002,18.444800000000001,0.087870000000000004,14.335000000000001,15.553000000000001,16.916,18.445,20.167000000000002,22.114000000000001,24.323 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,109.9,-0.35210000000000002,18.4802,0.087940000000000004,14.36,15.581,16.946999999999999,18.48,20.207000000000001,22.158999999999999,24.376000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,110,-0.35210000000000002,18.515799999999999,0.087999999999999995,14.385,15.609,16.978999999999999,18.515999999999998,20.247,22.204999999999998,24.428000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,110.1,-0.35210000000000002,18.551400000000001,0.088059999999999999,14.41,15.637,17.010000000000002,18.550999999999998,20.286999999999999,22.25,24.478999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,110.2,-0.35210000000000002,18.5871,0.08813,14.435,15.666,17.042000000000002,18.587,20.327999999999999,22.297000000000001,24.532 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,110.3,-0.35210000000000002,18.622900000000001,0.088190000000000004,14.461,15.694000000000001,17.074000000000002,18.623000000000001,20.367999999999999,22.341999999999999,24.584 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,110.4,-0.35210000000000002,18.658799999999999,0.088260000000000005,14.486000000000001,15.722,17.106000000000002,18.658999999999999,20.408999999999999,22.388999999999999,24.637 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,110.5,-0.35210000000000002,18.694800000000001,0.088319999999999996,14.510999999999999,15.750999999999999,17.138000000000002,18.695,20.45,22.434999999999999,24.69 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,110.6,-0.35210000000000002,18.730799999999999,0.08838,14.537000000000001,15.779,17.170000000000002,18.731000000000002,20.49,22.481000000000002,24.742000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,110.7,-0.35210000000000002,18.766999999999999,0.088450000000000001,14.561999999999999,15.808,17.202000000000002,18.766999999999999,20.530999999999999,22.527999999999999,24.795999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,110.8,-0.35210000000000002,18.8032,0.088510000000000005,14.587999999999999,15.836,17.234000000000002,18.803000000000001,20.571999999999999,22.574000000000002,24.849 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,110.9,-0.35210000000000002,18.839500000000001,0.088580000000000006,14.613,15.865,17.265999999999998,18.84,20.614000000000001,22.620999999999999,24.902000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,111,-0.35210000000000002,18.875900000000001,0.088639999999999997,14.638999999999999,15.894,17.297999999999998,18.876000000000001,20.655000000000001,22.667999999999999,24.954999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,111.1,-0.35210000000000002,18.912299999999998,0.088709999999999997,14.664,15.922000000000001,17.329999999999998,18.911999999999999,20.696000000000002,22.715,25.009 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,111.2,-0.35210000000000002,18.948899999999998,0.088770000000000002,14.69,15.951000000000001,17.363,18.949000000000002,20.736999999999998,22.762,25.062999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,111.3,-0.35210000000000002,18.985499999999998,0.088830000000000006,14.715999999999999,15.98,17.395,18.986000000000001,20.779,22.809000000000001,25.116 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,111.4,-0.35210000000000002,19.022200000000002,0.088900000000000007,14.742000000000001,16.009,17.428000000000001,19.021999999999998,20.82,22.856000000000002,25.17 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,111.5,-0.35210000000000002,19.059000000000001,0.088959999999999997,14.768000000000001,16.038,17.460999999999999,19.059000000000001,20.861999999999998,22.902999999999999,25.224 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,111.6,-0.35210000000000002,19.095800000000001,0.089029999999999998,14.794,16.067,17.492999999999999,19.096,20.904,22.951000000000001,25.279 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,111.7,-0.35210000000000002,19.1327,0.089090000000000003,14.82,16.096,17.526,19.132999999999999,20.945,22.998000000000001,25.332999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,111.8,-0.35210000000000002,19.169699999999999,0.089149999999999993,14.846,16.126000000000001,17.559000000000001,19.170000000000002,20.986999999999998,23.045999999999999,25.387 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,111.9,-0.35210000000000002,19.206700000000001,0.089219999999999994,14.872,16.155000000000001,17.591000000000001,19.207000000000001,21.029,23.094000000000001,25.442 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,112,-0.35210000000000002,19.2439,0.089279999999999998,14.898,16.184000000000001,17.623999999999999,19.244,21.071000000000002,23.140999999999998,25.495999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,112.1,-0.35210000000000002,19.280999999999999,0.089340000000000003,14.923999999999999,16.213000000000001,17.657,19.280999999999999,21.113,23.189,25.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,112.2,-0.35210000000000002,19.318300000000001,0.089410000000000003,14.95,16.242999999999999,17.690000000000001,19.318000000000001,21.155999999999999,23.236999999999998,25.606000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,112.3,-0.35210000000000002,19.355599999999999,0.089469999999999994,14.977,16.271999999999998,17.724,19.356000000000002,21.198,23.285,25.66 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,112.4,-0.35210000000000002,19.393000000000001,0.089529999999999998,15.003,16.302,17.757000000000001,19.393000000000001,21.24,23.332999999999998,25.715 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,112.5,-0.35210000000000002,19.430399999999999,0.089599999999999999,15.029,16.331,17.79,19.43,21.282,23.381,25.77 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,112.6,-0.35210000000000002,19.4679,0.089660000000000004,15.055999999999999,16.361000000000001,17.823,19.468,21.324999999999999,23.43,25.824999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,112.7,-0.35210000000000002,19.505500000000001,0.089719999999999994,15.083,16.39,17.856000000000002,19.506,21.367000000000001,23.478000000000002,25.88 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,112.8,-0.35210000000000002,19.543099999999999,0.089789999999999995,15.109,16.420000000000002,17.89,19.542999999999999,21.41,23.527000000000001,25.936 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,112.9,-0.35210000000000002,19.5807,0.089849999999999999,15.135,16.45,17.922999999999998,19.581,21.452999999999999,23.574999999999999,25.991 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,113,-0.35210000000000002,19.618500000000001,0.089910000000000004,15.162000000000001,16.478999999999999,17.957000000000001,19.617999999999999,21.495000000000001,23.623000000000001,26.047000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,113.1,-0.35210000000000002,19.656300000000002,0.089969999999999994,15.189,16.509,17.989999999999998,19.655999999999999,21.538,23.672000000000001,26.102 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,113.2,-0.35210000000000002,19.694099999999999,0.090039999999999995,15.215,16.539000000000001,18.024000000000001,19.693999999999999,21.581,23.721,26.158000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,113.3,-0.35210000000000002,19.732099999999999,0.0901,15.242000000000001,16.568999999999999,18.056999999999999,19.731999999999999,21.623999999999999,23.77,26.213999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,113.4,-0.35210000000000002,19.77,0.090160000000000004,15.269,16.599,18.091000000000001,19.77,21.667000000000002,23.818999999999999,26.268999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,113.5,-0.35210000000000002,19.8081,0.090219999999999995,15.295999999999999,16.629000000000001,18.125,19.808,21.71,23.867999999999999,26.324999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,113.6,-0.35210000000000002,19.8461,0.090289999999999995,15.321999999999999,16.658999999999999,18.158000000000001,19.846,21.753,23.917000000000002,26.382000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,113.7,-0.35210000000000002,19.8843,0.09035,15.349,16.689,18.192,19.884,21.795999999999999,23.966000000000001,26.437999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,113.8,-0.35210000000000002,19.922499999999999,0.090410000000000004,15.375999999999999,16.719000000000001,18.225999999999999,19.922000000000001,21.84,24.015000000000001,26.494 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,113.9,-0.35210000000000002,19.960699999999999,0.090469999999999995,15.403,16.748999999999999,18.260000000000002,19.960999999999999,21.882999999999999,24.064,26.55 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,114,-0.35210000000000002,19.998999999999999,0.090539999999999995,15.429,16.779,18.294,19.998999999999999,21.927,24.114000000000001,26.606999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,114.1,-0.35210000000000002,20.037299999999998,0.0906,15.456,16.809000000000001,18.327999999999999,20.036999999999999,21.97,24.163,26.663 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,114.2,-0.35210000000000002,20.075700000000001,0.090660000000000004,15.484,16.84,18.361999999999998,20.076000000000001,22.013000000000002,24.213000000000001,26.72 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,114.3,-0.35210000000000002,20.1142,0.090719999999999995,15.510999999999999,16.87,18.396000000000001,20.114000000000001,22.056999999999999,24.262,26.776 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,114.4,-0.35210000000000002,20.152699999999999,0.090789999999999996,15.537000000000001,16.899999999999999,18.43,20.152999999999999,22.100999999999999,24.312000000000001,26.834 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,114.5,-0.35210000000000002,20.191199999999998,0.09085,15.565,16.931000000000001,18.463999999999999,20.190999999999999,22.143999999999998,24.361999999999998,26.890999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,114.6,-0.35210000000000002,20.229800000000001,0.090910000000000005,15.592000000000001,16.960999999999999,18.498000000000001,20.23,22.187999999999999,24.411999999999999,26.946999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,114.7,-0.35210000000000002,20.2684,0.090969999999999995,15.619,16.991,18.532,20.268000000000001,22.231999999999999,24.460999999999999,27.004000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,114.8,-0.35210000000000002,20.307099999999998,0.09103,15.646000000000001,17.021999999999998,18.567,20.306999999999999,22.276,24.510999999999999,27.061 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,114.9,-0.35210000000000002,20.345800000000001,0.0911,15.673,17.052,18.600999999999999,20.346,22.32,24.562000000000001,27.119 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,115,-0.35210000000000002,20.384599999999999,0.091160000000000005,15.7,17.082999999999998,18.635000000000002,20.385000000000002,22.364000000000001,24.611999999999998,27.175999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,115.1,-0.35210000000000002,20.423300000000001,0.091219999999999996,15.727,17.113,18.669,20.422999999999998,22.407,24.661000000000001,27.233000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,115.2,-0.35210000000000002,20.462199999999999,0.09128,15.755000000000001,17.143999999999998,18.704000000000001,20.462,22.452000000000002,24.712,27.29 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,115.3,-0.35210000000000002,20.501000000000001,0.091340000000000005,15.782,17.175000000000001,18.738,20.501000000000001,22.495000000000001,24.762,27.347999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,115.4,-0.35210000000000002,20.54,0.091399999999999995,15.81,17.204999999999998,18.773,20.54,22.54,24.812000000000001,27.405000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,115.5,-0.35210000000000002,20.578900000000001,0.091469999999999996,15.836,17.236000000000001,18.806999999999999,20.579000000000001,22.584,24.863,27.463000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,115.6,-0.35210000000000002,20.617899999999999,0.09153,15.864000000000001,17.265999999999998,18.841999999999999,20.617999999999999,22.628,24.913,27.521000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,115.7,-0.35210000000000002,20.6569,0.091590000000000005,15.891,17.297000000000001,18.876000000000001,20.657,22.672000000000001,24.963000000000001,27.577999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,115.8,-0.35210000000000002,20.695900000000002,0.091649999999999995,15.919,17.327999999999999,18.911000000000001,20.696000000000002,22.716999999999999,25.013999999999999,27.635999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,115.9,-0.35210000000000002,20.734999999999999,0.09171,15.946,17.359000000000002,18.945,20.734999999999999,22.760999999999999,25.064,27.693999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,116,-0.35210000000000002,20.774100000000001,0.091770000000000004,15.974,17.388999999999999,18.98,20.774000000000001,22.805,25.114999999999998,27.751999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,116.1,-0.35210000000000002,20.813199999999998,0.091829999999999995,16.001000000000001,17.420000000000002,19.015000000000001,20.812999999999999,22.85,25.164999999999999,27.809000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,116.2,-0.35210000000000002,20.852399999999999,0.091899999999999996,16.027999999999999,17.451000000000001,19.048999999999999,20.852,22.893999999999998,25.216000000000001,27.867999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,116.3,-0.35210000000000002,20.8916,0.09196,16.056000000000001,17.481000000000002,19.084,20.891999999999999,22.939,25.266999999999999,27.925999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,116.4,-0.35210000000000002,20.930800000000001,0.092020000000000005,16.082999999999998,17.512,19.119,20.931000000000001,22.983000000000001,25.317,27.984000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,116.5,-0.35210000000000002,20.97,0.092079999999999995,16.111000000000001,17.542999999999999,19.152999999999999,20.97,23.027999999999999,25.367999999999999,28.042000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,116.6,-0.35210000000000002,21.0093,0.09214,16.138000000000002,17.574000000000002,19.187999999999999,21.009,23.071999999999999,25.419,28.1 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,116.7,-0.35210000000000002,21.0486,0.092200000000000004,16.166,17.605,19.222999999999999,21.048999999999999,23.117000000000001,25.47,28.158000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,116.8,-0.35210000000000002,21.087900000000001,0.092270000000000005,16.193000000000001,17.635000000000002,19.257000000000001,21.088000000000001,23.161999999999999,25.521000000000001,28.218 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,116.9,-0.35210000000000002,21.127199999999998,0.092329999999999995,16.22,17.666,19.292000000000002,21.126999999999999,23.206,25.571999999999999,28.276 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,117,-0.35210000000000002,21.166599999999999,0.09239,16.248000000000001,17.696999999999999,19.327000000000002,21.167000000000002,23.251000000000001,25.623000000000001,28.334 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,117.1,-0.35210000000000002,21.2059,0.092450000000000004,16.274999999999999,17.728000000000002,19.361999999999998,21.206,23.295999999999999,25.673999999999999,28.391999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,117.2,-0.35210000000000002,21.2453,0.092509999999999995,16.303000000000001,17.759,19.396999999999998,21.245000000000001,23.34,25.725000000000001,28.451000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,117.3,-0.35210000000000002,21.284700000000001,0.09257,16.329999999999998,17.79,19.431000000000001,21.285,23.385000000000002,25.776,28.509 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,117.4,-0.35210000000000002,21.324200000000001,0.092630000000000004,16.358000000000001,17.821000000000002,19.466000000000001,21.324000000000002,23.43,25.827000000000002,28.568000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,117.5,-0.35210000000000002,21.363600000000002,0.092700000000000005,16.385000000000002,17.852,19.501000000000001,21.364000000000001,23.475000000000001,25.879000000000001,28.626999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,117.6,-0.35210000000000002,21.403099999999998,0.092759999999999995,16.413,17.882999999999999,19.536000000000001,21.402999999999999,23.52,25.93,28.686 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,117.7,-0.35210000000000002,21.442599999999999,0.09282,16.440000000000001,17.913,19.571000000000002,21.443000000000001,23.565000000000001,25.981000000000002,28.745000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,117.8,-0.35210000000000002,21.481999999999999,0.092880000000000004,16.468,17.943999999999999,19.606000000000002,21.481999999999999,23.609000000000002,26.032,28.803000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,117.9,-0.35210000000000002,21.5215,0.092939999999999995,16.495000000000001,17.975000000000001,19.640999999999998,21.521999999999998,23.654,26.082999999999998,28.861999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,118,-0.35210000000000002,21.5611,0.092999999999999999,16.523,18.006,19.675999999999998,21.561,23.699000000000002,26.135000000000002,28.920999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,118.1,-0.35210000000000002,21.6006,0.09307,16.55,18.036999999999999,19.71,21.600999999999999,23.744,26.186,28.981000000000002 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,118.2,-0.35210000000000002,21.6401,0.093130000000000004,16.577999999999999,18.068000000000001,19.745000000000001,21.64,23.789000000000001,26.238,29.039000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,118.3,-0.35210000000000002,21.6797,0.093189999999999995,16.605,18.099,19.78,21.68,23.834,26.289000000000001,29.097999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,118.4,-0.35210000000000002,21.7193,0.09325,16.632999999999999,18.13,19.815000000000001,21.719000000000001,23.879000000000001,26.34,29.157 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,118.5,-0.35210000000000002,21.758800000000001,0.093310000000000004,16.66,18.161000000000001,19.850000000000001,21.759,23.923999999999999,26.391999999999999,29.216000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,118.6,-0.35210000000000002,21.798400000000001,0.093380000000000005,16.687999999999999,18.192,19.885000000000002,21.797999999999998,23.97,26.443999999999999,29.276 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,118.7,-0.35210000000000002,21.838000000000001,0.093439999999999995,16.715,18.222999999999999,19.920000000000002,21.838000000000001,24.015000000000001,26.495000000000001,29.335000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,118.8,-0.35210000000000002,21.877600000000001,0.0935,16.742999999999999,18.254000000000001,19.954999999999998,21.878,24.06,26.547000000000001,29.393999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,118.9,-0.35210000000000002,21.917200000000001,0.093560000000000004,16.77,18.285,19.989999999999998,21.917000000000002,24.105,26.597999999999999,29.452999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,119,-0.35210000000000002,21.956800000000001,0.093619999999999995,16.797999999999998,18.315999999999999,20.024999999999999,21.957000000000001,24.15,26.65,29.512 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,119.1,-0.35210000000000002,21.996400000000001,0.093679999999999999,16.824999999999999,18.347000000000001,20.059999999999999,21.995999999999999,24.195,26.701000000000001,29.571999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,119.2,-0.35210000000000002,22.036000000000001,0.09375,16.852,18.376999999999999,20.094000000000001,22.036000000000001,24.24,26.753,29.632000000000001 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,119.3,-0.35210000000000002,22.075700000000001,0.093810000000000004,16.88,18.408000000000001,20.129000000000001,22.076000000000001,24.285,26.805,29.690999999999999 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,119.4,-0.35210000000000002,22.115300000000001,0.093869999999999995,16.908000000000001,18.439,20.164000000000001,22.114999999999998,24.33,26.856000000000002,29.75 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,119.5,-0.35210000000000002,22.154900000000001,0.09393,16.934999999999999,18.47,20.199000000000002,22.155000000000001,24.375,26.908000000000001,29.81 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,119.6,-0.35210000000000002,22.194500000000001,0.093990000000000004,16.963000000000001,18.501000000000001,20.234000000000002,22.193999999999999,24.420999999999999,26.959,29.869 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,119.7,-0.35210000000000002,22.234100000000002,0.094060000000000005,16.989999999999998,18.532,20.268999999999998,22.234000000000002,24.466000000000001,27.012,29.928999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,119.8,-0.35210000000000002,22.273800000000001,0.094119999999999995,17.016999999999999,18.562999999999999,20.303999999999998,22.274000000000001,24.510999999999999,27.062999999999999,29.988 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,119.9,-0.35210000000000002,22.313400000000001,0.09418,17.045000000000002,18.593,20.338999999999999,22.312999999999999,24.556000000000001,27.114999999999998,30.047999999999998 +https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/weight-for-length-height/expanded-tables/wfh-boys-zscore-expanded-tables.xlsx,expanded,male,height,120,-0.35210000000000002,22.353000000000002,0.094240000000000004,17.071999999999999,18.623999999999999,20.373999999999999,22.353000000000002,24.600999999999999,27.167000000000002,30.106999999999999 diff --git a/test/growth/calc/age_test.exs b/test/growth/calc/age_test.exs new file mode 100644 index 0000000..8cc8760 --- /dev/null +++ b/test/growth/calc/age_test.exs @@ -0,0 +1,46 @@ +defmodule Growth.Calc.AgeTest do + @moduledoc false + + use ExUnit.Case, async: true + + alias Growth.Calc.Age + + describe "calculate/2" do + test "consider today as date of measurement" do + date_of_birth = Date.add(Date.utc_today(), -7) + assert 7 == Age.calculate(:day, date_of_birth) + end + end + + describe "calculate/3" do + test "calculate age in days" do + date_of_measurement = ~D[2024-06-09] + days_of_birth = [{-1, 1}, {-7, 7}, {-30, 30}] + + Enum.map(days_of_birth, fn {days_ago, expected_age} -> + date_of_birth = Date.add(date_of_measurement, days_ago) + assert expected_age == Age.calculate(:day, date_of_birth, date_of_measurement) + end) + end + + test "calculate age in completed weeks" do + date_of_measurement = ~D[2024-06-09] + days_of_birth = [{-1, 0}, {-7, 1}, {-16, 2}, {-30, 4}] + + Enum.map(days_of_birth, fn {days_ago, expected_age} -> + date_of_birth = Date.add(date_of_measurement, days_ago) + assert expected_age == Age.calculate(:week, date_of_birth, date_of_measurement) + end) + end + + test "calculate age in completed months" do + date_of_measurement = ~D[2024-06-09] + days_of_birth = [{-1, 0}, {-16, 0}, {-31, 1}, {-70, 2}, {-93, 3}] + + Enum.map(days_of_birth, fn {days_ago, expected_age} -> + date_of_birth = Date.add(date_of_measurement, days_ago) + assert expected_age == Age.calculate(:month, date_of_birth, date_of_measurement) + end) + end + end +end diff --git a/test/growth/calc/bmi_test.exs b/test/growth/calc/bmi_test.exs new file mode 100644 index 0000000..7950e63 --- /dev/null +++ b/test/growth/calc/bmi_test.exs @@ -0,0 +1,23 @@ +defmodule Growth.Calc.BMITest do + @moduledoc false + + use ExUnit.Case, async: true + + alias Growth.Calc.BMI + + describe "calculate/3" do + test "in metric system" do + weight_kg = 78.5 + height_cm = 168.2 + + assert 27.74710475751505 == BMI.calculate(:metric, weight_kg, height_cm) + end + + test "in english system" do + weight_lb = 173.1 + height_in = 66.2 + + assert 27.770202207557876 == BMI.calculate(:english, weight_lb, height_in) + end + end +end diff --git a/test/growth/calc/centile_test.exs b/test/growth/calc/centile_test.exs new file mode 100644 index 0000000..d43c73c --- /dev/null +++ b/test/growth/calc/centile_test.exs @@ -0,0 +1,24 @@ +defmodule Growth.Calc.CentileTest do + @moduledoc false + + use ExUnit.Case, async: true + + import Growth.Data, only: [sample: 0] + + doctest Growth.Calc.Centile + + alias Growth.Calc.Centile + + describe "compute/4" do + for %{key: key} = params <- sample() do + @tag params: params + test "returns the measure given a z-score and box-cox fitted values #{key}", %{ + params: params + } do + %{zscore: zscore, measure: measure, l: l, m: m, s: s} = params + + assert_in_delta Centile.compute(zscore, l, m, s), measure, 0.05 + end + end + end +end diff --git a/test/growth/calc/percentile_test.exs b/test/growth/calc/percentile_test.exs new file mode 100644 index 0000000..5d93649 --- /dev/null +++ b/test/growth/calc/percentile_test.exs @@ -0,0 +1,26 @@ +defmodule Growth.Calc.PercentileTest do + @moduledoc false + + use ExUnit.Case, async: true + + doctest Growth.Calc.Percentile + + alias Growth.Calc.Percentile + + describe "compute/1" do + for {zscore, _} = params <- [ + {-3, 0.0013498125}, + {-2, 0.0227502617}, + {-1, 0.1586553192}, + {0, 0.5000000000}, + {1, 0.8413446808}, + {2, 0.9772497383}, + {3, 0.9986501875} + ] do + @tag params: params + test "returns the percentile for z-score #{zscore}", %{params: {zscore, percentile}} do + assert_in_delta Percentile.compute(zscore), percentile, 0.0000005 + end + end + end +end diff --git a/test/growth/calc/z_score_test.exs b/test/growth/calc/z_score_test.exs new file mode 100644 index 0000000..0c4b737 --- /dev/null +++ b/test/growth/calc/z_score_test.exs @@ -0,0 +1,24 @@ +defmodule Growth.Calc.ZScoreTest do + @moduledoc false + + use ExUnit.Case, async: true + + import Growth.Data, only: [sample: 0] + + doctest Growth.Calc.ZScore + + alias Growth.Calc.ZScore + + describe "compute/4" do + for %{key: key} = params <- sample() do + @tag params: params + test "returns a z-score given a measurement and box-cox fitted values #{key}", %{ + params: params + } do + %{zscore: zscore, measure: measure, l: l, m: m, s: s} = params + + assert_in_delta ZScore.compute(measure, l, m, s), zscore, 0.12 + end + end + end +end diff --git a/test/growth/growth_test.exs b/test/growth/growth_test.exs new file mode 100644 index 0000000..3752689 --- /dev/null +++ b/test/growth/growth_test.exs @@ -0,0 +1,131 @@ +defmodule GrowthTest do + @moduledoc false + + use ExUnit.Case, async: true + + doctest Growth + + @child %{ + name: "Jane Doe", + gender: :female, + date_of_measurement: Date.utc_today(), + age_in_days: 91, + weight: 5.84, + height: 59.78, + head_circumference: 39.51, + arm_circumference: 13.02, + subscapular_skinfold: 7.79, + triceps_skinfold: 9.75 + } + @child_date_of_birth Date.shift(@child.date_of_measurement, day: @child.age_in_days * -1) + + describe "new/4" do + test "create a new growth measurement" do + growth = + Growth.new(@child.name, @child.gender, @child_date_of_birth, + date_of_measurement: @child.date_of_measurement, + weight: @child.weight, + height: @child.height, + head_circumference: @child.head_circumference, + arm_circumference: @child.arm_circumference, + subscapular_skinfold: @child.subscapular_skinfold, + triceps_skinfold: @child.triceps_skinfold + ) + + assert @child.name == growth.name + assert @child.gender == growth.gender + assert @child_date_of_birth == growth.date_of_birth + assert @child.date_of_measurement == growth.date_of_measurement + assert @child.age_in_days == growth.age_in_days + assert 13 == growth.age_in_weeks + assert 2 == growth.age_in_months + assert @child.weight == growth.weight + assert @child.height == growth.height + assert @child.head_circumference == growth.head_circumference + assert @child.arm_circumference == growth.arm_circumference + assert @child.subscapular_skinfold == growth.subscapular_skinfold + assert @child.triceps_skinfold == growth.triceps_skinfold + end + end + + describe "with_bmi/1" do + test "calculate bmi from measurement" do + growth = + %Growth{ + name: @child.name, + gender: @child.gender, + date_of_birth: @child_date_of_birth, + date_of_measurement: @child.date_of_measurement, + weight: @child.weight, + height: @child.height, + head_circumference: @child.head_circumference, + arm_circumference: @child.arm_circumference, + subscapular_skinfold: @child.subscapular_skinfold, + triceps_skinfold: @child.triceps_skinfold + } + |> Growth.with_age_in_days() + |> Growth.with_age_in_weeks() + |> Growth.with_age_in_months() + |> Growth.with_bmi() + + assert 16.341842694989243 == growth.bmi + end + end + + describe "with_results/1" do + test "calculate z-score and percentiles from measurement" do + growth = + %Growth{ + name: @child.name, + gender: @child.gender, + date_of_birth: @child_date_of_birth, + date_of_measurement: @child.date_of_measurement, + weight: @child.weight, + height: @child.height, + head_circumference: @child.head_circumference, + arm_circumference: @child.arm_circumference, + subscapular_skinfold: @child.subscapular_skinfold, + triceps_skinfold: @child.triceps_skinfold, + results: [] + } + |> Growth.with_age_in_days() + |> Growth.with_age_in_weeks() + |> Growth.with_age_in_months() + |> Growth.with_bmi() + |> Growth.with_results() + + assert [ + day: {9.496948997971584e-4, 0.5003788733920584}, + week: {9.496948997971584e-4, 0.5003788733920584}, + month: {1.0060928051683196, 0.8428145353253619} + ] == Keyword.get(growth.results, :weight) + + assert [ + day: {0.0012831717968983271, 0.5005119113423219}, + week: {0.0012831717968983271, 0.5005119113423219}, + month: {1.3322618635180914, 0.9086129228760054} + ] == Keyword.get(growth.results, :height) + + assert [ + day: {-0.007440424136462911, 0.4970317276150869}, + week: {-0.007440424136462911, 0.4970317276150869}, + month: {0.3827194919327071, 0.6490361198066796} + ] == Keyword.get(growth.results, :bmi) + + assert [ + day: {-0.008864109494641385, 0.4964637782528006}, + week: {-0.008864109494641385, 0.4964637782528006}, + month: {1.0380198575748647, 0.8503695948597997} + ] == Keyword.get(growth.results, :head_circumference) + + assert [day: {-0.004182676756535293, 0.49833135826198854}] == + Keyword.get(growth.results, :arm_circumference) + + assert [day: {0.001811404894950268, 0.5007226456043324}] == + Keyword.get(growth.results, :subscapular_skinfold) + + assert [day: {-0.0019309186728254878, 0.49922967538007906}] == + Keyword.get(growth.results, :triceps_skinfold) + end + end +end diff --git a/test/growth/indicators/download_test.exs b/test/growth/indicators/download_test.exs new file mode 100644 index 0000000..3bb4ba9 --- /dev/null +++ b/test/growth/indicators/download_test.exs @@ -0,0 +1,297 @@ +defmodule Growth.Indicators.DownloadTest do + @moduledoc false + + use ExUnit.Case, async: true + + alias Elixlsx.Sheet + alias Elixlsx.Workbook + + alias Growth.Indicators.Download + + setup do + mock_who_request() + end + + describe "process/3" do + test "fetch excel from url and convert it to a list of lists" do + gender = :female + category = :age_tables + + url = + "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" + + content = Download.process(gender, category, url) + + expected_content = + [ + ~w(source category gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3), + [ + url, + category, + gender, + "week", + Decimal.new("0"), + Decimal.new("1"), + Decimal.new("49.1477"), + Decimal.new("0.0379"), + Decimal.new("43.6"), + Decimal.new("45.4"), + Decimal.new("47.3"), + Decimal.new("49.1"), + Decimal.new("51"), + Decimal.new("52.9"), + Decimal.new("54.7") + ] + ] + + assert expected_content == content + end + end + + describe "process_gender/1" do + test "merge multiple contents into a single one" do + category = :age_tables + gender = :female + + urls = + [ + "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", + "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" + ] + + content = Download.process_gender({gender, category, urls}) + + expected_content = + [ + ~w(source category gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3), + [ + List.first(urls), + category, + gender, + "week", + Decimal.new("0"), + Decimal.new("1"), + Decimal.new("49.1477"), + Decimal.new("0.0379"), + Decimal.new("43.6"), + Decimal.new("45.4"), + Decimal.new("47.3"), + Decimal.new("49.1"), + Decimal.new("51"), + Decimal.new("52.9"), + Decimal.new("54.7") + ], + [ + List.last(urls), + category, + gender, + "month", + Decimal.new("0"), + Decimal.new("1"), + Decimal.new("49.1477"), + Decimal.new("0.0379"), + Decimal.new("43.6"), + Decimal.new("45.4"), + Decimal.new("47.3"), + Decimal.new("49.1"), + Decimal.new("51"), + Decimal.new("52.9"), + Decimal.new("54.7") + ] + ] + + assert expected_content == content + end + end + + describe "process_genders/1" do + test "merge multiple genders and contents into a single one" do + female_urls = %{ + age_tables: ~w( + 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 + 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 + ), + expanded_tables: ~w( + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-girls-zscore-expanded-tables.xlsx + ) + } + + male_urls = %{ + age_tables: ~w( + 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 + 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 + ), + expanded_tables: ~w( + https://cdn.who.int/media/docs/default-source/child-growth/child-growth-standards/indicators/length-height-for-age/expandable-tables/lhfa-boys-zscore-expanded-tables.xlsx + ) + } + + content = Download.process_genders(%{female: female_urls, male: male_urls}) + + expected_content = + [ + ~w(source category gender age_unit age l m s sd3neg sd2neg sd1neg sd0 sd1 sd2 sd3), + [ + female_urls |> Map.get(:age_tables) |> List.first(), + :age, + :female, + "week", + Decimal.new("0"), + Decimal.new("1"), + Decimal.new("49.1477"), + Decimal.new("0.0379"), + Decimal.new("43.6"), + Decimal.new("45.4"), + Decimal.new("47.3"), + Decimal.new("49.1"), + Decimal.new("51"), + Decimal.new("52.9"), + Decimal.new("54.7") + ], + [ + female_urls |> Map.get(:age_tables) |> List.last(), + :age, + :female, + "month", + Decimal.new("0"), + Decimal.new("1"), + Decimal.new("49.1477"), + Decimal.new("0.0379"), + Decimal.new("43.6"), + Decimal.new("45.4"), + Decimal.new("47.3"), + Decimal.new("49.1"), + Decimal.new("51"), + Decimal.new("52.9"), + Decimal.new("54.7") + ], + [ + male_urls |> Map.get(:age_tables) |> List.first(), + :age, + :male, + "week", + Decimal.new("0"), + Decimal.new("1"), + Decimal.new("49.8842"), + Decimal.new("0.03795"), + Decimal.new("44.2"), + Decimal.new("46.1"), + Decimal.new("48"), + Decimal.new("49.9"), + Decimal.new("51.8"), + Decimal.new("53.7"), + Decimal.new("55.6") + ], + [ + male_urls |> Map.get(:age_tables) |> List.last(), + :age, + :male, + "month", + Decimal.new("0"), + Decimal.new("1"), + Decimal.new("49.8842"), + Decimal.new("0.03795"), + Decimal.new("44.2"), + Decimal.new("46.1"), + Decimal.new("48"), + Decimal.new("49.9"), + Decimal.new("51.8"), + Decimal.new("53.7"), + Decimal.new("55.6") + ], + [ + female_urls |> Map.get(:expanded_tables) |> List.first(), + :expanded, + :female, + "day", + Decimal.new("0"), + Decimal.new("1"), + Decimal.new("49.1477"), + Decimal.new("0.0379"), + Decimal.new("43.56"), + Decimal.new("45.422"), + Decimal.new("47.285"), + Decimal.new("49.148"), + Decimal.new("51.01"), + Decimal.new("52.873"), + Decimal.new("54.736") + ], + [ + male_urls |> Map.get(:expanded_tables) |> List.first(), + :expanded, + :male, + "day", + Decimal.new("0"), + Decimal.new("1"), + Decimal.new("49.8842"), + Decimal.new("0.03795"), + Decimal.new("44.205"), + Decimal.new("46.098"), + Decimal.new("47.991"), + Decimal.new("49.884"), + Decimal.new("51.777"), + Decimal.new("53.67"), + Decimal.new("55.564") + ] + ] + + assert expected_content == content + end + end + + defp mock_who_request do + Req.Test.stub(Growth.Indicators.Download.WHO, fn %Plug.Conn{path_info: path_info} = conn -> + filename = List.last(path_info) + + rows = + case filename do + "lhfa_girls_0-to-13-weeks_zscores.xlsx" -> + [ + ~w(Week L M S SD SD3neg SD2neg SD1neg SD0 SD1 SD2 SD3), + ~w(0 1 49.1477 0.0379 1.8627 43.6 45.4 47.3 49.1 51 52.9 54.7) + ] + + "lhfa_girls_0-to-2-years_zscores.xlsx" -> + [ + ~w(Month L M S SD SD3neg SD2neg SD1neg SD0 SD1 SD2 SD3), + ~w(0 1 49.1477 0.0379 1.8627 43.6 45.4 47.3 49.1 51 52.9 54.7) + ] + + "lhfa-girls-zscore-expanded-tables.xlsx" -> + [ + ~w(Day L M S SD4neg SD3neg SD2neg SD1neg SD0 SD1 SD2 SD3 SD4), + ~w(0 1 49.1477 0.0379 41.697 43.56 45.422 47.285 49.148 51.01 52.873 54.736 56.598) + ] + + "lhfa_boys_0-to-13-weeks_zscores.xlsx" -> + [ + ~w(Week L M S SD SD3neg SD2neg SD1neg SD0 SD1 SD2 SD3), + ~w(0 1 49.8842 0.03795 1.8931 44.2 46.1 48 49.9 51.8 53.7 55.6) + ] + + "lhfa_boys_0-to-2-years_zscores.xlsx" -> + [ + ~w(Month L M S SD SD3neg SD2neg SD1neg SD0 SD1 SD2 SD3), + ~w(0 1 49.8842 0.03795 1.8931 44.2 46.1 48 49.9 51.8 53.7 55.6) + ] + + "lhfa-boys-zscore-expanded-tables.xlsx" -> + [ + ~w(Day L M S SD4neg SD3neg SD2neg SD1neg SD0 SD1 SD2 SD3 SD4), + ~w(0 1 49.8842 0.03795 42.312 44.205 46.098 47.991 49.884 51.777 53.67 55.564 57.457) + ] + end + + {:ok, {_charlist_content, content}} = + %Sheet{name: "zscore", rows: rows} + |> then(&%Workbook{sheets: [&1]}) + |> Elixlsx.write_to_memory(filename) + + conn + |> Plug.Conn.put_resp_content_type( + "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" + ) + |> Plug.Conn.send_resp(200, content) + end) + end +end diff --git a/test/support/growth_data.ex b/test/support/growth_data.ex new file mode 100644 index 0000000..0d2d101 --- /dev/null +++ b/test/support/growth_data.ex @@ -0,0 +1,115 @@ +defmodule Growth.Data do + @moduledoc """ + Sample data for growth tests based on WHO csv files containing: + + * source measure + * gender + * age_unit + * box-cox fitted params: + * l + * m + * s + * expeceted measure values at given z-scores: + * -3 + * -2 + * -1 + * 0 + * 1 + * 2 + * 3 + """ + + NimbleCSV.define(Growth.DataCase, separator: ",", escape: "\"") + + # NOTE: (jpd) this combined table will be used on zscore and centile test to cross-validate the results using + # different genders, ages units, and measures. + @sample_combined_csv """ + source,gender,age_unit,age,l,m,s,sd3neg,sd2neg,sd1neg,sd0,sd1,sd2,sd3 + arm-circumference-for-age,female,month,3,-0.17330000000000001,13.0284,0.082629999999999995,10.199999999999999,11.1,12,13,14.2,15.4,16.8 + arm-circumference-for-age,female,day,91,-0.17330000000000001,13.0245,0.082619999999999999,10.218,11.066000000000001,11.999000000000001,13.023999999999999,14.154999999999999,15.401999999999999,16.78 + arm-circumference-for-age,male,month,3,0.39279999999999998,13.4817,0.074749999999999997,10.7,11.6,12.5,13.5,14.5,15.6,16.7 + arm-circumference-for-age,male,day,91,0.39329999999999998,13.4779,0.074740000000000001,10.657999999999999,11.554,12.493,13.478,14.507999999999999,15.585000000000001,16.709 + body-mass-index-for-age,female,day,28,0.36370000000000002,14.4208,0.095769999999999994,10.646000000000001,11.824,13.081,14.420999999999999,15.843999999999999,17.353999999999999,18.952999999999999 + body-mass-index-for-age,female,week,4,0.36370000000000002,14.4208,0.095769999999999994,10.6,11.8,13.1,14.4,15.8,17.399999999999999,19 + body-mass-index-for-age,female,month,1,0.3448,14.5679,0.095560000000000006,10.8,12,13.2,14.6,16,17.5,19.100000000000001 + body-mass-index-for-age,male,day,28,0.28810000000000002,14.7714,0.090719999999999995,11.125999999999999,12.26,13.474,14.771000000000001,16.155000000000001,17.629000000000001,19.196000000000002 + body-mass-index-for-age,male,week,4,0.28810000000000002,14.7714,0.090719999999999995,11.1,12.3,13.5,14.8,16.2,17.600000000000001,19.2 + body-mass-index-for-age,male,month,1,0.27079999999999999,14.944100000000001,0.090270000000000003,11.3,12.4,13.6,14.9,16.3,17.8,19.399999999999999 + head-circumference-for-age,female,day,28,1,36.376100000000001,0.032149999999999998,32.868000000000002,34.036999999999999,35.207000000000001,36.375999999999998,37.545999999999999,38.715000000000003,39.884999999999998 + head-circumference-for-age,female,week,4,1,36.376100000000001,0.032149999999999998,32.9,34,35.200000000000003,36.4,37.5,38.700000000000003,39.9 + head-circumference-for-age,female,month,1,1,36.546300000000002,0.032099999999999997,33,34.200000000000003,35.4,36.5,37.700000000000003,38.9,40.1 + head-circumference-for-age,male,day,28,1,37.092599999999997,0.031480000000000001,33.590000000000003,34.756999999999998,35.924999999999997,37.093000000000004,38.26,39.427999999999997,40.595999999999997 + head-circumference-for-age,male,week,4,1,37.092599999999997,0.031480000000000001,33.6,34.799999999999997,35.9,37.1,38.299999999999997,39.4,40.6 + head-circumference-for-age,male,month,1,1,37.2759,0.031329999999999997,33.799999999999997,34.9,36.1,37.299999999999997,38.4,39.6,40.799999999999997 + length-height-for-age,female,day,28,1,53.380899999999997,0.036470000000000002,47.54,49.487000000000002,51.433999999999997,53.381,55.328000000000003,57.274999999999999,59.220999999999997 + length-height-for-age,female,week,4,1,53.380899999999997,0.036470000000000002,47.5,49.5,51.4,53.4,55.3,57.3,59.2 + length-height-for-age,female,month,1,1,53.687199999999997,0.036400000000000002,47.8,49.8,51.7,53.7,55.6,57.6,59.5 + length-height-for-age,male,day,28,1,54.388100000000001,0.035700000000000003,48.563000000000002,50.505000000000003,52.445999999999998,54.387999999999998,56.33,58.271000000000001,60.213000000000001 + length-height-for-age,male,week,4,1,54.388100000000001,0.035700000000000003,48.6,50.5,52.4,54.4,56.3,58.3,60.2 + length-height-for-age,male,month,1,1,54.724400000000003,0.035569999999999997,48.9,50.8,52.8,54.7,56.7,58.6,60.6 + subscapular-skinfold-for-age,female,day,91,-0.2019,7.7873999999999999,0.18428,4.6109999999999998,5.4580000000000002,6.4989999999999997,7.7869999999999999,9.3960000000000008,11.422000000000001,13.994999999999999 + subscapular-skinfold-for-age,female,month,3,-0.2026,7.7846000000000002,0.18428,4.5999999999999996,5.5,6.5,7.8,9.4,11.4,14 + subscapular-skinfold-for-age,male,day,91,-0.30299999999999999,7.6920000000000002,0.17019000000000001,4.7850000000000001,5.5640000000000001,6.516,7.6920000000000002,9.1609999999999996,11.016999999999999,13.395 + subscapular-skinfold-for-age,male,month,3,-0.30330000000000001,7.6898999999999997,0.17019999999999999,4.8,5.6,6.5,7.7,9.1999999999999993,11,13.4 + triceps-skinfold-for-age,female,day,91,0.18820000000000001,9.7532999999999994,0.17524999999999999,5.6070000000000002,6.7869999999999999,8.1609999999999996,9.7530000000000001,11.589,13.695,16.102 + triceps-skinfold-for-age,female,month,3,0.1875,9.7515999999999998,0.17535000000000001,5.6,6.8,8.1999999999999993,9.8000000000000007,11.6,13.7,16.100000000000001 + triceps-skinfold-for-age,male,day,91,0.0030000000000000001,9.7658000000000005,0.16611000000000001,5.931,7.0039999999999996,8.2710000000000008,9.766,11.53,13.612,16.068000000000001 + triceps-skinfold-for-age,male,month,3,0.0027000000000000001,9.7638999999999996,0.16617999999999999,5.9,7,8.3000000000000007,9.8000000000000007,11.5,13.6,16.100000000000001 + weight-for-age,female,day,28,0.1789,4.0987,0.13805000000000001,2.665,3.0880000000000001,3.5640000000000001,4.0990000000000002,4.6980000000000004,5.3659999999999997,6.1120000000000001 + weight-for-age,female,week,4,0.1789,4.0987,0.13805000000000001,2.7,3.1,3.6,4.0999999999999996,4.7,5.4,6.1 + weight-for-age,female,month,1,0.1714,4.1872999999999996,0.13724,2.7,3.2,3.6,4.2,4.8,5.5,6.2 + weight-for-age,male,day,28,0.2331,4.3670999999999998,0.13497000000000001,2.8540000000000001,3.3050000000000002,3.8069999999999999,4.367,4.9880000000000004,5.6740000000000004,6.43 + weight-for-age,male,week,4,0.2331,4.3670999999999998,0.13497000000000001,2.9,3.3,3.8,4.4000000000000004,5,5.7,6.4 + weight-for-age,male,month,1,0.22969999999999999,4.4709000000000003,0.13395000000000001,2.9,3.4,3.9,4.5,5.0999999999999996,5.8,6.6 + """ + + @doc """ + Sample data to validate calculation made to convert measure into z-score and vice-versa. + + This data is based on values extracted from WHO csv files. + """ + @spec sample :: [ + %{ + key: String.t(), + zscore: number(), + measure: number(), + l: number(), + m: number(), + s: number() + } + ] + def sample do + @sample_combined_csv + |> Growth.DataCase.parse_string() + |> Enum.flat_map(fn [ + source, + gender, + age_unit, + age, + l, + m, + s, + sd3n, + sd2n, + sd1n, + sd0, + sd1, + sd2, + sd3 + ] -> + key = "#{source}:#{gender}:#{age_unit}:#{age}" + + [l, m, s, sd3n, sd2n, sd1n, sd0, sd1, sd2, sd3] = + Enum.map( + [l, m, s, sd3n, sd2n, sd1n, sd0, sd1, sd2, sd3], + &(&1 |> Float.parse() |> elem(0)) + ) + + [-3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0] + |> Enum.zip([sd3n, sd2n, sd1n, sd0, sd1, sd2, sd3]) + |> Enum.map(fn {zscore, measure} -> + %{key: "#{key}:#{zscore}", zscore: zscore, measure: measure, l: l, m: m, s: s} + end) + end) + end +end